Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * fs/cifs/connect.c |
| 3 | * |
Steve French | 366781c | 2008-01-25 10:12:41 +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) |
| 6 | * |
| 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. |
| 11 | * |
| 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. |
| 16 | * |
| 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 |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | */ |
| 21 | #include <linux/fs.h> |
| 22 | #include <linux/net.h> |
| 23 | #include <linux/string.h> |
| 24 | #include <linux/list.h> |
| 25 | #include <linux/wait.h> |
| 26 | #include <linux/ipv6.h> |
| 27 | #include <linux/pagemap.h> |
| 28 | #include <linux/ctype.h> |
| 29 | #include <linux/utsname.h> |
| 30 | #include <linux/mempool.h> |
Steve French | b8643e1 | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 31 | #include <linux/delay.h> |
Steve French | f191401 | 2005-08-18 09:37:34 -0700 | [diff] [blame] | 32 | #include <linux/completion.h> |
Igor Mammedov | aaf737a | 2007-04-03 19:16:43 +0000 | [diff] [blame] | 33 | #include <linux/kthread.h> |
Steve French | 0ae0efa | 2005-10-10 10:57:19 -0700 | [diff] [blame] | 34 | #include <linux/pagevec.h> |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 35 | #include <linux/freezer.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include <asm/uaccess.h> |
| 37 | #include <asm/processor.h> |
| 38 | #include "cifspdu.h" |
| 39 | #include "cifsglob.h" |
| 40 | #include "cifsproto.h" |
| 41 | #include "cifs_unicode.h" |
| 42 | #include "cifs_debug.h" |
| 43 | #include "cifs_fs_sb.h" |
| 44 | #include "ntlmssp.h" |
| 45 | #include "nterr.h" |
| 46 | #include "rfc1002pdu.h" |
Steve French | a2653eb | 2005-11-10 15:33:38 -0800 | [diff] [blame] | 47 | #include "cn_cifs.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
| 49 | #define CIFS_PORT 445 |
| 50 | #define RFC1001_PORT 139 |
| 51 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | extern void SMBNTencrypt(unsigned char *passwd, unsigned char *c8, |
| 53 | unsigned char *p24); |
| 54 | |
| 55 | extern mempool_t *cifs_req_poolp; |
| 56 | |
| 57 | struct smb_vol { |
| 58 | char *username; |
| 59 | char *password; |
| 60 | char *domainname; |
| 61 | char *UNC; |
| 62 | char *UNCip; |
Steve French | 95b1cb9 | 2008-05-15 16:44:38 +0000 | [diff] [blame] | 63 | char *in6_addr; /* ipv6 address as human readable form of in6_addr */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | char *iocharset; /* local code page for mapping to and from Unicode */ |
| 65 | char source_rfc1001_name[16]; /* netbios name of client */ |
Steve French | a10faeb2 | 2005-08-22 21:38:31 -0700 | [diff] [blame] | 66 | char target_rfc1001_name[16]; /* netbios name of server for Win9x/ME */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | uid_t linux_uid; |
| 68 | gid_t linux_gid; |
| 69 | mode_t file_mode; |
| 70 | mode_t dir_mode; |
Steve French | 189acaa | 2006-06-23 02:33:48 +0000 | [diff] [blame] | 71 | unsigned secFlg; |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 72 | bool rw:1; |
| 73 | bool retry:1; |
| 74 | bool intr:1; |
| 75 | bool setuids:1; |
| 76 | bool override_uid:1; |
| 77 | bool override_gid:1; |
Jeff Layton | d0a9c07 | 2008-05-12 22:23:49 +0000 | [diff] [blame] | 78 | bool dynperm:1; |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 79 | bool noperm:1; |
| 80 | bool no_psx_acl:1; /* set if posix acl support should be disabled */ |
| 81 | bool cifs_acl:1; |
| 82 | bool no_xattr:1; /* set if xattr (EA) support should be disabled*/ |
| 83 | bool server_ino:1; /* use inode numbers from server ie UniqueId */ |
| 84 | bool direct_io:1; |
Steve French | 95b1cb9 | 2008-05-15 16:44:38 +0000 | [diff] [blame] | 85 | bool remap:1; /* set to remap seven reserved chars in filenames */ |
| 86 | bool posix_paths:1; /* unset to not ask for posix pathnames. */ |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 87 | bool no_linux_ext:1; |
| 88 | bool sfu_emul:1; |
Steve French | 95b1cb9 | 2008-05-15 16:44:38 +0000 | [diff] [blame] | 89 | bool nullauth:1; /* attempt to authenticate with null user */ |
| 90 | bool nocase:1; /* request case insensitive filenames */ |
| 91 | bool nobrl:1; /* disable sending byte range locks to srv */ |
| 92 | bool seal:1; /* request transport encryption on share */ |
Steve French | 84210e9 | 2008-10-23 04:42:37 +0000 | [diff] [blame] | 93 | bool nodfs:1; /* Do not request DFS, even if available */ |
| 94 | bool local_lease:1; /* check leases only on local system, not remote */ |
Steve French | edf1ae4 | 2008-10-29 00:47:57 +0000 | [diff] [blame] | 95 | bool noblocksnd:1; |
| 96 | bool noautotune:1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | unsigned int rsize; |
| 98 | unsigned int wsize; |
| 99 | unsigned int sockopt; |
| 100 | unsigned short int port; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 101 | char *prepath; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | }; |
| 103 | |
Jeff Layton | bcf4b10 | 2008-12-01 18:42:15 -0500 | [diff] [blame] | 104 | static int ipv4_connect(struct TCP_Server_Info *server); |
Jeff Layton | d5c5605 | 2008-12-01 18:42:33 -0500 | [diff] [blame^] | 105 | static int ipv6_connect(struct TCP_Server_Info *server); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | |
Jeff Layton | d5c5605 | 2008-12-01 18:42:33 -0500 | [diff] [blame^] | 107 | /* |
| 108 | * cifs tcp session reconnection |
| 109 | * |
| 110 | * mark tcp session as reconnecting so temporarily locked |
| 111 | * mark all smb sessions as reconnecting for tcp session |
| 112 | * reconnect tcp session |
| 113 | * wake up waiters on reconnection? - (not needed currently) |
| 114 | */ |
Steve French | 2cd646a | 2006-09-28 19:43:08 +0000 | [diff] [blame] | 115 | static int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | cifs_reconnect(struct TCP_Server_Info *server) |
| 117 | { |
| 118 | int rc = 0; |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 119 | struct list_head *tmp, *tmp2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | struct cifsSesInfo *ses; |
| 121 | struct cifsTconInfo *tcon; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 122 | struct mid_q_entry *mid_entry; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 123 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | spin_lock(&GlobalMid_Lock); |
Jeff Layton | 469ee61 | 2008-10-16 18:46:39 +0000 | [diff] [blame] | 125 | if (server->tcpStatus == CifsExiting) { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 126 | /* the demux thread will exit normally |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | next time through the loop */ |
| 128 | spin_unlock(&GlobalMid_Lock); |
| 129 | return rc; |
| 130 | } else |
| 131 | server->tcpStatus = CifsNeedReconnect; |
| 132 | spin_unlock(&GlobalMid_Lock); |
| 133 | server->maxBuf = 0; |
| 134 | |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 135 | cFYI(1, ("Reconnecting tcp session")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | |
| 137 | /* before reconnecting the tcp session, mark the smb session (uid) |
| 138 | and the tid bad so they are not used until reconnected */ |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 139 | read_lock(&cifs_tcp_ses_lock); |
| 140 | list_for_each(tmp, &server->smb_ses_list) { |
| 141 | ses = list_entry(tmp, struct cifsSesInfo, smb_ses_list); |
| 142 | ses->need_reconnect = true; |
| 143 | ses->ipc_tid = 0; |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 144 | list_for_each(tmp2, &ses->tcon_list) { |
| 145 | tcon = list_entry(tmp2, struct cifsTconInfo, tcon_list); |
| 146 | tcon->need_reconnect = true; |
| 147 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | } |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 149 | read_unlock(&cifs_tcp_ses_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | /* do not want to be sending data on a socket we are freeing */ |
Jeff Layton | 72ca545 | 2008-12-01 07:09:36 -0500 | [diff] [blame] | 151 | mutex_lock(&server->srv_mutex); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 152 | if (server->ssocket) { |
Steve French | 467a8f8 | 2007-06-27 22:41:32 +0000 | [diff] [blame] | 153 | cFYI(1, ("State: 0x%x Flags: 0x%lx", server->ssocket->state, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | server->ssocket->flags)); |
Trond Myklebust | 91cf45f | 2007-11-12 18:10:39 -0800 | [diff] [blame] | 155 | kernel_sock_shutdown(server->ssocket, SHUT_WR); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 156 | cFYI(1, ("Post shutdown state: 0x%x Flags: 0x%lx", |
Steve French | 467a8f8 | 2007-06-27 22:41:32 +0000 | [diff] [blame] | 157 | server->ssocket->state, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | server->ssocket->flags)); |
| 159 | sock_release(server->ssocket); |
| 160 | server->ssocket = NULL; |
| 161 | } |
| 162 | |
| 163 | spin_lock(&GlobalMid_Lock); |
| 164 | list_for_each(tmp, &server->pending_mid_q) { |
| 165 | mid_entry = list_entry(tmp, struct |
| 166 | mid_q_entry, |
| 167 | qhead); |
Steve French | ad8b15f | 2008-08-08 21:10:16 +0000 | [diff] [blame] | 168 | if (mid_entry->midState == MID_REQUEST_SUBMITTED) { |
Steve French | 09d1db5 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 169 | /* Mark other intransit requests as needing |
| 170 | retry so we do not immediately mark the |
| 171 | session bad again (ie after we reconnect |
| 172 | below) as they timeout too */ |
Steve French | ad8b15f | 2008-08-08 21:10:16 +0000 | [diff] [blame] | 173 | mid_entry->midState = MID_RETRY_NEEDED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | } |
| 175 | } |
| 176 | spin_unlock(&GlobalMid_Lock); |
Jeff Layton | 72ca545 | 2008-12-01 07:09:36 -0500 | [diff] [blame] | 177 | mutex_unlock(&server->srv_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | |
Jeff Layton | 469ee61 | 2008-10-16 18:46:39 +0000 | [diff] [blame] | 179 | while ((server->tcpStatus != CifsExiting) && |
| 180 | (server->tcpStatus != CifsGood)) { |
Steve French | 6c3d890 | 2006-07-31 22:46:20 +0000 | [diff] [blame] | 181 | try_to_freeze(); |
Jeff Layton | bcf4b10 | 2008-12-01 18:42:15 -0500 | [diff] [blame] | 182 | if (server->addr.sockAddr6.sin6_family == AF_INET6) |
Jeff Layton | d5c5605 | 2008-12-01 18:42:33 -0500 | [diff] [blame^] | 183 | rc = ipv6_connect(server); |
Jeff Layton | bcf4b10 | 2008-12-01 18:42:15 -0500 | [diff] [blame] | 184 | else |
| 185 | rc = ipv4_connect(server); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 186 | if (rc) { |
| 187 | cFYI(1, ("reconnect error %d", rc)); |
Steve French | 0cb766a | 2005-04-28 22:41:11 -0700 | [diff] [blame] | 188 | msleep(3000); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | } else { |
| 190 | atomic_inc(&tcpSesReconnectCount); |
| 191 | spin_lock(&GlobalMid_Lock); |
Jeff Layton | 469ee61 | 2008-10-16 18:46:39 +0000 | [diff] [blame] | 192 | if (server->tcpStatus != CifsExiting) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | server->tcpStatus = CifsGood; |
Steve French | ad009ac | 2005-04-28 22:41:05 -0700 | [diff] [blame] | 194 | server->sequence_number = 0; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 195 | spin_unlock(&GlobalMid_Lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | /* atomic_set(&server->inFlight,0);*/ |
| 197 | wake_up(&server->response_q); |
| 198 | } |
| 199 | } |
| 200 | return rc; |
| 201 | } |
| 202 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 203 | /* |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 204 | return codes: |
| 205 | 0 not a transact2, or all data present |
| 206 | >0 transact2 with that much data missing |
| 207 | -EINVAL = invalid transact2 |
| 208 | |
| 209 | */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 210 | static int check2ndT2(struct smb_hdr *pSMB, unsigned int maxBufSize) |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 211 | { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 212 | struct smb_t2_rsp *pSMBt; |
| 213 | int total_data_size; |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 214 | int data_in_this_rsp; |
| 215 | int remaining; |
| 216 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 217 | if (pSMB->Command != SMB_COM_TRANSACTION2) |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 218 | return 0; |
| 219 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 220 | /* check for plausible wct, bcc and t2 data and parm sizes */ |
| 221 | /* check for parm and data offset going beyond end of smb */ |
| 222 | if (pSMB->WordCount != 10) { /* coalesce_t2 depends on this */ |
Steve French | 467a8f8 | 2007-06-27 22:41:32 +0000 | [diff] [blame] | 223 | cFYI(1, ("invalid transact2 word count")); |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 224 | return -EINVAL; |
| 225 | } |
| 226 | |
| 227 | pSMBt = (struct smb_t2_rsp *)pSMB; |
| 228 | |
| 229 | total_data_size = le16_to_cpu(pSMBt->t2_rsp.TotalDataCount); |
| 230 | data_in_this_rsp = le16_to_cpu(pSMBt->t2_rsp.DataCount); |
| 231 | |
| 232 | remaining = total_data_size - data_in_this_rsp; |
| 233 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 234 | if (remaining == 0) |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 235 | return 0; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 236 | else if (remaining < 0) { |
Steve French | 467a8f8 | 2007-06-27 22:41:32 +0000 | [diff] [blame] | 237 | cFYI(1, ("total data %d smaller than data in frame %d", |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 238 | total_data_size, data_in_this_rsp)); |
| 239 | return -EINVAL; |
| 240 | } else { |
Steve French | 467a8f8 | 2007-06-27 22:41:32 +0000 | [diff] [blame] | 241 | cFYI(1, ("missing %d bytes from transact2, check next response", |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 242 | remaining)); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 243 | if (total_data_size > maxBufSize) { |
| 244 | cERROR(1, ("TotalDataSize %d is over maximum buffer %d", |
| 245 | total_data_size, maxBufSize)); |
| 246 | return -EINVAL; |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 247 | } |
| 248 | return remaining; |
| 249 | } |
| 250 | } |
| 251 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 252 | static int coalesce_t2(struct smb_hdr *psecond, struct smb_hdr *pTargetSMB) |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 253 | { |
| 254 | struct smb_t2_rsp *pSMB2 = (struct smb_t2_rsp *)psecond; |
| 255 | struct smb_t2_rsp *pSMBt = (struct smb_t2_rsp *)pTargetSMB; |
| 256 | int total_data_size; |
| 257 | int total_in_buf; |
| 258 | int remaining; |
| 259 | int total_in_buf2; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 260 | char *data_area_of_target; |
| 261 | char *data_area_of_buf2; |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 262 | __u16 byte_count; |
| 263 | |
| 264 | total_data_size = le16_to_cpu(pSMBt->t2_rsp.TotalDataCount); |
| 265 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 266 | if (total_data_size != le16_to_cpu(pSMB2->t2_rsp.TotalDataCount)) { |
Steve French | 63135e0 | 2007-07-17 17:34:02 +0000 | [diff] [blame] | 267 | cFYI(1, ("total data size of primary and secondary t2 differ")); |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 268 | } |
| 269 | |
| 270 | total_in_buf = le16_to_cpu(pSMBt->t2_rsp.DataCount); |
| 271 | |
| 272 | remaining = total_data_size - total_in_buf; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 273 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 274 | if (remaining < 0) |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 275 | return -EINVAL; |
| 276 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 277 | if (remaining == 0) /* nothing to do, ignore */ |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 278 | return 0; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 279 | |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 280 | total_in_buf2 = le16_to_cpu(pSMB2->t2_rsp.DataCount); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 281 | if (remaining < total_in_buf2) { |
Steve French | 467a8f8 | 2007-06-27 22:41:32 +0000 | [diff] [blame] | 282 | cFYI(1, ("transact2 2nd response contains too much data")); |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 283 | } |
| 284 | |
| 285 | /* find end of first SMB data area */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 286 | data_area_of_target = (char *)&pSMBt->hdr.Protocol + |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 287 | le16_to_cpu(pSMBt->t2_rsp.DataOffset); |
| 288 | /* validate target area */ |
| 289 | |
| 290 | data_area_of_buf2 = (char *) &pSMB2->hdr.Protocol + |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 291 | le16_to_cpu(pSMB2->t2_rsp.DataOffset); |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 292 | |
| 293 | data_area_of_target += total_in_buf; |
| 294 | |
| 295 | /* copy second buffer into end of first buffer */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 296 | memcpy(data_area_of_target, data_area_of_buf2, total_in_buf2); |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 297 | total_in_buf += total_in_buf2; |
| 298 | pSMBt->t2_rsp.DataCount = cpu_to_le16(total_in_buf); |
| 299 | byte_count = le16_to_cpu(BCC_LE(pTargetSMB)); |
| 300 | byte_count += total_in_buf2; |
| 301 | BCC_LE(pTargetSMB) = cpu_to_le16(byte_count); |
| 302 | |
Steve French | 70ca734 | 2005-09-22 16:32:06 -0700 | [diff] [blame] | 303 | byte_count = pTargetSMB->smb_buf_length; |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 304 | byte_count += total_in_buf2; |
| 305 | |
| 306 | /* BB also add check that we are not beyond maximum buffer size */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 307 | |
Steve French | 70ca734 | 2005-09-22 16:32:06 -0700 | [diff] [blame] | 308 | pTargetSMB->smb_buf_length = byte_count; |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 309 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 310 | if (remaining == total_in_buf2) { |
Steve French | 467a8f8 | 2007-06-27 22:41:32 +0000 | [diff] [blame] | 311 | cFYI(1, ("found the last secondary response")); |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 312 | return 0; /* we are done */ |
| 313 | } else /* more responses to go */ |
| 314 | return 1; |
| 315 | |
| 316 | } |
| 317 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | static int |
| 319 | cifs_demultiplex_thread(struct TCP_Server_Info *server) |
| 320 | { |
| 321 | int length; |
| 322 | unsigned int pdu_length, total_read; |
| 323 | struct smb_hdr *smb_buffer = NULL; |
Steve French | b8643e1 | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 324 | struct smb_hdr *bigbuf = NULL; |
| 325 | struct smb_hdr *smallbuf = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | struct msghdr smb_msg; |
| 327 | struct kvec iov; |
| 328 | struct socket *csocket = server->ssocket; |
| 329 | struct list_head *tmp; |
| 330 | struct cifsSesInfo *ses; |
| 331 | struct task_struct *task_to_wake = NULL; |
| 332 | struct mid_q_entry *mid_entry; |
Steve French | 70ca734 | 2005-09-22 16:32:06 -0700 | [diff] [blame] | 333 | char temp; |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 334 | bool isLargeBuf = false; |
| 335 | bool isMultiRsp; |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 336 | int reconnect; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 338 | current->flags |= PF_MEMALLOC; |
Pavel Emelyanov | ba25f9d | 2007-10-18 23:40:40 -0700 | [diff] [blame] | 339 | cFYI(1, ("Demultiplex PID: %d", task_pid_nr(current))); |
Jeff Layton | 93d0ec8 | 2008-08-02 08:00:48 -0400 | [diff] [blame] | 340 | |
| 341 | length = atomic_inc_return(&tcpSesAllocCount); |
| 342 | if (length > 1) |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 343 | mempool_resize(cifs_req_poolp, length + cifs_min_rcv, |
| 344 | GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | |
Rafael J. Wysocki | 8314418 | 2007-07-17 04:03:35 -0700 | [diff] [blame] | 346 | set_freezable(); |
Jeff Layton | 469ee61 | 2008-10-16 18:46:39 +0000 | [diff] [blame] | 347 | while (server->tcpStatus != CifsExiting) { |
Steve French | ede1327 | 2005-08-30 20:10:14 -0700 | [diff] [blame] | 348 | if (try_to_freeze()) |
| 349 | continue; |
Steve French | b8643e1 | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 350 | if (bigbuf == NULL) { |
| 351 | bigbuf = cifs_buf_get(); |
Pavel Machek | 0fd1ffe | 2006-06-13 21:31:39 +0000 | [diff] [blame] | 352 | if (!bigbuf) { |
| 353 | cERROR(1, ("No memory for large SMB response")); |
Steve French | b8643e1 | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 354 | msleep(3000); |
| 355 | /* retry will check if exiting */ |
| 356 | continue; |
| 357 | } |
Pavel Machek | 0fd1ffe | 2006-06-13 21:31:39 +0000 | [diff] [blame] | 358 | } else if (isLargeBuf) { |
| 359 | /* we are reusing a dirty large buf, clear its start */ |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 360 | memset(bigbuf, 0, sizeof(struct smb_hdr)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | } |
Steve French | b8643e1 | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 362 | |
| 363 | if (smallbuf == NULL) { |
| 364 | smallbuf = cifs_small_buf_get(); |
Pavel Machek | 0fd1ffe | 2006-06-13 21:31:39 +0000 | [diff] [blame] | 365 | if (!smallbuf) { |
| 366 | cERROR(1, ("No memory for SMB response")); |
Steve French | b8643e1 | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 367 | msleep(1000); |
| 368 | /* retry will check if exiting */ |
| 369 | continue; |
| 370 | } |
| 371 | /* beginning of smb buffer is cleared in our buf_get */ |
| 372 | } else /* if existing small buf clear beginning */ |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 373 | memset(smallbuf, 0, sizeof(struct smb_hdr)); |
Steve French | b8643e1 | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 374 | |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 375 | isLargeBuf = false; |
| 376 | isMultiRsp = false; |
Steve French | b8643e1 | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 377 | smb_buffer = smallbuf; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | iov.iov_base = smb_buffer; |
| 379 | iov.iov_len = 4; |
| 380 | smb_msg.msg_control = NULL; |
| 381 | smb_msg.msg_controllen = 0; |
Steve French | f01d5e1 | 2007-08-30 21:13:31 +0000 | [diff] [blame] | 382 | pdu_length = 4; /* enough to get RFC1001 header */ |
| 383 | incomplete_rcv: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | length = |
| 385 | kernel_recvmsg(csocket, &smb_msg, |
Steve French | f01d5e1 | 2007-08-30 21:13:31 +0000 | [diff] [blame] | 386 | &iov, 1, pdu_length, 0 /* BB other flags? */); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | |
Jeff Layton | 469ee61 | 2008-10-16 18:46:39 +0000 | [diff] [blame] | 388 | if (server->tcpStatus == CifsExiting) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | break; |
| 390 | } else if (server->tcpStatus == CifsNeedReconnect) { |
Pavel Machek | 0fd1ffe | 2006-06-13 21:31:39 +0000 | [diff] [blame] | 391 | cFYI(1, ("Reconnect after server stopped responding")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 392 | cifs_reconnect(server); |
Pavel Machek | 0fd1ffe | 2006-06-13 21:31:39 +0000 | [diff] [blame] | 393 | cFYI(1, ("call to reconnect done")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | csocket = server->ssocket; |
| 395 | continue; |
| 396 | } else if ((length == -ERESTARTSYS) || (length == -EAGAIN)) { |
Steve French | b8643e1 | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 397 | msleep(1); /* minimum sleep to prevent looping |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | allowing socket to clear and app threads to set |
| 399 | tcpStatus CifsNeedReconnect if server hung */ |
Steve French | c527c8a | 2008-11-03 20:46:21 +0000 | [diff] [blame] | 400 | if (pdu_length < 4) { |
| 401 | iov.iov_base = (4 - pdu_length) + |
| 402 | (char *)smb_buffer; |
| 403 | iov.iov_len = pdu_length; |
| 404 | smb_msg.msg_control = NULL; |
| 405 | smb_msg.msg_controllen = 0; |
Steve French | c18c732 | 2007-10-17 18:01:11 +0000 | [diff] [blame] | 406 | goto incomplete_rcv; |
Steve French | c527c8a | 2008-11-03 20:46:21 +0000 | [diff] [blame] | 407 | } else |
Steve French | c18c732 | 2007-10-17 18:01:11 +0000 | [diff] [blame] | 408 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | } else if (length <= 0) { |
Pavel Machek | 0fd1ffe | 2006-06-13 21:31:39 +0000 | [diff] [blame] | 410 | if (server->tcpStatus == CifsNew) { |
| 411 | cFYI(1, ("tcp session abend after SMBnegprot")); |
Steve French | 09d1db5 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 412 | /* some servers kill the TCP session rather than |
| 413 | returning an SMB negprot error, in which |
| 414 | case reconnecting here is not going to help, |
| 415 | and so simply return error to mount */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | break; |
| 417 | } |
Pavel Machek | 0fd1ffe | 2006-06-13 21:31:39 +0000 | [diff] [blame] | 418 | if (!try_to_freeze() && (length == -EINTR)) { |
Steve French | 467a8f8 | 2007-06-27 22:41:32 +0000 | [diff] [blame] | 419 | cFYI(1, ("cifsd thread killed")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | break; |
| 421 | } |
Steve French | 467a8f8 | 2007-06-27 22:41:32 +0000 | [diff] [blame] | 422 | cFYI(1, ("Reconnect after unexpected peek error %d", |
Steve French | 57337e4 | 2005-04-28 22:41:10 -0700 | [diff] [blame] | 423 | length)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | cifs_reconnect(server); |
| 425 | csocket = server->ssocket; |
| 426 | wake_up(&server->response_q); |
| 427 | continue; |
Petr Tesarik | 2a97468 | 2007-11-20 02:24:08 +0000 | [diff] [blame] | 428 | } else if (length < pdu_length) { |
| 429 | cFYI(1, ("requested %d bytes but only got %d bytes", |
| 430 | pdu_length, length)); |
Steve French | f01d5e1 | 2007-08-30 21:13:31 +0000 | [diff] [blame] | 431 | pdu_length -= length; |
Steve French | f01d5e1 | 2007-08-30 21:13:31 +0000 | [diff] [blame] | 432 | msleep(1); |
| 433 | goto incomplete_rcv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | } |
Steve French | 67010fb | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 435 | |
Steve French | 70ca734 | 2005-09-22 16:32:06 -0700 | [diff] [blame] | 436 | /* The right amount was read from socket - 4 bytes */ |
| 437 | /* so we can now interpret the length field */ |
Steve French | 46810cb | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 438 | |
Steve French | 70ca734 | 2005-09-22 16:32:06 -0700 | [diff] [blame] | 439 | /* the first byte big endian of the length field, |
| 440 | is actually not part of the length but the type |
| 441 | with the most common, zero, as regular data */ |
| 442 | temp = *((char *) smb_buffer); |
| 443 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 444 | /* Note that FC 1001 length is big endian on the wire, |
Steve French | 70ca734 | 2005-09-22 16:32:06 -0700 | [diff] [blame] | 445 | but we convert it here so it is always manipulated |
| 446 | as host byte order */ |
Harvey Harrison | 5ca33c6 | 2008-07-23 17:45:58 -0700 | [diff] [blame] | 447 | pdu_length = be32_to_cpu((__force __be32)smb_buffer->smb_buf_length); |
Steve French | 70ca734 | 2005-09-22 16:32:06 -0700 | [diff] [blame] | 448 | smb_buffer->smb_buf_length = pdu_length; |
Steve French | 46810cb | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 449 | |
Steve French | 467a8f8 | 2007-06-27 22:41:32 +0000 | [diff] [blame] | 450 | cFYI(1, ("rfc1002 length 0x%x", pdu_length+4)); |
Steve French | 70ca734 | 2005-09-22 16:32:06 -0700 | [diff] [blame] | 451 | |
| 452 | if (temp == (char) RFC1002_SESSION_KEEP_ALIVE) { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 453 | continue; |
Steve French | 70ca734 | 2005-09-22 16:32:06 -0700 | [diff] [blame] | 454 | } else if (temp == (char)RFC1002_POSITIVE_SESSION_RESPONSE) { |
Steve French | 467a8f8 | 2007-06-27 22:41:32 +0000 | [diff] [blame] | 455 | cFYI(1, ("Good RFC 1002 session rsp")); |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 456 | continue; |
Steve French | 70ca734 | 2005-09-22 16:32:06 -0700 | [diff] [blame] | 457 | } else if (temp == (char)RFC1002_NEGATIVE_SESSION_RESPONSE) { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 458 | /* we get this from Windows 98 instead of |
Steve French | 46810cb | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 459 | an error on SMB negprot response */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 460 | cFYI(1, ("Negative RFC1002 Session Response Error 0x%x)", |
Steve French | 70ca734 | 2005-09-22 16:32:06 -0700 | [diff] [blame] | 461 | pdu_length)); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 462 | if (server->tcpStatus == CifsNew) { |
| 463 | /* if nack on negprot (rather than |
Steve French | 46810cb | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 464 | ret of smb negprot error) reconnecting |
| 465 | not going to help, ret error to mount */ |
| 466 | break; |
| 467 | } else { |
| 468 | /* give server a second to |
| 469 | clean up before reconnect attempt */ |
| 470 | msleep(1000); |
| 471 | /* always try 445 first on reconnect |
| 472 | since we get NACK on some if we ever |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 473 | connected to port 139 (the NACK is |
Steve French | 46810cb | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 474 | since we do not begin with RFC1001 |
| 475 | session initialize frame) */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 476 | server->addr.sockAddr.sin_port = |
Steve French | 46810cb | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 477 | htons(CIFS_PORT); |
| 478 | cifs_reconnect(server); |
| 479 | csocket = server->ssocket; |
| 480 | wake_up(&server->response_q); |
| 481 | continue; |
| 482 | } |
Steve French | 70ca734 | 2005-09-22 16:32:06 -0700 | [diff] [blame] | 483 | } else if (temp != (char) 0) { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 484 | cERROR(1, ("Unknown RFC 1002 frame")); |
Steve French | 70ca734 | 2005-09-22 16:32:06 -0700 | [diff] [blame] | 485 | cifs_dump_mem(" Received Data: ", (char *)smb_buffer, |
| 486 | length); |
Steve French | 46810cb | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 487 | cifs_reconnect(server); |
| 488 | csocket = server->ssocket; |
| 489 | continue; |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 490 | } |
| 491 | |
| 492 | /* else we have an SMB response */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 493 | if ((pdu_length > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE - 4) || |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 494 | (pdu_length < sizeof(struct smb_hdr) - 1 - 4)) { |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 495 | cERROR(1, ("Invalid size SMB length %d pdu_length %d", |
Steve French | 46810cb | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 496 | length, pdu_length+4)); |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 497 | cifs_reconnect(server); |
| 498 | csocket = server->ssocket; |
| 499 | wake_up(&server->response_q); |
| 500 | continue; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 501 | } |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 502 | |
| 503 | /* else length ok */ |
| 504 | reconnect = 0; |
| 505 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 506 | if (pdu_length > MAX_CIFS_SMALL_BUFFER_SIZE - 4) { |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 507 | isLargeBuf = true; |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 508 | memcpy(bigbuf, smallbuf, 4); |
| 509 | smb_buffer = bigbuf; |
| 510 | } |
| 511 | length = 0; |
| 512 | iov.iov_base = 4 + (char *)smb_buffer; |
| 513 | iov.iov_len = pdu_length; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 514 | for (total_read = 0; total_read < pdu_length; |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 515 | total_read += length) { |
| 516 | length = kernel_recvmsg(csocket, &smb_msg, &iov, 1, |
| 517 | pdu_length - total_read, 0); |
Jeff Layton | 469ee61 | 2008-10-16 18:46:39 +0000 | [diff] [blame] | 518 | if ((server->tcpStatus == CifsExiting) || |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 519 | (length == -EINTR)) { |
| 520 | /* then will exit */ |
| 521 | reconnect = 2; |
| 522 | break; |
| 523 | } else if (server->tcpStatus == CifsNeedReconnect) { |
Steve French | 46810cb | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 524 | cifs_reconnect(server); |
| 525 | csocket = server->ssocket; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 526 | /* Reconnect wakes up rspns q */ |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 527 | /* Now we will reread sock */ |
| 528 | reconnect = 1; |
| 529 | break; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 530 | } else if ((length == -ERESTARTSYS) || |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 531 | (length == -EAGAIN)) { |
| 532 | msleep(1); /* minimum sleep to prevent looping, |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 533 | allowing socket to clear and app |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 534 | threads to set tcpStatus |
| 535 | CifsNeedReconnect if server hung*/ |
Steve French | c18c732 | 2007-10-17 18:01:11 +0000 | [diff] [blame] | 536 | length = 0; |
Steve French | 46810cb | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 537 | continue; |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 538 | } else if (length <= 0) { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 539 | cERROR(1, ("Received no data, expecting %d", |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 540 | pdu_length - total_read)); |
| 541 | cifs_reconnect(server); |
| 542 | csocket = server->ssocket; |
| 543 | reconnect = 1; |
| 544 | break; |
Steve French | 46810cb | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 545 | } |
| 546 | } |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 547 | if (reconnect == 2) |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 548 | break; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 549 | else if (reconnect == 1) |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 550 | continue; |
| 551 | |
| 552 | length += 4; /* account for rfc1002 hdr */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 553 | |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 554 | |
| 555 | dump_smb(smb_buffer, length); |
Steve French | 184ed21 | 2006-02-24 06:15:11 +0000 | [diff] [blame] | 556 | if (checkSMB(smb_buffer, smb_buffer->Mid, total_read+4)) { |
Steve French | b387eae | 2005-10-10 14:21:15 -0700 | [diff] [blame] | 557 | cifs_dump_mem("Bad SMB: ", smb_buffer, 48); |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 558 | continue; |
| 559 | } |
| 560 | |
| 561 | |
| 562 | task_to_wake = NULL; |
| 563 | spin_lock(&GlobalMid_Lock); |
| 564 | list_for_each(tmp, &server->pending_mid_q) { |
| 565 | mid_entry = list_entry(tmp, struct mid_q_entry, qhead); |
| 566 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 567 | if ((mid_entry->mid == smb_buffer->Mid) && |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 568 | (mid_entry->midState == MID_REQUEST_SUBMITTED) && |
| 569 | (mid_entry->command == smb_buffer->Command)) { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 570 | if (check2ndT2(smb_buffer,server->maxBuf) > 0) { |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 571 | /* We have a multipart transact2 resp */ |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 572 | isMultiRsp = true; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 573 | if (mid_entry->resp_buf) { |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 574 | /* merge response - fix up 1st*/ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 575 | if (coalesce_t2(smb_buffer, |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 576 | mid_entry->resp_buf)) { |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 577 | mid_entry->multiRsp = |
| 578 | true; |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 579 | break; |
| 580 | } else { |
| 581 | /* all parts received */ |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 582 | mid_entry->multiEnd = |
| 583 | true; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 584 | goto multi_t2_fnd; |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 585 | } |
| 586 | } else { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 587 | if (!isLargeBuf) { |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 588 | cERROR(1,("1st trans2 resp needs bigbuf")); |
| 589 | /* BB maybe we can fix this up, switch |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 590 | to already allocated large buffer? */ |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 591 | } else { |
Steve French | cd63499 | 2005-04-28 22:41:10 -0700 | [diff] [blame] | 592 | /* Have first buffer */ |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 593 | mid_entry->resp_buf = |
| 594 | smb_buffer; |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 595 | mid_entry->largeBuf = |
| 596 | true; |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 597 | bigbuf = NULL; |
| 598 | } |
| 599 | } |
| 600 | break; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 601 | } |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 602 | mid_entry->resp_buf = smb_buffer; |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 603 | mid_entry->largeBuf = isLargeBuf; |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 604 | multi_t2_fnd: |
| 605 | task_to_wake = mid_entry->tsk; |
| 606 | mid_entry->midState = MID_RESPONSE_RECEIVED; |
Steve French | 1047abc | 2005-10-11 19:58:06 -0700 | [diff] [blame] | 607 | #ifdef CONFIG_CIFS_STATS2 |
| 608 | mid_entry->when_received = jiffies; |
| 609 | #endif |
Steve French | 3a5ff61 | 2006-07-14 22:37:11 +0000 | [diff] [blame] | 610 | /* so we do not time out requests to server |
| 611 | which is still responding (since server could |
| 612 | be busy but not dead) */ |
| 613 | server->lstrp = jiffies; |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 614 | break; |
| 615 | } |
| 616 | } |
| 617 | spin_unlock(&GlobalMid_Lock); |
| 618 | if (task_to_wake) { |
Steve French | cd63499 | 2005-04-28 22:41:10 -0700 | [diff] [blame] | 619 | /* Was previous buf put in mpx struct for multi-rsp? */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 620 | if (!isMultiRsp) { |
Steve French | cd63499 | 2005-04-28 22:41:10 -0700 | [diff] [blame] | 621 | /* smb buffer will be freed by user thread */ |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 622 | if (isLargeBuf) |
Steve French | cd63499 | 2005-04-28 22:41:10 -0700 | [diff] [blame] | 623 | bigbuf = NULL; |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 624 | else |
Steve French | cd63499 | 2005-04-28 22:41:10 -0700 | [diff] [blame] | 625 | smallbuf = NULL; |
| 626 | } |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 627 | wake_up_process(task_to_wake); |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 628 | } else if (!is_valid_oplock_break(smb_buffer, server) && |
| 629 | !isMultiRsp) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 630 | cERROR(1, ("No task to wake, unknown frame received! " |
| 631 | "NumMids %d", midCount.counter)); |
| 632 | cifs_dump_mem("Received Data is: ", (char *)smb_buffer, |
Steve French | 70ca734 | 2005-09-22 16:32:06 -0700 | [diff] [blame] | 633 | sizeof(struct smb_hdr)); |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 634 | #ifdef CONFIG_CIFS_DEBUG2 |
| 635 | cifs_dump_detail(smb_buffer); |
| 636 | cifs_dump_mids(server); |
| 637 | #endif /* CIFS_DEBUG2 */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 638 | |
Steve French | e4eb295 | 2005-04-28 22:41:09 -0700 | [diff] [blame] | 639 | } |
| 640 | } /* end while !EXITING */ |
| 641 | |
Jeff Layton | e7ddee9 | 2008-11-14 13:44:38 -0500 | [diff] [blame] | 642 | /* take it off the list, if it's not already */ |
| 643 | write_lock(&cifs_tcp_ses_lock); |
| 644 | list_del_init(&server->tcp_ses_list); |
| 645 | write_unlock(&cifs_tcp_ses_lock); |
| 646 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 647 | spin_lock(&GlobalMid_Lock); |
| 648 | server->tcpStatus = CifsExiting; |
Steve French | e691b9d | 2008-05-11 15:53:33 +0000 | [diff] [blame] | 649 | spin_unlock(&GlobalMid_Lock); |
Steve French | dbdbb87 | 2008-06-10 21:21:56 +0000 | [diff] [blame] | 650 | wake_up_all(&server->response_q); |
Steve French | e691b9d | 2008-05-11 15:53:33 +0000 | [diff] [blame] | 651 | |
Steve French | 31ca3bc | 2005-04-28 22:41:11 -0700 | [diff] [blame] | 652 | /* check if we have blocked requests that need to free */ |
| 653 | /* Note that cifs_max_pending is normally 50, but |
| 654 | can be set at module install time to as little as two */ |
Steve French | e691b9d | 2008-05-11 15:53:33 +0000 | [diff] [blame] | 655 | spin_lock(&GlobalMid_Lock); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 656 | if (atomic_read(&server->inFlight) >= cifs_max_pending) |
Steve French | 31ca3bc | 2005-04-28 22:41:11 -0700 | [diff] [blame] | 657 | atomic_set(&server->inFlight, cifs_max_pending - 1); |
| 658 | /* We do not want to set the max_pending too low or we |
| 659 | could end up with the counter going negative */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | spin_unlock(&GlobalMid_Lock); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 661 | /* Although there should not be any requests blocked on |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | this queue it can not hurt to be paranoid and try to wake up requests |
Steve French | 09d1db5 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 663 | that may haven been blocked when more than 50 at time were on the wire |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 664 | to the same server - they now will see the session is in exit state |
| 665 | and get out of SendReceive. */ |
| 666 | wake_up_all(&server->request_q); |
| 667 | /* give those requests time to exit */ |
Steve French | b8643e1 | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 668 | msleep(125); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 669 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 670 | if (server->ssocket) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 671 | sock_release(csocket); |
| 672 | server->ssocket = NULL; |
| 673 | } |
Steve French | b8643e1 | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 674 | /* buffer usuallly freed in free_mid - need to free it here on exit */ |
Mariusz Kozlowski | a8a11d3 | 2007-10-03 16:41:24 +0000 | [diff] [blame] | 675 | cifs_buf_release(bigbuf); |
| 676 | if (smallbuf) /* no sense logging a debug message if NULL */ |
Steve French | b8643e1 | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 677 | cifs_small_buf_release(smallbuf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 679 | /* |
| 680 | * BB: we shouldn't have to do any of this. It shouldn't be |
| 681 | * possible to exit from the thread with active SMB sessions |
| 682 | */ |
| 683 | read_lock(&cifs_tcp_ses_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | if (list_empty(&server->pending_mid_q)) { |
Steve French | 09d1db5 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 685 | /* loop through server session structures attached to this and |
| 686 | mark them dead */ |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 687 | list_for_each(tmp, &server->smb_ses_list) { |
| 688 | ses = list_entry(tmp, struct cifsSesInfo, |
| 689 | smb_ses_list); |
| 690 | ses->status = CifsExiting; |
| 691 | ses->server = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 692 | } |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 693 | read_unlock(&cifs_tcp_ses_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | } else { |
Steve French | 31ca3bc | 2005-04-28 22:41:11 -0700 | [diff] [blame] | 695 | /* although we can not zero the server struct pointer yet, |
| 696 | since there are active requests which may depnd on them, |
| 697 | mark the corresponding SMB sessions as exiting too */ |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 698 | list_for_each(tmp, &server->smb_ses_list) { |
Steve French | 31ca3bc | 2005-04-28 22:41:11 -0700 | [diff] [blame] | 699 | ses = list_entry(tmp, struct cifsSesInfo, |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 700 | smb_ses_list); |
| 701 | ses->status = CifsExiting; |
Steve French | 31ca3bc | 2005-04-28 22:41:11 -0700 | [diff] [blame] | 702 | } |
| 703 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 704 | spin_lock(&GlobalMid_Lock); |
| 705 | list_for_each(tmp, &server->pending_mid_q) { |
| 706 | mid_entry = list_entry(tmp, struct mid_q_entry, qhead); |
| 707 | if (mid_entry->midState == MID_REQUEST_SUBMITTED) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 708 | cFYI(1, ("Clearing Mid 0x%x - waking up ", |
| 709 | mid_entry->mid)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | task_to_wake = mid_entry->tsk; |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 711 | if (task_to_wake) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 712 | wake_up_process(task_to_wake); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | } |
| 714 | } |
| 715 | spin_unlock(&GlobalMid_Lock); |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 716 | read_unlock(&cifs_tcp_ses_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 717 | /* 1/8th of sec is more than enough time for them to exit */ |
Steve French | b8643e1 | 2005-04-28 22:41:07 -0700 | [diff] [blame] | 718 | msleep(125); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | } |
| 720 | |
Steve French | f191401 | 2005-08-18 09:37:34 -0700 | [diff] [blame] | 721 | if (!list_empty(&server->pending_mid_q)) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 722 | /* mpx threads have not exited yet give them |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 723 | at least the smb send timeout time for long ops */ |
Steve French | 31ca3bc | 2005-04-28 22:41:11 -0700 | [diff] [blame] | 724 | /* due to delays on oplock break requests, we need |
| 725 | to wait at least 45 seconds before giving up |
| 726 | on a request getting a response and going ahead |
| 727 | and killing cifsd */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 728 | cFYI(1, ("Wait for exit from demultiplex thread")); |
Steve French | 31ca3bc | 2005-04-28 22:41:11 -0700 | [diff] [blame] | 729 | msleep(46000); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 730 | /* if threads still have not exited they are probably never |
| 731 | coming home not much else we can do but free the memory */ |
| 732 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | |
Steve French | 31ca3bc | 2005-04-28 22:41:11 -0700 | [diff] [blame] | 734 | /* last chance to mark ses pointers invalid |
| 735 | if there are any pointing to this (e.g |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 736 | if a crazy root user tried to kill cifsd |
Steve French | 31ca3bc | 2005-04-28 22:41:11 -0700 | [diff] [blame] | 737 | kernel thread explicitly this might happen) */ |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 738 | /* BB: This shouldn't be necessary, see above */ |
| 739 | read_lock(&cifs_tcp_ses_lock); |
| 740 | list_for_each(tmp, &server->smb_ses_list) { |
| 741 | ses = list_entry(tmp, struct cifsSesInfo, smb_ses_list); |
| 742 | ses->server = NULL; |
Steve French | 31ca3bc | 2005-04-28 22:41:11 -0700 | [diff] [blame] | 743 | } |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 744 | read_unlock(&cifs_tcp_ses_lock); |
Steve French | 31ca3bc | 2005-04-28 22:41:11 -0700 | [diff] [blame] | 745 | |
Jeff Layton | c359cf3 | 2007-11-16 22:22:06 +0000 | [diff] [blame] | 746 | kfree(server->hostname); |
Jeff Layton | b1c8d2b | 2008-10-22 13:57:07 -0400 | [diff] [blame] | 747 | task_to_wake = xchg(&server->tsk, NULL); |
Steve French | 31ca3bc | 2005-04-28 22:41:11 -0700 | [diff] [blame] | 748 | kfree(server); |
Jeff Layton | 93d0ec8 | 2008-08-02 08:00:48 -0400 | [diff] [blame] | 749 | |
| 750 | length = atomic_dec_return(&tcpSesAllocCount); |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 751 | if (length > 0) |
| 752 | mempool_resize(cifs_req_poolp, length + cifs_min_rcv, |
| 753 | GFP_KERNEL); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 754 | |
Jeff Layton | b1c8d2b | 2008-10-22 13:57:07 -0400 | [diff] [blame] | 755 | /* if server->tsk was NULL then wait for a signal before exiting */ |
| 756 | if (!task_to_wake) { |
| 757 | set_current_state(TASK_INTERRUPTIBLE); |
| 758 | while (!signal_pending(current)) { |
| 759 | schedule(); |
| 760 | set_current_state(TASK_INTERRUPTIBLE); |
| 761 | } |
| 762 | set_current_state(TASK_RUNNING); |
| 763 | } |
| 764 | |
Jeff Layton | 0468a2c | 2008-12-01 07:09:35 -0500 | [diff] [blame] | 765 | module_put_and_exit(0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 766 | } |
| 767 | |
Jeff Layton | c359cf3 | 2007-11-16 22:22:06 +0000 | [diff] [blame] | 768 | /* extract the host portion of the UNC string */ |
| 769 | static char * |
| 770 | extract_hostname(const char *unc) |
| 771 | { |
| 772 | const char *src; |
| 773 | char *dst, *delim; |
| 774 | unsigned int len; |
| 775 | |
| 776 | /* skip double chars at beginning of string */ |
| 777 | /* BB: check validity of these bytes? */ |
| 778 | src = unc + 2; |
| 779 | |
| 780 | /* delimiter between hostname and sharename is always '\\' now */ |
| 781 | delim = strchr(src, '\\'); |
| 782 | if (!delim) |
| 783 | return ERR_PTR(-EINVAL); |
| 784 | |
| 785 | len = delim - src; |
| 786 | dst = kmalloc((len + 1), GFP_KERNEL); |
| 787 | if (dst == NULL) |
| 788 | return ERR_PTR(-ENOMEM); |
| 789 | |
| 790 | memcpy(dst, src, len); |
| 791 | dst[len] = '\0'; |
| 792 | |
| 793 | return dst; |
| 794 | } |
| 795 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 796 | static int |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 797 | cifs_parse_mount_options(char *options, const char *devname, |
| 798 | struct smb_vol *vol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 799 | { |
| 800 | char *value; |
| 801 | char *data; |
| 802 | unsigned int temp_len, i, j; |
| 803 | char separator[2]; |
| 804 | |
| 805 | separator[0] = ','; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 806 | separator[1] = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 807 | |
Linus Torvalds | 12e36b2 | 2006-10-13 08:09:29 -0700 | [diff] [blame] | 808 | if (Local_System_Name[0] != 0) |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 809 | memcpy(vol->source_rfc1001_name, Local_System_Name, 15); |
Steve French | 2cd646a | 2006-09-28 19:43:08 +0000 | [diff] [blame] | 810 | else { |
Linus Torvalds | 12e36b2 | 2006-10-13 08:09:29 -0700 | [diff] [blame] | 811 | char *nodename = utsname()->nodename; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 812 | int n = strnlen(nodename, 15); |
| 813 | memset(vol->source_rfc1001_name, 0x20, 15); |
| 814 | for (i = 0; i < n; i++) { |
Steve French | 2cd646a | 2006-09-28 19:43:08 +0000 | [diff] [blame] | 815 | /* does not have to be perfect mapping since field is |
| 816 | informational, only used for servers that do not support |
| 817 | port 445 and it can be overridden at mount time */ |
Linus Torvalds | 12e36b2 | 2006-10-13 08:09:29 -0700 | [diff] [blame] | 818 | vol->source_rfc1001_name[i] = toupper(nodename[i]); |
Steve French | 2cd646a | 2006-09-28 19:43:08 +0000 | [diff] [blame] | 819 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 820 | } |
| 821 | vol->source_rfc1001_name[15] = 0; |
Steve French | a10faeb2 | 2005-08-22 21:38:31 -0700 | [diff] [blame] | 822 | /* null target name indicates to use *SMBSERVR default called name |
| 823 | if we end up sending RFC1001 session initialize */ |
| 824 | vol->target_rfc1001_name[0] = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 825 | vol->linux_uid = current->uid; /* current->euid instead? */ |
| 826 | vol->linux_gid = current->gid; |
| 827 | vol->dir_mode = S_IRWXUGO; |
| 828 | /* 2767 perms indicate mandatory locking support */ |
Steve French | 7505e05 | 2007-11-01 18:03:01 +0000 | [diff] [blame] | 829 | vol->file_mode = (S_IRWXUGO | S_ISGID) & (~S_IXGRP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | |
| 831 | /* vol->retry default is 0 (i.e. "soft" limited retry not hard retry) */ |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 832 | vol->rw = true; |
Jeremy Allison | ac67055 | 2005-06-22 17:26:35 -0700 | [diff] [blame] | 833 | /* default is always to request posix paths. */ |
| 834 | vol->posix_paths = 1; |
| 835 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 836 | if (!options) |
| 837 | return 1; |
| 838 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 839 | if (strncmp(options, "sep=", 4) == 0) { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 840 | if (options[4] != 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 841 | separator[0] = options[4]; |
| 842 | options += 5; |
| 843 | } else { |
Steve French | 467a8f8 | 2007-06-27 22:41:32 +0000 | [diff] [blame] | 844 | cFYI(1, ("Null separator not allowed")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 845 | } |
| 846 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 847 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 848 | while ((data = strsep(&options, separator)) != NULL) { |
| 849 | if (!*data) |
| 850 | continue; |
| 851 | if ((value = strchr(data, '=')) != NULL) |
| 852 | *value++ = '\0'; |
| 853 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 854 | /* Have to parse this before we parse for "user" */ |
| 855 | if (strnicmp(data, "user_xattr", 10) == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 856 | vol->no_xattr = 0; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 857 | } else if (strnicmp(data, "nouser_xattr", 12) == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 858 | vol->no_xattr = 1; |
| 859 | } else if (strnicmp(data, "user", 4) == 0) { |
Steve French | 4b952a9 | 2006-10-30 21:46:13 +0000 | [diff] [blame] | 860 | if (!value) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 861 | printk(KERN_WARNING |
| 862 | "CIFS: invalid or missing username\n"); |
| 863 | return 1; /* needs_arg; */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 864 | } else if (!*value) { |
Steve French | 4b952a9 | 2006-10-30 21:46:13 +0000 | [diff] [blame] | 865 | /* null user, ie anonymous, authentication */ |
| 866 | vol->nullauth = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 867 | } |
| 868 | if (strnlen(value, 200) < 200) { |
| 869 | vol->username = value; |
| 870 | } else { |
| 871 | printk(KERN_WARNING "CIFS: username too long\n"); |
| 872 | return 1; |
| 873 | } |
| 874 | } else if (strnicmp(data, "pass", 4) == 0) { |
| 875 | if (!value) { |
| 876 | vol->password = NULL; |
| 877 | continue; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 878 | } else if (value[0] == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 879 | /* check if string begins with double comma |
| 880 | since that would mean the password really |
| 881 | does start with a comma, and would not |
| 882 | indicate an empty string */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 883 | if (value[1] != separator[0]) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 884 | vol->password = NULL; |
| 885 | continue; |
| 886 | } |
| 887 | } |
| 888 | temp_len = strlen(value); |
| 889 | /* removed password length check, NTLM passwords |
| 890 | can be arbitrarily long */ |
| 891 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 892 | /* if comma in password, the string will be |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 893 | prematurely null terminated. Commas in password are |
| 894 | specified across the cifs mount interface by a double |
| 895 | comma ie ,, and a comma used as in other cases ie ',' |
| 896 | as a parameter delimiter/separator is single and due |
| 897 | to the strsep above is temporarily zeroed. */ |
| 898 | |
| 899 | /* NB: password legally can have multiple commas and |
| 900 | the only illegal character in a password is null */ |
| 901 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 902 | if ((value[temp_len] == 0) && |
Steve French | 09d1db5 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 903 | (value[temp_len+1] == separator[0])) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 904 | /* reinsert comma */ |
| 905 | value[temp_len] = separator[0]; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 906 | temp_len += 2; /* move after second comma */ |
| 907 | while (value[temp_len] != 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | if (value[temp_len] == separator[0]) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 909 | if (value[temp_len+1] == |
Steve French | 09d1db5 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 910 | separator[0]) { |
| 911 | /* skip second comma */ |
| 912 | temp_len++; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 913 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 914 | /* single comma indicating start |
| 915 | of next parm */ |
| 916 | break; |
| 917 | } |
| 918 | } |
| 919 | temp_len++; |
| 920 | } |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 921 | if (value[temp_len] == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 922 | options = NULL; |
| 923 | } else { |
| 924 | value[temp_len] = 0; |
| 925 | /* point option to start of next parm */ |
| 926 | options = value + temp_len + 1; |
| 927 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 928 | /* go from value to value + temp_len condensing |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 929 | double commas to singles. Note that this ends up |
| 930 | allocating a few bytes too many, which is ok */ |
Pekka Enberg | e915fc4 | 2005-09-06 15:18:35 -0700 | [diff] [blame] | 931 | vol->password = kzalloc(temp_len, GFP_KERNEL); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 932 | if (vol->password == NULL) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 933 | printk(KERN_WARNING "CIFS: no memory " |
| 934 | "for password\n"); |
Steve French | 433dc24 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 935 | return 1; |
| 936 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 937 | for (i = 0, j = 0; i < temp_len; i++, j++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 938 | vol->password[j] = value[i]; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 939 | if (value[i] == separator[0] |
Steve French | 09d1db5 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 940 | && value[i+1] == separator[0]) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 941 | /* skip second comma */ |
| 942 | i++; |
| 943 | } |
| 944 | } |
| 945 | vol->password[j] = 0; |
| 946 | } else { |
Pekka Enberg | e915fc4 | 2005-09-06 15:18:35 -0700 | [diff] [blame] | 947 | vol->password = kzalloc(temp_len+1, GFP_KERNEL); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 948 | if (vol->password == NULL) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 949 | printk(KERN_WARNING "CIFS: no memory " |
| 950 | "for password\n"); |
Steve French | 433dc24 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 951 | return 1; |
| 952 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 953 | strcpy(vol->password, value); |
| 954 | } |
| 955 | } else if (strnicmp(data, "ip", 2) == 0) { |
| 956 | if (!value || !*value) { |
| 957 | vol->UNCip = NULL; |
| 958 | } else if (strnlen(value, 35) < 35) { |
| 959 | vol->UNCip = value; |
| 960 | } else { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 961 | printk(KERN_WARNING "CIFS: ip address " |
| 962 | "too long\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 963 | return 1; |
| 964 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 965 | } else if (strnicmp(data, "sec", 3) == 0) { |
| 966 | if (!value || !*value) { |
| 967 | cERROR(1, ("no security value specified")); |
| 968 | continue; |
| 969 | } else if (strnicmp(value, "krb5i", 5) == 0) { |
| 970 | vol->secFlg |= CIFSSEC_MAY_KRB5 | |
Steve French | 189acaa | 2006-06-23 02:33:48 +0000 | [diff] [blame] | 971 | CIFSSEC_MUST_SIGN; |
Steve French | bf82067 | 2005-12-01 22:32:42 -0800 | [diff] [blame] | 972 | } else if (strnicmp(value, "krb5p", 5) == 0) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 973 | /* vol->secFlg |= CIFSSEC_MUST_SEAL | |
| 974 | CIFSSEC_MAY_KRB5; */ |
| 975 | cERROR(1, ("Krb5 cifs privacy not supported")); |
Steve French | bf82067 | 2005-12-01 22:32:42 -0800 | [diff] [blame] | 976 | return 1; |
| 977 | } else if (strnicmp(value, "krb5", 4) == 0) { |
Steve French | 750d115 | 2006-06-27 06:28:30 +0000 | [diff] [blame] | 978 | vol->secFlg |= CIFSSEC_MAY_KRB5; |
Steve French | bf82067 | 2005-12-01 22:32:42 -0800 | [diff] [blame] | 979 | } else if (strnicmp(value, "ntlmv2i", 7) == 0) { |
Steve French | 750d115 | 2006-06-27 06:28:30 +0000 | [diff] [blame] | 980 | vol->secFlg |= CIFSSEC_MAY_NTLMV2 | |
Steve French | 189acaa | 2006-06-23 02:33:48 +0000 | [diff] [blame] | 981 | CIFSSEC_MUST_SIGN; |
Steve French | bf82067 | 2005-12-01 22:32:42 -0800 | [diff] [blame] | 982 | } else if (strnicmp(value, "ntlmv2", 6) == 0) { |
Steve French | 750d115 | 2006-06-27 06:28:30 +0000 | [diff] [blame] | 983 | vol->secFlg |= CIFSSEC_MAY_NTLMV2; |
Steve French | bf82067 | 2005-12-01 22:32:42 -0800 | [diff] [blame] | 984 | } else if (strnicmp(value, "ntlmi", 5) == 0) { |
Steve French | 750d115 | 2006-06-27 06:28:30 +0000 | [diff] [blame] | 985 | vol->secFlg |= CIFSSEC_MAY_NTLM | |
Steve French | 189acaa | 2006-06-23 02:33:48 +0000 | [diff] [blame] | 986 | CIFSSEC_MUST_SIGN; |
Steve French | bf82067 | 2005-12-01 22:32:42 -0800 | [diff] [blame] | 987 | } else if (strnicmp(value, "ntlm", 4) == 0) { |
| 988 | /* ntlm is default so can be turned off too */ |
Steve French | 750d115 | 2006-06-27 06:28:30 +0000 | [diff] [blame] | 989 | vol->secFlg |= CIFSSEC_MAY_NTLM; |
Steve French | bf82067 | 2005-12-01 22:32:42 -0800 | [diff] [blame] | 990 | } else if (strnicmp(value, "nontlm", 6) == 0) { |
Steve French | 189acaa | 2006-06-23 02:33:48 +0000 | [diff] [blame] | 991 | /* BB is there a better way to do this? */ |
Steve French | 750d115 | 2006-06-27 06:28:30 +0000 | [diff] [blame] | 992 | vol->secFlg |= CIFSSEC_MAY_NTLMV2; |
Steve French | 189acaa | 2006-06-23 02:33:48 +0000 | [diff] [blame] | 993 | #ifdef CONFIG_CIFS_WEAK_PW_HASH |
| 994 | } else if (strnicmp(value, "lanman", 6) == 0) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 995 | vol->secFlg |= CIFSSEC_MAY_LANMAN; |
Steve French | 189acaa | 2006-06-23 02:33:48 +0000 | [diff] [blame] | 996 | #endif |
Steve French | bf82067 | 2005-12-01 22:32:42 -0800 | [diff] [blame] | 997 | } else if (strnicmp(value, "none", 4) == 0) { |
Steve French | 189acaa | 2006-06-23 02:33:48 +0000 | [diff] [blame] | 998 | vol->nullauth = 1; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 999 | } else { |
| 1000 | cERROR(1, ("bad security option: %s", value)); |
| 1001 | return 1; |
| 1002 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1003 | } else if ((strnicmp(data, "unc", 3) == 0) |
| 1004 | || (strnicmp(data, "target", 6) == 0) |
| 1005 | || (strnicmp(data, "path", 4) == 0)) { |
| 1006 | if (!value || !*value) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1007 | printk(KERN_WARNING "CIFS: invalid path to " |
| 1008 | "network resource\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1009 | return 1; /* needs_arg; */ |
| 1010 | } |
| 1011 | if ((temp_len = strnlen(value, 300)) < 300) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1012 | vol->UNC = kmalloc(temp_len+1, GFP_KERNEL); |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 1013 | if (vol->UNC == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1014 | return 1; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1015 | strcpy(vol->UNC, value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1016 | if (strncmp(vol->UNC, "//", 2) == 0) { |
| 1017 | vol->UNC[0] = '\\'; |
| 1018 | vol->UNC[1] = '\\'; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1019 | } else if (strncmp(vol->UNC, "\\\\", 2) != 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1020 | printk(KERN_WARNING |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1021 | "CIFS: UNC Path does not begin " |
| 1022 | "with // or \\\\ \n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1023 | return 1; |
| 1024 | } |
| 1025 | } else { |
| 1026 | printk(KERN_WARNING "CIFS: UNC name too long\n"); |
| 1027 | return 1; |
| 1028 | } |
| 1029 | } else if ((strnicmp(data, "domain", 3) == 0) |
| 1030 | || (strnicmp(data, "workgroup", 5) == 0)) { |
| 1031 | if (!value || !*value) { |
| 1032 | printk(KERN_WARNING "CIFS: invalid domain name\n"); |
| 1033 | return 1; /* needs_arg; */ |
| 1034 | } |
| 1035 | /* BB are there cases in which a comma can be valid in |
| 1036 | a domain name and need special handling? */ |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 1037 | if (strnlen(value, 256) < 256) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1038 | vol->domainname = value; |
| 1039 | cFYI(1, ("Domain name set")); |
| 1040 | } else { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1041 | printk(KERN_WARNING "CIFS: domain name too " |
| 1042 | "long\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1043 | return 1; |
| 1044 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1045 | } else if (strnicmp(data, "prefixpath", 10) == 0) { |
| 1046 | if (!value || !*value) { |
| 1047 | printk(KERN_WARNING |
| 1048 | "CIFS: invalid path prefix\n"); |
| 1049 | return 1; /* needs_argument */ |
| 1050 | } |
| 1051 | if ((temp_len = strnlen(value, 1024)) < 1024) { |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 1052 | if (value[0] != '/') |
Steve French | 2fe87f0 | 2006-09-21 07:02:52 +0000 | [diff] [blame] | 1053 | temp_len++; /* missing leading slash */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1054 | vol->prepath = kmalloc(temp_len+1, GFP_KERNEL); |
| 1055 | if (vol->prepath == NULL) |
| 1056 | return 1; |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 1057 | if (value[0] != '/') { |
Steve French | 2fe87f0 | 2006-09-21 07:02:52 +0000 | [diff] [blame] | 1058 | vol->prepath[0] = '/'; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1059 | strcpy(vol->prepath+1, value); |
Steve French | 2fe87f0 | 2006-09-21 07:02:52 +0000 | [diff] [blame] | 1060 | } else |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1061 | strcpy(vol->prepath, value); |
| 1062 | cFYI(1, ("prefix path %s", vol->prepath)); |
| 1063 | } else { |
| 1064 | printk(KERN_WARNING "CIFS: prefix too long\n"); |
| 1065 | return 1; |
| 1066 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1067 | } else if (strnicmp(data, "iocharset", 9) == 0) { |
| 1068 | if (!value || !*value) { |
Steve French | 63135e0 | 2007-07-17 17:34:02 +0000 | [diff] [blame] | 1069 | printk(KERN_WARNING "CIFS: invalid iocharset " |
| 1070 | "specified\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1071 | return 1; /* needs_arg; */ |
| 1072 | } |
| 1073 | if (strnlen(value, 65) < 65) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1074 | if (strnicmp(value, "default", 7)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1075 | vol->iocharset = value; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1076 | /* if iocharset not set then load_nls_default |
| 1077 | is used by caller */ |
| 1078 | cFYI(1, ("iocharset set to %s", value)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1079 | } else { |
Steve French | 63135e0 | 2007-07-17 17:34:02 +0000 | [diff] [blame] | 1080 | printk(KERN_WARNING "CIFS: iocharset name " |
| 1081 | "too long.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1082 | return 1; |
| 1083 | } |
| 1084 | } else if (strnicmp(data, "uid", 3) == 0) { |
| 1085 | if (value && *value) { |
| 1086 | vol->linux_uid = |
| 1087 | simple_strtoul(value, &value, 0); |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 1088 | vol->override_uid = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1089 | } |
| 1090 | } else if (strnicmp(data, "gid", 3) == 0) { |
| 1091 | if (value && *value) { |
| 1092 | vol->linux_gid = |
| 1093 | simple_strtoul(value, &value, 0); |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 1094 | vol->override_gid = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1095 | } |
| 1096 | } else if (strnicmp(data, "file_mode", 4) == 0) { |
| 1097 | if (value && *value) { |
| 1098 | vol->file_mode = |
| 1099 | simple_strtoul(value, &value, 0); |
| 1100 | } |
| 1101 | } else if (strnicmp(data, "dir_mode", 4) == 0) { |
| 1102 | if (value && *value) { |
| 1103 | vol->dir_mode = |
| 1104 | simple_strtoul(value, &value, 0); |
| 1105 | } |
| 1106 | } else if (strnicmp(data, "dirmode", 4) == 0) { |
| 1107 | if (value && *value) { |
| 1108 | vol->dir_mode = |
| 1109 | simple_strtoul(value, &value, 0); |
| 1110 | } |
| 1111 | } else if (strnicmp(data, "port", 4) == 0) { |
| 1112 | if (value && *value) { |
| 1113 | vol->port = |
| 1114 | simple_strtoul(value, &value, 0); |
| 1115 | } |
| 1116 | } else if (strnicmp(data, "rsize", 5) == 0) { |
| 1117 | if (value && *value) { |
| 1118 | vol->rsize = |
| 1119 | simple_strtoul(value, &value, 0); |
| 1120 | } |
| 1121 | } else if (strnicmp(data, "wsize", 5) == 0) { |
| 1122 | if (value && *value) { |
| 1123 | vol->wsize = |
| 1124 | simple_strtoul(value, &value, 0); |
| 1125 | } |
| 1126 | } else if (strnicmp(data, "sockopt", 5) == 0) { |
| 1127 | if (value && *value) { |
| 1128 | vol->sockopt = |
| 1129 | simple_strtoul(value, &value, 0); |
| 1130 | } |
| 1131 | } else if (strnicmp(data, "netbiosname", 4) == 0) { |
| 1132 | if (!value || !*value || (*value == ' ')) { |
Steve French | 63135e0 | 2007-07-17 17:34:02 +0000 | [diff] [blame] | 1133 | cFYI(1, ("invalid (empty) netbiosname")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1134 | } else { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1135 | memset(vol->source_rfc1001_name, 0x20, 15); |
| 1136 | for (i = 0; i < 15; i++) { |
| 1137 | /* BB are there cases in which a comma can be |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1138 | valid in this workstation netbios name (and need |
| 1139 | special handling)? */ |
| 1140 | |
| 1141 | /* We do not uppercase netbiosname for user */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1142 | if (value[i] == 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1143 | break; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1144 | else |
| 1145 | vol->source_rfc1001_name[i] = |
| 1146 | value[i]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1147 | } |
| 1148 | /* The string has 16th byte zero still from |
| 1149 | set at top of the function */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1150 | if ((i == 15) && (value[i] != 0)) |
| 1151 | printk(KERN_WARNING "CIFS: netbiosname" |
| 1152 | " longer than 15 truncated.\n"); |
Steve French | a10faeb2 | 2005-08-22 21:38:31 -0700 | [diff] [blame] | 1153 | } |
| 1154 | } else if (strnicmp(data, "servern", 7) == 0) { |
| 1155 | /* servernetbiosname specified override *SMBSERVER */ |
| 1156 | if (!value || !*value || (*value == ' ')) { |
Steve French | 467a8f8 | 2007-06-27 22:41:32 +0000 | [diff] [blame] | 1157 | cFYI(1, ("empty server netbiosname specified")); |
Steve French | a10faeb2 | 2005-08-22 21:38:31 -0700 | [diff] [blame] | 1158 | } else { |
| 1159 | /* last byte, type, is 0x20 for servr type */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1160 | memset(vol->target_rfc1001_name, 0x20, 16); |
Steve French | a10faeb2 | 2005-08-22 21:38:31 -0700 | [diff] [blame] | 1161 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1162 | for (i = 0; i < 15; i++) { |
Steve French | a10faeb2 | 2005-08-22 21:38:31 -0700 | [diff] [blame] | 1163 | /* BB are there cases in which a comma can be |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1164 | valid in this workstation netbios name |
| 1165 | (and need special handling)? */ |
Steve French | a10faeb2 | 2005-08-22 21:38:31 -0700 | [diff] [blame] | 1166 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1167 | /* user or mount helper must uppercase |
| 1168 | the netbiosname */ |
| 1169 | if (value[i] == 0) |
Steve French | a10faeb2 | 2005-08-22 21:38:31 -0700 | [diff] [blame] | 1170 | break; |
| 1171 | else |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1172 | vol->target_rfc1001_name[i] = |
| 1173 | value[i]; |
Steve French | a10faeb2 | 2005-08-22 21:38:31 -0700 | [diff] [blame] | 1174 | } |
| 1175 | /* The string has 16th byte zero still from |
| 1176 | set at top of the function */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1177 | if ((i == 15) && (value[i] != 0)) |
| 1178 | printk(KERN_WARNING "CIFS: server net" |
| 1179 | "biosname longer than 15 truncated.\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1180 | } |
| 1181 | } else if (strnicmp(data, "credentials", 4) == 0) { |
| 1182 | /* ignore */ |
| 1183 | } else if (strnicmp(data, "version", 3) == 0) { |
| 1184 | /* ignore */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1185 | } else if (strnicmp(data, "guest", 5) == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1186 | /* ignore */ |
| 1187 | } else if (strnicmp(data, "rw", 2) == 0) { |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 1188 | vol->rw = true; |
Steve French | edf1ae4 | 2008-10-29 00:47:57 +0000 | [diff] [blame] | 1189 | } else if (strnicmp(data, "noblocksend", 11) == 0) { |
| 1190 | vol->noblocksnd = 1; |
| 1191 | } else if (strnicmp(data, "noautotune", 10) == 0) { |
| 1192 | vol->noautotune = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1193 | } else if ((strnicmp(data, "suid", 4) == 0) || |
| 1194 | (strnicmp(data, "nosuid", 6) == 0) || |
| 1195 | (strnicmp(data, "exec", 4) == 0) || |
| 1196 | (strnicmp(data, "noexec", 6) == 0) || |
| 1197 | (strnicmp(data, "nodev", 5) == 0) || |
| 1198 | (strnicmp(data, "noauto", 6) == 0) || |
| 1199 | (strnicmp(data, "dev", 3) == 0)) { |
| 1200 | /* The mount tool or mount.cifs helper (if present) |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1201 | uses these opts to set flags, and the flags are read |
| 1202 | by the kernel vfs layer before we get here (ie |
| 1203 | before read super) so there is no point trying to |
| 1204 | parse these options again and set anything and it |
| 1205 | is ok to just ignore them */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1206 | continue; |
| 1207 | } else if (strnicmp(data, "ro", 2) == 0) { |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 1208 | vol->rw = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1209 | } else if (strnicmp(data, "hard", 4) == 0) { |
| 1210 | vol->retry = 1; |
| 1211 | } else if (strnicmp(data, "soft", 4) == 0) { |
| 1212 | vol->retry = 0; |
| 1213 | } else if (strnicmp(data, "perm", 4) == 0) { |
| 1214 | vol->noperm = 0; |
| 1215 | } else if (strnicmp(data, "noperm", 6) == 0) { |
| 1216 | vol->noperm = 1; |
Steve French | 6a0b482 | 2005-04-28 22:41:05 -0700 | [diff] [blame] | 1217 | } else if (strnicmp(data, "mapchars", 8) == 0) { |
| 1218 | vol->remap = 1; |
| 1219 | } else if (strnicmp(data, "nomapchars", 10) == 0) { |
| 1220 | vol->remap = 0; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1221 | } else if (strnicmp(data, "sfu", 3) == 0) { |
| 1222 | vol->sfu_emul = 1; |
| 1223 | } else if (strnicmp(data, "nosfu", 5) == 0) { |
| 1224 | vol->sfu_emul = 0; |
Steve French | 2c1b861 | 2008-10-16 18:35:21 +0000 | [diff] [blame] | 1225 | } else if (strnicmp(data, "nodfs", 5) == 0) { |
| 1226 | vol->nodfs = 1; |
Jeremy Allison | ac67055 | 2005-06-22 17:26:35 -0700 | [diff] [blame] | 1227 | } else if (strnicmp(data, "posixpaths", 10) == 0) { |
| 1228 | vol->posix_paths = 1; |
| 1229 | } else if (strnicmp(data, "noposixpaths", 12) == 0) { |
| 1230 | vol->posix_paths = 0; |
Steve French | c18c842 | 2007-07-18 23:21:09 +0000 | [diff] [blame] | 1231 | } else if (strnicmp(data, "nounix", 6) == 0) { |
| 1232 | vol->no_linux_ext = 1; |
| 1233 | } else if (strnicmp(data, "nolinux", 7) == 0) { |
| 1234 | vol->no_linux_ext = 1; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1235 | } else if ((strnicmp(data, "nocase", 6) == 0) || |
Steve French | a10faeb2 | 2005-08-22 21:38:31 -0700 | [diff] [blame] | 1236 | (strnicmp(data, "ignorecase", 10) == 0)) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1237 | vol->nocase = 1; |
Steve French | c46fa8a | 2005-08-18 20:49:57 -0700 | [diff] [blame] | 1238 | } else if (strnicmp(data, "brl", 3) == 0) { |
| 1239 | vol->nobrl = 0; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1240 | } else if ((strnicmp(data, "nobrl", 5) == 0) || |
Steve French | 1c95518 | 2005-08-30 20:58:07 -0700 | [diff] [blame] | 1241 | (strnicmp(data, "nolock", 6) == 0)) { |
Steve French | c46fa8a | 2005-08-18 20:49:57 -0700 | [diff] [blame] | 1242 | vol->nobrl = 1; |
Steve French | d3485d3 | 2005-08-19 11:04:29 -0700 | [diff] [blame] | 1243 | /* turn off mandatory locking in mode |
| 1244 | if remote locking is turned off since the |
| 1245 | local vfs will do advisory */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1246 | if (vol->file_mode == |
| 1247 | (S_IALLUGO & ~(S_ISUID | S_IXGRP))) |
Steve French | d3485d3 | 2005-08-19 11:04:29 -0700 | [diff] [blame] | 1248 | vol->file_mode = S_IALLUGO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1249 | } else if (strnicmp(data, "setuids", 7) == 0) { |
| 1250 | vol->setuids = 1; |
| 1251 | } else if (strnicmp(data, "nosetuids", 9) == 0) { |
| 1252 | vol->setuids = 0; |
Jeff Layton | d0a9c07 | 2008-05-12 22:23:49 +0000 | [diff] [blame] | 1253 | } else if (strnicmp(data, "dynperm", 7) == 0) { |
| 1254 | vol->dynperm = true; |
| 1255 | } else if (strnicmp(data, "nodynperm", 9) == 0) { |
| 1256 | vol->dynperm = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1257 | } else if (strnicmp(data, "nohard", 6) == 0) { |
| 1258 | vol->retry = 0; |
| 1259 | } else if (strnicmp(data, "nosoft", 6) == 0) { |
| 1260 | vol->retry = 1; |
| 1261 | } else if (strnicmp(data, "nointr", 6) == 0) { |
| 1262 | vol->intr = 0; |
| 1263 | } else if (strnicmp(data, "intr", 4) == 0) { |
| 1264 | vol->intr = 1; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1265 | } else if (strnicmp(data, "serverino", 7) == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1266 | vol->server_ino = 1; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1267 | } else if (strnicmp(data, "noserverino", 9) == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1268 | vol->server_ino = 0; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1269 | } else if (strnicmp(data, "cifsacl", 7) == 0) { |
Steve French | 0a4b92c | 2006-01-12 15:44:21 -0800 | [diff] [blame] | 1270 | vol->cifs_acl = 1; |
| 1271 | } else if (strnicmp(data, "nocifsacl", 9) == 0) { |
| 1272 | vol->cifs_acl = 0; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1273 | } else if (strnicmp(data, "acl", 3) == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1274 | vol->no_psx_acl = 0; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1275 | } else if (strnicmp(data, "noacl", 5) == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1276 | vol->no_psx_acl = 1; |
Steve French | 84210e9 | 2008-10-23 04:42:37 +0000 | [diff] [blame] | 1277 | #ifdef CONFIG_CIFS_EXPERIMENTAL |
| 1278 | } else if (strnicmp(data, "locallease", 6) == 0) { |
| 1279 | vol->local_lease = 1; |
| 1280 | #endif |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1281 | } else if (strnicmp(data, "sign", 4) == 0) { |
Steve French | 750d115 | 2006-06-27 06:28:30 +0000 | [diff] [blame] | 1282 | vol->secFlg |= CIFSSEC_MUST_SIGN; |
Steve French | 95b1cb9 | 2008-05-15 16:44:38 +0000 | [diff] [blame] | 1283 | } else if (strnicmp(data, "seal", 4) == 0) { |
| 1284 | /* we do not do the following in secFlags because seal |
| 1285 | is a per tree connection (mount) not a per socket |
| 1286 | or per-smb connection option in the protocol */ |
| 1287 | /* vol->secFlg |= CIFSSEC_MUST_SEAL; */ |
| 1288 | vol->seal = 1; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1289 | } else if (strnicmp(data, "direct", 6) == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1290 | vol->direct_io = 1; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1291 | } else if (strnicmp(data, "forcedirectio", 13) == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1292 | vol->direct_io = 1; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1293 | } else if (strnicmp(data, "in6_addr", 8) == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1294 | if (!value || !*value) { |
| 1295 | vol->in6_addr = NULL; |
| 1296 | } else if (strnlen(value, 49) == 48) { |
| 1297 | vol->in6_addr = value; |
| 1298 | } else { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1299 | printk(KERN_WARNING "CIFS: ip v6 address not " |
| 1300 | "48 characters long\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1301 | return 1; |
| 1302 | } |
| 1303 | } else if (strnicmp(data, "noac", 4) == 0) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1304 | printk(KERN_WARNING "CIFS: Mount option noac not " |
| 1305 | "supported. Instead set " |
| 1306 | "/proc/fs/cifs/LookupCacheEnabled to 0\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1307 | } else |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1308 | printk(KERN_WARNING "CIFS: Unknown mount option %s\n", |
| 1309 | data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1310 | } |
| 1311 | if (vol->UNC == NULL) { |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 1312 | if (devname == NULL) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1313 | printk(KERN_WARNING "CIFS: Missing UNC name for mount " |
| 1314 | "target\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1315 | return 1; |
| 1316 | } |
| 1317 | if ((temp_len = strnlen(devname, 300)) < 300) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1318 | vol->UNC = kmalloc(temp_len+1, GFP_KERNEL); |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 1319 | if (vol->UNC == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1320 | return 1; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1321 | strcpy(vol->UNC, devname); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1322 | if (strncmp(vol->UNC, "//", 2) == 0) { |
| 1323 | vol->UNC[0] = '\\'; |
| 1324 | vol->UNC[1] = '\\'; |
| 1325 | } else if (strncmp(vol->UNC, "\\\\", 2) != 0) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1326 | printk(KERN_WARNING "CIFS: UNC Path does not " |
| 1327 | "begin with // or \\\\ \n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1328 | return 1; |
| 1329 | } |
Igor Mammedov | 7c5e628 | 2008-05-08 20:48:42 +0000 | [diff] [blame] | 1330 | value = strpbrk(vol->UNC+2, "/\\"); |
| 1331 | if (value) |
| 1332 | *value = '\\'; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1333 | } else { |
| 1334 | printk(KERN_WARNING "CIFS: UNC name too long\n"); |
| 1335 | return 1; |
| 1336 | } |
| 1337 | } |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1338 | if (vol->UNCip == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1339 | vol->UNCip = &vol->UNC[2]; |
| 1340 | |
| 1341 | return 0; |
| 1342 | } |
| 1343 | |
Jeff Layton | e7ddee9 | 2008-11-14 13:44:38 -0500 | [diff] [blame] | 1344 | static struct TCP_Server_Info * |
| 1345 | cifs_find_tcp_session(struct sockaddr *addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1346 | { |
| 1347 | struct list_head *tmp; |
Jeff Layton | e7ddee9 | 2008-11-14 13:44:38 -0500 | [diff] [blame] | 1348 | struct TCP_Server_Info *server; |
| 1349 | struct sockaddr_in *addr4 = (struct sockaddr_in *) addr; |
| 1350 | struct sockaddr_in6 *addr6 = (struct sockaddr_in6 *) addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1351 | |
Jeff Layton | e7ddee9 | 2008-11-14 13:44:38 -0500 | [diff] [blame] | 1352 | write_lock(&cifs_tcp_ses_lock); |
| 1353 | list_for_each(tmp, &cifs_tcp_ses_list) { |
| 1354 | server = list_entry(tmp, struct TCP_Server_Info, |
| 1355 | tcp_ses_list); |
Jeff Layton | e7ddee9 | 2008-11-14 13:44:38 -0500 | [diff] [blame] | 1356 | /* |
| 1357 | * the demux thread can exit on its own while still in CifsNew |
| 1358 | * so don't accept any sockets in that state. Since the |
| 1359 | * tcpStatus never changes back to CifsNew it's safe to check |
| 1360 | * for this without a lock. |
| 1361 | */ |
| 1362 | if (server->tcpStatus == CifsNew) |
Cyrill Gorcunov | 1b20d67 | 2008-05-09 18:17:21 +0000 | [diff] [blame] | 1363 | continue; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1364 | |
Jeff Layton | e7ddee9 | 2008-11-14 13:44:38 -0500 | [diff] [blame] | 1365 | if (addr->sa_family == AF_INET && |
| 1366 | (addr4->sin_addr.s_addr != |
| 1367 | server->addr.sockAddr.sin_addr.s_addr)) |
| 1368 | continue; |
| 1369 | else if (addr->sa_family == AF_INET6 && |
| 1370 | memcmp(&server->addr.sockAddr6.sin6_addr, |
| 1371 | &addr6->sin6_addr, sizeof(addr6->sin6_addr))) |
| 1372 | continue; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1373 | |
Jeff Layton | e7ddee9 | 2008-11-14 13:44:38 -0500 | [diff] [blame] | 1374 | ++server->srv_count; |
| 1375 | write_unlock(&cifs_tcp_ses_lock); |
Steve French | d82c2df | 2008-11-15 00:07:26 +0000 | [diff] [blame] | 1376 | cFYI(1, ("Existing tcp session with server found")); |
Jeff Layton | e7ddee9 | 2008-11-14 13:44:38 -0500 | [diff] [blame] | 1377 | return server; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1378 | } |
Jeff Layton | e7ddee9 | 2008-11-14 13:44:38 -0500 | [diff] [blame] | 1379 | write_unlock(&cifs_tcp_ses_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1380 | return NULL; |
| 1381 | } |
| 1382 | |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 1383 | static void |
Jeff Layton | e7ddee9 | 2008-11-14 13:44:38 -0500 | [diff] [blame] | 1384 | cifs_put_tcp_session(struct TCP_Server_Info *server) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1385 | { |
Jeff Layton | e7ddee9 | 2008-11-14 13:44:38 -0500 | [diff] [blame] | 1386 | struct task_struct *task; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1387 | |
Jeff Layton | e7ddee9 | 2008-11-14 13:44:38 -0500 | [diff] [blame] | 1388 | write_lock(&cifs_tcp_ses_lock); |
| 1389 | if (--server->srv_count > 0) { |
| 1390 | write_unlock(&cifs_tcp_ses_lock); |
| 1391 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1392 | } |
Steve French | dea570e0 | 2008-05-06 22:05:51 +0000 | [diff] [blame] | 1393 | |
Jeff Layton | e7ddee9 | 2008-11-14 13:44:38 -0500 | [diff] [blame] | 1394 | list_del_init(&server->tcp_ses_list); |
| 1395 | write_unlock(&cifs_tcp_ses_lock); |
| 1396 | |
| 1397 | spin_lock(&GlobalMid_Lock); |
| 1398 | server->tcpStatus = CifsExiting; |
| 1399 | spin_unlock(&GlobalMid_Lock); |
| 1400 | |
| 1401 | task = xchg(&server->tsk, NULL); |
| 1402 | if (task) |
| 1403 | force_sig(SIGKILL, task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1404 | } |
| 1405 | |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 1406 | static struct TCP_Server_Info * |
| 1407 | cifs_get_tcp_session(struct smb_vol *volume_info) |
| 1408 | { |
| 1409 | struct TCP_Server_Info *tcp_ses = NULL; |
| 1410 | struct sockaddr addr; |
| 1411 | struct sockaddr_in *sin_server = (struct sockaddr_in *) &addr; |
| 1412 | struct sockaddr_in6 *sin_server6 = (struct sockaddr_in6 *) &addr; |
| 1413 | int rc; |
| 1414 | |
| 1415 | memset(&addr, 0, sizeof(struct sockaddr)); |
| 1416 | |
| 1417 | if (volume_info->UNCip && volume_info->UNC) { |
| 1418 | rc = cifs_inet_pton(AF_INET, volume_info->UNCip, |
| 1419 | &sin_server->sin_addr.s_addr); |
| 1420 | |
| 1421 | if (rc <= 0) { |
| 1422 | /* not ipv4 address, try ipv6 */ |
| 1423 | rc = cifs_inet_pton(AF_INET6, volume_info->UNCip, |
| 1424 | &sin_server6->sin6_addr.in6_u); |
| 1425 | if (rc > 0) |
| 1426 | addr.sa_family = AF_INET6; |
| 1427 | } else { |
| 1428 | addr.sa_family = AF_INET; |
| 1429 | } |
| 1430 | |
| 1431 | if (rc <= 0) { |
| 1432 | /* we failed translating address */ |
| 1433 | rc = -EINVAL; |
| 1434 | goto out_err; |
| 1435 | } |
| 1436 | |
| 1437 | cFYI(1, ("UNC: %s ip: %s", volume_info->UNC, |
| 1438 | volume_info->UNCip)); |
| 1439 | } else if (volume_info->UNCip) { |
| 1440 | /* BB using ip addr as tcp_ses name to connect to the |
| 1441 | DFS root below */ |
| 1442 | cERROR(1, ("Connecting to DFS root not implemented yet")); |
| 1443 | rc = -EINVAL; |
| 1444 | goto out_err; |
| 1445 | } else /* which tcp_sess DFS root would we conect to */ { |
| 1446 | cERROR(1, |
| 1447 | ("CIFS mount error: No UNC path (e.g. -o " |
| 1448 | "unc=//192.168.1.100/public) specified")); |
| 1449 | rc = -EINVAL; |
| 1450 | goto out_err; |
| 1451 | } |
| 1452 | |
| 1453 | /* see if we already have a matching tcp_ses */ |
| 1454 | tcp_ses = cifs_find_tcp_session(&addr); |
| 1455 | if (tcp_ses) |
| 1456 | return tcp_ses; |
| 1457 | |
| 1458 | tcp_ses = kzalloc(sizeof(struct TCP_Server_Info), GFP_KERNEL); |
| 1459 | if (!tcp_ses) { |
| 1460 | rc = -ENOMEM; |
| 1461 | goto out_err; |
| 1462 | } |
| 1463 | |
| 1464 | tcp_ses->hostname = extract_hostname(volume_info->UNC); |
| 1465 | if (IS_ERR(tcp_ses->hostname)) { |
| 1466 | rc = PTR_ERR(tcp_ses->hostname); |
| 1467 | goto out_err; |
| 1468 | } |
| 1469 | |
| 1470 | tcp_ses->noblocksnd = volume_info->noblocksnd; |
| 1471 | tcp_ses->noautotune = volume_info->noautotune; |
| 1472 | atomic_set(&tcp_ses->inFlight, 0); |
| 1473 | init_waitqueue_head(&tcp_ses->response_q); |
| 1474 | init_waitqueue_head(&tcp_ses->request_q); |
| 1475 | INIT_LIST_HEAD(&tcp_ses->pending_mid_q); |
| 1476 | mutex_init(&tcp_ses->srv_mutex); |
| 1477 | memcpy(tcp_ses->workstation_RFC1001_name, |
| 1478 | volume_info->source_rfc1001_name, RFC1001_NAME_LEN_WITH_NULL); |
| 1479 | memcpy(tcp_ses->server_RFC1001_name, |
| 1480 | volume_info->target_rfc1001_name, RFC1001_NAME_LEN_WITH_NULL); |
| 1481 | tcp_ses->sequence_number = 0; |
| 1482 | INIT_LIST_HEAD(&tcp_ses->tcp_ses_list); |
| 1483 | INIT_LIST_HEAD(&tcp_ses->smb_ses_list); |
| 1484 | |
| 1485 | /* |
| 1486 | * at this point we are the only ones with the pointer |
| 1487 | * to the struct since the kernel thread not created yet |
| 1488 | * no need to spinlock this init of tcpStatus or srv_count |
| 1489 | */ |
| 1490 | tcp_ses->tcpStatus = CifsNew; |
| 1491 | ++tcp_ses->srv_count; |
| 1492 | |
| 1493 | if (addr.sa_family == AF_INET6) { |
| 1494 | cFYI(1, ("attempting ipv6 connect")); |
| 1495 | /* BB should we allow ipv6 on port 139? */ |
| 1496 | /* other OS never observed in Wild doing 139 with v6 */ |
| 1497 | memcpy(&tcp_ses->addr.sockAddr6, sin_server6, |
| 1498 | sizeof(struct sockaddr_in6)); |
| 1499 | sin_server6->sin6_port = htons(volume_info->port); |
Jeff Layton | d5c5605 | 2008-12-01 18:42:33 -0500 | [diff] [blame^] | 1500 | rc = ipv6_connect(tcp_ses); |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 1501 | } else { |
| 1502 | memcpy(&tcp_ses->addr.sockAddr, sin_server, |
| 1503 | sizeof(struct sockaddr_in)); |
| 1504 | sin_server->sin_port = htons(volume_info->port); |
Jeff Layton | bcf4b10 | 2008-12-01 18:42:15 -0500 | [diff] [blame] | 1505 | rc = ipv4_connect(tcp_ses); |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 1506 | } |
| 1507 | if (rc < 0) { |
| 1508 | cERROR(1, ("Error connecting to socket. Aborting operation")); |
| 1509 | goto out_err; |
| 1510 | } |
| 1511 | |
| 1512 | /* |
| 1513 | * since we're in a cifs function already, we know that |
| 1514 | * this will succeed. No need for try_module_get(). |
| 1515 | */ |
| 1516 | __module_get(THIS_MODULE); |
| 1517 | tcp_ses->tsk = kthread_run((void *)(void *)cifs_demultiplex_thread, |
| 1518 | tcp_ses, "cifsd"); |
| 1519 | if (IS_ERR(tcp_ses->tsk)) { |
| 1520 | rc = PTR_ERR(tcp_ses->tsk); |
| 1521 | cERROR(1, ("error %d create cifsd thread", rc)); |
| 1522 | module_put(THIS_MODULE); |
| 1523 | goto out_err; |
| 1524 | } |
| 1525 | |
| 1526 | /* thread spawned, put it on the list */ |
| 1527 | write_lock(&cifs_tcp_ses_lock); |
| 1528 | list_add(&tcp_ses->tcp_ses_list, &cifs_tcp_ses_list); |
| 1529 | write_unlock(&cifs_tcp_ses_lock); |
| 1530 | |
| 1531 | return tcp_ses; |
| 1532 | |
| 1533 | out_err: |
| 1534 | if (tcp_ses) { |
| 1535 | kfree(tcp_ses->hostname); |
| 1536 | if (tcp_ses->ssocket) |
| 1537 | sock_release(tcp_ses->ssocket); |
| 1538 | kfree(tcp_ses); |
| 1539 | } |
| 1540 | return ERR_PTR(rc); |
| 1541 | } |
| 1542 | |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 1543 | static struct cifsSesInfo * |
| 1544 | cifs_find_smb_ses(struct TCP_Server_Info *server, char *username) |
| 1545 | { |
| 1546 | struct list_head *tmp; |
| 1547 | struct cifsSesInfo *ses; |
| 1548 | |
| 1549 | write_lock(&cifs_tcp_ses_lock); |
| 1550 | list_for_each(tmp, &server->smb_ses_list) { |
| 1551 | ses = list_entry(tmp, struct cifsSesInfo, smb_ses_list); |
| 1552 | if (strncmp(ses->userName, username, MAX_USERNAME_SIZE)) |
| 1553 | continue; |
| 1554 | |
| 1555 | ++ses->ses_count; |
| 1556 | write_unlock(&cifs_tcp_ses_lock); |
| 1557 | return ses; |
| 1558 | } |
| 1559 | write_unlock(&cifs_tcp_ses_lock); |
| 1560 | return NULL; |
| 1561 | } |
| 1562 | |
| 1563 | static void |
| 1564 | cifs_put_smb_ses(struct cifsSesInfo *ses) |
| 1565 | { |
| 1566 | int xid; |
| 1567 | struct TCP_Server_Info *server = ses->server; |
| 1568 | |
| 1569 | write_lock(&cifs_tcp_ses_lock); |
| 1570 | if (--ses->ses_count > 0) { |
| 1571 | write_unlock(&cifs_tcp_ses_lock); |
| 1572 | return; |
| 1573 | } |
| 1574 | |
| 1575 | list_del_init(&ses->smb_ses_list); |
| 1576 | write_unlock(&cifs_tcp_ses_lock); |
| 1577 | |
| 1578 | if (ses->status == CifsGood) { |
| 1579 | xid = GetXid(); |
| 1580 | CIFSSMBLogoff(xid, ses); |
| 1581 | _FreeXid(xid); |
| 1582 | } |
| 1583 | sesInfoFree(ses); |
| 1584 | cifs_put_tcp_session(server); |
| 1585 | } |
| 1586 | |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 1587 | static struct cifsTconInfo * |
| 1588 | cifs_find_tcon(struct cifsSesInfo *ses, const char *unc) |
| 1589 | { |
| 1590 | struct list_head *tmp; |
| 1591 | struct cifsTconInfo *tcon; |
| 1592 | |
| 1593 | write_lock(&cifs_tcp_ses_lock); |
| 1594 | list_for_each(tmp, &ses->tcon_list) { |
| 1595 | tcon = list_entry(tmp, struct cifsTconInfo, tcon_list); |
| 1596 | if (tcon->tidStatus == CifsExiting) |
| 1597 | continue; |
| 1598 | if (strncmp(tcon->treeName, unc, MAX_TREE_SIZE)) |
| 1599 | continue; |
| 1600 | |
| 1601 | ++tcon->tc_count; |
| 1602 | write_unlock(&cifs_tcp_ses_lock); |
| 1603 | return tcon; |
| 1604 | } |
| 1605 | write_unlock(&cifs_tcp_ses_lock); |
| 1606 | return NULL; |
| 1607 | } |
| 1608 | |
| 1609 | static void |
| 1610 | cifs_put_tcon(struct cifsTconInfo *tcon) |
| 1611 | { |
| 1612 | int xid; |
| 1613 | struct cifsSesInfo *ses = tcon->ses; |
| 1614 | |
| 1615 | write_lock(&cifs_tcp_ses_lock); |
| 1616 | if (--tcon->tc_count > 0) { |
| 1617 | write_unlock(&cifs_tcp_ses_lock); |
| 1618 | return; |
| 1619 | } |
| 1620 | |
| 1621 | list_del_init(&tcon->tcon_list); |
| 1622 | write_unlock(&cifs_tcp_ses_lock); |
| 1623 | |
| 1624 | xid = GetXid(); |
| 1625 | CIFSSMBTDis(xid, tcon); |
| 1626 | _FreeXid(xid); |
| 1627 | |
| 1628 | DeleteTconOplockQEntries(tcon); |
| 1629 | tconInfoFree(tcon); |
| 1630 | cifs_put_smb_ses(ses); |
| 1631 | } |
| 1632 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1633 | int |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1634 | get_dfs_path(int xid, struct cifsSesInfo *pSesInfo, const char *old_path, |
| 1635 | const struct nls_table *nls_codepage, unsigned int *pnum_referrals, |
Steve French | 366781c | 2008-01-25 10:12:41 +0000 | [diff] [blame] | 1636 | struct dfs_info3_param **preferrals, int remap) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1637 | { |
| 1638 | char *temp_unc; |
| 1639 | int rc = 0; |
| 1640 | |
| 1641 | *pnum_referrals = 0; |
Steve French | 366781c | 2008-01-25 10:12:41 +0000 | [diff] [blame] | 1642 | *preferrals = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1643 | |
| 1644 | if (pSesInfo->ipc_tid == 0) { |
| 1645 | temp_unc = kmalloc(2 /* for slashes */ + |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1646 | strnlen(pSesInfo->serverName, |
| 1647 | SERVER_NAME_LEN_WITH_NULL * 2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1648 | + 1 + 4 /* slash IPC$ */ + 2, |
| 1649 | GFP_KERNEL); |
| 1650 | if (temp_unc == NULL) |
| 1651 | return -ENOMEM; |
| 1652 | temp_unc[0] = '\\'; |
| 1653 | temp_unc[1] = '\\'; |
| 1654 | strcpy(temp_unc + 2, pSesInfo->serverName); |
| 1655 | strcpy(temp_unc + 2 + strlen(pSesInfo->serverName), "\\IPC$"); |
| 1656 | rc = CIFSTCon(xid, pSesInfo, temp_unc, NULL, nls_codepage); |
| 1657 | cFYI(1, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1658 | ("CIFS Tcon rc = %d ipc_tid = %d", rc, pSesInfo->ipc_tid)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1659 | kfree(temp_unc); |
| 1660 | } |
| 1661 | if (rc == 0) |
Steve French | c2cf07d | 2008-05-15 06:20:02 +0000 | [diff] [blame] | 1662 | rc = CIFSGetDFSRefer(xid, pSesInfo, old_path, preferrals, |
Steve French | 737b758 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 1663 | pnum_referrals, nls_codepage, remap); |
Steve French | 366781c | 2008-01-25 10:12:41 +0000 | [diff] [blame] | 1664 | /* BB map targetUNCs to dfs_info3 structures, here or |
| 1665 | in CIFSGetDFSRefer BB */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1666 | |
| 1667 | return rc; |
| 1668 | } |
| 1669 | |
Jeff Layton | 09e50d5 | 2008-07-23 10:11:19 -0400 | [diff] [blame] | 1670 | #ifdef CONFIG_DEBUG_LOCK_ALLOC |
| 1671 | static struct lock_class_key cifs_key[2]; |
| 1672 | static struct lock_class_key cifs_slock_key[2]; |
| 1673 | |
| 1674 | static inline void |
| 1675 | cifs_reclassify_socket4(struct socket *sock) |
| 1676 | { |
| 1677 | struct sock *sk = sock->sk; |
| 1678 | BUG_ON(sock_owned_by_user(sk)); |
| 1679 | sock_lock_init_class_and_name(sk, "slock-AF_INET-CIFS", |
| 1680 | &cifs_slock_key[0], "sk_lock-AF_INET-CIFS", &cifs_key[0]); |
| 1681 | } |
| 1682 | |
| 1683 | static inline void |
| 1684 | cifs_reclassify_socket6(struct socket *sock) |
| 1685 | { |
| 1686 | struct sock *sk = sock->sk; |
| 1687 | BUG_ON(sock_owned_by_user(sk)); |
| 1688 | sock_lock_init_class_and_name(sk, "slock-AF_INET6-CIFS", |
| 1689 | &cifs_slock_key[1], "sk_lock-AF_INET6-CIFS", &cifs_key[1]); |
| 1690 | } |
| 1691 | #else |
| 1692 | static inline void |
| 1693 | cifs_reclassify_socket4(struct socket *sock) |
| 1694 | { |
| 1695 | } |
| 1696 | |
| 1697 | static inline void |
| 1698 | cifs_reclassify_socket6(struct socket *sock) |
| 1699 | { |
| 1700 | } |
| 1701 | #endif |
| 1702 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1703 | /* See RFC1001 section 14 on representation of Netbios names */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1704 | static void rfc1002mangle(char *target, char *source, unsigned int length) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1705 | { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1706 | unsigned int i, j; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1707 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1708 | for (i = 0, j = 0; i < (length); i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1709 | /* mask a nibble at a time and encode */ |
| 1710 | target[j] = 'A' + (0x0F & (source[i] >> 4)); |
| 1711 | target[j+1] = 'A' + (0x0F & source[i]); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1712 | j += 2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1713 | } |
| 1714 | |
| 1715 | } |
| 1716 | |
| 1717 | |
| 1718 | static int |
Jeff Layton | bcf4b10 | 2008-12-01 18:42:15 -0500 | [diff] [blame] | 1719 | ipv4_connect(struct TCP_Server_Info *server) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1720 | { |
| 1721 | int rc = 0; |
Jeff Layton | bcf4b10 | 2008-12-01 18:42:15 -0500 | [diff] [blame] | 1722 | bool connected = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1723 | __be16 orig_port = 0; |
Jeff Layton | bcf4b10 | 2008-12-01 18:42:15 -0500 | [diff] [blame] | 1724 | struct socket *socket = server->ssocket; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1725 | |
Jeff Layton | bcf4b10 | 2008-12-01 18:42:15 -0500 | [diff] [blame] | 1726 | if (socket == NULL) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1727 | rc = sock_create_kern(PF_INET, SOCK_STREAM, |
Jeff Layton | bcf4b10 | 2008-12-01 18:42:15 -0500 | [diff] [blame] | 1728 | IPPROTO_TCP, &socket); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1729 | if (rc < 0) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1730 | cERROR(1, ("Error %d creating socket", rc)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1731 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1732 | } |
Jeff Layton | bcf4b10 | 2008-12-01 18:42:15 -0500 | [diff] [blame] | 1733 | |
| 1734 | /* BB other socket options to set KEEPALIVE, NODELAY? */ |
| 1735 | cFYI(1, ("Socket created")); |
| 1736 | server->ssocket = socket; |
| 1737 | socket->sk->sk_allocation = GFP_NOFS; |
| 1738 | cifs_reclassify_socket4(socket); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1739 | } |
| 1740 | |
Jeff Layton | bcf4b10 | 2008-12-01 18:42:15 -0500 | [diff] [blame] | 1741 | /* user overrode default port */ |
| 1742 | if (server->addr.sockAddr.sin_port) { |
| 1743 | rc = socket->ops->connect(socket, (struct sockaddr *) |
| 1744 | &server->addr.sockAddr, |
| 1745 | sizeof(struct sockaddr_in), 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1746 | if (rc >= 0) |
Jeff Layton | bcf4b10 | 2008-12-01 18:42:15 -0500 | [diff] [blame] | 1747 | connected = true; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1748 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1749 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1750 | if (!connected) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1751 | /* save original port so we can retry user specified port |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1752 | later if fall back ports fail this time */ |
Jeff Layton | bcf4b10 | 2008-12-01 18:42:15 -0500 | [diff] [blame] | 1753 | orig_port = server->addr.sockAddr.sin_port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1754 | |
| 1755 | /* do not retry on the same port we just failed on */ |
Jeff Layton | bcf4b10 | 2008-12-01 18:42:15 -0500 | [diff] [blame] | 1756 | if (server->addr.sockAddr.sin_port != htons(CIFS_PORT)) { |
| 1757 | server->addr.sockAddr.sin_port = htons(CIFS_PORT); |
| 1758 | rc = socket->ops->connect(socket, |
| 1759 | (struct sockaddr *) |
| 1760 | &server->addr.sockAddr, |
| 1761 | sizeof(struct sockaddr_in), 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1762 | if (rc >= 0) |
Jeff Layton | bcf4b10 | 2008-12-01 18:42:15 -0500 | [diff] [blame] | 1763 | connected = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1764 | } |
| 1765 | } |
| 1766 | if (!connected) { |
Jeff Layton | bcf4b10 | 2008-12-01 18:42:15 -0500 | [diff] [blame] | 1767 | server->addr.sockAddr.sin_port = htons(RFC1001_PORT); |
| 1768 | rc = socket->ops->connect(socket, (struct sockaddr *) |
| 1769 | &server->addr.sockAddr, |
Cyrill Gorcunov | 6345a3a | 2007-10-16 17:57:55 +0000 | [diff] [blame] | 1770 | sizeof(struct sockaddr_in), 0); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1771 | if (rc >= 0) |
Jeff Layton | bcf4b10 | 2008-12-01 18:42:15 -0500 | [diff] [blame] | 1772 | connected = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1773 | } |
| 1774 | |
| 1775 | /* give up here - unless we want to retry on different |
| 1776 | protocol families some day */ |
| 1777 | if (!connected) { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1778 | if (orig_port) |
Jeff Layton | bcf4b10 | 2008-12-01 18:42:15 -0500 | [diff] [blame] | 1779 | server->addr.sockAddr.sin_port = orig_port; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1780 | cFYI(1, ("Error %d connecting to server via ipv4", rc)); |
Jeff Layton | bcf4b10 | 2008-12-01 18:42:15 -0500 | [diff] [blame] | 1781 | sock_release(socket); |
| 1782 | server->ssocket = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1783 | return rc; |
| 1784 | } |
Jeff Layton | bcf4b10 | 2008-12-01 18:42:15 -0500 | [diff] [blame] | 1785 | |
| 1786 | |
| 1787 | /* |
| 1788 | * Eventually check for other socket options to change from |
| 1789 | * the default. sock_setsockopt not used because it expects |
| 1790 | * user space buffer |
| 1791 | */ |
| 1792 | socket->sk->sk_rcvtimeo = 7 * HZ; |
| 1793 | socket->sk->sk_sndtimeo = 3 * HZ; |
Steve French | edf1ae4 | 2008-10-29 00:47:57 +0000 | [diff] [blame] | 1794 | |
Steve French | b387eae | 2005-10-10 14:21:15 -0700 | [diff] [blame] | 1795 | /* make the bufsizes depend on wsize/rsize and max requests */ |
Jeff Layton | bcf4b10 | 2008-12-01 18:42:15 -0500 | [diff] [blame] | 1796 | if (server->noautotune) { |
| 1797 | if (socket->sk->sk_sndbuf < (200 * 1024)) |
| 1798 | socket->sk->sk_sndbuf = 200 * 1024; |
| 1799 | if (socket->sk->sk_rcvbuf < (140 * 1024)) |
| 1800 | socket->sk->sk_rcvbuf = 140 * 1024; |
Steve French | edf1ae4 | 2008-10-29 00:47:57 +0000 | [diff] [blame] | 1801 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1802 | |
Jeff Layton | bcf4b10 | 2008-12-01 18:42:15 -0500 | [diff] [blame] | 1803 | cFYI(1, ("sndbuf %d rcvbuf %d rcvtimeo 0x%lx", |
| 1804 | socket->sk->sk_sndbuf, |
| 1805 | socket->sk->sk_rcvbuf, socket->sk->sk_rcvtimeo)); |
| 1806 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1807 | /* send RFC1001 sessinit */ |
Jeff Layton | bcf4b10 | 2008-12-01 18:42:15 -0500 | [diff] [blame] | 1808 | if (server->addr.sockAddr.sin_port == htons(RFC1001_PORT)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1809 | /* some servers require RFC1001 sessinit before sending |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1810 | negprot - BB check reconnection in case where second |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1811 | sessinit is sent but no second negprot */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1812 | struct rfc1002_session_packet *ses_init_buf; |
| 1813 | struct smb_hdr *smb_buf; |
| 1814 | ses_init_buf = kzalloc(sizeof(struct rfc1002_session_packet), |
| 1815 | GFP_KERNEL); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1816 | if (ses_init_buf) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1817 | ses_init_buf->trailer.session_req.called_len = 32; |
Jeff Layton | bcf4b10 | 2008-12-01 18:42:15 -0500 | [diff] [blame] | 1818 | if (server->server_RFC1001_name && |
| 1819 | server->server_RFC1001_name[0] != 0) |
Jeff Layton | 8ecaf67 | 2008-12-01 15:23:50 -0500 | [diff] [blame] | 1820 | rfc1002mangle(ses_init_buf->trailer. |
| 1821 | session_req.called_name, |
Jeff Layton | bcf4b10 | 2008-12-01 18:42:15 -0500 | [diff] [blame] | 1822 | server->server_RFC1001_name, |
Jeff Layton | 8ecaf67 | 2008-12-01 15:23:50 -0500 | [diff] [blame] | 1823 | RFC1001_NAME_LEN_WITH_NULL); |
Jeff Layton | bcf4b10 | 2008-12-01 18:42:15 -0500 | [diff] [blame] | 1824 | else |
Jeff Layton | 8ecaf67 | 2008-12-01 15:23:50 -0500 | [diff] [blame] | 1825 | rfc1002mangle(ses_init_buf->trailer. |
| 1826 | session_req.called_name, |
| 1827 | DEFAULT_CIFS_CALLED_NAME, |
| 1828 | RFC1001_NAME_LEN_WITH_NULL); |
Steve French | a10faeb2 | 2005-08-22 21:38:31 -0700 | [diff] [blame] | 1829 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1830 | ses_init_buf->trailer.session_req.calling_len = 32; |
Jeff Layton | bcf4b10 | 2008-12-01 18:42:15 -0500 | [diff] [blame] | 1831 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1832 | /* calling name ends in null (byte 16) from old smb |
| 1833 | convention. */ |
Jeff Layton | bcf4b10 | 2008-12-01 18:42:15 -0500 | [diff] [blame] | 1834 | if (server->workstation_RFC1001_name && |
| 1835 | server->workstation_RFC1001_name[0] != 0) |
Jeff Layton | 8ecaf67 | 2008-12-01 15:23:50 -0500 | [diff] [blame] | 1836 | rfc1002mangle(ses_init_buf->trailer. |
| 1837 | session_req.calling_name, |
Jeff Layton | bcf4b10 | 2008-12-01 18:42:15 -0500 | [diff] [blame] | 1838 | server->workstation_RFC1001_name, |
Jeff Layton | 8ecaf67 | 2008-12-01 15:23:50 -0500 | [diff] [blame] | 1839 | RFC1001_NAME_LEN_WITH_NULL); |
Jeff Layton | bcf4b10 | 2008-12-01 18:42:15 -0500 | [diff] [blame] | 1840 | else |
Jeff Layton | 8ecaf67 | 2008-12-01 15:23:50 -0500 | [diff] [blame] | 1841 | rfc1002mangle(ses_init_buf->trailer. |
| 1842 | session_req.calling_name, |
| 1843 | "LINUX_CIFS_CLNT", |
| 1844 | RFC1001_NAME_LEN_WITH_NULL); |
Jeff Layton | bcf4b10 | 2008-12-01 18:42:15 -0500 | [diff] [blame] | 1845 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1846 | ses_init_buf->trailer.session_req.scope1 = 0; |
| 1847 | ses_init_buf->trailer.session_req.scope2 = 0; |
| 1848 | smb_buf = (struct smb_hdr *)ses_init_buf; |
| 1849 | /* sizeof RFC1002_SESSION_REQUEST with no scope */ |
| 1850 | smb_buf->smb_buf_length = 0x81000044; |
Jeff Layton | bcf4b10 | 2008-12-01 18:42:15 -0500 | [diff] [blame] | 1851 | rc = smb_send(socket, smb_buf, 0x44, |
| 1852 | (struct sockaddr *) &server->addr.sockAddr, |
| 1853 | server->noblocksnd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1854 | kfree(ses_init_buf); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1855 | msleep(1); /* RFC1001 layer in at least one server |
Steve French | 083d3a2 | 2006-03-03 09:53:36 +0000 | [diff] [blame] | 1856 | requires very short break before negprot |
| 1857 | presumably because not expecting negprot |
| 1858 | to follow so fast. This is a simple |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1859 | solution that works without |
Steve French | 083d3a2 | 2006-03-03 09:53:36 +0000 | [diff] [blame] | 1860 | complicating the code and causes no |
| 1861 | significant slowing down on mount |
| 1862 | for everyone else */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1863 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1864 | /* else the negprot may still work without this |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1865 | even though malloc failed */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1866 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1867 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1868 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1869 | return rc; |
| 1870 | } |
| 1871 | |
| 1872 | static int |
Jeff Layton | d5c5605 | 2008-12-01 18:42:33 -0500 | [diff] [blame^] | 1873 | ipv6_connect(struct TCP_Server_Info *server) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1874 | { |
| 1875 | int rc = 0; |
Jeff Layton | d5c5605 | 2008-12-01 18:42:33 -0500 | [diff] [blame^] | 1876 | bool connected = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1877 | __be16 orig_port = 0; |
Jeff Layton | d5c5605 | 2008-12-01 18:42:33 -0500 | [diff] [blame^] | 1878 | struct socket *socket = server->ssocket; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1879 | |
Jeff Layton | d5c5605 | 2008-12-01 18:42:33 -0500 | [diff] [blame^] | 1880 | if (socket == NULL) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1881 | rc = sock_create_kern(PF_INET6, SOCK_STREAM, |
Jeff Layton | d5c5605 | 2008-12-01 18:42:33 -0500 | [diff] [blame^] | 1882 | IPPROTO_TCP, &socket); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1883 | if (rc < 0) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1884 | cERROR(1, ("Error %d creating ipv6 socket", rc)); |
Jeff Layton | d5c5605 | 2008-12-01 18:42:33 -0500 | [diff] [blame^] | 1885 | socket = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1886 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1887 | } |
Jeff Layton | d5c5605 | 2008-12-01 18:42:33 -0500 | [diff] [blame^] | 1888 | |
| 1889 | /* BB other socket options to set KEEPALIVE, NODELAY? */ |
| 1890 | cFYI(1, ("ipv6 Socket created")); |
| 1891 | server->ssocket = socket; |
| 1892 | socket->sk->sk_allocation = GFP_NOFS; |
| 1893 | cifs_reclassify_socket6(socket); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1894 | } |
| 1895 | |
Jeff Layton | d5c5605 | 2008-12-01 18:42:33 -0500 | [diff] [blame^] | 1896 | /* user overrode default port */ |
| 1897 | if (server->addr.sockAddr6.sin6_port) { |
| 1898 | rc = socket->ops->connect(socket, |
| 1899 | (struct sockaddr *) &server->addr.sockAddr6, |
Cyrill Gorcunov | 6345a3a | 2007-10-16 17:57:55 +0000 | [diff] [blame] | 1900 | sizeof(struct sockaddr_in6), 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1901 | if (rc >= 0) |
Jeff Layton | d5c5605 | 2008-12-01 18:42:33 -0500 | [diff] [blame^] | 1902 | connected = true; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1903 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1904 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1905 | if (!connected) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1906 | /* save original port so we can retry user specified port |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1907 | later if fall back ports fail this time */ |
| 1908 | |
Jeff Layton | d5c5605 | 2008-12-01 18:42:33 -0500 | [diff] [blame^] | 1909 | orig_port = server->addr.sockAddr6.sin6_port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1910 | /* do not retry on the same port we just failed on */ |
Jeff Layton | d5c5605 | 2008-12-01 18:42:33 -0500 | [diff] [blame^] | 1911 | if (server->addr.sockAddr6.sin6_port != htons(CIFS_PORT)) { |
| 1912 | server->addr.sockAddr6.sin6_port = htons(CIFS_PORT); |
| 1913 | rc = socket->ops->connect(socket, (struct sockaddr *) |
| 1914 | &server->addr.sockAddr6, |
Cyrill Gorcunov | 6345a3a | 2007-10-16 17:57:55 +0000 | [diff] [blame] | 1915 | sizeof(struct sockaddr_in6), 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1916 | if (rc >= 0) |
Jeff Layton | d5c5605 | 2008-12-01 18:42:33 -0500 | [diff] [blame^] | 1917 | connected = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1918 | } |
| 1919 | } |
| 1920 | if (!connected) { |
Jeff Layton | d5c5605 | 2008-12-01 18:42:33 -0500 | [diff] [blame^] | 1921 | server->addr.sockAddr6.sin6_port = htons(RFC1001_PORT); |
| 1922 | rc = socket->ops->connect(socket, (struct sockaddr *) |
| 1923 | &server->addr.sockAddr6, |
| 1924 | sizeof(struct sockaddr_in6), 0); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1925 | if (rc >= 0) |
Jeff Layton | d5c5605 | 2008-12-01 18:42:33 -0500 | [diff] [blame^] | 1926 | connected = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1927 | } |
| 1928 | |
| 1929 | /* give up here - unless we want to retry on different |
| 1930 | protocol families some day */ |
| 1931 | if (!connected) { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1932 | if (orig_port) |
Jeff Layton | d5c5605 | 2008-12-01 18:42:33 -0500 | [diff] [blame^] | 1933 | server->addr.sockAddr6.sin6_port = orig_port; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1934 | cFYI(1, ("Error %d connecting to server via ipv6", rc)); |
Jeff Layton | d5c5605 | 2008-12-01 18:42:33 -0500 | [diff] [blame^] | 1935 | sock_release(socket); |
| 1936 | server->ssocket = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1937 | return rc; |
| 1938 | } |
Steve French | edf1ae4 | 2008-10-29 00:47:57 +0000 | [diff] [blame] | 1939 | |
Jeff Layton | d5c5605 | 2008-12-01 18:42:33 -0500 | [diff] [blame^] | 1940 | /* |
| 1941 | * Eventually check for other socket options to change from |
| 1942 | * the default. sock_setsockopt not used because it expects |
| 1943 | * user space buffer |
| 1944 | */ |
| 1945 | socket->sk->sk_rcvtimeo = 7 * HZ; |
| 1946 | socket->sk->sk_sndtimeo = 3 * HZ; |
| 1947 | server->ssocket = socket; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1948 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1949 | return rc; |
| 1950 | } |
| 1951 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1952 | void reset_cifs_unix_caps(int xid, struct cifsTconInfo *tcon, |
| 1953 | struct super_block *sb, struct smb_vol *vol_info) |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 1954 | { |
| 1955 | /* if we are reconnecting then should we check to see if |
| 1956 | * any requested capabilities changed locally e.g. via |
| 1957 | * remount but we can not do much about it here |
| 1958 | * if they have (even if we could detect it by the following) |
| 1959 | * Perhaps we could add a backpointer to array of sb from tcon |
| 1960 | * or if we change to make all sb to same share the same |
| 1961 | * sb as NFS - then we only have one backpointer to sb. |
| 1962 | * What if we wanted to mount the server share twice once with |
| 1963 | * and once without posixacls or posix paths? */ |
| 1964 | __u64 saved_cap = le64_to_cpu(tcon->fsUnixInfo.Capability); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1965 | |
Steve French | c18c842 | 2007-07-18 23:21:09 +0000 | [diff] [blame] | 1966 | if (vol_info && vol_info->no_linux_ext) { |
| 1967 | tcon->fsUnixInfo.Capability = 0; |
| 1968 | tcon->unix_ext = 0; /* Unix Extensions disabled */ |
| 1969 | cFYI(1, ("Linux protocol extensions disabled")); |
| 1970 | return; |
| 1971 | } else if (vol_info) |
| 1972 | tcon->unix_ext = 1; /* Unix Extensions supported */ |
| 1973 | |
| 1974 | if (tcon->unix_ext == 0) { |
| 1975 | cFYI(1, ("Unix extensions disabled so not set on reconnect")); |
| 1976 | return; |
| 1977 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1978 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1979 | if (!CIFSSMBQFSUnixInfo(xid, tcon)) { |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 1980 | __u64 cap = le64_to_cpu(tcon->fsUnixInfo.Capability); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1981 | |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 1982 | /* check for reconnect case in which we do not |
| 1983 | want to change the mount behavior if we can avoid it */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 1984 | if (vol_info == NULL) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1985 | /* turn off POSIX ACL and PATHNAMES if not set |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 1986 | originally at mount time */ |
| 1987 | if ((saved_cap & CIFS_UNIX_POSIX_ACL_CAP) == 0) |
| 1988 | cap &= ~CIFS_UNIX_POSIX_ACL_CAP; |
Igor Mammedov | 11b6d64 | 2008-02-15 19:06:04 +0000 | [diff] [blame] | 1989 | if ((saved_cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) == 0) { |
| 1990 | if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) |
| 1991 | cERROR(1, ("POSIXPATH support change")); |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 1992 | cap &= ~CIFS_UNIX_POSIX_PATHNAMES_CAP; |
Igor Mammedov | 11b6d64 | 2008-02-15 19:06:04 +0000 | [diff] [blame] | 1993 | } else if ((cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) == 0) { |
| 1994 | cERROR(1, ("possible reconnect error")); |
| 1995 | cERROR(1, |
| 1996 | ("server disabled POSIX path support")); |
| 1997 | } |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 1998 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 1999 | |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 2000 | cap &= CIFS_UNIX_CAP_MASK; |
Steve French | 75865f8 | 2007-06-24 18:30:48 +0000 | [diff] [blame] | 2001 | if (vol_info && vol_info->no_psx_acl) |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 2002 | cap &= ~CIFS_UNIX_POSIX_ACL_CAP; |
Steve French | 75865f8 | 2007-06-24 18:30:48 +0000 | [diff] [blame] | 2003 | else if (CIFS_UNIX_POSIX_ACL_CAP & cap) { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2004 | cFYI(1, ("negotiated posix acl support")); |
| 2005 | if (sb) |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 2006 | sb->s_flags |= MS_POSIXACL; |
| 2007 | } |
| 2008 | |
Steve French | 75865f8 | 2007-06-24 18:30:48 +0000 | [diff] [blame] | 2009 | if (vol_info && vol_info->posix_paths == 0) |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 2010 | cap &= ~CIFS_UNIX_POSIX_PATHNAMES_CAP; |
Steve French | 75865f8 | 2007-06-24 18:30:48 +0000 | [diff] [blame] | 2011 | else if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2012 | cFYI(1, ("negotiate posix pathnames")); |
Steve French | 75865f8 | 2007-06-24 18:30:48 +0000 | [diff] [blame] | 2013 | if (sb) |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2014 | CIFS_SB(sb)->mnt_cifs_flags |= |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 2015 | CIFS_MOUNT_POSIX_PATHS; |
| 2016 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2017 | |
Steve French | 984acfe | 2007-04-26 16:42:50 +0000 | [diff] [blame] | 2018 | /* We might be setting the path sep back to a different |
| 2019 | form if we are reconnecting and the server switched its |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2020 | posix path capability for this share */ |
Steve French | 75865f8 | 2007-06-24 18:30:48 +0000 | [diff] [blame] | 2021 | if (sb && (CIFS_SB(sb)->prepathlen > 0)) |
Steve French | 984acfe | 2007-04-26 16:42:50 +0000 | [diff] [blame] | 2022 | CIFS_SB(sb)->prepath[0] = CIFS_DIR_SEP(CIFS_SB(sb)); |
Steve French | 75865f8 | 2007-06-24 18:30:48 +0000 | [diff] [blame] | 2023 | |
| 2024 | if (sb && (CIFS_SB(sb)->rsize > 127 * 1024)) { |
| 2025 | if ((cap & CIFS_UNIX_LARGE_READ_CAP) == 0) { |
| 2026 | CIFS_SB(sb)->rsize = 127 * 1024; |
Steve French | 90c81e0 | 2008-02-12 20:32:36 +0000 | [diff] [blame] | 2027 | cFYI(DBG2, |
| 2028 | ("larger reads not supported by srv")); |
Steve French | 75865f8 | 2007-06-24 18:30:48 +0000 | [diff] [blame] | 2029 | } |
| 2030 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2031 | |
| 2032 | |
| 2033 | cFYI(1, ("Negotiate caps 0x%x", (int)cap)); |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 2034 | #ifdef CONFIG_CIFS_DEBUG2 |
Steve French | 75865f8 | 2007-06-24 18:30:48 +0000 | [diff] [blame] | 2035 | if (cap & CIFS_UNIX_FCNTL_CAP) |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2036 | cFYI(1, ("FCNTL cap")); |
Steve French | 75865f8 | 2007-06-24 18:30:48 +0000 | [diff] [blame] | 2037 | if (cap & CIFS_UNIX_EXTATTR_CAP) |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2038 | cFYI(1, ("EXTATTR cap")); |
Steve French | 75865f8 | 2007-06-24 18:30:48 +0000 | [diff] [blame] | 2039 | if (cap & CIFS_UNIX_POSIX_PATHNAMES_CAP) |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2040 | cFYI(1, ("POSIX path cap")); |
Steve French | 75865f8 | 2007-06-24 18:30:48 +0000 | [diff] [blame] | 2041 | if (cap & CIFS_UNIX_XATTR_CAP) |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2042 | cFYI(1, ("XATTR cap")); |
Steve French | 75865f8 | 2007-06-24 18:30:48 +0000 | [diff] [blame] | 2043 | if (cap & CIFS_UNIX_POSIX_ACL_CAP) |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2044 | cFYI(1, ("POSIX ACL cap")); |
Steve French | 75865f8 | 2007-06-24 18:30:48 +0000 | [diff] [blame] | 2045 | if (cap & CIFS_UNIX_LARGE_READ_CAP) |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2046 | cFYI(1, ("very large read cap")); |
Steve French | 75865f8 | 2007-06-24 18:30:48 +0000 | [diff] [blame] | 2047 | if (cap & CIFS_UNIX_LARGE_WRITE_CAP) |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2048 | cFYI(1, ("very large write cap")); |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 2049 | #endif /* CIFS_DEBUG2 */ |
| 2050 | if (CIFSSMBSetFSUnixInfo(xid, tcon, cap)) { |
Steve French | 442aa31 | 2007-09-24 20:25:46 +0000 | [diff] [blame] | 2051 | if (vol_info == NULL) { |
Steve French | 5a44b31 | 2007-09-20 15:16:24 +0000 | [diff] [blame] | 2052 | cFYI(1, ("resetting capabilities failed")); |
Steve French | 442aa31 | 2007-09-24 20:25:46 +0000 | [diff] [blame] | 2053 | } else |
Steve French | 5a44b31 | 2007-09-20 15:16:24 +0000 | [diff] [blame] | 2054 | cERROR(1, ("Negotiating Unix capabilities " |
| 2055 | "with the server failed. Consider " |
| 2056 | "mounting with the Unix Extensions\n" |
| 2057 | "disabled, if problems are found, " |
| 2058 | "by specifying the nounix mount " |
Steve French | 2224f4e | 2007-09-20 15:37:29 +0000 | [diff] [blame] | 2059 | "option.")); |
Steve French | 5a44b31 | 2007-09-20 15:16:24 +0000 | [diff] [blame] | 2060 | |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 2061 | } |
| 2062 | } |
| 2063 | } |
| 2064 | |
Steve French | 03a143c | 2008-02-14 06:38:30 +0000 | [diff] [blame] | 2065 | static void |
| 2066 | convert_delimiter(char *path, char delim) |
| 2067 | { |
| 2068 | int i; |
Steve French | c2d68ea | 2008-02-15 19:20:18 +0000 | [diff] [blame] | 2069 | char old_delim; |
Steve French | 03a143c | 2008-02-14 06:38:30 +0000 | [diff] [blame] | 2070 | |
| 2071 | if (path == NULL) |
| 2072 | return; |
| 2073 | |
Steve French | 582d21e | 2008-05-13 04:54:12 +0000 | [diff] [blame] | 2074 | if (delim == '/') |
Steve French | c2d68ea | 2008-02-15 19:20:18 +0000 | [diff] [blame] | 2075 | old_delim = '\\'; |
| 2076 | else |
| 2077 | old_delim = '/'; |
| 2078 | |
Steve French | 03a143c | 2008-02-14 06:38:30 +0000 | [diff] [blame] | 2079 | for (i = 0; path[i] != '\0'; i++) { |
Steve French | c2d68ea | 2008-02-15 19:20:18 +0000 | [diff] [blame] | 2080 | if (path[i] == old_delim) |
Steve French | 03a143c | 2008-02-14 06:38:30 +0000 | [diff] [blame] | 2081 | path[i] = delim; |
| 2082 | } |
| 2083 | } |
| 2084 | |
Steve French | 3b79521 | 2008-11-13 19:45:32 +0000 | [diff] [blame] | 2085 | static void setup_cifs_sb(struct smb_vol *pvolume_info, |
| 2086 | struct cifs_sb_info *cifs_sb) |
| 2087 | { |
| 2088 | if (pvolume_info->rsize > CIFSMaxBufSize) { |
| 2089 | cERROR(1, ("rsize %d too large, using MaxBufSize", |
| 2090 | pvolume_info->rsize)); |
| 2091 | cifs_sb->rsize = CIFSMaxBufSize; |
| 2092 | } else if ((pvolume_info->rsize) && |
| 2093 | (pvolume_info->rsize <= CIFSMaxBufSize)) |
| 2094 | cifs_sb->rsize = pvolume_info->rsize; |
| 2095 | else /* default */ |
| 2096 | cifs_sb->rsize = CIFSMaxBufSize; |
| 2097 | |
| 2098 | if (pvolume_info->wsize > PAGEVEC_SIZE * PAGE_CACHE_SIZE) { |
| 2099 | cERROR(1, ("wsize %d too large, using 4096 instead", |
| 2100 | pvolume_info->wsize)); |
| 2101 | cifs_sb->wsize = 4096; |
| 2102 | } else if (pvolume_info->wsize) |
| 2103 | cifs_sb->wsize = pvolume_info->wsize; |
| 2104 | else |
| 2105 | cifs_sb->wsize = min_t(const int, |
| 2106 | PAGEVEC_SIZE * PAGE_CACHE_SIZE, |
| 2107 | 127*1024); |
| 2108 | /* old default of CIFSMaxBufSize was too small now |
| 2109 | that SMB Write2 can send multiple pages in kvec. |
| 2110 | RFC1001 does not describe what happens when frame |
| 2111 | bigger than 128K is sent so use that as max in |
| 2112 | conjunction with 52K kvec constraint on arch with 4K |
| 2113 | page size */ |
| 2114 | |
| 2115 | if (cifs_sb->rsize < 2048) { |
| 2116 | cifs_sb->rsize = 2048; |
| 2117 | /* Windows ME may prefer this */ |
| 2118 | cFYI(1, ("readsize set to minimum: 2048")); |
| 2119 | } |
| 2120 | /* calculate prepath */ |
| 2121 | cifs_sb->prepath = pvolume_info->prepath; |
| 2122 | if (cifs_sb->prepath) { |
| 2123 | cifs_sb->prepathlen = strlen(cifs_sb->prepath); |
| 2124 | /* we can not convert the / to \ in the path |
| 2125 | separators in the prefixpath yet because we do not |
| 2126 | know (until reset_cifs_unix_caps is called later) |
| 2127 | whether POSIX PATH CAP is available. We normalize |
| 2128 | the / to \ after reset_cifs_unix_caps is called */ |
| 2129 | pvolume_info->prepath = NULL; |
| 2130 | } else |
| 2131 | cifs_sb->prepathlen = 0; |
| 2132 | cifs_sb->mnt_uid = pvolume_info->linux_uid; |
| 2133 | cifs_sb->mnt_gid = pvolume_info->linux_gid; |
| 2134 | cifs_sb->mnt_file_mode = pvolume_info->file_mode; |
| 2135 | cifs_sb->mnt_dir_mode = pvolume_info->dir_mode; |
| 2136 | cFYI(1, ("file mode: 0x%x dir mode: 0x%x", |
| 2137 | cifs_sb->mnt_file_mode, cifs_sb->mnt_dir_mode)); |
| 2138 | |
| 2139 | if (pvolume_info->noperm) |
| 2140 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_PERM; |
| 2141 | if (pvolume_info->setuids) |
| 2142 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_SET_UID; |
| 2143 | if (pvolume_info->server_ino) |
| 2144 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_SERVER_INUM; |
| 2145 | if (pvolume_info->remap) |
| 2146 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_MAP_SPECIAL_CHR; |
| 2147 | if (pvolume_info->no_xattr) |
| 2148 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_XATTR; |
| 2149 | if (pvolume_info->sfu_emul) |
| 2150 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_UNX_EMUL; |
| 2151 | if (pvolume_info->nobrl) |
| 2152 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_NO_BRL; |
| 2153 | if (pvolume_info->cifs_acl) |
| 2154 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_CIFS_ACL; |
| 2155 | if (pvolume_info->override_uid) |
| 2156 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_OVERR_UID; |
| 2157 | if (pvolume_info->override_gid) |
| 2158 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_OVERR_GID; |
| 2159 | if (pvolume_info->dynperm) |
| 2160 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_DYNPERM; |
| 2161 | if (pvolume_info->direct_io) { |
| 2162 | cFYI(1, ("mounting share using direct i/o")); |
| 2163 | cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_DIRECT_IO; |
| 2164 | } |
| 2165 | |
| 2166 | if ((pvolume_info->cifs_acl) && (pvolume_info->dynperm)) |
| 2167 | cERROR(1, ("mount option dynperm ignored if cifsacl " |
| 2168 | "mount option supported")); |
| 2169 | } |
| 2170 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2171 | int |
| 2172 | cifs_mount(struct super_block *sb, struct cifs_sb_info *cifs_sb, |
| 2173 | char *mount_data, const char *devname) |
| 2174 | { |
| 2175 | int rc = 0; |
| 2176 | int xid; |
Jeff Layton | 7586b76 | 2008-12-01 18:41:49 -0500 | [diff] [blame] | 2177 | struct smb_vol *volume_info; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2178 | struct cifsSesInfo *pSesInfo = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2179 | struct cifsTconInfo *tcon = NULL; |
| 2180 | struct TCP_Server_Info *srvTcp = NULL; |
| 2181 | |
| 2182 | xid = GetXid(); |
| 2183 | |
Jeff Layton | 7586b76 | 2008-12-01 18:41:49 -0500 | [diff] [blame] | 2184 | volume_info = kzalloc(sizeof(struct smb_vol), GFP_KERNEL); |
| 2185 | if (!volume_info) { |
| 2186 | rc = -ENOMEM; |
| 2187 | goto out; |
| 2188 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2189 | |
Jeff Layton | 7586b76 | 2008-12-01 18:41:49 -0500 | [diff] [blame] | 2190 | if (cifs_parse_mount_options(mount_data, devname, volume_info)) { |
Jeff Layton | 70fe7dc | 2007-11-16 22:21:07 +0000 | [diff] [blame] | 2191 | rc = -EINVAL; |
| 2192 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2193 | } |
| 2194 | |
Jeff Layton | 7586b76 | 2008-12-01 18:41:49 -0500 | [diff] [blame] | 2195 | if (volume_info->nullauth) { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2196 | cFYI(1, ("null user")); |
Jeff Layton | 7586b76 | 2008-12-01 18:41:49 -0500 | [diff] [blame] | 2197 | volume_info->username = ""; |
| 2198 | } else if (volume_info->username) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2199 | /* BB fixme parse for domain name here */ |
Jeff Layton | 7586b76 | 2008-12-01 18:41:49 -0500 | [diff] [blame] | 2200 | cFYI(1, ("Username: %s", volume_info->username)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2201 | } else { |
Steve French | bf82067 | 2005-12-01 22:32:42 -0800 | [diff] [blame] | 2202 | cifserror("No username specified"); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2203 | /* In userspace mount helper we can get user name from alternate |
| 2204 | locations such as env variables and files on disk */ |
Jeff Layton | 70fe7dc | 2007-11-16 22:21:07 +0000 | [diff] [blame] | 2205 | rc = -EINVAL; |
| 2206 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2207 | } |
| 2208 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2209 | |
| 2210 | /* this is needed for ASCII cp to Unicode converts */ |
Jeff Layton | 7586b76 | 2008-12-01 18:41:49 -0500 | [diff] [blame] | 2211 | if (volume_info->iocharset == NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2212 | cifs_sb->local_nls = load_nls_default(); |
| 2213 | /* load_nls_default can not return null */ |
| 2214 | } else { |
Jeff Layton | 7586b76 | 2008-12-01 18:41:49 -0500 | [diff] [blame] | 2215 | cifs_sb->local_nls = load_nls(volume_info->iocharset); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2216 | if (cifs_sb->local_nls == NULL) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2217 | cERROR(1, ("CIFS mount error: iocharset %s not found", |
Jeff Layton | 7586b76 | 2008-12-01 18:41:49 -0500 | [diff] [blame] | 2218 | volume_info->iocharset)); |
Jeff Layton | 70fe7dc | 2007-11-16 22:21:07 +0000 | [diff] [blame] | 2219 | rc = -ELIBACC; |
| 2220 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2221 | } |
| 2222 | } |
| 2223 | |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2224 | /* get a reference to a tcp session */ |
Jeff Layton | 7586b76 | 2008-12-01 18:41:49 -0500 | [diff] [blame] | 2225 | srvTcp = cifs_get_tcp_session(volume_info); |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2226 | if (IS_ERR(srvTcp)) { |
| 2227 | rc = PTR_ERR(srvTcp); |
| 2228 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2229 | } |
| 2230 | |
Jeff Layton | 7586b76 | 2008-12-01 18:41:49 -0500 | [diff] [blame] | 2231 | pSesInfo = cifs_find_smb_ses(srvTcp, volume_info->username); |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 2232 | if (pSesInfo) { |
Jeff Layton | 1d9a885 | 2007-12-31 01:37:11 +0000 | [diff] [blame] | 2233 | cFYI(1, ("Existing smb sess found (status=%d)", |
| 2234 | pSesInfo->status)); |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 2235 | /* |
| 2236 | * The existing SMB session already has a reference to srvTcp, |
| 2237 | * so we can put back the extra one we got before |
| 2238 | */ |
| 2239 | cifs_put_tcp_session(srvTcp); |
| 2240 | |
Steve French | 88e7d70 | 2008-01-03 17:37:09 +0000 | [diff] [blame] | 2241 | down(&pSesInfo->sesSem); |
Steve French | 3b79521 | 2008-11-13 19:45:32 +0000 | [diff] [blame] | 2242 | if (pSesInfo->need_reconnect) { |
Jeff Layton | 1d9a885 | 2007-12-31 01:37:11 +0000 | [diff] [blame] | 2243 | cFYI(1, ("Session needs reconnect")); |
Jeff Layton | 1d9a885 | 2007-12-31 01:37:11 +0000 | [diff] [blame] | 2244 | rc = cifs_setup_session(xid, pSesInfo, |
| 2245 | cifs_sb->local_nls); |
Jeff Layton | 1d9a885 | 2007-12-31 01:37:11 +0000 | [diff] [blame] | 2246 | } |
Steve French | 88e7d70 | 2008-01-03 17:37:09 +0000 | [diff] [blame] | 2247 | up(&pSesInfo->sesSem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2248 | } else if (!rc) { |
Steve French | bf82067 | 2005-12-01 22:32:42 -0800 | [diff] [blame] | 2249 | cFYI(1, ("Existing smb sess not found")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2250 | pSesInfo = sesInfoAlloc(); |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 2251 | if (pSesInfo == NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2252 | rc = -ENOMEM; |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 2253 | goto mount_fail_check; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2254 | } |
| 2255 | |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 2256 | /* new SMB session uses our srvTcp ref */ |
| 2257 | pSesInfo->server = srvTcp; |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2258 | if (srvTcp->addr.sockAddr6.sin6_family == AF_INET6) |
Jeff Layton | 8ecaf67 | 2008-12-01 15:23:50 -0500 | [diff] [blame] | 2259 | sprintf(pSesInfo->serverName, NIP6_FMT, |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2260 | NIP6(srvTcp->addr.sockAddr6.sin6_addr)); |
Jeff Layton | 8ecaf67 | 2008-12-01 15:23:50 -0500 | [diff] [blame] | 2261 | else |
| 2262 | sprintf(pSesInfo->serverName, NIPQUAD_FMT, |
Jeff Layton | 63c038c | 2008-12-01 18:41:46 -0500 | [diff] [blame] | 2263 | NIPQUAD(srvTcp->addr.sockAddr.sin_addr.s_addr)); |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 2264 | |
| 2265 | write_lock(&cifs_tcp_ses_lock); |
| 2266 | list_add(&pSesInfo->smb_ses_list, &srvTcp->smb_ses_list); |
| 2267 | write_unlock(&cifs_tcp_ses_lock); |
| 2268 | |
Jeff Layton | 7586b76 | 2008-12-01 18:41:49 -0500 | [diff] [blame] | 2269 | /* volume_info->password freed at unmount */ |
| 2270 | if (volume_info->password) { |
| 2271 | pSesInfo->password = volume_info->password; |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 2272 | /* set to NULL to prevent freeing on exit */ |
Jeff Layton | 7586b76 | 2008-12-01 18:41:49 -0500 | [diff] [blame] | 2273 | volume_info->password = NULL; |
Jeff Layton | 70fe7dc | 2007-11-16 22:21:07 +0000 | [diff] [blame] | 2274 | } |
Jeff Layton | 7586b76 | 2008-12-01 18:41:49 -0500 | [diff] [blame] | 2275 | if (volume_info->username) |
| 2276 | strncpy(pSesInfo->userName, volume_info->username, |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 2277 | MAX_USERNAME_SIZE); |
Jeff Layton | 7586b76 | 2008-12-01 18:41:49 -0500 | [diff] [blame] | 2278 | if (volume_info->domainname) { |
| 2279 | int len = strlen(volume_info->domainname); |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 2280 | pSesInfo->domainName = kmalloc(len + 1, GFP_KERNEL); |
| 2281 | if (pSesInfo->domainName) |
| 2282 | strcpy(pSesInfo->domainName, |
Jeff Layton | 7586b76 | 2008-12-01 18:41:49 -0500 | [diff] [blame] | 2283 | volume_info->domainname); |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 2284 | } |
Jeff Layton | 7586b76 | 2008-12-01 18:41:49 -0500 | [diff] [blame] | 2285 | pSesInfo->linux_uid = volume_info->linux_uid; |
| 2286 | pSesInfo->overrideSecFlg = volume_info->secFlg; |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 2287 | down(&pSesInfo->sesSem); |
| 2288 | |
| 2289 | /* BB FIXME need to pass vol->secFlgs BB */ |
| 2290 | rc = cifs_setup_session(xid, pSesInfo, |
| 2291 | cifs_sb->local_nls); |
| 2292 | up(&pSesInfo->sesSem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2293 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2294 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2295 | /* search for existing tcon to this server share */ |
| 2296 | if (!rc) { |
Jeff Layton | 7586b76 | 2008-12-01 18:41:49 -0500 | [diff] [blame] | 2297 | setup_cifs_sb(volume_info, cifs_sb); |
Steve French | 27adb44 | 2008-05-23 19:43:29 +0000 | [diff] [blame] | 2298 | |
Jeff Layton | 7586b76 | 2008-12-01 18:41:49 -0500 | [diff] [blame] | 2299 | tcon = cifs_find_tcon(pSesInfo, volume_info->UNC); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2300 | if (tcon) { |
Steve French | bf82067 | 2005-12-01 22:32:42 -0800 | [diff] [blame] | 2301 | cFYI(1, ("Found match on UNC path")); |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 2302 | /* existing tcon already has a reference */ |
| 2303 | cifs_put_smb_ses(pSesInfo); |
Jeff Layton | 7586b76 | 2008-12-01 18:41:49 -0500 | [diff] [blame] | 2304 | if (tcon->seal != volume_info->seal) |
Steve French | ab3f992 | 2008-11-17 16:03:00 +0000 | [diff] [blame] | 2305 | cERROR(1, ("transport encryption setting " |
| 2306 | "conflicts with existing tid")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2307 | } else { |
| 2308 | tcon = tconInfoAlloc(); |
Steve French | 3b79521 | 2008-11-13 19:45:32 +0000 | [diff] [blame] | 2309 | if (tcon == NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2310 | rc = -ENOMEM; |
Steve French | 3b79521 | 2008-11-13 19:45:32 +0000 | [diff] [blame] | 2311 | goto mount_fail_check; |
| 2312 | } |
Steve French | ab3f992 | 2008-11-17 16:03:00 +0000 | [diff] [blame] | 2313 | tcon->ses = pSesInfo; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2314 | |
Steve French | 3b79521 | 2008-11-13 19:45:32 +0000 | [diff] [blame] | 2315 | /* check for null share name ie connect to dfs root */ |
Jeff Layton | 7586b76 | 2008-12-01 18:41:49 -0500 | [diff] [blame] | 2316 | if ((strchr(volume_info->UNC + 3, '\\') == NULL) |
| 2317 | && (strchr(volume_info->UNC + 3, '/') == NULL)) { |
Steve French | 3b79521 | 2008-11-13 19:45:32 +0000 | [diff] [blame] | 2318 | /* rc = connect_to_dfs_path(...) */ |
| 2319 | cFYI(1, ("DFS root not supported")); |
| 2320 | rc = -ENODEV; |
| 2321 | goto mount_fail_check; |
| 2322 | } else { |
| 2323 | /* BB Do we need to wrap sesSem around |
| 2324 | * this TCon call and Unix SetFS as |
| 2325 | * we do on SessSetup and reconnect? */ |
Jeff Layton | 7586b76 | 2008-12-01 18:41:49 -0500 | [diff] [blame] | 2326 | rc = CIFSTCon(xid, pSesInfo, volume_info->UNC, |
Steve French | 3b79521 | 2008-11-13 19:45:32 +0000 | [diff] [blame] | 2327 | tcon, cifs_sb->local_nls); |
| 2328 | cFYI(1, ("CIFS Tcon rc = %d", rc)); |
Jeff Layton | 7586b76 | 2008-12-01 18:41:49 -0500 | [diff] [blame] | 2329 | if (volume_info->nodfs) { |
Steve French | 3b79521 | 2008-11-13 19:45:32 +0000 | [diff] [blame] | 2330 | tcon->Flags &= ~SMB_SHARE_IS_IN_DFS; |
| 2331 | cFYI(1, ("DFS disabled (%d)", |
| 2332 | tcon->Flags)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2333 | } |
| 2334 | } |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 2335 | if (rc) |
Steve French | 3b79521 | 2008-11-13 19:45:32 +0000 | [diff] [blame] | 2336 | goto mount_fail_check; |
Jeff Layton | 7586b76 | 2008-12-01 18:41:49 -0500 | [diff] [blame] | 2337 | tcon->seal = volume_info->seal; |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 2338 | write_lock(&cifs_tcp_ses_lock); |
| 2339 | list_add(&tcon->tcon_list, &pSesInfo->tcon_list); |
| 2340 | write_unlock(&cifs_tcp_ses_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2341 | } |
Steve French | 3b79521 | 2008-11-13 19:45:32 +0000 | [diff] [blame] | 2342 | |
| 2343 | /* we can have only one retry value for a connection |
| 2344 | to a share so for resources mounted more than once |
| 2345 | to the same server share the last value passed in |
| 2346 | for the retry flag is used */ |
Jeff Layton | 7586b76 | 2008-12-01 18:41:49 -0500 | [diff] [blame] | 2347 | tcon->retry = volume_info->retry; |
| 2348 | tcon->nocase = volume_info->nocase; |
| 2349 | tcon->local_lease = volume_info->local_lease; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2350 | } |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 2351 | if (pSesInfo) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2352 | if (pSesInfo->capabilities & CAP_LARGE_FILES) { |
| 2353 | sb->s_maxbytes = (u64) 1 << 63; |
| 2354 | } else |
| 2355 | sb->s_maxbytes = (u64) 1 << 31; /* 2 GB */ |
| 2356 | } |
| 2357 | |
Steve French | 8af1897 | 2007-02-14 04:42:51 +0000 | [diff] [blame] | 2358 | /* BB FIXME fix time_gran to be larger for LANMAN sessions */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2359 | sb->s_time_gran = 100; |
| 2360 | |
Steve French | 3b79521 | 2008-11-13 19:45:32 +0000 | [diff] [blame] | 2361 | mount_fail_check: |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 2362 | /* on error free sesinfo and tcon struct if needed */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2363 | if (rc) { |
Jeff Layton | e7ddee9 | 2008-11-14 13:44:38 -0500 | [diff] [blame] | 2364 | /* If find_unc succeeded then rc == 0 so we can not end */ |
| 2365 | /* up accidently freeing someone elses tcon struct */ |
| 2366 | if (tcon) |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 2367 | cifs_put_tcon(tcon); |
| 2368 | else if (pSesInfo) |
Jeff Layton | 14fbf50 | 2008-11-14 13:53:46 -0500 | [diff] [blame] | 2369 | cifs_put_smb_ses(pSesInfo); |
| 2370 | else |
| 2371 | cifs_put_tcp_session(srvTcp); |
Steve French | d82c2df | 2008-11-15 00:07:26 +0000 | [diff] [blame] | 2372 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2373 | } |
Steve French | d82c2df | 2008-11-15 00:07:26 +0000 | [diff] [blame] | 2374 | cifs_sb->tcon = tcon; |
Steve French | d82c2df | 2008-11-15 00:07:26 +0000 | [diff] [blame] | 2375 | |
| 2376 | /* do not care if following two calls succeed - informational */ |
| 2377 | if (!tcon->ipc) { |
| 2378 | CIFSSMBQFSDeviceInfo(xid, tcon); |
| 2379 | CIFSSMBQFSAttributeInfo(xid, tcon); |
| 2380 | } |
| 2381 | |
| 2382 | /* tell server which Unix caps we support */ |
| 2383 | if (tcon->ses->capabilities & CAP_UNIX) |
| 2384 | /* reset of caps checks mount to see if unix extensions |
| 2385 | disabled for just this mount */ |
Jeff Layton | 7586b76 | 2008-12-01 18:41:49 -0500 | [diff] [blame] | 2386 | reset_cifs_unix_caps(xid, tcon, sb, volume_info); |
Steve French | d82c2df | 2008-11-15 00:07:26 +0000 | [diff] [blame] | 2387 | else |
| 2388 | tcon->unix_ext = 0; /* server does not support them */ |
| 2389 | |
| 2390 | /* convert forward to back slashes in prepath here if needed */ |
| 2391 | if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_POSIX_PATHS) == 0) |
| 2392 | convert_delimiter(cifs_sb->prepath, CIFS_DIR_SEP(cifs_sb)); |
| 2393 | |
| 2394 | if ((tcon->unix_ext == 0) && (cifs_sb->rsize > (1024 * 127))) { |
| 2395 | cifs_sb->rsize = 1024 * 127; |
| 2396 | cFYI(DBG2, ("no very large read support, rsize now 127K")); |
| 2397 | } |
| 2398 | if (!(tcon->ses->capabilities & CAP_LARGE_WRITE_X)) |
| 2399 | cifs_sb->wsize = min(cifs_sb->wsize, |
| 2400 | (tcon->ses->server->maxBuf - MAX_CIFS_HDR_SIZE)); |
| 2401 | if (!(tcon->ses->capabilities & CAP_LARGE_READ_X)) |
| 2402 | cifs_sb->rsize = min(cifs_sb->rsize, |
| 2403 | (tcon->ses->server->maxBuf - MAX_CIFS_HDR_SIZE)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2404 | |
Jeff Layton | 7586b76 | 2008-12-01 18:41:49 -0500 | [diff] [blame] | 2405 | /* volume_info->password is freed above when existing session found |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2406 | (in which case it is not needed anymore) but when new sesion is created |
| 2407 | the password ptr is put in the new session structure (in which case the |
| 2408 | password will be freed at unmount time) */ |
Jeff Layton | 70fe7dc | 2007-11-16 22:21:07 +0000 | [diff] [blame] | 2409 | out: |
| 2410 | /* zero out password before freeing */ |
Jeff Layton | 7586b76 | 2008-12-01 18:41:49 -0500 | [diff] [blame] | 2411 | if (volume_info) { |
| 2412 | if (volume_info->password != NULL) { |
| 2413 | memset(volume_info->password, 0, |
| 2414 | strlen(volume_info->password)); |
| 2415 | kfree(volume_info->password); |
| 2416 | } |
| 2417 | kfree(volume_info->UNC); |
| 2418 | kfree(volume_info->prepath); |
| 2419 | kfree(volume_info); |
Jeff Layton | 70fe7dc | 2007-11-16 22:21:07 +0000 | [diff] [blame] | 2420 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2421 | FreeXid(xid); |
| 2422 | return rc; |
| 2423 | } |
| 2424 | |
| 2425 | static int |
| 2426 | CIFSSessSetup(unsigned int xid, struct cifsSesInfo *ses, |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 2427 | char session_key[CIFS_SESS_KEY_SIZE], |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2428 | const struct nls_table *nls_codepage) |
| 2429 | { |
| 2430 | struct smb_hdr *smb_buffer; |
| 2431 | struct smb_hdr *smb_buffer_response; |
| 2432 | SESSION_SETUP_ANDX *pSMB; |
| 2433 | SESSION_SETUP_ANDX *pSMBr; |
| 2434 | char *bcc_ptr; |
| 2435 | char *user; |
| 2436 | char *domain; |
| 2437 | int rc = 0; |
| 2438 | int remaining_words = 0; |
| 2439 | int bytes_returned = 0; |
| 2440 | int len; |
| 2441 | __u32 capabilities; |
| 2442 | __u16 count; |
| 2443 | |
Steve French | eeac804 | 2006-01-13 21:34:58 -0800 | [diff] [blame] | 2444 | cFYI(1, ("In sesssetup")); |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 2445 | if (ses == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2446 | return -EINVAL; |
| 2447 | user = ses->userName; |
| 2448 | domain = ses->domainName; |
| 2449 | smb_buffer = cifs_buf_get(); |
Steve French | 582d21e | 2008-05-13 04:54:12 +0000 | [diff] [blame] | 2450 | |
| 2451 | if (smb_buffer == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2452 | return -ENOMEM; |
Steve French | 582d21e | 2008-05-13 04:54:12 +0000 | [diff] [blame] | 2453 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2454 | smb_buffer_response = smb_buffer; |
| 2455 | pSMBr = pSMB = (SESSION_SETUP_ANDX *) smb_buffer; |
| 2456 | |
| 2457 | /* send SMBsessionSetup here */ |
| 2458 | header_assemble(smb_buffer, SMB_COM_SESSION_SETUP_ANDX, |
| 2459 | NULL /* no tCon exists yet */ , 13 /* wct */ ); |
| 2460 | |
Steve French | 1982c34 | 2005-08-17 12:38:22 -0700 | [diff] [blame] | 2461 | smb_buffer->Mid = GetNextMid(ses->server); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2462 | pSMB->req_no_secext.AndXCommand = 0xFF; |
| 2463 | pSMB->req_no_secext.MaxBufferSize = cpu_to_le16(ses->server->maxBuf); |
| 2464 | pSMB->req_no_secext.MaxMpxCount = cpu_to_le16(ses->server->maxReq); |
| 2465 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2466 | if (ses->server->secMode & |
| 2467 | (SECMODE_SIGN_REQUIRED | SECMODE_SIGN_ENABLED)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2468 | smb_buffer->Flags2 |= SMBFLG2_SECURITY_SIGNATURE; |
| 2469 | |
| 2470 | capabilities = CAP_LARGE_FILES | CAP_NT_SMBS | CAP_LEVEL_II_OPLOCKS | |
| 2471 | CAP_LARGE_WRITE_X | CAP_LARGE_READ_X; |
| 2472 | if (ses->capabilities & CAP_UNICODE) { |
| 2473 | smb_buffer->Flags2 |= SMBFLG2_UNICODE; |
| 2474 | capabilities |= CAP_UNICODE; |
| 2475 | } |
| 2476 | if (ses->capabilities & CAP_STATUS32) { |
| 2477 | smb_buffer->Flags2 |= SMBFLG2_ERR_STATUS; |
| 2478 | capabilities |= CAP_STATUS32; |
| 2479 | } |
| 2480 | if (ses->capabilities & CAP_DFS) { |
| 2481 | smb_buffer->Flags2 |= SMBFLG2_DFS; |
| 2482 | capabilities |= CAP_DFS; |
| 2483 | } |
| 2484 | pSMB->req_no_secext.Capabilities = cpu_to_le32(capabilities); |
| 2485 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2486 | pSMB->req_no_secext.CaseInsensitivePasswordLength = |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 2487 | cpu_to_le16(CIFS_SESS_KEY_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2488 | |
| 2489 | pSMB->req_no_secext.CaseSensitivePasswordLength = |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 2490 | cpu_to_le16(CIFS_SESS_KEY_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2491 | bcc_ptr = pByteArea(smb_buffer); |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 2492 | memcpy(bcc_ptr, (char *) session_key, CIFS_SESS_KEY_SIZE); |
| 2493 | bcc_ptr += CIFS_SESS_KEY_SIZE; |
| 2494 | memcpy(bcc_ptr, (char *) session_key, CIFS_SESS_KEY_SIZE); |
| 2495 | bcc_ptr += CIFS_SESS_KEY_SIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2496 | |
| 2497 | if (ses->capabilities & CAP_UNICODE) { |
| 2498 | if ((long) bcc_ptr % 2) { /* must be word aligned for Unicode */ |
| 2499 | *bcc_ptr = 0; |
| 2500 | bcc_ptr++; |
| 2501 | } |
Steve French | 4523cc3 | 2007-04-30 20:13:06 +0000 | [diff] [blame] | 2502 | if (user == NULL) |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 2503 | bytes_returned = 0; /* skip null user */ |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2504 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2505 | bytes_returned = |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2506 | cifs_strtoUCS((__le16 *) bcc_ptr, user, 100, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2507 | nls_codepage); |
| 2508 | /* convert number of 16 bit words to bytes */ |
| 2509 | bcc_ptr += 2 * bytes_returned; |
| 2510 | bcc_ptr += 2; /* trailing null */ |
| 2511 | if (domain == NULL) |
| 2512 | bytes_returned = |
Steve French | e89dc92 | 2005-11-11 15:18:19 -0800 | [diff] [blame] | 2513 | cifs_strtoUCS((__le16 *) bcc_ptr, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2514 | "CIFS_LINUX_DOM", 32, nls_codepage); |
| 2515 | else |
| 2516 | bytes_returned = |
Steve French | e89dc92 | 2005-11-11 15:18:19 -0800 | [diff] [blame] | 2517 | cifs_strtoUCS((__le16 *) bcc_ptr, domain, 64, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2518 | nls_codepage); |
| 2519 | bcc_ptr += 2 * bytes_returned; |
| 2520 | bcc_ptr += 2; |
| 2521 | bytes_returned = |
Steve French | e89dc92 | 2005-11-11 15:18:19 -0800 | [diff] [blame] | 2522 | cifs_strtoUCS((__le16 *) bcc_ptr, "Linux version ", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2523 | 32, nls_codepage); |
| 2524 | bcc_ptr += 2 * bytes_returned; |
| 2525 | bytes_returned = |
Serge E. Hallyn | e9ff399 | 2006-10-02 02:18:11 -0700 | [diff] [blame] | 2526 | cifs_strtoUCS((__le16 *) bcc_ptr, utsname()->release, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2527 | 32, nls_codepage); |
| 2528 | bcc_ptr += 2 * bytes_returned; |
| 2529 | bcc_ptr += 2; |
| 2530 | bytes_returned = |
Steve French | e89dc92 | 2005-11-11 15:18:19 -0800 | [diff] [blame] | 2531 | cifs_strtoUCS((__le16 *) bcc_ptr, CIFS_NETWORK_OPSYS, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2532 | 64, nls_codepage); |
| 2533 | bcc_ptr += 2 * bytes_returned; |
| 2534 | bcc_ptr += 2; |
| 2535 | } else { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2536 | if (user != NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2537 | strncpy(bcc_ptr, user, 200); |
| 2538 | bcc_ptr += strnlen(user, 200); |
| 2539 | } |
| 2540 | *bcc_ptr = 0; |
| 2541 | bcc_ptr++; |
| 2542 | if (domain == NULL) { |
| 2543 | strcpy(bcc_ptr, "CIFS_LINUX_DOM"); |
| 2544 | bcc_ptr += strlen("CIFS_LINUX_DOM") + 1; |
| 2545 | } else { |
| 2546 | strncpy(bcc_ptr, domain, 64); |
| 2547 | bcc_ptr += strnlen(domain, 64); |
| 2548 | *bcc_ptr = 0; |
| 2549 | bcc_ptr++; |
| 2550 | } |
| 2551 | strcpy(bcc_ptr, "Linux version "); |
| 2552 | bcc_ptr += strlen("Linux version "); |
Serge E. Hallyn | e9ff399 | 2006-10-02 02:18:11 -0700 | [diff] [blame] | 2553 | strcpy(bcc_ptr, utsname()->release); |
| 2554 | bcc_ptr += strlen(utsname()->release) + 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2555 | strcpy(bcc_ptr, CIFS_NETWORK_OPSYS); |
| 2556 | bcc_ptr += strlen(CIFS_NETWORK_OPSYS) + 1; |
| 2557 | } |
| 2558 | count = (long) bcc_ptr - (long) pByteArea(smb_buffer); |
| 2559 | smb_buffer->smb_buf_length += count; |
| 2560 | pSMB->req_no_secext.ByteCount = cpu_to_le16(count); |
| 2561 | |
| 2562 | rc = SendReceive(xid, ses, smb_buffer, smb_buffer_response, |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 2563 | &bytes_returned, CIFS_LONG_OP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2564 | if (rc) { |
| 2565 | /* rc = map_smb_to_linux_error(smb_buffer_response); now done in SendReceive */ |
| 2566 | } else if ((smb_buffer_response->WordCount == 3) |
| 2567 | || (smb_buffer_response->WordCount == 4)) { |
| 2568 | __u16 action = le16_to_cpu(pSMBr->resp.Action); |
| 2569 | __u16 blob_len = le16_to_cpu(pSMBr->resp.SecurityBlobLength); |
| 2570 | if (action & GUEST_LOGIN) |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2571 | cFYI(1, (" Guest login")); /* BB mark SesInfo struct? */ |
| 2572 | ses->Suid = smb_buffer_response->Uid; /* UID left in wire format |
| 2573 | (little endian) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2574 | cFYI(1, ("UID = %d ", ses->Suid)); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2575 | /* response can have either 3 or 4 word count - Samba sends 3 */ |
| 2576 | bcc_ptr = pByteArea(smb_buffer_response); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2577 | if ((pSMBr->resp.hdr.WordCount == 3) |
| 2578 | || ((pSMBr->resp.hdr.WordCount == 4) |
| 2579 | && (blob_len < pSMBr->resp.ByteCount))) { |
| 2580 | if (pSMBr->resp.hdr.WordCount == 4) |
| 2581 | bcc_ptr += blob_len; |
| 2582 | |
| 2583 | if (smb_buffer->Flags2 & SMBFLG2_UNICODE) { |
| 2584 | if ((long) (bcc_ptr) % 2) { |
| 2585 | remaining_words = |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2586 | (BCC(smb_buffer_response) - 1) / 2; |
| 2587 | /* Unicode strings must be word |
| 2588 | aligned */ |
| 2589 | bcc_ptr++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2590 | } else { |
| 2591 | remaining_words = |
| 2592 | BCC(smb_buffer_response) / 2; |
| 2593 | } |
| 2594 | len = |
| 2595 | UniStrnlen((wchar_t *) bcc_ptr, |
| 2596 | remaining_words - 1); |
| 2597 | /* We look for obvious messed up bcc or strings in response so we do not go off |
| 2598 | the end since (at least) WIN2K and Windows XP have a major bug in not null |
| 2599 | terminating last Unicode string in response */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2600 | if (ses->serverOS) |
Steve French | a424f8b | 2006-05-30 18:06:04 +0000 | [diff] [blame] | 2601 | kfree(ses->serverOS); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2602 | ses->serverOS = kzalloc(2 * (len + 1), |
| 2603 | GFP_KERNEL); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2604 | if (ses->serverOS == NULL) |
Steve French | 433dc24 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 2605 | goto sesssetup_nomem; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2606 | cifs_strfromUCS_le(ses->serverOS, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2607 | (__le16 *)bcc_ptr, |
| 2608 | len, nls_codepage); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2609 | bcc_ptr += 2 * (len + 1); |
| 2610 | remaining_words -= len + 1; |
| 2611 | ses->serverOS[2 * len] = 0; |
| 2612 | ses->serverOS[1 + (2 * len)] = 0; |
| 2613 | if (remaining_words > 0) { |
| 2614 | len = UniStrnlen((wchar_t *)bcc_ptr, |
| 2615 | remaining_words-1); |
Steve French | cd49b49 | 2006-06-26 04:22:36 +0000 | [diff] [blame] | 2616 | kfree(ses->serverNOS); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2617 | ses->serverNOS = kzalloc(2 * (len + 1), |
| 2618 | GFP_KERNEL); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2619 | if (ses->serverNOS == NULL) |
Steve French | 433dc24 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 2620 | goto sesssetup_nomem; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2621 | cifs_strfromUCS_le(ses->serverNOS, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2622 | (__le16 *)bcc_ptr, |
| 2623 | len, nls_codepage); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2624 | bcc_ptr += 2 * (len + 1); |
| 2625 | ses->serverNOS[2 * len] = 0; |
| 2626 | ses->serverNOS[1 + (2 * len)] = 0; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2627 | if (strncmp(ses->serverNOS, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2628 | "NT LAN Manager 4", 16) == 0) { |
Steve French | 467a8f8 | 2007-06-27 22:41:32 +0000 | [diff] [blame] | 2629 | cFYI(1, ("NT4 server")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2630 | ses->flags |= CIFS_SES_NT4; |
| 2631 | } |
| 2632 | remaining_words -= len + 1; |
| 2633 | if (remaining_words > 0) { |
Steve French | 433dc24 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 2634 | len = UniStrnlen((wchar_t *) bcc_ptr, remaining_words); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2635 | /* last string is not always null terminated |
| 2636 | (for e.g. for Windows XP & 2000) */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2637 | if (ses->serverDomain) |
Steve French | a424f8b | 2006-05-30 18:06:04 +0000 | [diff] [blame] | 2638 | kfree(ses->serverDomain); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2639 | ses->serverDomain = |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2640 | kzalloc(2*(len+1), |
| 2641 | GFP_KERNEL); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2642 | if (ses->serverDomain == NULL) |
Steve French | 433dc24 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 2643 | goto sesssetup_nomem; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2644 | cifs_strfromUCS_le(ses->serverDomain, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2645 | (__le16 *)bcc_ptr, |
| 2646 | len, nls_codepage); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2647 | bcc_ptr += 2 * (len + 1); |
| 2648 | ses->serverDomain[2*len] = 0; |
| 2649 | ses->serverDomain[1+(2*len)] = 0; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2650 | } else { /* else no more room so create |
| 2651 | dummy domain string */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2652 | if (ses->serverDomain) |
Steve French | a424f8b | 2006-05-30 18:06:04 +0000 | [diff] [blame] | 2653 | kfree(ses->serverDomain); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2654 | ses->serverDomain = |
Pekka Enberg | e915fc4 | 2005-09-06 15:18:35 -0700 | [diff] [blame] | 2655 | kzalloc(2, GFP_KERNEL); |
Steve French | a424f8b | 2006-05-30 18:06:04 +0000 | [diff] [blame] | 2656 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2657 | } else { /* no room so create dummy domain |
| 2658 | and NOS string */ |
| 2659 | |
Steve French | 433dc24 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 2660 | /* if these kcallocs fail not much we |
| 2661 | can do, but better to not fail the |
| 2662 | sesssetup itself */ |
Steve French | cd49b49 | 2006-06-26 04:22:36 +0000 | [diff] [blame] | 2663 | kfree(ses->serverDomain); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2664 | ses->serverDomain = |
Pekka Enberg | e915fc4 | 2005-09-06 15:18:35 -0700 | [diff] [blame] | 2665 | kzalloc(2, GFP_KERNEL); |
Steve French | cd49b49 | 2006-06-26 04:22:36 +0000 | [diff] [blame] | 2666 | kfree(ses->serverNOS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2667 | ses->serverNOS = |
Pekka Enberg | e915fc4 | 2005-09-06 15:18:35 -0700 | [diff] [blame] | 2668 | kzalloc(2, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2669 | } |
| 2670 | } else { /* ASCII */ |
| 2671 | len = strnlen(bcc_ptr, 1024); |
| 2672 | if (((long) bcc_ptr + len) - (long) |
| 2673 | pByteArea(smb_buffer_response) |
| 2674 | <= BCC(smb_buffer_response)) { |
Steve French | cd49b49 | 2006-06-26 04:22:36 +0000 | [diff] [blame] | 2675 | kfree(ses->serverOS); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2676 | ses->serverOS = kzalloc(len + 1, |
| 2677 | GFP_KERNEL); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2678 | if (ses->serverOS == NULL) |
Steve French | 433dc24 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 2679 | goto sesssetup_nomem; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2680 | strncpy(ses->serverOS, bcc_ptr, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2681 | |
| 2682 | bcc_ptr += len; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2683 | /* null terminate the string */ |
| 2684 | bcc_ptr[0] = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2685 | bcc_ptr++; |
| 2686 | |
| 2687 | len = strnlen(bcc_ptr, 1024); |
Steve French | cd49b49 | 2006-06-26 04:22:36 +0000 | [diff] [blame] | 2688 | kfree(ses->serverNOS); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2689 | ses->serverNOS = kzalloc(len + 1, |
| 2690 | GFP_KERNEL); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2691 | if (ses->serverNOS == NULL) |
Steve French | 433dc24 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 2692 | goto sesssetup_nomem; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2693 | strncpy(ses->serverNOS, bcc_ptr, len); |
| 2694 | bcc_ptr += len; |
| 2695 | bcc_ptr[0] = 0; |
| 2696 | bcc_ptr++; |
| 2697 | |
| 2698 | len = strnlen(bcc_ptr, 1024); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2699 | if (ses->serverDomain) |
Steve French | a424f8b | 2006-05-30 18:06:04 +0000 | [diff] [blame] | 2700 | kfree(ses->serverDomain); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2701 | ses->serverDomain = kzalloc(len + 1, |
| 2702 | GFP_KERNEL); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2703 | if (ses->serverDomain == NULL) |
Steve French | 433dc24 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 2704 | goto sesssetup_nomem; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2705 | strncpy(ses->serverDomain, bcc_ptr, |
| 2706 | len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2707 | bcc_ptr += len; |
| 2708 | bcc_ptr[0] = 0; |
| 2709 | bcc_ptr++; |
| 2710 | } else |
| 2711 | cFYI(1, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2712 | ("Variable field of length %d " |
| 2713 | "extends beyond end of smb ", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2714 | len)); |
| 2715 | } |
| 2716 | } else { |
| 2717 | cERROR(1, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2718 | (" Security Blob Length extends beyond " |
| 2719 | "end of SMB")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2720 | } |
| 2721 | } else { |
| 2722 | cERROR(1, |
| 2723 | (" Invalid Word count %d: ", |
| 2724 | smb_buffer_response->WordCount)); |
| 2725 | rc = -EIO; |
| 2726 | } |
Steve French | 433dc24 | 2005-04-28 22:41:08 -0700 | [diff] [blame] | 2727 | sesssetup_nomem: /* do not return an error on nomem for the info strings, |
| 2728 | since that could make reconnection harder, and |
| 2729 | reconnection might be needed to free memory */ |
Mariusz Kozlowski | a8a11d3 | 2007-10-03 16:41:24 +0000 | [diff] [blame] | 2730 | cifs_buf_release(smb_buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2731 | |
| 2732 | return rc; |
| 2733 | } |
| 2734 | |
| 2735 | static int |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2736 | CIFSNTLMSSPNegotiateSessSetup(unsigned int xid, |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 2737 | struct cifsSesInfo *ses, bool *pNTLMv2_flag, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2738 | const struct nls_table *nls_codepage) |
| 2739 | { |
| 2740 | struct smb_hdr *smb_buffer; |
| 2741 | struct smb_hdr *smb_buffer_response; |
| 2742 | SESSION_SETUP_ANDX *pSMB; |
| 2743 | SESSION_SETUP_ANDX *pSMBr; |
| 2744 | char *bcc_ptr; |
| 2745 | char *domain; |
| 2746 | int rc = 0; |
| 2747 | int remaining_words = 0; |
| 2748 | int bytes_returned = 0; |
| 2749 | int len; |
Cyrill Gorcunov | 6345a3a | 2007-10-16 17:57:55 +0000 | [diff] [blame] | 2750 | int SecurityBlobLength = sizeof(NEGOTIATE_MESSAGE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2751 | PNEGOTIATE_MESSAGE SecurityBlob; |
| 2752 | PCHALLENGE_MESSAGE SecurityBlob2; |
| 2753 | __u32 negotiate_flags, capabilities; |
| 2754 | __u16 count; |
| 2755 | |
Steve French | 12b3b8f | 2006-02-09 21:12:47 +0000 | [diff] [blame] | 2756 | cFYI(1, ("In NTLMSSP sesssetup (negotiate)")); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2757 | if (ses == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2758 | return -EINVAL; |
| 2759 | domain = ses->domainName; |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 2760 | *pNTLMv2_flag = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2761 | smb_buffer = cifs_buf_get(); |
| 2762 | if (smb_buffer == NULL) { |
| 2763 | return -ENOMEM; |
| 2764 | } |
| 2765 | smb_buffer_response = smb_buffer; |
| 2766 | pSMB = (SESSION_SETUP_ANDX *) smb_buffer; |
| 2767 | pSMBr = (SESSION_SETUP_ANDX *) smb_buffer_response; |
| 2768 | |
| 2769 | /* send SMBsessionSetup here */ |
| 2770 | header_assemble(smb_buffer, SMB_COM_SESSION_SETUP_ANDX, |
| 2771 | NULL /* no tCon exists yet */ , 12 /* wct */ ); |
Steve French | 1982c34 | 2005-08-17 12:38:22 -0700 | [diff] [blame] | 2772 | |
| 2773 | smb_buffer->Mid = GetNextMid(ses->server); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2774 | pSMB->req.hdr.Flags2 |= SMBFLG2_EXT_SEC; |
| 2775 | pSMB->req.hdr.Flags |= (SMBFLG_CASELESS | SMBFLG_CANONICAL_PATH_FORMAT); |
| 2776 | |
| 2777 | pSMB->req.AndXCommand = 0xFF; |
| 2778 | pSMB->req.MaxBufferSize = cpu_to_le16(ses->server->maxBuf); |
| 2779 | pSMB->req.MaxMpxCount = cpu_to_le16(ses->server->maxReq); |
| 2780 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2781 | if (ses->server->secMode & (SECMODE_SIGN_REQUIRED | SECMODE_SIGN_ENABLED)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2782 | smb_buffer->Flags2 |= SMBFLG2_SECURITY_SIGNATURE; |
| 2783 | |
| 2784 | capabilities = CAP_LARGE_FILES | CAP_NT_SMBS | CAP_LEVEL_II_OPLOCKS | |
| 2785 | CAP_EXTENDED_SECURITY; |
| 2786 | if (ses->capabilities & CAP_UNICODE) { |
| 2787 | smb_buffer->Flags2 |= SMBFLG2_UNICODE; |
| 2788 | capabilities |= CAP_UNICODE; |
| 2789 | } |
| 2790 | if (ses->capabilities & CAP_STATUS32) { |
| 2791 | smb_buffer->Flags2 |= SMBFLG2_ERR_STATUS; |
| 2792 | capabilities |= CAP_STATUS32; |
| 2793 | } |
| 2794 | if (ses->capabilities & CAP_DFS) { |
| 2795 | smb_buffer->Flags2 |= SMBFLG2_DFS; |
| 2796 | capabilities |= CAP_DFS; |
| 2797 | } |
| 2798 | pSMB->req.Capabilities = cpu_to_le32(capabilities); |
| 2799 | |
| 2800 | bcc_ptr = (char *) &pSMB->req.SecurityBlob; |
| 2801 | SecurityBlob = (PNEGOTIATE_MESSAGE) bcc_ptr; |
| 2802 | strncpy(SecurityBlob->Signature, NTLMSSP_SIGNATURE, 8); |
| 2803 | SecurityBlob->MessageType = NtLmNegotiate; |
| 2804 | negotiate_flags = |
| 2805 | NTLMSSP_NEGOTIATE_UNICODE | NTLMSSP_NEGOTIATE_OEM | |
Steve French | 12b3b8f | 2006-02-09 21:12:47 +0000 | [diff] [blame] | 2806 | NTLMSSP_REQUEST_TARGET | NTLMSSP_NEGOTIATE_NTLM | |
| 2807 | NTLMSSP_NEGOTIATE_56 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2808 | /* NTLMSSP_NEGOTIATE_ALWAYS_SIGN | */ NTLMSSP_NEGOTIATE_128; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2809 | if (sign_CIFS_PDUs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2810 | negotiate_flags |= NTLMSSP_NEGOTIATE_SIGN; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2811 | /* if (ntlmv2_support) |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 2812 | negotiate_flags |= NTLMSSP_NEGOTIATE_NTLMV2;*/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2813 | /* setup pointers to domain name and workstation name */ |
| 2814 | bcc_ptr += SecurityBlobLength; |
| 2815 | |
| 2816 | SecurityBlob->WorkstationName.Buffer = 0; |
| 2817 | SecurityBlob->WorkstationName.Length = 0; |
| 2818 | SecurityBlob->WorkstationName.MaximumLength = 0; |
| 2819 | |
Steve French | 12b3b8f | 2006-02-09 21:12:47 +0000 | [diff] [blame] | 2820 | /* Domain not sent on first Sesssetup in NTLMSSP, instead it is sent |
| 2821 | along with username on auth request (ie the response to challenge) */ |
| 2822 | SecurityBlob->DomainName.Buffer = 0; |
| 2823 | SecurityBlob->DomainName.Length = 0; |
| 2824 | SecurityBlob->DomainName.MaximumLength = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2825 | if (ses->capabilities & CAP_UNICODE) { |
| 2826 | if ((long) bcc_ptr % 2) { |
| 2827 | *bcc_ptr = 0; |
| 2828 | bcc_ptr++; |
| 2829 | } |
| 2830 | |
| 2831 | bytes_returned = |
Steve French | e89dc92 | 2005-11-11 15:18:19 -0800 | [diff] [blame] | 2832 | cifs_strtoUCS((__le16 *) bcc_ptr, "Linux version ", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2833 | 32, nls_codepage); |
| 2834 | bcc_ptr += 2 * bytes_returned; |
| 2835 | bytes_returned = |
Serge E. Hallyn | e9ff399 | 2006-10-02 02:18:11 -0700 | [diff] [blame] | 2836 | cifs_strtoUCS((__le16 *) bcc_ptr, utsname()->release, 32, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2837 | nls_codepage); |
| 2838 | bcc_ptr += 2 * bytes_returned; |
| 2839 | bcc_ptr += 2; /* null terminate Linux version */ |
| 2840 | bytes_returned = |
Steve French | e89dc92 | 2005-11-11 15:18:19 -0800 | [diff] [blame] | 2841 | cifs_strtoUCS((__le16 *) bcc_ptr, CIFS_NETWORK_OPSYS, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2842 | 64, nls_codepage); |
| 2843 | bcc_ptr += 2 * bytes_returned; |
| 2844 | *(bcc_ptr + 1) = 0; |
| 2845 | *(bcc_ptr + 2) = 0; |
| 2846 | bcc_ptr += 2; /* null terminate network opsys string */ |
| 2847 | *(bcc_ptr + 1) = 0; |
| 2848 | *(bcc_ptr + 2) = 0; |
| 2849 | bcc_ptr += 2; /* null domain */ |
| 2850 | } else { /* ASCII */ |
| 2851 | strcpy(bcc_ptr, "Linux version "); |
| 2852 | bcc_ptr += strlen("Linux version "); |
Serge E. Hallyn | e9ff399 | 2006-10-02 02:18:11 -0700 | [diff] [blame] | 2853 | strcpy(bcc_ptr, utsname()->release); |
| 2854 | bcc_ptr += strlen(utsname()->release) + 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2855 | strcpy(bcc_ptr, CIFS_NETWORK_OPSYS); |
| 2856 | bcc_ptr += strlen(CIFS_NETWORK_OPSYS) + 1; |
| 2857 | bcc_ptr++; /* empty domain field */ |
| 2858 | *bcc_ptr = 0; |
| 2859 | } |
| 2860 | SecurityBlob->NegotiateFlags = cpu_to_le32(negotiate_flags); |
| 2861 | pSMB->req.SecurityBlobLength = cpu_to_le16(SecurityBlobLength); |
| 2862 | count = (long) bcc_ptr - (long) pByteArea(smb_buffer); |
| 2863 | smb_buffer->smb_buf_length += count; |
| 2864 | pSMB->req.ByteCount = cpu_to_le16(count); |
| 2865 | |
| 2866 | rc = SendReceive(xid, ses, smb_buffer, smb_buffer_response, |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 2867 | &bytes_returned, CIFS_LONG_OP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2868 | |
| 2869 | if (smb_buffer_response->Status.CifsError == |
| 2870 | cpu_to_le32(NT_STATUS_MORE_PROCESSING_REQUIRED)) |
| 2871 | rc = 0; |
| 2872 | |
| 2873 | if (rc) { |
| 2874 | /* rc = map_smb_to_linux_error(smb_buffer_response); *//* done in SendReceive now */ |
| 2875 | } else if ((smb_buffer_response->WordCount == 3) |
| 2876 | || (smb_buffer_response->WordCount == 4)) { |
| 2877 | __u16 action = le16_to_cpu(pSMBr->resp.Action); |
| 2878 | __u16 blob_len = le16_to_cpu(pSMBr->resp.SecurityBlobLength); |
| 2879 | |
| 2880 | if (action & GUEST_LOGIN) |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2881 | cFYI(1, (" Guest login")); |
| 2882 | /* Do we want to set anything in SesInfo struct when guest login? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2883 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2884 | bcc_ptr = pByteArea(smb_buffer_response); |
| 2885 | /* response can have either 3 or 4 word count - Samba sends 3 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2886 | |
| 2887 | SecurityBlob2 = (PCHALLENGE_MESSAGE) bcc_ptr; |
| 2888 | if (SecurityBlob2->MessageType != NtLmChallenge) { |
| 2889 | cFYI(1, |
| 2890 | ("Unexpected NTLMSSP message type received %d", |
| 2891 | SecurityBlob2->MessageType)); |
| 2892 | } else if (ses) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2893 | ses->Suid = smb_buffer_response->Uid; /* UID left in le format */ |
Steve French | 12b3b8f | 2006-02-09 21:12:47 +0000 | [diff] [blame] | 2894 | cFYI(1, ("UID = %d", ses->Suid)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2895 | if ((pSMBr->resp.hdr.WordCount == 3) |
| 2896 | || ((pSMBr->resp.hdr.WordCount == 4) |
| 2897 | && (blob_len < |
| 2898 | pSMBr->resp.ByteCount))) { |
| 2899 | |
| 2900 | if (pSMBr->resp.hdr.WordCount == 4) { |
| 2901 | bcc_ptr += blob_len; |
Steve French | 12b3b8f | 2006-02-09 21:12:47 +0000 | [diff] [blame] | 2902 | cFYI(1, ("Security Blob Length %d", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2903 | blob_len)); |
| 2904 | } |
| 2905 | |
Steve French | 12b3b8f | 2006-02-09 21:12:47 +0000 | [diff] [blame] | 2906 | cFYI(1, ("NTLMSSP Challenge rcvd")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2907 | |
| 2908 | memcpy(ses->server->cryptKey, |
| 2909 | SecurityBlob2->Challenge, |
| 2910 | CIFS_CRYPTO_KEY_SIZE); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2911 | if (SecurityBlob2->NegotiateFlags & |
Steve French | 12b3b8f | 2006-02-09 21:12:47 +0000 | [diff] [blame] | 2912 | cpu_to_le32(NTLMSSP_NEGOTIATE_NTLMV2)) |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 2913 | *pNTLMv2_flag = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2914 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2915 | if ((SecurityBlob2->NegotiateFlags & |
| 2916 | cpu_to_le32(NTLMSSP_NEGOTIATE_ALWAYS_SIGN)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2917 | || (sign_CIFS_PDUs > 1)) |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2918 | ses->server->secMode |= |
| 2919 | SECMODE_SIGN_REQUIRED; |
| 2920 | if ((SecurityBlob2->NegotiateFlags & |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2921 | cpu_to_le32(NTLMSSP_NEGOTIATE_SIGN)) && (sign_CIFS_PDUs)) |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2922 | ses->server->secMode |= |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2923 | SECMODE_SIGN_ENABLED; |
| 2924 | |
| 2925 | if (smb_buffer->Flags2 & SMBFLG2_UNICODE) { |
| 2926 | if ((long) (bcc_ptr) % 2) { |
| 2927 | remaining_words = |
| 2928 | (BCC(smb_buffer_response) |
| 2929 | - 1) / 2; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2930 | /* Must word align unicode strings */ |
| 2931 | bcc_ptr++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2932 | } else { |
| 2933 | remaining_words = |
| 2934 | BCC |
| 2935 | (smb_buffer_response) / 2; |
| 2936 | } |
| 2937 | len = |
| 2938 | UniStrnlen((wchar_t *) bcc_ptr, |
| 2939 | remaining_words - 1); |
| 2940 | /* We look for obvious messed up bcc or strings in response so we do not go off |
| 2941 | the end since (at least) WIN2K and Windows XP have a major bug in not null |
| 2942 | terminating last Unicode string in response */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 2943 | if (ses->serverOS) |
Steve French | a424f8b | 2006-05-30 18:06:04 +0000 | [diff] [blame] | 2944 | kfree(ses->serverOS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2945 | ses->serverOS = |
Pekka Enberg | e915fc4 | 2005-09-06 15:18:35 -0700 | [diff] [blame] | 2946 | kzalloc(2 * (len + 1), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2947 | cifs_strfromUCS_le(ses->serverOS, |
Steve French | e89dc92 | 2005-11-11 15:18:19 -0800 | [diff] [blame] | 2948 | (__le16 *) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2949 | bcc_ptr, len, |
| 2950 | nls_codepage); |
| 2951 | bcc_ptr += 2 * (len + 1); |
| 2952 | remaining_words -= len + 1; |
| 2953 | ses->serverOS[2 * len] = 0; |
| 2954 | ses->serverOS[1 + (2 * len)] = 0; |
| 2955 | if (remaining_words > 0) { |
| 2956 | len = UniStrnlen((wchar_t *) |
| 2957 | bcc_ptr, |
| 2958 | remaining_words |
| 2959 | - 1); |
Steve French | cd49b49 | 2006-06-26 04:22:36 +0000 | [diff] [blame] | 2960 | kfree(ses->serverNOS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2961 | ses->serverNOS = |
Pekka Enberg | e915fc4 | 2005-09-06 15:18:35 -0700 | [diff] [blame] | 2962 | kzalloc(2 * (len + 1), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2963 | GFP_KERNEL); |
| 2964 | cifs_strfromUCS_le(ses-> |
| 2965 | serverNOS, |
Steve French | e89dc92 | 2005-11-11 15:18:19 -0800 | [diff] [blame] | 2966 | (__le16 *) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2967 | bcc_ptr, |
| 2968 | len, |
| 2969 | nls_codepage); |
| 2970 | bcc_ptr += 2 * (len + 1); |
| 2971 | ses->serverNOS[2 * len] = 0; |
| 2972 | ses->serverNOS[1 + |
| 2973 | (2 * len)] = 0; |
| 2974 | remaining_words -= len + 1; |
| 2975 | if (remaining_words > 0) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 2976 | len = UniStrnlen((wchar_t *) bcc_ptr, remaining_words); |
| 2977 | /* last string not always null terminated |
| 2978 | (for e.g. for Windows XP & 2000) */ |
Steve French | cd49b49 | 2006-06-26 04:22:36 +0000 | [diff] [blame] | 2979 | kfree(ses->serverDomain); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2980 | ses->serverDomain = |
Pekka Enberg | e915fc4 | 2005-09-06 15:18:35 -0700 | [diff] [blame] | 2981 | kzalloc(2 * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2982 | (len + |
| 2983 | 1), |
| 2984 | GFP_KERNEL); |
| 2985 | cifs_strfromUCS_le |
Steve French | e89dc92 | 2005-11-11 15:18:19 -0800 | [diff] [blame] | 2986 | (ses->serverDomain, |
| 2987 | (__le16 *)bcc_ptr, |
| 2988 | len, nls_codepage); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2989 | bcc_ptr += |
| 2990 | 2 * (len + 1); |
Steve French | e89dc92 | 2005-11-11 15:18:19 -0800 | [diff] [blame] | 2991 | ses->serverDomain[2*len] |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2992 | = 0; |
Steve French | e89dc92 | 2005-11-11 15:18:19 -0800 | [diff] [blame] | 2993 | ses->serverDomain |
| 2994 | [1 + (2 * len)] |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2995 | = 0; |
| 2996 | } /* else no more room so create dummy domain string */ |
Steve French | a424f8b | 2006-05-30 18:06:04 +0000 | [diff] [blame] | 2997 | else { |
Steve French | cd49b49 | 2006-06-26 04:22:36 +0000 | [diff] [blame] | 2998 | kfree(ses->serverDomain); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2999 | ses->serverDomain = |
Pekka Enberg | e915fc4 | 2005-09-06 15:18:35 -0700 | [diff] [blame] | 3000 | kzalloc(2, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3001 | GFP_KERNEL); |
Steve French | a424f8b | 2006-05-30 18:06:04 +0000 | [diff] [blame] | 3002 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3003 | } else { /* no room so create dummy domain and NOS string */ |
Steve French | cd49b49 | 2006-06-26 04:22:36 +0000 | [diff] [blame] | 3004 | kfree(ses->serverDomain); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3005 | ses->serverDomain = |
Pekka Enberg | e915fc4 | 2005-09-06 15:18:35 -0700 | [diff] [blame] | 3006 | kzalloc(2, GFP_KERNEL); |
Steve French | cd49b49 | 2006-06-26 04:22:36 +0000 | [diff] [blame] | 3007 | kfree(ses->serverNOS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3008 | ses->serverNOS = |
Pekka Enberg | e915fc4 | 2005-09-06 15:18:35 -0700 | [diff] [blame] | 3009 | kzalloc(2, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3010 | } |
| 3011 | } else { /* ASCII */ |
| 3012 | len = strnlen(bcc_ptr, 1024); |
| 3013 | if (((long) bcc_ptr + len) - (long) |
| 3014 | pByteArea(smb_buffer_response) |
| 3015 | <= BCC(smb_buffer_response)) { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 3016 | if (ses->serverOS) |
Steve French | a424f8b | 2006-05-30 18:06:04 +0000 | [diff] [blame] | 3017 | kfree(ses->serverOS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3018 | ses->serverOS = |
Pekka Enberg | e915fc4 | 2005-09-06 15:18:35 -0700 | [diff] [blame] | 3019 | kzalloc(len + 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3020 | GFP_KERNEL); |
| 3021 | strncpy(ses->serverOS, |
| 3022 | bcc_ptr, len); |
| 3023 | |
| 3024 | bcc_ptr += len; |
| 3025 | bcc_ptr[0] = 0; /* null terminate string */ |
| 3026 | bcc_ptr++; |
| 3027 | |
| 3028 | len = strnlen(bcc_ptr, 1024); |
Steve French | cd49b49 | 2006-06-26 04:22:36 +0000 | [diff] [blame] | 3029 | kfree(ses->serverNOS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3030 | ses->serverNOS = |
Pekka Enberg | e915fc4 | 2005-09-06 15:18:35 -0700 | [diff] [blame] | 3031 | kzalloc(len + 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3032 | GFP_KERNEL); |
| 3033 | strncpy(ses->serverNOS, bcc_ptr, len); |
| 3034 | bcc_ptr += len; |
| 3035 | bcc_ptr[0] = 0; |
| 3036 | bcc_ptr++; |
| 3037 | |
| 3038 | len = strnlen(bcc_ptr, 1024); |
Steve French | cd49b49 | 2006-06-26 04:22:36 +0000 | [diff] [blame] | 3039 | kfree(ses->serverDomain); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3040 | ses->serverDomain = |
Pekka Enberg | e915fc4 | 2005-09-06 15:18:35 -0700 | [diff] [blame] | 3041 | kzalloc(len + 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3042 | GFP_KERNEL); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3043 | strncpy(ses->serverDomain, |
| 3044 | bcc_ptr, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3045 | bcc_ptr += len; |
| 3046 | bcc_ptr[0] = 0; |
| 3047 | bcc_ptr++; |
| 3048 | } else |
| 3049 | cFYI(1, |
Steve French | 63135e0 | 2007-07-17 17:34:02 +0000 | [diff] [blame] | 3050 | ("field of length %d " |
| 3051 | "extends beyond end of smb", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3052 | len)); |
| 3053 | } |
| 3054 | } else { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3055 | cERROR(1, ("Security Blob Length extends beyond" |
| 3056 | " end of SMB")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3057 | } |
| 3058 | } else { |
| 3059 | cERROR(1, ("No session structure passed in.")); |
| 3060 | } |
| 3061 | } else { |
| 3062 | cERROR(1, |
Steve French | 5815449d | 2006-02-14 01:36:20 +0000 | [diff] [blame] | 3063 | (" Invalid Word count %d:", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3064 | smb_buffer_response->WordCount)); |
| 3065 | rc = -EIO; |
| 3066 | } |
| 3067 | |
Mariusz Kozlowski | a8a11d3 | 2007-10-03 16:41:24 +0000 | [diff] [blame] | 3068 | cifs_buf_release(smb_buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3069 | |
| 3070 | return rc; |
| 3071 | } |
| 3072 | static int |
| 3073 | CIFSNTLMSSPAuthSessSetup(unsigned int xid, struct cifsSesInfo *ses, |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 3074 | char *ntlm_session_key, bool ntlmv2_flag, |
Cyrill Gorcunov | 6345a3a | 2007-10-16 17:57:55 +0000 | [diff] [blame] | 3075 | const struct nls_table *nls_codepage) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3076 | { |
| 3077 | struct smb_hdr *smb_buffer; |
| 3078 | struct smb_hdr *smb_buffer_response; |
| 3079 | SESSION_SETUP_ANDX *pSMB; |
| 3080 | SESSION_SETUP_ANDX *pSMBr; |
| 3081 | char *bcc_ptr; |
| 3082 | char *user; |
| 3083 | char *domain; |
| 3084 | int rc = 0; |
| 3085 | int remaining_words = 0; |
| 3086 | int bytes_returned = 0; |
| 3087 | int len; |
Cyrill Gorcunov | 6345a3a | 2007-10-16 17:57:55 +0000 | [diff] [blame] | 3088 | int SecurityBlobLength = sizeof(AUTHENTICATE_MESSAGE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3089 | PAUTHENTICATE_MESSAGE SecurityBlob; |
| 3090 | __u32 negotiate_flags, capabilities; |
| 3091 | __u16 count; |
| 3092 | |
| 3093 | cFYI(1, ("In NTLMSSPSessSetup (Authenticate)")); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 3094 | if (ses == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3095 | return -EINVAL; |
| 3096 | user = ses->userName; |
| 3097 | domain = ses->domainName; |
| 3098 | smb_buffer = cifs_buf_get(); |
| 3099 | if (smb_buffer == NULL) { |
| 3100 | return -ENOMEM; |
| 3101 | } |
| 3102 | smb_buffer_response = smb_buffer; |
Cyrill Gorcunov | 6345a3a | 2007-10-16 17:57:55 +0000 | [diff] [blame] | 3103 | pSMB = (SESSION_SETUP_ANDX *)smb_buffer; |
| 3104 | pSMBr = (SESSION_SETUP_ANDX *)smb_buffer_response; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3105 | |
| 3106 | /* send SMBsessionSetup here */ |
| 3107 | header_assemble(smb_buffer, SMB_COM_SESSION_SETUP_ANDX, |
| 3108 | NULL /* no tCon exists yet */ , 12 /* wct */ ); |
Steve French | 1982c34 | 2005-08-17 12:38:22 -0700 | [diff] [blame] | 3109 | |
| 3110 | smb_buffer->Mid = GetNextMid(ses->server); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3111 | pSMB->req.hdr.Flags |= (SMBFLG_CASELESS | SMBFLG_CANONICAL_PATH_FORMAT); |
| 3112 | pSMB->req.hdr.Flags2 |= SMBFLG2_EXT_SEC; |
| 3113 | pSMB->req.AndXCommand = 0xFF; |
| 3114 | pSMB->req.MaxBufferSize = cpu_to_le16(ses->server->maxBuf); |
| 3115 | pSMB->req.MaxMpxCount = cpu_to_le16(ses->server->maxReq); |
| 3116 | |
| 3117 | pSMB->req.hdr.Uid = ses->Suid; |
| 3118 | |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 3119 | if (ses->server->secMode & (SECMODE_SIGN_REQUIRED | SECMODE_SIGN_ENABLED)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3120 | smb_buffer->Flags2 |= SMBFLG2_SECURITY_SIGNATURE; |
| 3121 | |
| 3122 | capabilities = CAP_LARGE_FILES | CAP_NT_SMBS | CAP_LEVEL_II_OPLOCKS | |
Cyrill Gorcunov | 6345a3a | 2007-10-16 17:57:55 +0000 | [diff] [blame] | 3123 | CAP_EXTENDED_SECURITY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3124 | if (ses->capabilities & CAP_UNICODE) { |
| 3125 | smb_buffer->Flags2 |= SMBFLG2_UNICODE; |
| 3126 | capabilities |= CAP_UNICODE; |
| 3127 | } |
| 3128 | if (ses->capabilities & CAP_STATUS32) { |
| 3129 | smb_buffer->Flags2 |= SMBFLG2_ERR_STATUS; |
| 3130 | capabilities |= CAP_STATUS32; |
| 3131 | } |
| 3132 | if (ses->capabilities & CAP_DFS) { |
| 3133 | smb_buffer->Flags2 |= SMBFLG2_DFS; |
| 3134 | capabilities |= CAP_DFS; |
| 3135 | } |
| 3136 | pSMB->req.Capabilities = cpu_to_le32(capabilities); |
| 3137 | |
Cyrill Gorcunov | 6345a3a | 2007-10-16 17:57:55 +0000 | [diff] [blame] | 3138 | bcc_ptr = (char *)&pSMB->req.SecurityBlob; |
| 3139 | SecurityBlob = (PAUTHENTICATE_MESSAGE)bcc_ptr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3140 | strncpy(SecurityBlob->Signature, NTLMSSP_SIGNATURE, 8); |
| 3141 | SecurityBlob->MessageType = NtLmAuthenticate; |
| 3142 | bcc_ptr += SecurityBlobLength; |
Cyrill Gorcunov | 6345a3a | 2007-10-16 17:57:55 +0000 | [diff] [blame] | 3143 | negotiate_flags = NTLMSSP_NEGOTIATE_UNICODE | NTLMSSP_REQUEST_TARGET | |
| 3144 | NTLMSSP_NEGOTIATE_NTLM | NTLMSSP_NEGOTIATE_TARGET_INFO | |
| 3145 | 0x80000000 | NTLMSSP_NEGOTIATE_128; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 3146 | if (sign_CIFS_PDUs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3147 | negotiate_flags |= /* NTLMSSP_NEGOTIATE_ALWAYS_SIGN |*/ NTLMSSP_NEGOTIATE_SIGN; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 3148 | if (ntlmv2_flag) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3149 | negotiate_flags |= NTLMSSP_NEGOTIATE_NTLMV2; |
| 3150 | |
| 3151 | /* setup pointers to domain name and workstation name */ |
| 3152 | |
| 3153 | SecurityBlob->WorkstationName.Buffer = 0; |
| 3154 | SecurityBlob->WorkstationName.Length = 0; |
| 3155 | SecurityBlob->WorkstationName.MaximumLength = 0; |
| 3156 | SecurityBlob->SessionKey.Length = 0; |
| 3157 | SecurityBlob->SessionKey.MaximumLength = 0; |
| 3158 | SecurityBlob->SessionKey.Buffer = 0; |
| 3159 | |
| 3160 | SecurityBlob->LmChallengeResponse.Length = 0; |
| 3161 | SecurityBlob->LmChallengeResponse.MaximumLength = 0; |
| 3162 | SecurityBlob->LmChallengeResponse.Buffer = 0; |
| 3163 | |
| 3164 | SecurityBlob->NtChallengeResponse.Length = |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 3165 | cpu_to_le16(CIFS_SESS_KEY_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3166 | SecurityBlob->NtChallengeResponse.MaximumLength = |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 3167 | cpu_to_le16(CIFS_SESS_KEY_SIZE); |
| 3168 | memcpy(bcc_ptr, ntlm_session_key, CIFS_SESS_KEY_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3169 | SecurityBlob->NtChallengeResponse.Buffer = |
| 3170 | cpu_to_le32(SecurityBlobLength); |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 3171 | SecurityBlobLength += CIFS_SESS_KEY_SIZE; |
| 3172 | bcc_ptr += CIFS_SESS_KEY_SIZE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3173 | |
| 3174 | if (ses->capabilities & CAP_UNICODE) { |
| 3175 | if (domain == NULL) { |
| 3176 | SecurityBlob->DomainName.Buffer = 0; |
| 3177 | SecurityBlob->DomainName.Length = 0; |
| 3178 | SecurityBlob->DomainName.MaximumLength = 0; |
| 3179 | } else { |
Steve French | 77159b4 | 2007-08-31 01:10:17 +0000 | [diff] [blame] | 3180 | __u16 ln = cifs_strtoUCS((__le16 *) bcc_ptr, domain, 64, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3181 | nls_codepage); |
Steve French | 77159b4 | 2007-08-31 01:10:17 +0000 | [diff] [blame] | 3182 | ln *= 2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3183 | SecurityBlob->DomainName.MaximumLength = |
Steve French | 77159b4 | 2007-08-31 01:10:17 +0000 | [diff] [blame] | 3184 | cpu_to_le16(ln); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3185 | SecurityBlob->DomainName.Buffer = |
| 3186 | cpu_to_le32(SecurityBlobLength); |
Steve French | 77159b4 | 2007-08-31 01:10:17 +0000 | [diff] [blame] | 3187 | bcc_ptr += ln; |
| 3188 | SecurityBlobLength += ln; |
| 3189 | SecurityBlob->DomainName.Length = cpu_to_le16(ln); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3190 | } |
| 3191 | if (user == NULL) { |
| 3192 | SecurityBlob->UserName.Buffer = 0; |
| 3193 | SecurityBlob->UserName.Length = 0; |
| 3194 | SecurityBlob->UserName.MaximumLength = 0; |
| 3195 | } else { |
Steve French | 77159b4 | 2007-08-31 01:10:17 +0000 | [diff] [blame] | 3196 | __u16 ln = cifs_strtoUCS((__le16 *) bcc_ptr, user, 64, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3197 | nls_codepage); |
Steve French | 77159b4 | 2007-08-31 01:10:17 +0000 | [diff] [blame] | 3198 | ln *= 2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3199 | SecurityBlob->UserName.MaximumLength = |
Steve French | 77159b4 | 2007-08-31 01:10:17 +0000 | [diff] [blame] | 3200 | cpu_to_le16(ln); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3201 | SecurityBlob->UserName.Buffer = |
| 3202 | cpu_to_le32(SecurityBlobLength); |
Steve French | 77159b4 | 2007-08-31 01:10:17 +0000 | [diff] [blame] | 3203 | bcc_ptr += ln; |
| 3204 | SecurityBlobLength += ln; |
| 3205 | SecurityBlob->UserName.Length = cpu_to_le16(ln); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3206 | } |
| 3207 | |
Steve French | 63135e0 | 2007-07-17 17:34:02 +0000 | [diff] [blame] | 3208 | /* SecurityBlob->WorkstationName.Length = |
| 3209 | cifs_strtoUCS((__le16 *) bcc_ptr, "AMACHINE",64, nls_codepage); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3210 | SecurityBlob->WorkstationName.Length *= 2; |
Steve French | 63135e0 | 2007-07-17 17:34:02 +0000 | [diff] [blame] | 3211 | SecurityBlob->WorkstationName.MaximumLength = |
| 3212 | cpu_to_le16(SecurityBlob->WorkstationName.Length); |
| 3213 | SecurityBlob->WorkstationName.Buffer = |
| 3214 | cpu_to_le32(SecurityBlobLength); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3215 | bcc_ptr += SecurityBlob->WorkstationName.Length; |
| 3216 | SecurityBlobLength += SecurityBlob->WorkstationName.Length; |
Steve French | 63135e0 | 2007-07-17 17:34:02 +0000 | [diff] [blame] | 3217 | SecurityBlob->WorkstationName.Length = |
| 3218 | cpu_to_le16(SecurityBlob->WorkstationName.Length); */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3219 | |
| 3220 | if ((long) bcc_ptr % 2) { |
| 3221 | *bcc_ptr = 0; |
| 3222 | bcc_ptr++; |
| 3223 | } |
| 3224 | bytes_returned = |
Steve French | e89dc92 | 2005-11-11 15:18:19 -0800 | [diff] [blame] | 3225 | cifs_strtoUCS((__le16 *) bcc_ptr, "Linux version ", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3226 | 32, nls_codepage); |
| 3227 | bcc_ptr += 2 * bytes_returned; |
| 3228 | bytes_returned = |
Serge E. Hallyn | e9ff399 | 2006-10-02 02:18:11 -0700 | [diff] [blame] | 3229 | cifs_strtoUCS((__le16 *) bcc_ptr, utsname()->release, 32, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3230 | nls_codepage); |
| 3231 | bcc_ptr += 2 * bytes_returned; |
| 3232 | bcc_ptr += 2; /* null term version string */ |
| 3233 | bytes_returned = |
Steve French | e89dc92 | 2005-11-11 15:18:19 -0800 | [diff] [blame] | 3234 | cifs_strtoUCS((__le16 *) bcc_ptr, CIFS_NETWORK_OPSYS, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3235 | 64, nls_codepage); |
| 3236 | bcc_ptr += 2 * bytes_returned; |
| 3237 | *(bcc_ptr + 1) = 0; |
| 3238 | *(bcc_ptr + 2) = 0; |
| 3239 | bcc_ptr += 2; /* null terminate network opsys string */ |
| 3240 | *(bcc_ptr + 1) = 0; |
| 3241 | *(bcc_ptr + 2) = 0; |
| 3242 | bcc_ptr += 2; /* null domain */ |
| 3243 | } else { /* ASCII */ |
| 3244 | if (domain == NULL) { |
| 3245 | SecurityBlob->DomainName.Buffer = 0; |
| 3246 | SecurityBlob->DomainName.Length = 0; |
| 3247 | SecurityBlob->DomainName.MaximumLength = 0; |
| 3248 | } else { |
Steve French | 77159b4 | 2007-08-31 01:10:17 +0000 | [diff] [blame] | 3249 | __u16 ln; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3250 | negotiate_flags |= NTLMSSP_NEGOTIATE_DOMAIN_SUPPLIED; |
| 3251 | strncpy(bcc_ptr, domain, 63); |
Steve French | 77159b4 | 2007-08-31 01:10:17 +0000 | [diff] [blame] | 3252 | ln = strnlen(domain, 64); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3253 | SecurityBlob->DomainName.MaximumLength = |
Steve French | 77159b4 | 2007-08-31 01:10:17 +0000 | [diff] [blame] | 3254 | cpu_to_le16(ln); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3255 | SecurityBlob->DomainName.Buffer = |
| 3256 | cpu_to_le32(SecurityBlobLength); |
Steve French | 77159b4 | 2007-08-31 01:10:17 +0000 | [diff] [blame] | 3257 | bcc_ptr += ln; |
| 3258 | SecurityBlobLength += ln; |
| 3259 | SecurityBlob->DomainName.Length = cpu_to_le16(ln); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3260 | } |
| 3261 | if (user == NULL) { |
| 3262 | SecurityBlob->UserName.Buffer = 0; |
| 3263 | SecurityBlob->UserName.Length = 0; |
| 3264 | SecurityBlob->UserName.MaximumLength = 0; |
| 3265 | } else { |
Steve French | 77159b4 | 2007-08-31 01:10:17 +0000 | [diff] [blame] | 3266 | __u16 ln; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3267 | strncpy(bcc_ptr, user, 63); |
Steve French | 77159b4 | 2007-08-31 01:10:17 +0000 | [diff] [blame] | 3268 | ln = strnlen(user, 64); |
| 3269 | SecurityBlob->UserName.MaximumLength = cpu_to_le16(ln); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3270 | SecurityBlob->UserName.Buffer = |
Steve French | 77159b4 | 2007-08-31 01:10:17 +0000 | [diff] [blame] | 3271 | cpu_to_le32(SecurityBlobLength); |
| 3272 | bcc_ptr += ln; |
| 3273 | SecurityBlobLength += ln; |
| 3274 | SecurityBlob->UserName.Length = cpu_to_le16(ln); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3275 | } |
| 3276 | /* BB fill in our workstation name if known BB */ |
| 3277 | |
| 3278 | strcpy(bcc_ptr, "Linux version "); |
| 3279 | bcc_ptr += strlen("Linux version "); |
Serge E. Hallyn | e9ff399 | 2006-10-02 02:18:11 -0700 | [diff] [blame] | 3280 | strcpy(bcc_ptr, utsname()->release); |
| 3281 | bcc_ptr += strlen(utsname()->release) + 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3282 | strcpy(bcc_ptr, CIFS_NETWORK_OPSYS); |
| 3283 | bcc_ptr += strlen(CIFS_NETWORK_OPSYS) + 1; |
| 3284 | bcc_ptr++; /* null domain */ |
| 3285 | *bcc_ptr = 0; |
| 3286 | } |
| 3287 | SecurityBlob->NegotiateFlags = cpu_to_le32(negotiate_flags); |
| 3288 | pSMB->req.SecurityBlobLength = cpu_to_le16(SecurityBlobLength); |
| 3289 | count = (long) bcc_ptr - (long) pByteArea(smb_buffer); |
| 3290 | smb_buffer->smb_buf_length += count; |
| 3291 | pSMB->req.ByteCount = cpu_to_le16(count); |
| 3292 | |
| 3293 | rc = SendReceive(xid, ses, smb_buffer, smb_buffer_response, |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 3294 | &bytes_returned, CIFS_LONG_OP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3295 | if (rc) { |
Cyrill Gorcunov | 6345a3a | 2007-10-16 17:57:55 +0000 | [diff] [blame] | 3296 | /* rc = map_smb_to_linux_error(smb_buffer_response) done in SendReceive now */ |
| 3297 | } else if ((smb_buffer_response->WordCount == 3) || |
| 3298 | (smb_buffer_response->WordCount == 4)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3299 | __u16 action = le16_to_cpu(pSMBr->resp.Action); |
Cyrill Gorcunov | 6345a3a | 2007-10-16 17:57:55 +0000 | [diff] [blame] | 3300 | __u16 blob_len = le16_to_cpu(pSMBr->resp.SecurityBlobLength); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3301 | if (action & GUEST_LOGIN) |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3302 | cFYI(1, (" Guest login")); /* BB Should we set anything |
| 3303 | in SesInfo struct ? */ |
| 3304 | /* if (SecurityBlob2->MessageType != NtLm??) { |
| 3305 | cFYI("Unexpected message type on auth response is %d")); |
| 3306 | } */ |
| 3307 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3308 | if (ses) { |
| 3309 | cFYI(1, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3310 | ("Check challenge UID %d vs auth response UID %d", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3311 | ses->Suid, smb_buffer_response->Uid)); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3312 | /* UID left in wire format */ |
| 3313 | ses->Suid = smb_buffer_response->Uid; |
| 3314 | bcc_ptr = pByteArea(smb_buffer_response); |
| 3315 | /* response can have either 3 or 4 word count - Samba sends 3 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3316 | if ((pSMBr->resp.hdr.WordCount == 3) |
| 3317 | || ((pSMBr->resp.hdr.WordCount == 4) |
| 3318 | && (blob_len < |
| 3319 | pSMBr->resp.ByteCount))) { |
| 3320 | if (pSMBr->resp.hdr.WordCount == 4) { |
| 3321 | bcc_ptr += |
| 3322 | blob_len; |
| 3323 | cFYI(1, |
| 3324 | ("Security Blob Length %d ", |
| 3325 | blob_len)); |
| 3326 | } |
| 3327 | |
| 3328 | cFYI(1, |
| 3329 | ("NTLMSSP response to Authenticate ")); |
| 3330 | |
| 3331 | if (smb_buffer->Flags2 & SMBFLG2_UNICODE) { |
| 3332 | if ((long) (bcc_ptr) % 2) { |
| 3333 | remaining_words = |
| 3334 | (BCC(smb_buffer_response) |
| 3335 | - 1) / 2; |
| 3336 | bcc_ptr++; /* Unicode strings must be word aligned */ |
| 3337 | } else { |
| 3338 | remaining_words = BCC(smb_buffer_response) / 2; |
| 3339 | } |
Steve French | 77159b4 | 2007-08-31 01:10:17 +0000 | [diff] [blame] | 3340 | len = UniStrnlen((wchar_t *) bcc_ptr, |
| 3341 | remaining_words - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3342 | /* We look for obvious messed up bcc or strings in response so we do not go off |
| 3343 | the end since (at least) WIN2K and Windows XP have a major bug in not null |
| 3344 | terminating last Unicode string in response */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 3345 | if (ses->serverOS) |
Steve French | 0877583 | 2006-05-30 18:08:26 +0000 | [diff] [blame] | 3346 | kfree(ses->serverOS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3347 | ses->serverOS = |
Pekka Enberg | e915fc4 | 2005-09-06 15:18:35 -0700 | [diff] [blame] | 3348 | kzalloc(2 * (len + 1), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3349 | cifs_strfromUCS_le(ses->serverOS, |
Steve French | e89dc92 | 2005-11-11 15:18:19 -0800 | [diff] [blame] | 3350 | (__le16 *) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3351 | bcc_ptr, len, |
| 3352 | nls_codepage); |
| 3353 | bcc_ptr += 2 * (len + 1); |
| 3354 | remaining_words -= len + 1; |
| 3355 | ses->serverOS[2 * len] = 0; |
| 3356 | ses->serverOS[1 + (2 * len)] = 0; |
| 3357 | if (remaining_words > 0) { |
| 3358 | len = UniStrnlen((wchar_t *) |
| 3359 | bcc_ptr, |
| 3360 | remaining_words |
| 3361 | - 1); |
Steve French | cd49b49 | 2006-06-26 04:22:36 +0000 | [diff] [blame] | 3362 | kfree(ses->serverNOS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3363 | ses->serverNOS = |
Pekka Enberg | e915fc4 | 2005-09-06 15:18:35 -0700 | [diff] [blame] | 3364 | kzalloc(2 * (len + 1), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3365 | GFP_KERNEL); |
| 3366 | cifs_strfromUCS_le(ses-> |
| 3367 | serverNOS, |
Steve French | e89dc92 | 2005-11-11 15:18:19 -0800 | [diff] [blame] | 3368 | (__le16 *) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3369 | bcc_ptr, |
| 3370 | len, |
| 3371 | nls_codepage); |
| 3372 | bcc_ptr += 2 * (len + 1); |
| 3373 | ses->serverNOS[2 * len] = 0; |
| 3374 | ses->serverNOS[1+(2*len)] = 0; |
| 3375 | remaining_words -= len + 1; |
| 3376 | if (remaining_words > 0) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3377 | len = UniStrnlen((wchar_t *) bcc_ptr, remaining_words); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3378 | /* last string not always null terminated (e.g. for Windows XP & 2000) */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 3379 | if (ses->serverDomain) |
Steve French | a424f8b | 2006-05-30 18:06:04 +0000 | [diff] [blame] | 3380 | kfree(ses->serverDomain); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3381 | ses->serverDomain = |
Pekka Enberg | e915fc4 | 2005-09-06 15:18:35 -0700 | [diff] [blame] | 3382 | kzalloc(2 * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3383 | (len + |
| 3384 | 1), |
| 3385 | GFP_KERNEL); |
| 3386 | cifs_strfromUCS_le |
| 3387 | (ses-> |
| 3388 | serverDomain, |
Steve French | e89dc92 | 2005-11-11 15:18:19 -0800 | [diff] [blame] | 3389 | (__le16 *) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3390 | bcc_ptr, len, |
| 3391 | nls_codepage); |
| 3392 | bcc_ptr += |
| 3393 | 2 * (len + 1); |
| 3394 | ses-> |
| 3395 | serverDomain[2 |
| 3396 | * len] |
| 3397 | = 0; |
| 3398 | ses-> |
| 3399 | serverDomain[1 |
| 3400 | + |
| 3401 | (2 |
| 3402 | * |
| 3403 | len)] |
| 3404 | = 0; |
| 3405 | } /* else no more room so create dummy domain string */ |
Steve French | a424f8b | 2006-05-30 18:06:04 +0000 | [diff] [blame] | 3406 | else { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 3407 | if (ses->serverDomain) |
Steve French | a424f8b | 2006-05-30 18:06:04 +0000 | [diff] [blame] | 3408 | kfree(ses->serverDomain); |
Pekka Enberg | e915fc4 | 2005-09-06 15:18:35 -0700 | [diff] [blame] | 3409 | ses->serverDomain = kzalloc(2,GFP_KERNEL); |
Steve French | a424f8b | 2006-05-30 18:06:04 +0000 | [diff] [blame] | 3410 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3411 | } else { /* no room so create dummy domain and NOS string */ |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 3412 | if (ses->serverDomain) |
Steve French | a424f8b | 2006-05-30 18:06:04 +0000 | [diff] [blame] | 3413 | kfree(ses->serverDomain); |
Pekka Enberg | e915fc4 | 2005-09-06 15:18:35 -0700 | [diff] [blame] | 3414 | ses->serverDomain = kzalloc(2, GFP_KERNEL); |
Steve French | cd49b49 | 2006-06-26 04:22:36 +0000 | [diff] [blame] | 3415 | kfree(ses->serverNOS); |
Pekka Enberg | e915fc4 | 2005-09-06 15:18:35 -0700 | [diff] [blame] | 3416 | ses->serverNOS = kzalloc(2, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3417 | } |
| 3418 | } else { /* ASCII */ |
| 3419 | len = strnlen(bcc_ptr, 1024); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3420 | if (((long) bcc_ptr + len) - |
| 3421 | (long) pByteArea(smb_buffer_response) |
Steve French | 63135e0 | 2007-07-17 17:34:02 +0000 | [diff] [blame] | 3422 | <= BCC(smb_buffer_response)) { |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 3423 | if (ses->serverOS) |
Steve French | a424f8b | 2006-05-30 18:06:04 +0000 | [diff] [blame] | 3424 | kfree(ses->serverOS); |
Steve French | 77159b4 | 2007-08-31 01:10:17 +0000 | [diff] [blame] | 3425 | ses->serverOS = kzalloc(len + 1, GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3426 | strncpy(ses->serverOS,bcc_ptr, len); |
| 3427 | |
| 3428 | bcc_ptr += len; |
| 3429 | bcc_ptr[0] = 0; /* null terminate the string */ |
| 3430 | bcc_ptr++; |
| 3431 | |
| 3432 | len = strnlen(bcc_ptr, 1024); |
Steve French | cd49b49 | 2006-06-26 04:22:36 +0000 | [diff] [blame] | 3433 | kfree(ses->serverNOS); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3434 | ses->serverNOS = kzalloc(len+1, |
| 3435 | GFP_KERNEL); |
Steve French | 63135e0 | 2007-07-17 17:34:02 +0000 | [diff] [blame] | 3436 | strncpy(ses->serverNOS, |
| 3437 | bcc_ptr, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3438 | bcc_ptr += len; |
| 3439 | bcc_ptr[0] = 0; |
| 3440 | bcc_ptr++; |
| 3441 | |
| 3442 | len = strnlen(bcc_ptr, 1024); |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 3443 | if (ses->serverDomain) |
Steve French | a424f8b | 2006-05-30 18:06:04 +0000 | [diff] [blame] | 3444 | kfree(ses->serverDomain); |
Steve French | 63135e0 | 2007-07-17 17:34:02 +0000 | [diff] [blame] | 3445 | ses->serverDomain = |
| 3446 | kzalloc(len+1, |
| 3447 | GFP_KERNEL); |
| 3448 | strncpy(ses->serverDomain, |
| 3449 | bcc_ptr, len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3450 | bcc_ptr += len; |
| 3451 | bcc_ptr[0] = 0; |
| 3452 | bcc_ptr++; |
| 3453 | } else |
Cyrill Gorcunov | 6345a3a | 2007-10-16 17:57:55 +0000 | [diff] [blame] | 3454 | cFYI(1, ("field of length %d " |
Steve French | 63135e0 | 2007-07-17 17:34:02 +0000 | [diff] [blame] | 3455 | "extends beyond end of smb ", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3456 | len)); |
| 3457 | } |
| 3458 | } else { |
Cyrill Gorcunov | 6345a3a | 2007-10-16 17:57:55 +0000 | [diff] [blame] | 3459 | cERROR(1, ("Security Blob extends beyond end " |
Steve French | 63135e0 | 2007-07-17 17:34:02 +0000 | [diff] [blame] | 3460 | "of SMB")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3461 | } |
| 3462 | } else { |
| 3463 | cERROR(1, ("No session structure passed in.")); |
| 3464 | } |
| 3465 | } else { |
Cyrill Gorcunov | 6345a3a | 2007-10-16 17:57:55 +0000 | [diff] [blame] | 3466 | cERROR(1, ("Invalid Word count %d: ", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3467 | smb_buffer_response->WordCount)); |
| 3468 | rc = -EIO; |
| 3469 | } |
| 3470 | |
Mariusz Kozlowski | a8a11d3 | 2007-10-03 16:41:24 +0000 | [diff] [blame] | 3471 | cifs_buf_release(smb_buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3472 | |
| 3473 | return rc; |
| 3474 | } |
| 3475 | |
| 3476 | int |
| 3477 | CIFSTCon(unsigned int xid, struct cifsSesInfo *ses, |
| 3478 | const char *tree, struct cifsTconInfo *tcon, |
| 3479 | const struct nls_table *nls_codepage) |
| 3480 | { |
| 3481 | struct smb_hdr *smb_buffer; |
| 3482 | struct smb_hdr *smb_buffer_response; |
| 3483 | TCONX_REQ *pSMB; |
| 3484 | TCONX_RSP *pSMBr; |
| 3485 | unsigned char *bcc_ptr; |
| 3486 | int rc = 0; |
| 3487 | int length; |
| 3488 | __u16 count; |
| 3489 | |
| 3490 | if (ses == NULL) |
| 3491 | return -EIO; |
| 3492 | |
| 3493 | smb_buffer = cifs_buf_get(); |
| 3494 | if (smb_buffer == NULL) { |
| 3495 | return -ENOMEM; |
| 3496 | } |
| 3497 | smb_buffer_response = smb_buffer; |
| 3498 | |
| 3499 | header_assemble(smb_buffer, SMB_COM_TREE_CONNECT_ANDX, |
| 3500 | NULL /*no tid */ , 4 /*wct */ ); |
Steve French | 1982c34 | 2005-08-17 12:38:22 -0700 | [diff] [blame] | 3501 | |
| 3502 | smb_buffer->Mid = GetNextMid(ses->server); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3503 | smb_buffer->Uid = ses->Suid; |
| 3504 | pSMB = (TCONX_REQ *) smb_buffer; |
| 3505 | pSMBr = (TCONX_RSP *) smb_buffer_response; |
| 3506 | |
| 3507 | pSMB->AndXCommand = 0xFF; |
| 3508 | pSMB->Flags = cpu_to_le16(TCON_EXTENDED_SECINFO); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3509 | bcc_ptr = &pSMB->Password[0]; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 3510 | if ((ses->server->secMode) & SECMODE_USER) { |
Steve French | eeac804 | 2006-01-13 21:34:58 -0800 | [diff] [blame] | 3511 | pSMB->PasswordLength = cpu_to_le16(1); /* minimum */ |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 3512 | *bcc_ptr = 0; /* password is null byte */ |
Steve French | eeac804 | 2006-01-13 21:34:58 -0800 | [diff] [blame] | 3513 | bcc_ptr++; /* skip password */ |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 3514 | /* already aligned so no need to do it below */ |
Steve French | eeac804 | 2006-01-13 21:34:58 -0800 | [diff] [blame] | 3515 | } else { |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 3516 | pSMB->PasswordLength = cpu_to_le16(CIFS_SESS_KEY_SIZE); |
Steve French | eeac804 | 2006-01-13 21:34:58 -0800 | [diff] [blame] | 3517 | /* BB FIXME add code to fail this if NTLMv2 or Kerberos |
| 3518 | specified as required (when that support is added to |
| 3519 | the vfs in the future) as only NTLM or the much |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 3520 | weaker LANMAN (which we do not send by default) is accepted |
Steve French | eeac804 | 2006-01-13 21:34:58 -0800 | [diff] [blame] | 3521 | by Samba (not sure whether other servers allow |
| 3522 | NTLMv2 password here) */ |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 3523 | #ifdef CONFIG_CIFS_WEAK_PW_HASH |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3524 | if ((extended_security & CIFSSEC_MAY_LANMAN) && |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 3525 | (ses->server->secType == LANMAN)) |
| 3526 | calc_lanman_hash(ses, bcc_ptr); |
| 3527 | else |
| 3528 | #endif /* CIFS_WEAK_PW_HASH */ |
Steve French | eeac804 | 2006-01-13 21:34:58 -0800 | [diff] [blame] | 3529 | SMBNTencrypt(ses->password, |
| 3530 | ses->server->cryptKey, |
| 3531 | bcc_ptr); |
| 3532 | |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 3533 | bcc_ptr += CIFS_SESS_KEY_SIZE; |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 3534 | if (ses->capabilities & CAP_UNICODE) { |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 3535 | /* must align unicode strings */ |
| 3536 | *bcc_ptr = 0; /* null byte password */ |
| 3537 | bcc_ptr++; |
| 3538 | } |
Steve French | eeac804 | 2006-01-13 21:34:58 -0800 | [diff] [blame] | 3539 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3540 | |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3541 | if (ses->server->secMode & |
Steve French | a878fb2 | 2006-05-30 18:04:19 +0000 | [diff] [blame] | 3542 | (SECMODE_SIGN_REQUIRED | SECMODE_SIGN_ENABLED)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3543 | smb_buffer->Flags2 |= SMBFLG2_SECURITY_SIGNATURE; |
| 3544 | |
| 3545 | if (ses->capabilities & CAP_STATUS32) { |
| 3546 | smb_buffer->Flags2 |= SMBFLG2_ERR_STATUS; |
| 3547 | } |
| 3548 | if (ses->capabilities & CAP_DFS) { |
| 3549 | smb_buffer->Flags2 |= SMBFLG2_DFS; |
| 3550 | } |
| 3551 | if (ses->capabilities & CAP_UNICODE) { |
| 3552 | smb_buffer->Flags2 |= SMBFLG2_UNICODE; |
| 3553 | length = |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3554 | cifs_strtoUCS((__le16 *) bcc_ptr, tree, |
| 3555 | 6 /* max utf8 char length in bytes */ * |
Steve French | a878fb2 | 2006-05-30 18:04:19 +0000 | [diff] [blame] | 3556 | (/* server len*/ + 256 /* share len */), nls_codepage); |
| 3557 | bcc_ptr += 2 * length; /* convert num 16 bit words to bytes */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3558 | bcc_ptr += 2; /* skip trailing null */ |
| 3559 | } else { /* ASCII */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3560 | strcpy(bcc_ptr, tree); |
| 3561 | bcc_ptr += strlen(tree) + 1; |
| 3562 | } |
| 3563 | strcpy(bcc_ptr, "?????"); |
| 3564 | bcc_ptr += strlen("?????"); |
| 3565 | bcc_ptr += 1; |
| 3566 | count = bcc_ptr - &pSMB->Password[0]; |
| 3567 | pSMB->hdr.smb_buf_length += count; |
| 3568 | pSMB->ByteCount = cpu_to_le16(count); |
| 3569 | |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 3570 | rc = SendReceive(xid, ses, smb_buffer, smb_buffer_response, &length, |
| 3571 | CIFS_STD_OP); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3572 | |
| 3573 | /* if (rc) rc = map_smb_to_linux_error(smb_buffer_response); */ |
| 3574 | /* above now done in SendReceive */ |
| 3575 | if ((rc == 0) && (tcon != NULL)) { |
| 3576 | tcon->tidStatus = CifsGood; |
Steve French | 3b79521 | 2008-11-13 19:45:32 +0000 | [diff] [blame] | 3577 | tcon->need_reconnect = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3578 | tcon->tid = smb_buffer_response->Tid; |
| 3579 | bcc_ptr = pByteArea(smb_buffer_response); |
| 3580 | length = strnlen(bcc_ptr, BCC(smb_buffer_response) - 2); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3581 | /* skip service field (NB: this field is always ASCII) */ |
Steve French | 7f8ed42 | 2007-09-28 22:28:55 +0000 | [diff] [blame] | 3582 | if (length == 3) { |
| 3583 | if ((bcc_ptr[0] == 'I') && (bcc_ptr[1] == 'P') && |
| 3584 | (bcc_ptr[2] == 'C')) { |
| 3585 | cFYI(1, ("IPC connection")); |
| 3586 | tcon->ipc = 1; |
| 3587 | } |
| 3588 | } else if (length == 2) { |
| 3589 | if ((bcc_ptr[0] == 'A') && (bcc_ptr[1] == ':')) { |
| 3590 | /* the most common case */ |
| 3591 | cFYI(1, ("disk share connection")); |
| 3592 | } |
| 3593 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3594 | bcc_ptr += length + 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3595 | strncpy(tcon->treeName, tree, MAX_TREE_SIZE); |
| 3596 | if (smb_buffer->Flags2 & SMBFLG2_UNICODE) { |
| 3597 | length = UniStrnlen((wchar_t *) bcc_ptr, 512); |
| 3598 | if ((bcc_ptr + (2 * length)) - |
| 3599 | pByteArea(smb_buffer_response) <= |
| 3600 | BCC(smb_buffer_response)) { |
Jesper Juhl | f99d49a | 2005-11-07 01:01:34 -0800 | [diff] [blame] | 3601 | kfree(tcon->nativeFileSystem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3602 | tcon->nativeFileSystem = |
Pekka Enberg | e915fc4 | 2005-09-06 15:18:35 -0700 | [diff] [blame] | 3603 | kzalloc(length + 2, GFP_KERNEL); |
Steve French | 88f370a | 2007-09-15 03:01:17 +0000 | [diff] [blame] | 3604 | if (tcon->nativeFileSystem) |
| 3605 | cifs_strfromUCS_le( |
| 3606 | tcon->nativeFileSystem, |
| 3607 | (__le16 *) bcc_ptr, |
| 3608 | length, nls_codepage); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3609 | bcc_ptr += 2 * length; |
| 3610 | bcc_ptr[0] = 0; /* null terminate the string */ |
| 3611 | bcc_ptr[1] = 0; |
| 3612 | bcc_ptr += 2; |
| 3613 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3614 | /* else do not bother copying these information fields*/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3615 | } else { |
| 3616 | length = strnlen(bcc_ptr, 1024); |
| 3617 | if ((bcc_ptr + length) - |
| 3618 | pByteArea(smb_buffer_response) <= |
| 3619 | BCC(smb_buffer_response)) { |
Jesper Juhl | f99d49a | 2005-11-07 01:01:34 -0800 | [diff] [blame] | 3620 | kfree(tcon->nativeFileSystem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3621 | tcon->nativeFileSystem = |
Pekka Enberg | e915fc4 | 2005-09-06 15:18:35 -0700 | [diff] [blame] | 3622 | kzalloc(length + 1, GFP_KERNEL); |
Steve French | 88f370a | 2007-09-15 03:01:17 +0000 | [diff] [blame] | 3623 | if (tcon->nativeFileSystem) |
| 3624 | strncpy(tcon->nativeFileSystem, bcc_ptr, |
| 3625 | length); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3626 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3627 | /* else do not bother copying these information fields*/ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3628 | } |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 3629 | if ((smb_buffer_response->WordCount == 3) || |
Steve French | 1a4e15a | 2006-10-12 21:33:51 +0000 | [diff] [blame] | 3630 | (smb_buffer_response->WordCount == 7)) |
| 3631 | /* field is in same location */ |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 3632 | tcon->Flags = le16_to_cpu(pSMBr->OptionalSupport); |
| 3633 | else |
| 3634 | tcon->Flags = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3635 | cFYI(1, ("Tcon flags: 0x%x ", tcon->Flags)); |
| 3636 | } else if ((rc == 0) && tcon == NULL) { |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3637 | /* all we need to save for IPC$ connection */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3638 | ses->ipc_tid = smb_buffer_response->Tid; |
| 3639 | } |
| 3640 | |
Mariusz Kozlowski | a8a11d3 | 2007-10-03 16:41:24 +0000 | [diff] [blame] | 3641 | cifs_buf_release(smb_buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3642 | return rc; |
| 3643 | } |
| 3644 | |
| 3645 | int |
| 3646 | cifs_umount(struct super_block *sb, struct cifs_sb_info *cifs_sb) |
| 3647 | { |
| 3648 | int rc = 0; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3649 | char *tmp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3650 | |
Jeff Layton | f1987b4 | 2008-11-15 11:12:47 -0500 | [diff] [blame] | 3651 | if (cifs_sb->tcon) |
| 3652 | cifs_put_tcon(cifs_sb->tcon); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3653 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3654 | cifs_sb->tcon = NULL; |
Steve French | 2fe87f0 | 2006-09-21 07:02:52 +0000 | [diff] [blame] | 3655 | tmp = cifs_sb->prepath; |
| 3656 | cifs_sb->prepathlen = 0; |
| 3657 | cifs_sb->prepath = NULL; |
| 3658 | kfree(tmp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3659 | |
Steve French | 88e7d70 | 2008-01-03 17:37:09 +0000 | [diff] [blame] | 3660 | return rc; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3661 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3662 | |
| 3663 | int cifs_setup_session(unsigned int xid, struct cifsSesInfo *pSesInfo, |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3664 | struct nls_table *nls_info) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3665 | { |
| 3666 | int rc = 0; |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 3667 | char ntlm_session_key[CIFS_SESS_KEY_SIZE]; |
Steve French | 4b18f2a | 2008-04-29 00:06:05 +0000 | [diff] [blame] | 3668 | bool ntlmv2_flag = false; |
Steve French | ad009ac | 2005-04-28 22:41:05 -0700 | [diff] [blame] | 3669 | int first_time = 0; |
Jeff Layton | cb7691b | 2008-08-18 15:41:05 -0400 | [diff] [blame] | 3670 | struct TCP_Server_Info *server = pSesInfo->server; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3671 | |
| 3672 | /* what if server changes its buffer size after dropping the session? */ |
Jeff Layton | cb7691b | 2008-08-18 15:41:05 -0400 | [diff] [blame] | 3673 | if (server->maxBuf == 0) /* no need to send on reconnect */ { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3674 | rc = CIFSSMBNegotiate(xid, pSesInfo); |
Jeff Layton | cb7691b | 2008-08-18 15:41:05 -0400 | [diff] [blame] | 3675 | if (rc == -EAGAIN) { |
| 3676 | /* retry only once on 1st time connection */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3677 | rc = CIFSSMBNegotiate(xid, pSesInfo); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 3678 | if (rc == -EAGAIN) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3679 | rc = -EHOSTDOWN; |
| 3680 | } |
Steve French | fb8c4b1 | 2007-07-10 01:16:18 +0000 | [diff] [blame] | 3681 | if (rc == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3682 | spin_lock(&GlobalMid_Lock); |
Jeff Layton | cb7691b | 2008-08-18 15:41:05 -0400 | [diff] [blame] | 3683 | if (server->tcpStatus != CifsExiting) |
| 3684 | server->tcpStatus = CifsGood; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3685 | else |
| 3686 | rc = -EHOSTDOWN; |
| 3687 | spin_unlock(&GlobalMid_Lock); |
| 3688 | |
| 3689 | } |
Steve French | ad009ac | 2005-04-28 22:41:05 -0700 | [diff] [blame] | 3690 | first_time = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3691 | } |
Steve French | 26b994f | 2008-08-06 05:11:33 +0000 | [diff] [blame] | 3692 | |
| 3693 | if (rc) |
| 3694 | goto ss_err_exit; |
| 3695 | |
| 3696 | pSesInfo->flags = 0; |
Jeff Layton | cb7691b | 2008-08-18 15:41:05 -0400 | [diff] [blame] | 3697 | pSesInfo->capabilities = server->capabilities; |
Steve French | 26b994f | 2008-08-06 05:11:33 +0000 | [diff] [blame] | 3698 | if (linuxExtEnabled == 0) |
| 3699 | pSesInfo->capabilities &= (~CAP_UNIX); |
Steve French | ad009ac | 2005-04-28 22:41:05 -0700 | [diff] [blame] | 3700 | /* pSesInfo->sequence_number = 0;*/ |
Steve French | 26b994f | 2008-08-06 05:11:33 +0000 | [diff] [blame] | 3701 | cFYI(1, ("Security Mode: 0x%x Capabilities: 0x%x TimeAdjust: %d", |
Jeff Layton | cb7691b | 2008-08-18 15:41:05 -0400 | [diff] [blame] | 3702 | server->secMode, server->capabilities, server->timeAdj)); |
| 3703 | |
Steve French | 26b994f | 2008-08-06 05:11:33 +0000 | [diff] [blame] | 3704 | if (experimEnabled < 2) |
| 3705 | rc = CIFS_SessSetup(xid, pSesInfo, first_time, nls_info); |
| 3706 | else if (extended_security |
| 3707 | && (pSesInfo->capabilities & CAP_EXTENDED_SECURITY) |
Jeff Layton | cb7691b | 2008-08-18 15:41:05 -0400 | [diff] [blame] | 3708 | && (server->secType == NTLMSSP)) { |
Steve French | 26b994f | 2008-08-06 05:11:33 +0000 | [diff] [blame] | 3709 | rc = -EOPNOTSUPP; |
| 3710 | } else if (extended_security |
| 3711 | && (pSesInfo->capabilities & CAP_EXTENDED_SECURITY) |
Jeff Layton | cb7691b | 2008-08-18 15:41:05 -0400 | [diff] [blame] | 3712 | && (server->secType == RawNTLMSSP)) { |
Steve French | 26b994f | 2008-08-06 05:11:33 +0000 | [diff] [blame] | 3713 | cFYI(1, ("NTLMSSP sesssetup")); |
| 3714 | rc = CIFSNTLMSSPNegotiateSessSetup(xid, pSesInfo, &ntlmv2_flag, |
| 3715 | nls_info); |
| 3716 | if (!rc) { |
| 3717 | if (ntlmv2_flag) { |
| 3718 | char *v2_response; |
| 3719 | cFYI(1, ("more secure NTLM ver2 hash")); |
| 3720 | if (CalcNTLMv2_partial_mac_key(pSesInfo, |
| 3721 | nls_info)) { |
| 3722 | rc = -ENOMEM; |
| 3723 | goto ss_err_exit; |
| 3724 | } else |
| 3725 | v2_response = kmalloc(16 + 64 /* blob*/, |
| 3726 | GFP_KERNEL); |
| 3727 | if (v2_response) { |
| 3728 | CalcNTLMv2_response(pSesInfo, |
| 3729 | v2_response); |
| 3730 | /* if (first_time) |
| 3731 | cifs_calculate_ntlmv2_mac_key */ |
| 3732 | kfree(v2_response); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3733 | /* BB Put dummy sig in SessSetup PDU? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3734 | } else { |
Steve French | 26b994f | 2008-08-06 05:11:33 +0000 | [diff] [blame] | 3735 | rc = -ENOMEM; |
| 3736 | goto ss_err_exit; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3737 | } |
Steve French | 26b994f | 2008-08-06 05:11:33 +0000 | [diff] [blame] | 3738 | |
| 3739 | } else { |
| 3740 | SMBNTencrypt(pSesInfo->password, |
Jeff Layton | cb7691b | 2008-08-18 15:41:05 -0400 | [diff] [blame] | 3741 | server->cryptKey, |
Steve French | 26b994f | 2008-08-06 05:11:33 +0000 | [diff] [blame] | 3742 | ntlm_session_key); |
| 3743 | |
| 3744 | if (first_time) |
| 3745 | cifs_calculate_mac_key( |
Jeff Layton | cb7691b | 2008-08-18 15:41:05 -0400 | [diff] [blame] | 3746 | &server->mac_signing_key, |
Steve French | 26b994f | 2008-08-06 05:11:33 +0000 | [diff] [blame] | 3747 | ntlm_session_key, |
| 3748 | pSesInfo->password); |
| 3749 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3750 | /* for better security the weaker lanman hash not sent |
| 3751 | in AuthSessSetup so we no longer calculate it */ |
| 3752 | |
Steve French | 26b994f | 2008-08-06 05:11:33 +0000 | [diff] [blame] | 3753 | rc = CIFSNTLMSSPAuthSessSetup(xid, pSesInfo, |
| 3754 | ntlm_session_key, |
| 3755 | ntlmv2_flag, |
| 3756 | nls_info); |
| 3757 | } |
| 3758 | } else { /* old style NTLM 0.12 session setup */ |
Jeff Layton | cb7691b | 2008-08-18 15:41:05 -0400 | [diff] [blame] | 3759 | SMBNTencrypt(pSesInfo->password, server->cryptKey, |
Steve French | 26b994f | 2008-08-06 05:11:33 +0000 | [diff] [blame] | 3760 | ntlm_session_key); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3761 | |
Steve French | 26b994f | 2008-08-06 05:11:33 +0000 | [diff] [blame] | 3762 | if (first_time) |
Jeff Layton | cb7691b | 2008-08-18 15:41:05 -0400 | [diff] [blame] | 3763 | cifs_calculate_mac_key(&server->mac_signing_key, |
| 3764 | ntlm_session_key, |
| 3765 | pSesInfo->password); |
Steve French | ad009ac | 2005-04-28 22:41:05 -0700 | [diff] [blame] | 3766 | |
Steve French | 26b994f | 2008-08-06 05:11:33 +0000 | [diff] [blame] | 3767 | rc = CIFSSessSetup(xid, pSesInfo, ntlm_session_key, nls_info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3768 | } |
Steve French | 26b994f | 2008-08-06 05:11:33 +0000 | [diff] [blame] | 3769 | if (rc) { |
| 3770 | cERROR(1, ("Send error in SessSetup = %d", rc)); |
| 3771 | } else { |
| 3772 | cFYI(1, ("CIFS Session Established successfully")); |
Jeff Layton | 469ee61 | 2008-10-16 18:46:39 +0000 | [diff] [blame] | 3773 | spin_lock(&GlobalMid_Lock); |
Steve French | 26b994f | 2008-08-06 05:11:33 +0000 | [diff] [blame] | 3774 | pSesInfo->status = CifsGood; |
Steve French | 3b79521 | 2008-11-13 19:45:32 +0000 | [diff] [blame] | 3775 | pSesInfo->need_reconnect = false; |
Jeff Layton | 469ee61 | 2008-10-16 18:46:39 +0000 | [diff] [blame] | 3776 | spin_unlock(&GlobalMid_Lock); |
Steve French | 26b994f | 2008-08-06 05:11:33 +0000 | [diff] [blame] | 3777 | } |
| 3778 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3779 | ss_err_exit: |
| 3780 | return rc; |
| 3781 | } |
| 3782 | |