Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 1 | /* |
| 2 | * fs/cifs/sess.c |
| 3 | * |
| 4 | * SMB/CIFS session setup handling routines |
| 5 | * |
Steve French | d185cda | 2009-04-30 17:45:10 +0000 | [diff] [blame] | 6 | * Copyright (c) International Business Machines Corp., 2006, 2009 |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 7 | * Author(s): Steve French (sfrench@us.ibm.com) |
| 8 | * |
| 9 | * This library is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU Lesser General Public License as published |
| 11 | * by the Free Software Foundation; either version 2.1 of the License, or |
| 12 | * (at your option) any later version. |
| 13 | * |
| 14 | * This library is distributed in the hope that it will be useful, |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See |
| 17 | * the GNU Lesser General Public License for more details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU Lesser General Public License |
| 20 | * along with this library; if not, write to the Free Software |
| 21 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 22 | */ |
| 23 | |
| 24 | #include "cifspdu.h" |
| 25 | #include "cifsglob.h" |
| 26 | #include "cifsproto.h" |
| 27 | #include "cifs_unicode.h" |
| 28 | #include "cifs_debug.h" |
| 29 | #include "ntlmssp.h" |
| 30 | #include "nterr.h" |
Steve French | 9c53588 | 2006-06-01 05:09:10 +0000 | [diff] [blame] | 31 | #include <linux/utsname.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 32 | #include <linux/slab.h> |
Steve French | 2442421 | 2007-11-16 23:37:35 +0000 | [diff] [blame] | 33 | #include "cifs_spnego.h" |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 34 | |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 35 | extern void SMBNTencrypt(unsigned char *passwd, unsigned char *c8, |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 36 | unsigned char *p24); |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 37 | |
Jeff Layton | ebe6aa5 | 2010-04-24 07:57:47 -0400 | [diff] [blame] | 38 | /* |
| 39 | * Checks if this is the first smb session to be reconnected after |
| 40 | * the socket has been reestablished (so we know whether to use vc 0). |
| 41 | * Called while holding the cifs_tcp_ses_lock, so do not block |
| 42 | */ |
Steve French | eca6acf | 2009-02-20 05:43:09 +0000 | [diff] [blame] | 43 | static bool is_first_ses_reconnect(struct cifsSesInfo *ses) |
| 44 | { |
| 45 | struct list_head *tmp; |
| 46 | struct cifsSesInfo *tmp_ses; |
| 47 | |
| 48 | list_for_each(tmp, &ses->server->smb_ses_list) { |
| 49 | tmp_ses = list_entry(tmp, struct cifsSesInfo, |
| 50 | smb_ses_list); |
| 51 | if (tmp_ses->need_reconnect == false) |
| 52 | return false; |
| 53 | } |
| 54 | /* could not find a session that was already connected, |
| 55 | this must be the first one we are reconnecting */ |
| 56 | return true; |
| 57 | } |
| 58 | |
| 59 | /* |
| 60 | * vc number 0 is treated specially by some servers, and should be the |
| 61 | * first one we request. After that we can use vcnumbers up to maxvcs, |
| 62 | * one for each smb session (some Windows versions set maxvcs incorrectly |
| 63 | * so maxvc=1 can be ignored). If we have too many vcs, we can reuse |
| 64 | * any vc but zero (some servers reset the connection on vcnum zero) |
| 65 | * |
| 66 | */ |
| 67 | static __le16 get_next_vcnum(struct cifsSesInfo *ses) |
| 68 | { |
| 69 | __u16 vcnum = 0; |
| 70 | struct list_head *tmp; |
| 71 | struct cifsSesInfo *tmp_ses; |
| 72 | __u16 max_vcs = ses->server->max_vcs; |
| 73 | __u16 i; |
| 74 | int free_vc_found = 0; |
| 75 | |
| 76 | /* Quoting the MS-SMB specification: "Windows-based SMB servers set this |
| 77 | field to one but do not enforce this limit, which allows an SMB client |
| 78 | to establish more virtual circuits than allowed by this value ... but |
| 79 | other server implementations can enforce this limit." */ |
| 80 | if (max_vcs < 2) |
| 81 | max_vcs = 0xFFFF; |
| 82 | |
| 83 | write_lock(&cifs_tcp_ses_lock); |
| 84 | if ((ses->need_reconnect) && is_first_ses_reconnect(ses)) |
| 85 | goto get_vc_num_exit; /* vcnum will be zero */ |
| 86 | for (i = ses->server->srv_count - 1; i < max_vcs; i++) { |
| 87 | if (i == 0) /* this is the only connection, use vc 0 */ |
| 88 | break; |
| 89 | |
| 90 | free_vc_found = 1; |
| 91 | |
| 92 | list_for_each(tmp, &ses->server->smb_ses_list) { |
| 93 | tmp_ses = list_entry(tmp, struct cifsSesInfo, |
| 94 | smb_ses_list); |
| 95 | if (tmp_ses->vcnum == i) { |
| 96 | free_vc_found = 0; |
| 97 | break; /* found duplicate, try next vcnum */ |
| 98 | } |
| 99 | } |
| 100 | if (free_vc_found) |
| 101 | break; /* we found a vcnumber that will work - use it */ |
| 102 | } |
| 103 | |
| 104 | if (i == 0) |
| 105 | vcnum = 0; /* for most common case, ie if one smb session, use |
| 106 | vc zero. Also for case when no free vcnum, zero |
| 107 | is safest to send (some clients only send zero) */ |
| 108 | else if (free_vc_found == 0) |
| 109 | vcnum = 1; /* we can not reuse vc=0 safely, since some servers |
| 110 | reset all uids on that, but 1 is ok. */ |
| 111 | else |
| 112 | vcnum = i; |
| 113 | ses->vcnum = vcnum; |
| 114 | get_vc_num_exit: |
| 115 | write_unlock(&cifs_tcp_ses_lock); |
| 116 | |
Steve French | 051a2a0 | 2009-05-01 16:21:04 +0000 | [diff] [blame] | 117 | return cpu_to_le16(vcnum); |
Steve French | eca6acf | 2009-02-20 05:43:09 +0000 | [diff] [blame] | 118 | } |
| 119 | |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 120 | static __u32 cifs_ssetup_hdr(struct cifsSesInfo *ses, SESSION_SETUP_ANDX *pSMB) |
| 121 | { |
| 122 | __u32 capabilities = 0; |
| 123 | |
| 124 | /* init fields common to all four types of SessSetup */ |
Steve French | eca6acf | 2009-02-20 05:43:09 +0000 | [diff] [blame] | 125 | /* Note that offsets for first seven fields in req struct are same */ |
| 126 | /* in CIFS Specs so does not matter which of 3 forms of struct */ |
| 127 | /* that we use in next few lines */ |
| 128 | /* Note that header is initialized to zero in header_assemble */ |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 129 | pSMB->req.AndXCommand = 0xFF; |
| 130 | pSMB->req.MaxBufferSize = cpu_to_le16(ses->server->maxBuf); |
| 131 | pSMB->req.MaxMpxCount = cpu_to_le16(ses->server->maxReq); |
Steve French | eca6acf | 2009-02-20 05:43:09 +0000 | [diff] [blame] | 132 | pSMB->req.VcNumber = get_next_vcnum(ses); |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 133 | |
| 134 | /* Now no need to set SMBFLG_CASELESS or obsolete CANONICAL PATH */ |
| 135 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 136 | /* BB verify whether signing required on neg or just on auth frame |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 137 | (and NTLM case) */ |
| 138 | |
| 139 | capabilities = CAP_LARGE_FILES | CAP_NT_SMBS | CAP_LEVEL_II_OPLOCKS | |
| 140 | CAP_LARGE_WRITE_X | CAP_LARGE_READ_X; |
| 141 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 142 | if (ses->server->secMode & |
| 143 | (SECMODE_SIGN_REQUIRED | SECMODE_SIGN_ENABLED)) |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 144 | pSMB->req.hdr.Flags2 |= SMBFLG2_SECURITY_SIGNATURE; |
| 145 | |
| 146 | if (ses->capabilities & CAP_UNICODE) { |
| 147 | pSMB->req.hdr.Flags2 |= SMBFLG2_UNICODE; |
| 148 | capabilities |= CAP_UNICODE; |
| 149 | } |
| 150 | if (ses->capabilities & CAP_STATUS32) { |
| 151 | pSMB->req.hdr.Flags2 |= SMBFLG2_ERR_STATUS; |
| 152 | capabilities |= CAP_STATUS32; |
| 153 | } |
| 154 | if (ses->capabilities & CAP_DFS) { |
| 155 | pSMB->req.hdr.Flags2 |= SMBFLG2_DFS; |
| 156 | capabilities |= CAP_DFS; |
| 157 | } |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 158 | if (ses->capabilities & CAP_UNIX) |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 159 | capabilities |= CAP_UNIX; |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 160 | |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 161 | return capabilities; |
| 162 | } |
| 163 | |
Jeff Layton | 0d3a01f | 2007-10-16 17:32:19 +0000 | [diff] [blame] | 164 | static void |
| 165 | unicode_oslm_strings(char **pbcc_area, const struct nls_table *nls_cp) |
| 166 | { |
| 167 | char *bcc_ptr = *pbcc_area; |
| 168 | int bytes_ret = 0; |
| 169 | |
| 170 | /* Copy OS version */ |
| 171 | bytes_ret = cifs_strtoUCS((__le16 *)bcc_ptr, "Linux version ", 32, |
| 172 | nls_cp); |
| 173 | bcc_ptr += 2 * bytes_ret; |
| 174 | bytes_ret = cifs_strtoUCS((__le16 *) bcc_ptr, init_utsname()->release, |
| 175 | 32, nls_cp); |
| 176 | bcc_ptr += 2 * bytes_ret; |
| 177 | bcc_ptr += 2; /* trailing null */ |
| 178 | |
| 179 | bytes_ret = cifs_strtoUCS((__le16 *) bcc_ptr, CIFS_NETWORK_OPSYS, |
| 180 | 32, nls_cp); |
| 181 | bcc_ptr += 2 * bytes_ret; |
| 182 | bcc_ptr += 2; /* trailing null */ |
| 183 | |
| 184 | *pbcc_area = bcc_ptr; |
| 185 | } |
| 186 | |
| 187 | static void unicode_domain_string(char **pbcc_area, struct cifsSesInfo *ses, |
| 188 | const struct nls_table *nls_cp) |
| 189 | { |
| 190 | char *bcc_ptr = *pbcc_area; |
| 191 | int bytes_ret = 0; |
| 192 | |
| 193 | /* copy domain */ |
| 194 | if (ses->domainName == NULL) { |
| 195 | /* Sending null domain better than using a bogus domain name (as |
| 196 | we did briefly in 2.6.18) since server will use its default */ |
| 197 | *bcc_ptr = 0; |
| 198 | *(bcc_ptr+1) = 0; |
| 199 | bytes_ret = 0; |
| 200 | } else |
| 201 | bytes_ret = cifs_strtoUCS((__le16 *) bcc_ptr, ses->domainName, |
| 202 | 256, nls_cp); |
| 203 | bcc_ptr += 2 * bytes_ret; |
| 204 | bcc_ptr += 2; /* account for null terminator */ |
| 205 | |
| 206 | *pbcc_area = bcc_ptr; |
| 207 | } |
| 208 | |
| 209 | |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 210 | static void unicode_ssetup_strings(char **pbcc_area, struct cifsSesInfo *ses, |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 211 | const struct nls_table *nls_cp) |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 212 | { |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 213 | char *bcc_ptr = *pbcc_area; |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 214 | int bytes_ret = 0; |
| 215 | |
| 216 | /* BB FIXME add check that strings total less |
| 217 | than 335 or will need to send them as arrays */ |
| 218 | |
Steve French | 0223cf0 | 2006-06-27 19:50:57 +0000 | [diff] [blame] | 219 | /* unicode strings, must be word aligned before the call */ |
| 220 | /* if ((long) bcc_ptr % 2) { |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 221 | *bcc_ptr = 0; |
| 222 | bcc_ptr++; |
Steve French | 0223cf0 | 2006-06-27 19:50:57 +0000 | [diff] [blame] | 223 | } */ |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 224 | /* copy user */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 225 | if (ses->userName == NULL) { |
Steve French | 6e659c6 | 2006-11-08 23:10:46 +0000 | [diff] [blame] | 226 | /* null user mount */ |
| 227 | *bcc_ptr = 0; |
| 228 | *(bcc_ptr+1) = 0; |
Steve French | 301a6a3 | 2010-02-06 07:08:53 +0000 | [diff] [blame] | 229 | } else { |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 230 | bytes_ret = cifs_strtoUCS((__le16 *) bcc_ptr, ses->userName, |
Steve French | 301a6a3 | 2010-02-06 07:08:53 +0000 | [diff] [blame] | 231 | MAX_USERNAME_SIZE, nls_cp); |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 232 | } |
| 233 | bcc_ptr += 2 * bytes_ret; |
| 234 | bcc_ptr += 2; /* account for null termination */ |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 235 | |
Jeff Layton | 0d3a01f | 2007-10-16 17:32:19 +0000 | [diff] [blame] | 236 | unicode_domain_string(&bcc_ptr, ses, nls_cp); |
| 237 | unicode_oslm_strings(&bcc_ptr, nls_cp); |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 238 | |
| 239 | *pbcc_area = bcc_ptr; |
| 240 | } |
| 241 | |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 242 | static void ascii_ssetup_strings(char **pbcc_area, struct cifsSesInfo *ses, |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 243 | const struct nls_table *nls_cp) |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 244 | { |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 245 | char *bcc_ptr = *pbcc_area; |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 246 | |
| 247 | /* copy user */ |
| 248 | /* BB what about null user mounts - check that we do this BB */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 249 | /* copy user */ |
| 250 | if (ses->userName == NULL) { |
| 251 | /* BB what about null user mounts - check that we do this BB */ |
Steve French | 301a6a3 | 2010-02-06 07:08:53 +0000 | [diff] [blame] | 252 | } else { |
| 253 | strncpy(bcc_ptr, ses->userName, MAX_USERNAME_SIZE); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 254 | } |
Steve French | 301a6a3 | 2010-02-06 07:08:53 +0000 | [diff] [blame] | 255 | bcc_ptr += strnlen(ses->userName, MAX_USERNAME_SIZE); |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 256 | *bcc_ptr = 0; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 257 | bcc_ptr++; /* account for null termination */ |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 258 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 259 | /* copy domain */ |
| 260 | |
| 261 | if (ses->domainName != NULL) { |
| 262 | strncpy(bcc_ptr, ses->domainName, 256); |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 263 | bcc_ptr += strnlen(ses->domainName, 256); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 264 | } /* else we will send a null domain name |
Steve French | 6e659c6 | 2006-11-08 23:10:46 +0000 | [diff] [blame] | 265 | so the server will default to its own domain */ |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 266 | *bcc_ptr = 0; |
| 267 | bcc_ptr++; |
| 268 | |
| 269 | /* BB check for overflow here */ |
| 270 | |
| 271 | strcpy(bcc_ptr, "Linux version "); |
| 272 | bcc_ptr += strlen("Linux version "); |
Serge E. Hallyn | 96b644b | 2006-10-02 02:18:13 -0700 | [diff] [blame] | 273 | strcpy(bcc_ptr, init_utsname()->release); |
| 274 | bcc_ptr += strlen(init_utsname()->release) + 1; |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 275 | |
| 276 | strcpy(bcc_ptr, CIFS_NETWORK_OPSYS); |
| 277 | bcc_ptr += strlen(CIFS_NETWORK_OPSYS) + 1; |
| 278 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 279 | *pbcc_area = bcc_ptr; |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 280 | } |
| 281 | |
Jeff Layton | 5914079 | 2009-04-30 07:16:21 -0400 | [diff] [blame] | 282 | static void |
| 283 | decode_unicode_ssetup(char **pbcc_area, int bleft, struct cifsSesInfo *ses, |
| 284 | const struct nls_table *nls_cp) |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 285 | { |
Jeff Layton | 5914079 | 2009-04-30 07:16:21 -0400 | [diff] [blame] | 286 | int len; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 287 | char *data = *pbcc_area; |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 288 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 289 | cFYI(1, "bleft %d", bleft); |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 290 | |
Jeff Layton | 27b87fe | 2009-04-14 11:00:53 -0400 | [diff] [blame] | 291 | /* |
| 292 | * Windows servers do not always double null terminate their final |
| 293 | * Unicode string. Check to see if there are an uneven number of bytes |
| 294 | * left. If so, then add an extra NULL pad byte to the end of the |
| 295 | * response. |
| 296 | * |
| 297 | * See section 2.7.2 in "Implementing CIFS" for details |
| 298 | */ |
| 299 | if (bleft % 2) { |
| 300 | data[bleft] = 0; |
| 301 | ++bleft; |
| 302 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 303 | |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 304 | kfree(ses->serverOS); |
Steve French | d185cda | 2009-04-30 17:45:10 +0000 | [diff] [blame] | 305 | ses->serverOS = cifs_strndup_from_ucs(data, bleft, true, nls_cp); |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 306 | cFYI(1, "serverOS=%s", ses->serverOS); |
Jeff Layton | 5914079 | 2009-04-30 07:16:21 -0400 | [diff] [blame] | 307 | len = (UniStrnlen((wchar_t *) data, bleft / 2) * 2) + 2; |
| 308 | data += len; |
| 309 | bleft -= len; |
| 310 | if (bleft <= 0) |
| 311 | return; |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 312 | |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 313 | kfree(ses->serverNOS); |
Steve French | d185cda | 2009-04-30 17:45:10 +0000 | [diff] [blame] | 314 | ses->serverNOS = cifs_strndup_from_ucs(data, bleft, true, nls_cp); |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 315 | cFYI(1, "serverNOS=%s", ses->serverNOS); |
Jeff Layton | 5914079 | 2009-04-30 07:16:21 -0400 | [diff] [blame] | 316 | len = (UniStrnlen((wchar_t *) data, bleft / 2) * 2) + 2; |
| 317 | data += len; |
| 318 | bleft -= len; |
| 319 | if (bleft <= 0) |
| 320 | return; |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 321 | |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 322 | kfree(ses->serverDomain); |
Steve French | d185cda | 2009-04-30 17:45:10 +0000 | [diff] [blame] | 323 | ses->serverDomain = cifs_strndup_from_ucs(data, bleft, true, nls_cp); |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 324 | cFYI(1, "serverDomain=%s", ses->serverDomain); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 325 | |
Jeff Layton | 5914079 | 2009-04-30 07:16:21 -0400 | [diff] [blame] | 326 | return; |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 327 | } |
| 328 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 329 | static int decode_ascii_ssetup(char **pbcc_area, int bleft, |
| 330 | struct cifsSesInfo *ses, |
| 331 | const struct nls_table *nls_cp) |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 332 | { |
| 333 | int rc = 0; |
| 334 | int len; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 335 | char *bcc_ptr = *pbcc_area; |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 336 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 337 | cFYI(1, "decode sessetup ascii. bleft %d", bleft); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 338 | |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 339 | len = strnlen(bcc_ptr, bleft); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 340 | if (len >= bleft) |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 341 | return rc; |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 342 | |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 343 | kfree(ses->serverOS); |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 344 | |
| 345 | ses->serverOS = kzalloc(len + 1, GFP_KERNEL); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 346 | if (ses->serverOS) |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 347 | strncpy(ses->serverOS, bcc_ptr, len); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 348 | if (strncmp(ses->serverOS, "OS/2", 4) == 0) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 349 | cFYI(1, "OS/2 server"); |
Steve French | 9ac00b7 | 2006-09-30 04:13:17 +0000 | [diff] [blame] | 350 | ses->flags |= CIFS_SES_OS2; |
| 351 | } |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 352 | |
| 353 | bcc_ptr += len + 1; |
| 354 | bleft -= len + 1; |
| 355 | |
| 356 | len = strnlen(bcc_ptr, bleft); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 357 | if (len >= bleft) |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 358 | return rc; |
| 359 | |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 360 | kfree(ses->serverNOS); |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 361 | |
| 362 | ses->serverNOS = kzalloc(len + 1, GFP_KERNEL); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 363 | if (ses->serverNOS) |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 364 | strncpy(ses->serverNOS, bcc_ptr, len); |
| 365 | |
| 366 | bcc_ptr += len + 1; |
| 367 | bleft -= len + 1; |
| 368 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 369 | len = strnlen(bcc_ptr, bleft); |
| 370 | if (len > bleft) |
| 371 | return rc; |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 372 | |
Steve French | 9ac00b7 | 2006-09-30 04:13:17 +0000 | [diff] [blame] | 373 | /* No domain field in LANMAN case. Domain is |
| 374 | returned by old servers in the SMB negprot response */ |
| 375 | /* BB For newer servers which do not support Unicode, |
| 376 | but thus do return domain here we could add parsing |
| 377 | for it later, but it is not very important */ |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 378 | cFYI(1, "ascii: bytes left %d", bleft); |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 379 | |
| 380 | return rc; |
| 381 | } |
| 382 | |
Steve French | 0b3cc858 | 2009-05-04 08:37:12 +0000 | [diff] [blame] | 383 | static int decode_ntlmssp_challenge(char *bcc_ptr, int blob_len, |
| 384 | struct cifsSesInfo *ses) |
| 385 | { |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 386 | unsigned int tioffset; /* challenge message target info area */ |
| 387 | unsigned int tilen; /* challenge message target info area length */ |
| 388 | |
Steve French | 0b3cc858 | 2009-05-04 08:37:12 +0000 | [diff] [blame] | 389 | CHALLENGE_MESSAGE *pblob = (CHALLENGE_MESSAGE *)bcc_ptr; |
| 390 | |
| 391 | if (blob_len < sizeof(CHALLENGE_MESSAGE)) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 392 | cERROR(1, "challenge blob len %d too small", blob_len); |
Steve French | 0b3cc858 | 2009-05-04 08:37:12 +0000 | [diff] [blame] | 393 | return -EINVAL; |
| 394 | } |
| 395 | |
| 396 | if (memcmp(pblob->Signature, "NTLMSSP", 8)) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 397 | cERROR(1, "blob signature incorrect %s", pblob->Signature); |
Steve French | 0b3cc858 | 2009-05-04 08:37:12 +0000 | [diff] [blame] | 398 | return -EINVAL; |
| 399 | } |
| 400 | if (pblob->MessageType != NtLmChallenge) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 401 | cERROR(1, "Incorrect message type %d", pblob->MessageType); |
Steve French | 0b3cc858 | 2009-05-04 08:37:12 +0000 | [diff] [blame] | 402 | return -EINVAL; |
| 403 | } |
| 404 | |
| 405 | memcpy(ses->server->cryptKey, pblob->Challenge, CIFS_CRYPTO_KEY_SIZE); |
| 406 | /* BB we could decode pblob->NegotiateFlags; some may be useful */ |
| 407 | /* In particular we can examine sign flags */ |
| 408 | /* BB spec says that if AvId field of MsvAvTimestamp is populated then |
| 409 | we must set the MIC field of the AUTHENTICATE_MESSAGE */ |
| 410 | |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 411 | tioffset = cpu_to_le16(pblob->TargetInfoArray.BufferOffset); |
| 412 | tilen = cpu_to_le16(pblob->TargetInfoArray.Length); |
| 413 | ses->tilen = tilen; |
| 414 | if (ses->tilen) { |
| 415 | ses->tiblob = kmalloc(tilen, GFP_KERNEL); |
| 416 | if (!ses->tiblob) { |
| 417 | cERROR(1, "Challenge target info allocation failure"); |
| 418 | ses->tilen = 0; |
| 419 | return -ENOMEM; |
| 420 | } |
| 421 | memcpy(ses->tiblob, bcc_ptr + tioffset, ses->tilen); |
| 422 | } |
| 423 | |
Steve French | 0b3cc858 | 2009-05-04 08:37:12 +0000 | [diff] [blame] | 424 | return 0; |
| 425 | } |
| 426 | |
| 427 | #ifdef CONFIG_CIFS_EXPERIMENTAL |
| 428 | /* BB Move to ntlmssp.c eventually */ |
| 429 | |
| 430 | /* We do not malloc the blob, it is passed in pbuffer, because |
| 431 | it is fixed size, and small, making this approach cleaner */ |
| 432 | static void build_ntlmssp_negotiate_blob(unsigned char *pbuffer, |
| 433 | struct cifsSesInfo *ses) |
| 434 | { |
| 435 | NEGOTIATE_MESSAGE *sec_blob = (NEGOTIATE_MESSAGE *)pbuffer; |
| 436 | __u32 flags; |
| 437 | |
| 438 | memcpy(sec_blob->Signature, NTLMSSP_SIGNATURE, 8); |
| 439 | sec_blob->MessageType = NtLmNegotiate; |
| 440 | |
| 441 | /* BB is NTLMV2 session security format easier to use here? */ |
| 442 | flags = NTLMSSP_NEGOTIATE_56 | NTLMSSP_REQUEST_TARGET | |
| 443 | NTLMSSP_NEGOTIATE_128 | NTLMSSP_NEGOTIATE_UNICODE | |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 444 | NTLMSSP_NEGOTIATE_NTLM; |
Steve French | 0b3cc858 | 2009-05-04 08:37:12 +0000 | [diff] [blame] | 445 | if (ses->server->secMode & |
Steve French | 745e507 | 2010-09-08 21:09:27 +0000 | [diff] [blame] | 446 | (SECMODE_SIGN_REQUIRED | SECMODE_SIGN_ENABLED)) |
| 447 | flags |= NTLMSSP_NEGOTIATE_SIGN; |
| 448 | if (ses->server->secMode & SECMODE_SIGN_REQUIRED) |
| 449 | flags |= NTLMSSP_NEGOTIATE_ALWAYS_SIGN; |
Steve French | 0b3cc858 | 2009-05-04 08:37:12 +0000 | [diff] [blame] | 450 | |
| 451 | sec_blob->NegotiateFlags |= cpu_to_le32(flags); |
| 452 | |
| 453 | sec_blob->WorkstationName.BufferOffset = 0; |
| 454 | sec_blob->WorkstationName.Length = 0; |
| 455 | sec_blob->WorkstationName.MaximumLength = 0; |
| 456 | |
| 457 | /* Domain name is sent on the Challenge not Negotiate NTLMSSP request */ |
| 458 | sec_blob->DomainName.BufferOffset = 0; |
| 459 | sec_blob->DomainName.Length = 0; |
| 460 | sec_blob->DomainName.MaximumLength = 0; |
| 461 | } |
| 462 | |
| 463 | /* We do not malloc the blob, it is passed in pbuffer, because its |
| 464 | maximum possible size is fixed and small, making this approach cleaner. |
| 465 | This function returns the length of the data in the blob */ |
| 466 | static int build_ntlmssp_auth_blob(unsigned char *pbuffer, |
| 467 | struct cifsSesInfo *ses, |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 468 | const struct nls_table *nls_cp) |
Steve French | 0b3cc858 | 2009-05-04 08:37:12 +0000 | [diff] [blame] | 469 | { |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 470 | int rc; |
| 471 | unsigned int size; |
Steve French | 0b3cc858 | 2009-05-04 08:37:12 +0000 | [diff] [blame] | 472 | AUTHENTICATE_MESSAGE *sec_blob = (AUTHENTICATE_MESSAGE *)pbuffer; |
| 473 | __u32 flags; |
| 474 | unsigned char *tmp; |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 475 | struct ntlmv2_resp ntlmv2_response = {}; |
Steve French | 0b3cc858 | 2009-05-04 08:37:12 +0000 | [diff] [blame] | 476 | |
| 477 | memcpy(sec_blob->Signature, NTLMSSP_SIGNATURE, 8); |
| 478 | sec_blob->MessageType = NtLmAuthenticate; |
| 479 | |
| 480 | flags = NTLMSSP_NEGOTIATE_56 | |
| 481 | NTLMSSP_REQUEST_TARGET | NTLMSSP_NEGOTIATE_TARGET_INFO | |
| 482 | NTLMSSP_NEGOTIATE_128 | NTLMSSP_NEGOTIATE_UNICODE | |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 483 | NTLMSSP_NEGOTIATE_NTLM; |
Steve French | 0b3cc858 | 2009-05-04 08:37:12 +0000 | [diff] [blame] | 484 | if (ses->server->secMode & |
| 485 | (SECMODE_SIGN_REQUIRED | SECMODE_SIGN_ENABLED)) |
| 486 | flags |= NTLMSSP_NEGOTIATE_SIGN; |
| 487 | if (ses->server->secMode & SECMODE_SIGN_REQUIRED) |
| 488 | flags |= NTLMSSP_NEGOTIATE_ALWAYS_SIGN; |
| 489 | |
| 490 | tmp = pbuffer + sizeof(AUTHENTICATE_MESSAGE); |
| 491 | sec_blob->NegotiateFlags |= cpu_to_le32(flags); |
| 492 | |
| 493 | sec_blob->LmChallengeResponse.BufferOffset = |
| 494 | cpu_to_le32(sizeof(AUTHENTICATE_MESSAGE)); |
| 495 | sec_blob->LmChallengeResponse.Length = 0; |
| 496 | sec_blob->LmChallengeResponse.MaximumLength = 0; |
| 497 | |
Steve French | c8e56f1 | 2010-09-08 21:10:58 +0000 | [diff] [blame] | 498 | sec_blob->NtChallengeResponse.BufferOffset = cpu_to_le32(tmp - pbuffer); |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 499 | rc = setup_ntlmv2_rsp(ses, (char *)&ntlmv2_response, nls_cp); |
| 500 | if (rc) { |
| 501 | cERROR(1, "Error %d during NTLMSSP authentication", rc); |
| 502 | goto setup_ntlmv2_ret; |
| 503 | } |
| 504 | size = sizeof(struct ntlmv2_resp); |
| 505 | memcpy(tmp, (char *)&ntlmv2_response, size); |
| 506 | tmp += size; |
| 507 | if (ses->tilen > 0) { |
| 508 | memcpy(tmp, ses->tiblob, ses->tilen); |
| 509 | tmp += ses->tilen; |
| 510 | } |
Steve French | c8e56f1 | 2010-09-08 21:10:58 +0000 | [diff] [blame] | 511 | |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 512 | sec_blob->NtChallengeResponse.Length = cpu_to_le16(size + ses->tilen); |
| 513 | sec_blob->NtChallengeResponse.MaximumLength = |
| 514 | cpu_to_le16(size + ses->tilen); |
| 515 | kfree(ses->tiblob); |
| 516 | ses->tiblob = NULL; |
| 517 | ses->tilen = 0; |
Steve French | 0b3cc858 | 2009-05-04 08:37:12 +0000 | [diff] [blame] | 518 | |
| 519 | if (ses->domainName == NULL) { |
| 520 | sec_blob->DomainName.BufferOffset = cpu_to_le32(tmp - pbuffer); |
| 521 | sec_blob->DomainName.Length = 0; |
| 522 | sec_blob->DomainName.MaximumLength = 0; |
| 523 | tmp += 2; |
| 524 | } else { |
| 525 | int len; |
| 526 | len = cifs_strtoUCS((__le16 *)tmp, ses->domainName, |
| 527 | MAX_USERNAME_SIZE, nls_cp); |
| 528 | len *= 2; /* unicode is 2 bytes each */ |
Steve French | 0b3cc858 | 2009-05-04 08:37:12 +0000 | [diff] [blame] | 529 | sec_blob->DomainName.BufferOffset = cpu_to_le32(tmp - pbuffer); |
| 530 | sec_blob->DomainName.Length = cpu_to_le16(len); |
| 531 | sec_blob->DomainName.MaximumLength = cpu_to_le16(len); |
| 532 | tmp += len; |
| 533 | } |
| 534 | |
| 535 | if (ses->userName == NULL) { |
| 536 | sec_blob->UserName.BufferOffset = cpu_to_le32(tmp - pbuffer); |
| 537 | sec_blob->UserName.Length = 0; |
| 538 | sec_blob->UserName.MaximumLength = 0; |
| 539 | tmp += 2; |
| 540 | } else { |
| 541 | int len; |
| 542 | len = cifs_strtoUCS((__le16 *)tmp, ses->userName, |
| 543 | MAX_USERNAME_SIZE, nls_cp); |
| 544 | len *= 2; /* unicode is 2 bytes each */ |
Steve French | 0b3cc858 | 2009-05-04 08:37:12 +0000 | [diff] [blame] | 545 | sec_blob->UserName.BufferOffset = cpu_to_le32(tmp - pbuffer); |
| 546 | sec_blob->UserName.Length = cpu_to_le16(len); |
| 547 | sec_blob->UserName.MaximumLength = cpu_to_le16(len); |
| 548 | tmp += len; |
| 549 | } |
| 550 | |
| 551 | sec_blob->WorkstationName.BufferOffset = cpu_to_le32(tmp - pbuffer); |
| 552 | sec_blob->WorkstationName.Length = 0; |
| 553 | sec_blob->WorkstationName.MaximumLength = 0; |
| 554 | tmp += 2; |
| 555 | |
Steve French | c8e56f1 | 2010-09-08 21:10:58 +0000 | [diff] [blame] | 556 | sec_blob->SessionKey.BufferOffset = cpu_to_le32(tmp - pbuffer); |
| 557 | sec_blob->SessionKey.Length = 0; |
| 558 | sec_blob->SessionKey.MaximumLength = 0; |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 559 | |
| 560 | setup_ntlmv2_ret: |
Steve French | 0b3cc858 | 2009-05-04 08:37:12 +0000 | [diff] [blame] | 561 | return tmp - pbuffer; |
| 562 | } |
| 563 | |
| 564 | |
| 565 | static void setup_ntlmssp_neg_req(SESSION_SETUP_ANDX *pSMB, |
| 566 | struct cifsSesInfo *ses) |
| 567 | { |
| 568 | build_ntlmssp_negotiate_blob(&pSMB->req.SecurityBlob[0], ses); |
| 569 | pSMB->req.SecurityBlobLength = cpu_to_le16(sizeof(NEGOTIATE_MESSAGE)); |
| 570 | |
| 571 | return; |
| 572 | } |
Steve French | 0b3cc858 | 2009-05-04 08:37:12 +0000 | [diff] [blame] | 573 | #endif |
| 574 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 575 | int |
Jeff Layton | ebe6aa5 | 2010-04-24 07:57:47 -0400 | [diff] [blame] | 576 | CIFS_SessSetup(unsigned int xid, struct cifsSesInfo *ses, |
| 577 | const struct nls_table *nls_cp) |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 578 | { |
| 579 | int rc = 0; |
| 580 | int wct; |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 581 | struct smb_hdr *smb_buf; |
| 582 | char *bcc_ptr; |
Steve French | 750d115 | 2006-06-27 06:28:30 +0000 | [diff] [blame] | 583 | char *str_area; |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 584 | SESSION_SETUP_ANDX *pSMB; |
| 585 | __u32 capabilities; |
| 586 | int count; |
Steve French | 2442421 | 2007-11-16 23:37:35 +0000 | [diff] [blame] | 587 | int resp_buf_type; |
| 588 | struct kvec iov[3]; |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 589 | enum securityEnum type; |
| 590 | __u16 action; |
| 591 | int bytes_remaining; |
Steve French | 2442421 | 2007-11-16 23:37:35 +0000 | [diff] [blame] | 592 | struct key *spnego_key = NULL; |
Steve French | 0b3cc858 | 2009-05-04 08:37:12 +0000 | [diff] [blame] | 593 | __le32 phase = NtLmNegotiate; /* NTLMSSP, if needed, is multistage */ |
Jeff Layton | ebe6aa5 | 2010-04-24 07:57:47 -0400 | [diff] [blame] | 594 | bool first_time; |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 595 | int blob_len; |
| 596 | char *ntlmsspblob = NULL; |
Steve French | 254e55e | 2006-06-04 05:53:15 +0000 | [diff] [blame] | 597 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 598 | if (ses == NULL) |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 599 | return -EINVAL; |
| 600 | |
Jeff Layton | ebe6aa5 | 2010-04-24 07:57:47 -0400 | [diff] [blame] | 601 | read_lock(&cifs_tcp_ses_lock); |
| 602 | first_time = is_first_ses_reconnect(ses); |
| 603 | read_unlock(&cifs_tcp_ses_lock); |
| 604 | |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 605 | type = ses->server->secType; |
Steve French | f40c562 | 2006-06-28 00:13:38 +0000 | [diff] [blame] | 606 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 607 | cFYI(1, "sess setup type %d", type); |
Steve French | 0b3cc858 | 2009-05-04 08:37:12 +0000 | [diff] [blame] | 608 | ssetup_ntlmssp_authenticate: |
| 609 | if (phase == NtLmChallenge) |
| 610 | phase = NtLmAuthenticate; /* if ntlmssp, now final phase */ |
| 611 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 612 | if (type == LANMAN) { |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 613 | #ifndef CONFIG_CIFS_WEAK_PW_HASH |
| 614 | /* LANMAN and plaintext are less secure and off by default. |
| 615 | So we make this explicitly be turned on in kconfig (in the |
| 616 | build) and turned on at runtime (changed from the default) |
| 617 | in proc/fs/cifs or via mount parm. Unfortunately this is |
| 618 | needed for old Win (e.g. Win95), some obscure NAS and OS/2 */ |
| 619 | return -EOPNOTSUPP; |
| 620 | #endif |
| 621 | wct = 10; /* lanman 2 style sessionsetup */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 622 | } else if ((type == NTLM) || (type == NTLMv2)) { |
Steve French | 9312f67 | 2006-06-04 22:21:07 +0000 | [diff] [blame] | 623 | /* For NTLMv2 failures eventually may need to retry NTLM */ |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 624 | wct = 13; /* old style NTLM sessionsetup */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 625 | } else /* same size: negotiate or auth, NTLMSSP or extended security */ |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 626 | wct = 12; |
| 627 | |
| 628 | rc = small_smb_init_no_tc(SMB_COM_SESSION_SETUP_ANDX, wct, ses, |
| 629 | (void **)&smb_buf); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 630 | if (rc) |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 631 | return rc; |
| 632 | |
| 633 | pSMB = (SESSION_SETUP_ANDX *)smb_buf; |
| 634 | |
| 635 | capabilities = cifs_ssetup_hdr(ses, pSMB); |
Steve French | 750d115 | 2006-06-27 06:28:30 +0000 | [diff] [blame] | 636 | |
Steve French | 2442421 | 2007-11-16 23:37:35 +0000 | [diff] [blame] | 637 | /* we will send the SMB in three pieces: |
| 638 | a fixed length beginning part, an optional |
| 639 | SPNEGO blob (which can be zero length), and a |
| 640 | last part which will include the strings |
| 641 | and rest of bcc area. This allows us to avoid |
| 642 | a large buffer 17K allocation */ |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 643 | iov[0].iov_base = (char *)pSMB; |
| 644 | iov[0].iov_len = smb_buf->smb_buf_length + 4; |
Steve French | 750d115 | 2006-06-27 06:28:30 +0000 | [diff] [blame] | 645 | |
Steve French | 2442421 | 2007-11-16 23:37:35 +0000 | [diff] [blame] | 646 | /* setting this here allows the code at the end of the function |
| 647 | to free the request buffer if there's an error */ |
| 648 | resp_buf_type = CIFS_SMALL_BUFFER; |
| 649 | |
Steve French | 750d115 | 2006-06-27 06:28:30 +0000 | [diff] [blame] | 650 | /* 2000 big enough to fit max user, domain, NOS name etc. */ |
| 651 | str_area = kmalloc(2000, GFP_KERNEL); |
Cyrill Gorcunov | 5e6e623 | 2007-08-18 00:15:20 +0000 | [diff] [blame] | 652 | if (str_area == NULL) { |
Steve French | 2442421 | 2007-11-16 23:37:35 +0000 | [diff] [blame] | 653 | rc = -ENOMEM; |
| 654 | goto ssetup_exit; |
Cyrill Gorcunov | 5e6e623 | 2007-08-18 00:15:20 +0000 | [diff] [blame] | 655 | } |
Steve French | 750d115 | 2006-06-27 06:28:30 +0000 | [diff] [blame] | 656 | bcc_ptr = str_area; |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 657 | |
Steve French | 9ac00b7 | 2006-09-30 04:13:17 +0000 | [diff] [blame] | 658 | ses->flags &= ~CIFS_SES_LANMAN; |
| 659 | |
Steve French | 2442421 | 2007-11-16 23:37:35 +0000 | [diff] [blame] | 660 | iov[1].iov_base = NULL; |
| 661 | iov[1].iov_len = 0; |
| 662 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 663 | if (type == LANMAN) { |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 664 | #ifdef CONFIG_CIFS_WEAK_PW_HASH |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 665 | char lnm_session_key[CIFS_SESS_KEY_SIZE]; |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 666 | |
Steve French | c76da9d | 2008-08-28 15:32:22 +0000 | [diff] [blame] | 667 | pSMB->req.hdr.Flags2 &= ~SMBFLG2_UNICODE; |
| 668 | |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 669 | /* no capabilities flags in old lanman negotiation */ |
| 670 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 671 | pSMB->old_req.PasswordLength = cpu_to_le16(CIFS_SESS_KEY_SIZE); |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 672 | /* BB calculate hash with password */ |
| 673 | /* and copy into bcc */ |
| 674 | |
Jeff Layton | 4e53a3f | 2008-12-05 20:41:21 -0500 | [diff] [blame] | 675 | calc_lanman_hash(ses->password, ses->server->cryptKey, |
| 676 | ses->server->secMode & SECMODE_PW_ENCRYPT ? |
| 677 | true : false, lnm_session_key); |
| 678 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 679 | ses->flags |= CIFS_SES_LANMAN; |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 680 | memcpy(bcc_ptr, (char *)lnm_session_key, CIFS_SESS_KEY_SIZE); |
| 681 | bcc_ptr += CIFS_SESS_KEY_SIZE; |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 682 | |
| 683 | /* can not sign if LANMAN negotiated so no need |
| 684 | to calculate signing key? but what if server |
| 685 | changed to do higher than lanman dialect and |
| 686 | we reconnected would we ever calc signing_key? */ |
| 687 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 688 | cFYI(1, "Negotiating LANMAN setting up strings"); |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 689 | /* Unicode not allowed for LANMAN dialects */ |
| 690 | ascii_ssetup_strings(&bcc_ptr, ses, nls_cp); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 691 | #endif |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 692 | } else if (type == NTLM) { |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 693 | char ntlm_session_key[CIFS_SESS_KEY_SIZE]; |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 694 | |
| 695 | pSMB->req_no_secext.Capabilities = cpu_to_le32(capabilities); |
| 696 | pSMB->req_no_secext.CaseInsensitivePasswordLength = |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 697 | cpu_to_le16(CIFS_SESS_KEY_SIZE); |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 698 | pSMB->req_no_secext.CaseSensitivePasswordLength = |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 699 | cpu_to_le16(CIFS_SESS_KEY_SIZE); |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 700 | |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 701 | /* calculate session key */ |
| 702 | SMBNTencrypt(ses->password, ses->server->cryptKey, |
| 703 | ntlm_session_key); |
| 704 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 705 | if (first_time) /* should this be moved into common code |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 706 | with similar ntlmv2 path? */ |
Shirish Pargaonkar | 5f98ca9 | 2010-09-18 22:01:58 -0500 | [diff] [blame] | 707 | cifs_calculate_session_key(&ses->server->session_key, |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 708 | ntlm_session_key, ses->password); |
| 709 | /* copy session key */ |
| 710 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 711 | memcpy(bcc_ptr, (char *)ntlm_session_key, CIFS_SESS_KEY_SIZE); |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 712 | bcc_ptr += CIFS_SESS_KEY_SIZE; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 713 | memcpy(bcc_ptr, (char *)ntlm_session_key, CIFS_SESS_KEY_SIZE); |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 714 | bcc_ptr += CIFS_SESS_KEY_SIZE; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 715 | if (ses->capabilities & CAP_UNICODE) { |
Steve French | 0223cf0 | 2006-06-27 19:50:57 +0000 | [diff] [blame] | 716 | /* unicode strings must be word aligned */ |
| 717 | if (iov[0].iov_len % 2) { |
| 718 | *bcc_ptr = 0; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 719 | bcc_ptr++; |
| 720 | } |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 721 | unicode_ssetup_strings(&bcc_ptr, ses, nls_cp); |
Steve French | 0223cf0 | 2006-06-27 19:50:57 +0000 | [diff] [blame] | 722 | } else |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 723 | ascii_ssetup_strings(&bcc_ptr, ses, nls_cp); |
| 724 | } else if (type == NTLMv2) { |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 725 | char *v2_sess_key = |
Steve French | 6d027cf | 2006-06-05 16:26:05 +0000 | [diff] [blame] | 726 | kmalloc(sizeof(struct ntlmv2_resp), GFP_KERNEL); |
Steve French | f64b23a | 2006-06-05 05:27:37 +0000 | [diff] [blame] | 727 | |
| 728 | /* BB FIXME change all users of v2_sess_key to |
| 729 | struct ntlmv2_resp */ |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 730 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 731 | if (v2_sess_key == NULL) { |
Steve French | 2442421 | 2007-11-16 23:37:35 +0000 | [diff] [blame] | 732 | rc = -ENOMEM; |
| 733 | goto ssetup_exit; |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 734 | } |
| 735 | |
| 736 | pSMB->req_no_secext.Capabilities = cpu_to_le32(capabilities); |
| 737 | |
| 738 | /* LM2 password would be here if we supported it */ |
| 739 | pSMB->req_no_secext.CaseInsensitivePasswordLength = 0; |
| 740 | /* cpu_to_le16(LM2_SESS_KEY_SIZE); */ |
| 741 | |
Steve French | 7c7b25b | 2006-06-01 19:20:10 +0000 | [diff] [blame] | 742 | /* calculate session key */ |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 743 | rc = setup_ntlmv2_rsp(ses, v2_sess_key, nls_cp); |
| 744 | if (rc) { |
| 745 | cERROR(1, "Error %d during NTLMv2 authentication", rc); |
| 746 | kfree(v2_sess_key); |
| 747 | goto ssetup_exit; |
| 748 | } |
Steve French | 3870253 | 2007-07-08 15:40:40 +0000 | [diff] [blame] | 749 | memcpy(bcc_ptr, (char *)v2_sess_key, |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 750 | sizeof(struct ntlmv2_resp)); |
Steve French | f64b23a | 2006-06-05 05:27:37 +0000 | [diff] [blame] | 751 | bcc_ptr += sizeof(struct ntlmv2_resp); |
| 752 | kfree(v2_sess_key); |
Shirish Pargaonkar | c9928f7 | 2010-10-04 19:56:13 -0500 | [diff] [blame^] | 753 | /* set case sensitive password length after tilen may get |
| 754 | * assigned, tilen is 0 otherwise. |
| 755 | */ |
| 756 | pSMB->req_no_secext.CaseSensitivePasswordLength = |
| 757 | cpu_to_le16(sizeof(struct ntlmv2_resp) + ses->tilen); |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 758 | if (ses->tilen > 0) { |
| 759 | memcpy(bcc_ptr, ses->tiblob, ses->tilen); |
| 760 | bcc_ptr += ses->tilen; |
| 761 | /* we never did allocate ses->domainName to free */ |
| 762 | kfree(ses->tiblob); |
| 763 | ses->tiblob = NULL; |
| 764 | ses->tilen = 0; |
| 765 | } |
Shirish Pargaonkar | c9928f7 | 2010-10-04 19:56:13 -0500 | [diff] [blame^] | 766 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 767 | if (ses->capabilities & CAP_UNICODE) { |
| 768 | if (iov[0].iov_len % 2) { |
Steve French | 0223cf0 | 2006-06-27 19:50:57 +0000 | [diff] [blame] | 769 | *bcc_ptr = 0; |
Steve French | 26f5736 | 2007-08-30 22:09:15 +0000 | [diff] [blame] | 770 | bcc_ptr++; |
| 771 | } |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 772 | unicode_ssetup_strings(&bcc_ptr, ses, nls_cp); |
Steve French | 0223cf0 | 2006-06-27 19:50:57 +0000 | [diff] [blame] | 773 | } else |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 774 | ascii_ssetup_strings(&bcc_ptr, ses, nls_cp); |
Jeff Layton | 26efa0b | 2010-04-24 07:57:49 -0400 | [diff] [blame] | 775 | } else if (type == Kerberos) { |
Steve French | 2442421 | 2007-11-16 23:37:35 +0000 | [diff] [blame] | 776 | #ifdef CONFIG_CIFS_UPCALL |
| 777 | struct cifs_spnego_msg *msg; |
| 778 | spnego_key = cifs_get_spnego_key(ses); |
| 779 | if (IS_ERR(spnego_key)) { |
| 780 | rc = PTR_ERR(spnego_key); |
| 781 | spnego_key = NULL; |
| 782 | goto ssetup_exit; |
| 783 | } |
| 784 | |
| 785 | msg = spnego_key->payload.data; |
Steve French | 6ce5eec | 2008-08-26 00:37:14 +0000 | [diff] [blame] | 786 | /* check version field to make sure that cifs.upcall is |
| 787 | sending us a response in an expected form */ |
| 788 | if (msg->version != CIFS_SPNEGO_UPCALL_VERSION) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 789 | cERROR(1, "incorrect version of cifs.upcall (expected" |
Steve French | 6ce5eec | 2008-08-26 00:37:14 +0000 | [diff] [blame] | 790 | " %d but got %d)", |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 791 | CIFS_SPNEGO_UPCALL_VERSION, msg->version); |
Steve French | 6ce5eec | 2008-08-26 00:37:14 +0000 | [diff] [blame] | 792 | rc = -EKEYREJECTED; |
| 793 | goto ssetup_exit; |
| 794 | } |
Steve French | 2442421 | 2007-11-16 23:37:35 +0000 | [diff] [blame] | 795 | /* bail out if key is too long */ |
| 796 | if (msg->sesskey_len > |
Shirish Pargaonkar | 5f98ca9 | 2010-09-18 22:01:58 -0500 | [diff] [blame] | 797 | sizeof(ses->server->session_key.data.krb5)) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 798 | cERROR(1, "Kerberos signing key too long (%u bytes)", |
| 799 | msg->sesskey_len); |
Steve French | 2442421 | 2007-11-16 23:37:35 +0000 | [diff] [blame] | 800 | rc = -EOVERFLOW; |
| 801 | goto ssetup_exit; |
| 802 | } |
Jeff Layton | 1a67570 | 2007-12-31 04:03:02 +0000 | [diff] [blame] | 803 | if (first_time) { |
Shirish Pargaonkar | 5f98ca9 | 2010-09-18 22:01:58 -0500 | [diff] [blame] | 804 | ses->server->session_key.len = msg->sesskey_len; |
| 805 | memcpy(ses->server->session_key.data.krb5, |
Jeff Layton | 1a67570 | 2007-12-31 04:03:02 +0000 | [diff] [blame] | 806 | msg->data, msg->sesskey_len); |
| 807 | } |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 808 | pSMB->req.hdr.Flags2 |= SMBFLG2_EXT_SEC; |
| 809 | capabilities |= CAP_EXTENDED_SECURITY; |
| 810 | pSMB->req.Capabilities = cpu_to_le32(capabilities); |
Steve French | 2442421 | 2007-11-16 23:37:35 +0000 | [diff] [blame] | 811 | iov[1].iov_base = msg->data + msg->sesskey_len; |
| 812 | iov[1].iov_len = msg->secblob_len; |
| 813 | pSMB->req.SecurityBlobLength = cpu_to_le16(iov[1].iov_len); |
| 814 | |
| 815 | if (ses->capabilities & CAP_UNICODE) { |
| 816 | /* unicode strings must be word aligned */ |
Jeff Layton | 28c5a02 | 2007-12-31 04:56:21 +0000 | [diff] [blame] | 817 | if ((iov[0].iov_len + iov[1].iov_len) % 2) { |
Steve French | 2442421 | 2007-11-16 23:37:35 +0000 | [diff] [blame] | 818 | *bcc_ptr = 0; |
| 819 | bcc_ptr++; |
| 820 | } |
| 821 | unicode_oslm_strings(&bcc_ptr, nls_cp); |
| 822 | unicode_domain_string(&bcc_ptr, ses, nls_cp); |
| 823 | } else |
| 824 | /* BB: is this right? */ |
| 825 | ascii_ssetup_strings(&bcc_ptr, ses, nls_cp); |
| 826 | #else /* ! CONFIG_CIFS_UPCALL */ |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 827 | cERROR(1, "Kerberos negotiated but upcall support disabled!"); |
Steve French | 2442421 | 2007-11-16 23:37:35 +0000 | [diff] [blame] | 828 | rc = -ENOSYS; |
| 829 | goto ssetup_exit; |
| 830 | #endif /* CONFIG_CIFS_UPCALL */ |
| 831 | } else { |
Steve French | 0b3cc858 | 2009-05-04 08:37:12 +0000 | [diff] [blame] | 832 | #ifdef CONFIG_CIFS_EXPERIMENTAL |
Steve French | f46c723 | 2009-06-25 03:04:20 +0000 | [diff] [blame] | 833 | if (type == RawNTLMSSP) { |
Steve French | 0b3cc858 | 2009-05-04 08:37:12 +0000 | [diff] [blame] | 834 | if ((pSMB->req.hdr.Flags2 & SMBFLG2_UNICODE) == 0) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 835 | cERROR(1, "NTLMSSP requires Unicode support"); |
Steve French | 0b3cc858 | 2009-05-04 08:37:12 +0000 | [diff] [blame] | 836 | rc = -ENOSYS; |
| 837 | goto ssetup_exit; |
| 838 | } |
| 839 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 840 | cFYI(1, "ntlmssp session setup phase %d", phase); |
Steve French | 0b3cc858 | 2009-05-04 08:37:12 +0000 | [diff] [blame] | 841 | pSMB->req.hdr.Flags2 |= SMBFLG2_EXT_SEC; |
| 842 | capabilities |= CAP_EXTENDED_SECURITY; |
| 843 | pSMB->req.Capabilities |= cpu_to_le32(capabilities); |
| 844 | if (phase == NtLmNegotiate) { |
| 845 | setup_ntlmssp_neg_req(pSMB, ses); |
| 846 | iov[1].iov_len = sizeof(NEGOTIATE_MESSAGE); |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 847 | iov[1].iov_base = &pSMB->req.SecurityBlob[0]; |
Steve French | 0b3cc858 | 2009-05-04 08:37:12 +0000 | [diff] [blame] | 848 | } else if (phase == NtLmAuthenticate) { |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 849 | /* 5 is an empirical value, large enought to |
| 850 | * hold authenticate message, max 10 of |
| 851 | * av paris, doamin,user,workstation mames, |
| 852 | * flags etc.. |
| 853 | */ |
| 854 | ntlmsspblob = kmalloc( |
| 855 | 5*sizeof(struct _AUTHENTICATE_MESSAGE), |
| 856 | GFP_KERNEL); |
| 857 | if (!ntlmsspblob) { |
| 858 | cERROR(1, "Can't allocate NTLMSSP"); |
| 859 | rc = -ENOMEM; |
| 860 | goto ssetup_exit; |
| 861 | } |
| 862 | |
| 863 | blob_len = build_ntlmssp_auth_blob(ntlmsspblob, |
| 864 | ses, nls_cp); |
Steve French | 0b3cc858 | 2009-05-04 08:37:12 +0000 | [diff] [blame] | 865 | iov[1].iov_len = blob_len; |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 866 | iov[1].iov_base = ntlmsspblob; |
| 867 | pSMB->req.SecurityBlobLength = |
| 868 | cpu_to_le16(blob_len); |
Steve French | 844823c | 2009-05-06 00:48:30 +0000 | [diff] [blame] | 869 | /* Make sure that we tell the server that we |
| 870 | are using the uid that it just gave us back |
| 871 | on the response (challenge) */ |
| 872 | smb_buf->Uid = ses->Suid; |
Steve French | 0b3cc858 | 2009-05-04 08:37:12 +0000 | [diff] [blame] | 873 | } else { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 874 | cERROR(1, "invalid phase %d", phase); |
Steve French | 0b3cc858 | 2009-05-04 08:37:12 +0000 | [diff] [blame] | 875 | rc = -ENOSYS; |
| 876 | goto ssetup_exit; |
| 877 | } |
Steve French | 0b3cc858 | 2009-05-04 08:37:12 +0000 | [diff] [blame] | 878 | /* unicode strings must be word aligned */ |
| 879 | if ((iov[0].iov_len + iov[1].iov_len) % 2) { |
| 880 | *bcc_ptr = 0; |
| 881 | bcc_ptr++; |
| 882 | } |
| 883 | unicode_oslm_strings(&bcc_ptr, nls_cp); |
| 884 | } else { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 885 | cERROR(1, "secType %d not supported!", type); |
Steve French | 0b3cc858 | 2009-05-04 08:37:12 +0000 | [diff] [blame] | 886 | rc = -ENOSYS; |
| 887 | goto ssetup_exit; |
| 888 | } |
| 889 | #else |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 890 | cERROR(1, "secType %d not supported!", type); |
Steve French | 2442421 | 2007-11-16 23:37:35 +0000 | [diff] [blame] | 891 | rc = -ENOSYS; |
| 892 | goto ssetup_exit; |
Steve French | 0b3cc858 | 2009-05-04 08:37:12 +0000 | [diff] [blame] | 893 | #endif |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 894 | } |
| 895 | |
Steve French | 2442421 | 2007-11-16 23:37:35 +0000 | [diff] [blame] | 896 | iov[2].iov_base = str_area; |
| 897 | iov[2].iov_len = (long) bcc_ptr - (long) str_area; |
| 898 | |
| 899 | count = iov[1].iov_len + iov[2].iov_len; |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 900 | smb_buf->smb_buf_length += count; |
| 901 | |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 902 | BCC_LE(smb_buf) = cpu_to_le16(count); |
| 903 | |
Steve French | 2442421 | 2007-11-16 23:37:35 +0000 | [diff] [blame] | 904 | rc = SendReceive2(xid, ses, iov, 3 /* num_iovecs */, &resp_buf_type, |
Steve French | 133672e | 2007-11-13 22:41:37 +0000 | [diff] [blame] | 905 | CIFS_STD_OP /* not long */ | CIFS_LOG_ERROR); |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 906 | /* SMB request buf freed in SendReceive2 */ |
| 907 | |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 908 | cFYI(1, "ssetup rc from sendrecv2 is %d", rc); |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 909 | |
| 910 | pSMB = (SESSION_SETUP_ANDX *)iov[0].iov_base; |
| 911 | smb_buf = (struct smb_hdr *)iov[0].iov_base; |
| 912 | |
Steve French | 0b3cc858 | 2009-05-04 08:37:12 +0000 | [diff] [blame] | 913 | if ((type == RawNTLMSSP) && (smb_buf->Status.CifsError == |
| 914 | cpu_to_le32(NT_STATUS_MORE_PROCESSING_REQUIRED))) { |
| 915 | if (phase != NtLmNegotiate) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 916 | cERROR(1, "Unexpected more processing error"); |
Steve French | 0b3cc858 | 2009-05-04 08:37:12 +0000 | [diff] [blame] | 917 | goto ssetup_exit; |
| 918 | } |
| 919 | /* NTLMSSP Negotiate sent now processing challenge (response) */ |
| 920 | phase = NtLmChallenge; /* process ntlmssp challenge */ |
| 921 | rc = 0; /* MORE_PROC rc is not an error here, but expected */ |
| 922 | } |
| 923 | if (rc) |
| 924 | goto ssetup_exit; |
| 925 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 926 | if ((smb_buf->WordCount != 3) && (smb_buf->WordCount != 4)) { |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 927 | rc = -EIO; |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 928 | cERROR(1, "bad word count %d", smb_buf->WordCount); |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 929 | goto ssetup_exit; |
| 930 | } |
| 931 | action = le16_to_cpu(pSMB->resp.Action); |
| 932 | if (action & GUEST_LOGIN) |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 933 | cFYI(1, "Guest login"); /* BB mark SesInfo struct? */ |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 934 | ses->Suid = smb_buf->Uid; /* UID left in wire format (le) */ |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 935 | cFYI(1, "UID = %d ", ses->Suid); |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 936 | /* response can have either 3 or 4 word count - Samba sends 3 */ |
| 937 | /* and lanman response is 3 */ |
| 938 | bytes_remaining = BCC(smb_buf); |
| 939 | bcc_ptr = pByteArea(smb_buf); |
| 940 | |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 941 | if (smb_buf->WordCount == 4) { |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 942 | __u16 blob_len; |
| 943 | blob_len = le16_to_cpu(pSMB->resp.SecurityBlobLength); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 944 | if (blob_len > bytes_remaining) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 945 | cERROR(1, "bad security blob length %d", blob_len); |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 946 | rc = -EINVAL; |
| 947 | goto ssetup_exit; |
| 948 | } |
Steve French | 0b3cc858 | 2009-05-04 08:37:12 +0000 | [diff] [blame] | 949 | if (phase == NtLmChallenge) { |
| 950 | rc = decode_ntlmssp_challenge(bcc_ptr, blob_len, ses); |
| 951 | /* now goto beginning for ntlmssp authenticate phase */ |
| 952 | if (rc) |
| 953 | goto ssetup_exit; |
| 954 | } |
| 955 | bcc_ptr += blob_len; |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 956 | bytes_remaining -= blob_len; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 957 | } |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 958 | |
| 959 | /* BB check if Unicode and decode strings */ |
Jeff Layton | 27b87fe | 2009-04-14 11:00:53 -0400 | [diff] [blame] | 960 | if (smb_buf->Flags2 & SMBFLG2_UNICODE) { |
| 961 | /* unicode string area must be word-aligned */ |
| 962 | if (((unsigned long) bcc_ptr - (unsigned long) smb_buf) % 2) { |
| 963 | ++bcc_ptr; |
| 964 | --bytes_remaining; |
| 965 | } |
Jeff Layton | 5914079 | 2009-04-30 07:16:21 -0400 | [diff] [blame] | 966 | decode_unicode_ssetup(&bcc_ptr, bytes_remaining, ses, nls_cp); |
Jeff Layton | 27b87fe | 2009-04-14 11:00:53 -0400 | [diff] [blame] | 967 | } else { |
Steve French | 63135e0 | 2007-07-17 17:34:02 +0000 | [diff] [blame] | 968 | rc = decode_ascii_ssetup(&bcc_ptr, bytes_remaining, |
| 969 | ses, nls_cp); |
Jeff Layton | 27b87fe | 2009-04-14 11:00:53 -0400 | [diff] [blame] | 970 | } |
Steve French | 50c2f75 | 2007-07-13 00:33:32 +0000 | [diff] [blame] | 971 | |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 972 | ssetup_exit: |
Jeff Layton | dfd15c46 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 973 | if (spnego_key) { |
| 974 | key_revoke(spnego_key); |
Steve French | 2442421 | 2007-11-16 23:37:35 +0000 | [diff] [blame] | 975 | key_put(spnego_key); |
Jeff Layton | dfd15c46 | 2008-09-24 11:32:59 -0400 | [diff] [blame] | 976 | } |
Steve French | 750d115 | 2006-06-27 06:28:30 +0000 | [diff] [blame] | 977 | kfree(str_area); |
Shirish Pargaonkar | 2b149f1 | 2010-09-18 22:02:18 -0500 | [diff] [blame] | 978 | kfree(ntlmsspblob); |
| 979 | ntlmsspblob = NULL; |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 980 | if (resp_buf_type == CIFS_SMALL_BUFFER) { |
Joe Perches | b6b38f7 | 2010-04-21 03:50:45 +0000 | [diff] [blame] | 981 | cFYI(1, "ssetup freeing small buf %p", iov[0].iov_base); |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 982 | cifs_small_buf_release(iov[0].iov_base); |
Steve French | 790fe57 | 2007-07-07 19:25:05 +0000 | [diff] [blame] | 983 | } else if (resp_buf_type == CIFS_LARGE_BUFFER) |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 984 | cifs_buf_release(iov[0].iov_base); |
| 985 | |
Steve French | 0b3cc858 | 2009-05-04 08:37:12 +0000 | [diff] [blame] | 986 | /* if ntlmssp, and negotiate succeeded, proceed to authenticate phase */ |
| 987 | if ((phase == NtLmChallenge) && (rc == 0)) |
| 988 | goto ssetup_ntlmssp_authenticate; |
| 989 | |
Steve French | 3979877 | 2006-05-31 22:40:51 +0000 | [diff] [blame] | 990 | return rc; |
| 991 | } |