Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * fs/cifs/misc.c |
| 3 | * |
Steve French | 8345187 | 2005-12-01 17:12:59 -0800 | [diff] [blame] | 4 | * Copyright (C) International Business Machines Corp., 2002,2005 |
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 |
| 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 20 | */ |
| 21 | |
| 22 | #include <linux/slab.h> |
| 23 | #include <linux/ctype.h> |
| 24 | #include <linux/mempool.h> |
| 25 | #include "cifspdu.h" |
| 26 | #include "cifsglob.h" |
| 27 | #include "cifsproto.h" |
| 28 | #include "cifs_debug.h" |
| 29 | #include "smberr.h" |
| 30 | #include "nterr.h" |
Steve French | 6c91d36 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 31 | #include "cifs_unicode.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
| 33 | extern mempool_t *cifs_sm_req_poolp; |
| 34 | extern mempool_t *cifs_req_poolp; |
| 35 | extern struct task_struct * oplockThread; |
| 36 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | /* The xid serves as a useful identifier for each incoming vfs request, |
| 38 | in a similar way to the mid which is useful to track each sent smb, |
| 39 | and CurrentXid can also provide a running counter (although it |
| 40 | will eventually wrap past zero) of the total vfs operations handled |
| 41 | since the cifs fs was mounted */ |
| 42 | |
| 43 | unsigned int |
| 44 | _GetXid(void) |
| 45 | { |
| 46 | unsigned int xid; |
| 47 | |
| 48 | spin_lock(&GlobalMid_Lock); |
| 49 | GlobalTotalActiveXid++; |
| 50 | if (GlobalTotalActiveXid > GlobalMaxActiveXid) |
| 51 | GlobalMaxActiveXid = GlobalTotalActiveXid; /* keep high water mark for number of simultaneous vfs ops in our filesystem */ |
Steve French | 1982c34 | 2005-08-17 12:38:22 -0700 | [diff] [blame] | 52 | if(GlobalTotalActiveXid > 65000) |
| 53 | cFYI(1,("warning: more than 65000 requests active")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | xid = GlobalCurrentXid++; |
| 55 | spin_unlock(&GlobalMid_Lock); |
| 56 | return xid; |
| 57 | } |
| 58 | |
| 59 | void |
| 60 | _FreeXid(unsigned int xid) |
| 61 | { |
| 62 | spin_lock(&GlobalMid_Lock); |
| 63 | /* if(GlobalTotalActiveXid == 0) |
| 64 | BUG(); */ |
| 65 | GlobalTotalActiveXid--; |
| 66 | spin_unlock(&GlobalMid_Lock); |
| 67 | } |
| 68 | |
| 69 | struct cifsSesInfo * |
| 70 | sesInfoAlloc(void) |
| 71 | { |
| 72 | struct cifsSesInfo *ret_buf; |
| 73 | |
| 74 | ret_buf = |
| 75 | (struct cifsSesInfo *) kmalloc(sizeof (struct cifsSesInfo), |
| 76 | GFP_KERNEL); |
| 77 | if (ret_buf) { |
| 78 | memset(ret_buf, 0, sizeof (struct cifsSesInfo)); |
| 79 | write_lock(&GlobalSMBSeslock); |
| 80 | atomic_inc(&sesInfoAllocCount); |
| 81 | ret_buf->status = CifsNew; |
| 82 | list_add(&ret_buf->cifsSessionList, &GlobalSMBSessionList); |
| 83 | init_MUTEX(&ret_buf->sesSem); |
| 84 | write_unlock(&GlobalSMBSeslock); |
| 85 | } |
| 86 | return ret_buf; |
| 87 | } |
| 88 | |
| 89 | void |
| 90 | sesInfoFree(struct cifsSesInfo *buf_to_free) |
| 91 | { |
| 92 | if (buf_to_free == NULL) { |
| 93 | cFYI(1, ("Null buffer passed to sesInfoFree")); |
| 94 | return; |
| 95 | } |
| 96 | |
| 97 | write_lock(&GlobalSMBSeslock); |
| 98 | atomic_dec(&sesInfoAllocCount); |
| 99 | list_del(&buf_to_free->cifsSessionList); |
| 100 | write_unlock(&GlobalSMBSeslock); |
Jesper Juhl | f99d49a | 2005-11-07 01:01:34 -0800 | [diff] [blame] | 101 | kfree(buf_to_free->serverOS); |
| 102 | kfree(buf_to_free->serverDomain); |
| 103 | kfree(buf_to_free->serverNOS); |
| 104 | kfree(buf_to_free->password); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | kfree(buf_to_free); |
| 106 | } |
| 107 | |
| 108 | struct cifsTconInfo * |
| 109 | tconInfoAlloc(void) |
| 110 | { |
| 111 | struct cifsTconInfo *ret_buf; |
| 112 | ret_buf = |
| 113 | (struct cifsTconInfo *) kmalloc(sizeof (struct cifsTconInfo), |
| 114 | GFP_KERNEL); |
| 115 | if (ret_buf) { |
| 116 | memset(ret_buf, 0, sizeof (struct cifsTconInfo)); |
| 117 | write_lock(&GlobalSMBSeslock); |
| 118 | atomic_inc(&tconInfoAllocCount); |
| 119 | list_add(&ret_buf->cifsConnectionList, |
| 120 | &GlobalTreeConnectionList); |
| 121 | ret_buf->tidStatus = CifsNew; |
| 122 | INIT_LIST_HEAD(&ret_buf->openFileList); |
| 123 | init_MUTEX(&ret_buf->tconSem); |
| 124 | #ifdef CONFIG_CIFS_STATS |
| 125 | spin_lock_init(&ret_buf->stat_lock); |
| 126 | #endif |
| 127 | write_unlock(&GlobalSMBSeslock); |
| 128 | } |
| 129 | return ret_buf; |
| 130 | } |
| 131 | |
| 132 | void |
| 133 | tconInfoFree(struct cifsTconInfo *buf_to_free) |
| 134 | { |
| 135 | if (buf_to_free == NULL) { |
| 136 | cFYI(1, ("Null buffer passed to tconInfoFree")); |
| 137 | return; |
| 138 | } |
| 139 | write_lock(&GlobalSMBSeslock); |
| 140 | atomic_dec(&tconInfoAllocCount); |
| 141 | list_del(&buf_to_free->cifsConnectionList); |
| 142 | write_unlock(&GlobalSMBSeslock); |
Jesper Juhl | f99d49a | 2005-11-07 01:01:34 -0800 | [diff] [blame] | 143 | kfree(buf_to_free->nativeFileSystem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | kfree(buf_to_free); |
| 145 | } |
| 146 | |
| 147 | struct smb_hdr * |
| 148 | cifs_buf_get(void) |
| 149 | { |
| 150 | struct smb_hdr *ret_buf = NULL; |
| 151 | |
| 152 | /* We could use negotiated size instead of max_msgsize - |
| 153 | but it may be more efficient to always alloc same size |
| 154 | albeit slightly larger than necessary and maxbuffersize |
| 155 | defaults to this and can not be bigger */ |
| 156 | ret_buf = |
| 157 | (struct smb_hdr *) mempool_alloc(cifs_req_poolp, SLAB_KERNEL | SLAB_NOFS); |
| 158 | |
| 159 | /* clear the first few header bytes */ |
| 160 | /* for most paths, more is cleared in header_assemble */ |
| 161 | if (ret_buf) { |
| 162 | memset(ret_buf, 0, sizeof(struct smb_hdr) + 3); |
| 163 | atomic_inc(&bufAllocCount); |
Steve French | 4498eed | 2005-12-03 13:58:57 -0800 | [diff] [blame] | 164 | #ifdef CONFIG_CIFS_STATS2 |
| 165 | atomic_inc(&totBufAllocCount); |
| 166 | #endif /* CONFIG_CIFS_STATS2 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | } |
| 168 | |
| 169 | return ret_buf; |
| 170 | } |
| 171 | |
| 172 | void |
| 173 | cifs_buf_release(void *buf_to_free) |
| 174 | { |
| 175 | |
| 176 | if (buf_to_free == NULL) { |
| 177 | /* cFYI(1, ("Null buffer passed to cifs_buf_release"));*/ |
| 178 | return; |
| 179 | } |
| 180 | mempool_free(buf_to_free,cifs_req_poolp); |
| 181 | |
| 182 | atomic_dec(&bufAllocCount); |
| 183 | return; |
| 184 | } |
| 185 | |
| 186 | struct smb_hdr * |
| 187 | cifs_small_buf_get(void) |
| 188 | { |
| 189 | struct smb_hdr *ret_buf = NULL; |
| 190 | |
| 191 | /* We could use negotiated size instead of max_msgsize - |
| 192 | but it may be more efficient to always alloc same size |
| 193 | albeit slightly larger than necessary and maxbuffersize |
| 194 | defaults to this and can not be bigger */ |
| 195 | ret_buf = |
| 196 | (struct smb_hdr *) mempool_alloc(cifs_sm_req_poolp, SLAB_KERNEL | SLAB_NOFS); |
| 197 | if (ret_buf) { |
| 198 | /* No need to clear memory here, cleared in header assemble */ |
| 199 | /* memset(ret_buf, 0, sizeof(struct smb_hdr) + 27);*/ |
| 200 | atomic_inc(&smBufAllocCount); |
Steve French | 4498eed | 2005-12-03 13:58:57 -0800 | [diff] [blame] | 201 | #ifdef CONFIG_CIFS_STATS2 |
| 202 | atomic_inc(&totSmBufAllocCount); |
| 203 | #endif /* CONFIG_CIFS_STATS2 */ |
| 204 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | } |
| 206 | return ret_buf; |
| 207 | } |
| 208 | |
| 209 | void |
| 210 | cifs_small_buf_release(void *buf_to_free) |
| 211 | { |
| 212 | |
| 213 | if (buf_to_free == NULL) { |
| 214 | cFYI(1, ("Null buffer passed to cifs_small_buf_release")); |
| 215 | return; |
| 216 | } |
| 217 | mempool_free(buf_to_free,cifs_sm_req_poolp); |
| 218 | |
| 219 | atomic_dec(&smBufAllocCount); |
| 220 | return; |
| 221 | } |
| 222 | |
Steve French | 1982c34 | 2005-08-17 12:38:22 -0700 | [diff] [blame] | 223 | /* |
| 224 | Find a free multiplex id (SMB mid). Otherwise there could be |
| 225 | mid collisions which might cause problems, demultiplexing the |
| 226 | wrong response to this request. Multiplex ids could collide if |
| 227 | one of a series requests takes much longer than the others, or |
| 228 | if a very large number of long lived requests (byte range |
| 229 | locks or FindNotify requests) are pending. No more than |
| 230 | 64K-1 requests can be outstanding at one time. If no |
| 231 | mids are available, return zero. A future optimization |
| 232 | could make the combination of mids and uid the key we use |
| 233 | to demultiplex on (rather than mid alone). |
| 234 | In addition to the above check, the cifs demultiplex |
| 235 | code already used the command code as a secondary |
| 236 | check of the frame and if signing is negotiated the |
| 237 | response would be discarded if the mid were the same |
| 238 | but the signature was wrong. Since the mid is not put in the |
| 239 | pending queue until later (when it is about to be dispatched) |
| 240 | we do have to limit the number of outstanding requests |
| 241 | to somewhat less than 64K-1 although it is hard to imagine |
| 242 | so many threads being in the vfs at one time. |
| 243 | */ |
| 244 | __u16 GetNextMid(struct TCP_Server_Info *server) |
| 245 | { |
| 246 | __u16 mid = 0; |
| 247 | __u16 last_mid; |
| 248 | int collision; |
| 249 | |
| 250 | if(server == NULL) |
| 251 | return mid; |
| 252 | |
| 253 | spin_lock(&GlobalMid_Lock); |
| 254 | last_mid = server->CurrentMid; /* we do not want to loop forever */ |
| 255 | server->CurrentMid++; |
| 256 | /* This nested loop looks more expensive than it is. |
| 257 | In practice the list of pending requests is short, |
| 258 | fewer than 50, and the mids are likely to be unique |
| 259 | on the first pass through the loop unless some request |
| 260 | takes longer than the 64 thousand requests before it |
| 261 | (and it would also have to have been a request that |
| 262 | did not time out) */ |
| 263 | while(server->CurrentMid != last_mid) { |
| 264 | struct list_head *tmp; |
| 265 | struct mid_q_entry *mid_entry; |
| 266 | |
| 267 | collision = 0; |
| 268 | if(server->CurrentMid == 0) |
| 269 | server->CurrentMid++; |
| 270 | |
| 271 | list_for_each(tmp, &server->pending_mid_q) { |
| 272 | mid_entry = list_entry(tmp, struct mid_q_entry, qhead); |
| 273 | |
| 274 | if ((mid_entry->mid == server->CurrentMid) && |
| 275 | (mid_entry->midState == MID_REQUEST_SUBMITTED)) { |
| 276 | /* This mid is in use, try a different one */ |
| 277 | collision = 1; |
| 278 | break; |
| 279 | } |
| 280 | } |
| 281 | if(collision == 0) { |
| 282 | mid = server->CurrentMid; |
| 283 | break; |
| 284 | } |
| 285 | server->CurrentMid++; |
| 286 | } |
| 287 | spin_unlock(&GlobalMid_Lock); |
| 288 | return mid; |
| 289 | } |
| 290 | |
| 291 | /* NB: MID can not be set if treeCon not passed in, in that |
| 292 | case it is responsbility of caller to set the mid */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | void |
| 294 | header_assemble(struct smb_hdr *buffer, char smb_command /* command */ , |
| 295 | const struct cifsTconInfo *treeCon, int word_count |
| 296 | /* length of fixed section (word count) in two byte units */) |
| 297 | { |
| 298 | struct list_head* temp_item; |
| 299 | struct cifsSesInfo * ses; |
| 300 | char *temp = (char *) buffer; |
| 301 | |
Steve French | ec637e3 | 2005-12-12 20:53:18 -0800 | [diff] [blame] | 302 | memset(temp,0,256); /* bigger than MAX_CIFS_HDR_SIZE */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | |
| 304 | buffer->smb_buf_length = |
| 305 | (2 * word_count) + sizeof (struct smb_hdr) - |
| 306 | 4 /* RFC 1001 length field does not count */ + |
| 307 | 2 /* for bcc field itself */ ; |
Steve French | 1982c34 | 2005-08-17 12:38:22 -0700 | [diff] [blame] | 308 | /* Note that this is the only network field that has to be converted |
| 309 | to big endian and it is done just before we send it */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | |
| 311 | buffer->Protocol[0] = 0xFF; |
| 312 | buffer->Protocol[1] = 'S'; |
| 313 | buffer->Protocol[2] = 'M'; |
| 314 | buffer->Protocol[3] = 'B'; |
| 315 | buffer->Command = smb_command; |
| 316 | buffer->Flags = 0x00; /* case sensitive */ |
| 317 | buffer->Flags2 = SMBFLG2_KNOWS_LONG_NAMES; |
| 318 | buffer->Pid = cpu_to_le16((__u16)current->tgid); |
| 319 | buffer->PidHigh = cpu_to_le16((__u16)(current->tgid >> 16)); |
| 320 | spin_lock(&GlobalMid_Lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | spin_unlock(&GlobalMid_Lock); |
| 322 | if (treeCon) { |
| 323 | buffer->Tid = treeCon->tid; |
| 324 | if (treeCon->ses) { |
| 325 | if (treeCon->ses->capabilities & CAP_UNICODE) |
| 326 | buffer->Flags2 |= SMBFLG2_UNICODE; |
| 327 | if (treeCon->ses->capabilities & CAP_STATUS32) { |
| 328 | buffer->Flags2 |= SMBFLG2_ERR_STATUS; |
| 329 | } |
Steve French | 1982c34 | 2005-08-17 12:38:22 -0700 | [diff] [blame] | 330 | /* Uid is not converted */ |
| 331 | buffer->Uid = treeCon->ses->Suid; |
| 332 | buffer->Mid = GetNextMid(treeCon->ses->server); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | if(multiuser_mount != 0) { |
| 334 | /* For the multiuser case, there are few obvious technically */ |
| 335 | /* possible mechanisms to match the local linux user (uid) */ |
| 336 | /* to a valid remote smb user (smb_uid): */ |
| 337 | /* 1) Query Winbind (or other local pam/nss daemon */ |
| 338 | /* for userid/password/logon_domain or credential */ |
| 339 | /* 2) Query Winbind for uid to sid to username mapping */ |
| 340 | /* and see if we have a matching password for existing*/ |
| 341 | /* session for that user perhas getting password by */ |
| 342 | /* adding a new pam_cifs module that stores passwords */ |
| 343 | /* so that the cifs vfs can get at that for all logged*/ |
| 344 | /* on users */ |
| 345 | /* 3) (Which is the mechanism we have chosen) */ |
| 346 | /* Search through sessions to the same server for a */ |
| 347 | /* a match on the uid that was passed in on mount */ |
| 348 | /* with the current processes uid (or euid?) and use */ |
| 349 | /* that smb uid. If no existing smb session for */ |
| 350 | /* that uid found, use the default smb session ie */ |
| 351 | /* the smb session for the volume mounted which is */ |
| 352 | /* the same as would be used if the multiuser mount */ |
| 353 | /* flag were disabled. */ |
| 354 | |
| 355 | /* BB Add support for establishing new tCon and SMB Session */ |
| 356 | /* with userid/password pairs found on the smb session */ |
| 357 | /* for other target tcp/ip addresses BB */ |
Steve French | 8345187 | 2005-12-01 17:12:59 -0800 | [diff] [blame] | 358 | if(current->fsuid != treeCon->ses->linux_uid) { |
| 359 | cFYI(1,("Multiuser mode and UID did not match tcon uid")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | read_lock(&GlobalSMBSeslock); |
| 361 | list_for_each(temp_item, &GlobalSMBSessionList) { |
| 362 | ses = list_entry(temp_item, struct cifsSesInfo, cifsSessionList); |
Steve French | 8345187 | 2005-12-01 17:12:59 -0800 | [diff] [blame] | 363 | if(ses->linux_uid == current->fsuid) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 364 | if(ses->server == treeCon->ses->server) { |
| 365 | cFYI(1,("found matching uid substitute right smb_uid")); |
| 366 | buffer->Uid = ses->Suid; |
| 367 | break; |
| 368 | } else { |
| 369 | /* BB eventually call cifs_setup_session here */ |
| 370 | cFYI(1,("local UID found but smb sess with this server does not exist")); |
| 371 | } |
| 372 | } |
| 373 | } |
| 374 | read_unlock(&GlobalSMBSeslock); |
| 375 | } |
| 376 | } |
| 377 | } |
| 378 | if (treeCon->Flags & SMB_SHARE_IS_IN_DFS) |
| 379 | buffer->Flags2 |= SMBFLG2_DFS; |
Steve French | d3485d3 | 2005-08-19 11:04:29 -0700 | [diff] [blame] | 380 | if (treeCon->nocase) |
| 381 | buffer->Flags |= SMBFLG_CASELESS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | if((treeCon->ses) && (treeCon->ses->server)) |
| 383 | if(treeCon->ses->server->secMode & |
| 384 | (SECMODE_SIGN_REQUIRED | SECMODE_SIGN_ENABLED)) |
| 385 | buffer->Flags2 |= SMBFLG2_SECURITY_SIGNATURE; |
| 386 | } |
| 387 | |
| 388 | /* endian conversion of flags is now done just before sending */ |
| 389 | buffer->WordCount = (char) word_count; |
| 390 | return; |
| 391 | } |
| 392 | |
| 393 | int |
| 394 | checkSMBhdr(struct smb_hdr *smb, __u16 mid) |
| 395 | { |
| 396 | /* Make sure that this really is an SMB, that it is a response, |
| 397 | and that the message ids match */ |
| 398 | if ((*(__le32 *) smb->Protocol == cpu_to_le32(0x424d53ff)) && |
| 399 | (mid == smb->Mid)) { |
| 400 | if(smb->Flags & SMBFLG_RESPONSE) |
| 401 | return 0; |
| 402 | else { |
| 403 | /* only one valid case where server sends us request */ |
| 404 | if(smb->Command == SMB_COM_LOCKING_ANDX) |
| 405 | return 0; |
| 406 | else |
Steve French | 6ab16d2 | 2005-11-29 20:55:11 -0800 | [diff] [blame] | 407 | cERROR(1, ("Rcvd Request not response")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | } |
| 409 | } else { /* bad signature or mid */ |
| 410 | if (*(__le32 *) smb->Protocol != cpu_to_le32(0x424d53ff)) |
| 411 | cERROR(1, |
Steve French | 6ab16d2 | 2005-11-29 20:55:11 -0800 | [diff] [blame] | 412 | ("Bad protocol string signature header %x", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | *(unsigned int *) smb->Protocol)); |
| 414 | if (mid != smb->Mid) |
| 415 | cERROR(1, ("Mids do not match")); |
| 416 | } |
| 417 | cERROR(1, ("bad smb detected. The Mid=%d", smb->Mid)); |
| 418 | return 1; |
| 419 | } |
| 420 | |
| 421 | int |
| 422 | checkSMB(struct smb_hdr *smb, __u16 mid, int length) |
| 423 | { |
Steve French | 70ca734 | 2005-09-22 16:32:06 -0700 | [diff] [blame] | 424 | __u32 len = smb->smb_buf_length; |
Steve French | 190fdeb | 2005-10-10 11:48:26 -0700 | [diff] [blame] | 425 | __u32 clc_len; /* calculated length */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | cFYI(0, |
Steve French | 6ab16d2 | 2005-11-29 20:55:11 -0800 | [diff] [blame] | 427 | ("Entering checkSMB with Length: %x, smb_buf_length: %x", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | length, len)); |
| 429 | if (((unsigned int)length < 2 + sizeof (struct smb_hdr)) || |
| 430 | (len > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE - 4)) { |
| 431 | if ((unsigned int)length < 2 + sizeof (struct smb_hdr)) { |
| 432 | if (((unsigned int)length >= |
| 433 | sizeof (struct smb_hdr) - 1) |
| 434 | && (smb->Status.CifsError != 0)) { |
| 435 | smb->WordCount = 0; |
| 436 | return 0; /* some error cases do not return wct and bcc */ |
| 437 | } else { |
| 438 | cERROR(1, ("Length less than smb header size")); |
| 439 | } |
| 440 | |
| 441 | } |
| 442 | if (len > CIFSMaxBufSize + MAX_CIFS_HDR_SIZE - 4) |
| 443 | cERROR(1, |
| 444 | ("smb_buf_length greater than MaxBufSize")); |
| 445 | cERROR(1, |
Steve French | 190fdeb | 2005-10-10 11:48:26 -0700 | [diff] [blame] | 446 | ("bad smb detected. Illegal length. mid=%d", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 447 | smb->Mid)); |
| 448 | return 1; |
| 449 | } |
| 450 | |
| 451 | if (checkSMBhdr(smb, mid)) |
| 452 | return 1; |
Steve French | 190fdeb | 2005-10-10 11:48:26 -0700 | [diff] [blame] | 453 | clc_len = smbCalcSize_LE(smb); |
| 454 | if ((4 + len != clc_len) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | || (4 + len != (unsigned int)length)) { |
Steve French | 190fdeb | 2005-10-10 11:48:26 -0700 | [diff] [blame] | 456 | cERROR(1, ("Calculated size 0x%x vs actual length 0x%x", |
| 457 | clc_len, 4 + len)); |
| 458 | cERROR(1, ("bad smb size detected for Mid=%d", smb->Mid)); |
| 459 | /* Windows XP can return a few bytes too much, presumably |
| 460 | an illegal pad, at the end of byte range lock responses |
Steve French | 6ab16d2 | 2005-11-29 20:55:11 -0800 | [diff] [blame] | 461 | so we allow for that three byte pad, as long as actual |
Steve French | 190fdeb | 2005-10-10 11:48:26 -0700 | [diff] [blame] | 462 | received length is as long or longer than calculated length */ |
Steve French | 6ab16d2 | 2005-11-29 20:55:11 -0800 | [diff] [blame] | 463 | /* We have now had to extend this more, since there is a |
| 464 | case in which it needs to be bigger still to handle a |
| 465 | malformed response to transact2 findfirst from WinXP when |
| 466 | access denied is returned and thus bcc and wct are zero |
| 467 | but server says length is 0x21 bytes too long as if the server |
| 468 | forget to reset the smb rfc1001 length when it reset the |
| 469 | wct and bcc to minimum size and drop the t2 parms and data */ |
| 470 | if((4+len > clc_len) && (len <= clc_len + 512)) |
Steve French | 190fdeb | 2005-10-10 11:48:26 -0700 | [diff] [blame] | 471 | return 0; |
| 472 | else |
| 473 | return 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | } |
Steve French | 2096243 | 2005-09-21 22:05:57 -0700 | [diff] [blame] | 475 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | } |
| 477 | int |
Steve French | e77e6f3 | 2006-03-05 03:39:55 +0000 | [diff] [blame] | 478 | is_valid_oplock_break(struct smb_hdr *buf, struct TCP_Server_Info *srv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 479 | { |
| 480 | struct smb_com_lock_req * pSMB = (struct smb_com_lock_req *)buf; |
| 481 | struct list_head *tmp; |
| 482 | struct list_head *tmp1; |
| 483 | struct cifsTconInfo *tcon; |
| 484 | struct cifsFileInfo *netfile; |
| 485 | |
| 486 | cFYI(1,("Checking for oplock break or dnotify response")); |
| 487 | if((pSMB->hdr.Command == SMB_COM_NT_TRANSACT) && |
| 488 | (pSMB->hdr.Flags & SMBFLG_RESPONSE)) { |
| 489 | struct smb_com_transaction_change_notify_rsp * pSMBr = |
| 490 | (struct smb_com_transaction_change_notify_rsp *)buf; |
| 491 | struct file_notify_information * pnotify; |
| 492 | __u32 data_offset = 0; |
| 493 | if(pSMBr->ByteCount > sizeof(struct file_notify_information)) { |
| 494 | data_offset = le32_to_cpu(pSMBr->DataOffset); |
| 495 | |
| 496 | pnotify = (struct file_notify_information *)((char *)&pSMBr->hdr.Protocol |
| 497 | + data_offset); |
| 498 | cFYI(1,("dnotify on %s with action: 0x%x",pnotify->FileName, |
| 499 | pnotify->Action)); /* BB removeme BB */ |
| 500 | /* cifs_dump_mem("Received notify Data is: ",buf,sizeof(struct smb_hdr)+60); */ |
| 501 | return TRUE; |
| 502 | } |
| 503 | if(pSMBr->hdr.Status.CifsError) { |
| 504 | cFYI(1,("notify err 0x%d",pSMBr->hdr.Status.CifsError)); |
| 505 | return TRUE; |
| 506 | } |
| 507 | return FALSE; |
| 508 | } |
| 509 | if(pSMB->hdr.Command != SMB_COM_LOCKING_ANDX) |
| 510 | return FALSE; |
| 511 | if(pSMB->hdr.Flags & SMBFLG_RESPONSE) { |
| 512 | /* no sense logging error on invalid handle on oplock |
| 513 | break - harmless race between close request and oplock |
| 514 | break response is expected from time to time writing out |
| 515 | large dirty files cached on the client */ |
| 516 | if ((NT_STATUS_INVALID_HANDLE) == |
| 517 | le32_to_cpu(pSMB->hdr.Status.CifsError)) { |
| 518 | cFYI(1,("invalid handle on oplock break")); |
| 519 | return TRUE; |
| 520 | } else if (ERRbadfid == |
| 521 | le16_to_cpu(pSMB->hdr.Status.DosError.Error)) { |
| 522 | return TRUE; |
| 523 | } else { |
| 524 | return FALSE; /* on valid oplock brk we get "request" */ |
| 525 | } |
| 526 | } |
| 527 | if(pSMB->hdr.WordCount != 8) |
| 528 | return FALSE; |
| 529 | |
| 530 | cFYI(1,(" oplock type 0x%d level 0x%d",pSMB->LockType,pSMB->OplockLevel)); |
| 531 | if(!(pSMB->LockType & LOCKING_ANDX_OPLOCK_RELEASE)) |
| 532 | return FALSE; |
| 533 | |
| 534 | /* look up tcon based on tid & uid */ |
| 535 | read_lock(&GlobalSMBSeslock); |
| 536 | list_for_each(tmp, &GlobalTreeConnectionList) { |
| 537 | tcon = list_entry(tmp, struct cifsTconInfo, cifsConnectionList); |
Steve French | e77e6f3 | 2006-03-05 03:39:55 +0000 | [diff] [blame] | 538 | if ((tcon->tid == buf->Tid) && (srv == tcon->ses->server)) { |
Steve French | a454434 | 2005-08-24 13:59:35 -0700 | [diff] [blame] | 539 | cifs_stats_inc(&tcon->num_oplock_brks); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | list_for_each(tmp1,&tcon->openFileList){ |
Steve French | 57337e4 | 2005-04-28 22:41:10 -0700 | [diff] [blame] | 541 | netfile = list_entry(tmp1,struct cifsFileInfo, |
| 542 | tlist); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | if(pSMB->Fid == netfile->netfid) { |
| 544 | struct cifsInodeInfo *pCifsInode; |
| 545 | read_unlock(&GlobalSMBSeslock); |
Steve French | 57337e4 | 2005-04-28 22:41:10 -0700 | [diff] [blame] | 546 | cFYI(1,("file id match, oplock break")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | pCifsInode = |
| 548 | CIFS_I(netfile->pInode); |
| 549 | pCifsInode->clientCanCacheAll = FALSE; |
| 550 | if(pSMB->OplockLevel == 0) |
Steve French | 57337e4 | 2005-04-28 22:41:10 -0700 | [diff] [blame] | 551 | pCifsInode->clientCanCacheRead |
| 552 | = FALSE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 553 | pCifsInode->oplockPending = TRUE; |
Steve French | 57337e4 | 2005-04-28 22:41:10 -0700 | [diff] [blame] | 554 | AllocOplockQEntry(netfile->pInode, |
| 555 | netfile->netfid, |
| 556 | tcon); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 557 | cFYI(1,("about to wake up oplock thd")); |
Steve French | 57337e4 | 2005-04-28 22:41:10 -0700 | [diff] [blame] | 558 | if(oplockThread) |
| 559 | wake_up_process(oplockThread); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | return TRUE; |
| 561 | } |
| 562 | } |
| 563 | read_unlock(&GlobalSMBSeslock); |
Steve French | 57337e4 | 2005-04-28 22:41:10 -0700 | [diff] [blame] | 564 | cFYI(1,("No matching file for oplock break")); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | return TRUE; |
| 566 | } |
| 567 | } |
| 568 | read_unlock(&GlobalSMBSeslock); |
| 569 | cFYI(1,("Can not process oplock break for non-existent connection")); |
| 570 | return TRUE; |
| 571 | } |
| 572 | |
| 573 | void |
| 574 | dump_smb(struct smb_hdr *smb_buf, int smb_buf_length) |
| 575 | { |
| 576 | int i, j; |
| 577 | char debug_line[17]; |
| 578 | unsigned char *buffer; |
| 579 | |
| 580 | if (traceSMB == 0) |
| 581 | return; |
| 582 | |
| 583 | buffer = (unsigned char *) smb_buf; |
| 584 | for (i = 0, j = 0; i < smb_buf_length; i++, j++) { |
Steve French | 57337e4 | 2005-04-28 22:41:10 -0700 | [diff] [blame] | 585 | if (i % 8 == 0) { /* have reached the beginning of line */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | printk(KERN_DEBUG "| "); |
| 587 | j = 0; |
| 588 | } |
| 589 | printk("%0#4x ", buffer[i]); |
| 590 | debug_line[2 * j] = ' '; |
| 591 | if (isprint(buffer[i])) |
| 592 | debug_line[1 + (2 * j)] = buffer[i]; |
| 593 | else |
| 594 | debug_line[1 + (2 * j)] = '_'; |
| 595 | |
Steve French | 57337e4 | 2005-04-28 22:41:10 -0700 | [diff] [blame] | 596 | if (i % 8 == 7) { /* reached end of line, time to print ascii */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 597 | debug_line[16] = 0; |
| 598 | printk(" | %s\n", debug_line); |
| 599 | } |
| 600 | } |
| 601 | for (; j < 8; j++) { |
| 602 | printk(" "); |
| 603 | debug_line[2 * j] = ' '; |
| 604 | debug_line[1 + (2 * j)] = ' '; |
| 605 | } |
| 606 | printk( " | %s\n", debug_line); |
| 607 | return; |
| 608 | } |
Steve French | 6a0b482 | 2005-04-28 22:41:05 -0700 | [diff] [blame] | 609 | |
Steve French | 6a0b482 | 2005-04-28 22:41:05 -0700 | [diff] [blame] | 610 | /* Windows maps these to the user defined 16 bit Unicode range since they are |
| 611 | reserved symbols (along with \ and /), otherwise illegal to store |
| 612 | in filenames in NTFS */ |
Steve French | d072471 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 613 | #define UNI_ASTERIK (__u16) ('*' + 0xF000) |
| 614 | #define UNI_QUESTION (__u16) ('?' + 0xF000) |
| 615 | #define UNI_COLON (__u16) (':' + 0xF000) |
| 616 | #define UNI_GRTRTHAN (__u16) ('>' + 0xF000) |
| 617 | #define UNI_LESSTHAN (__u16) ('<' + 0xF000) |
| 618 | #define UNI_PIPE (__u16) ('|' + 0xF000) |
| 619 | #define UNI_SLASH (__u16) ('\\' + 0xF000) |
Steve French | 6a0b482 | 2005-04-28 22:41:05 -0700 | [diff] [blame] | 620 | |
| 621 | /* Convert 16 bit Unicode pathname from wire format to string in current code |
| 622 | page. Conversion may involve remapping up the seven characters that are |
| 623 | only legal in POSIX-like OS (if they are present in the string). Path |
| 624 | names are little endian 16 bit Unicode on the wire */ |
| 625 | int |
| 626 | cifs_convertUCSpath(char *target, const __le16 * source, int maxlen, |
| 627 | const struct nls_table * cp) |
| 628 | { |
| 629 | int i,j,len; |
Steve French | d072471 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 630 | __u16 src_char; |
Steve French | 6a0b482 | 2005-04-28 22:41:05 -0700 | [diff] [blame] | 631 | |
| 632 | for(i = 0, j = 0; i < maxlen; i++) { |
| 633 | src_char = le16_to_cpu(source[i]); |
| 634 | switch (src_char) { |
| 635 | case 0: |
| 636 | goto cUCS_out; /* BB check this BB */ |
| 637 | case UNI_COLON: |
| 638 | target[j] = ':'; |
| 639 | break; |
| 640 | case UNI_ASTERIK: |
| 641 | target[j] = '*'; |
| 642 | break; |
| 643 | case UNI_QUESTION: |
| 644 | target[j] = '?'; |
| 645 | break; |
Steve French | 6c91d36 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 646 | /* BB We can not handle remapping slash until |
| 647 | all the calls to build_path_from_dentry |
| 648 | are modified, as they use slash as separator BB */ |
| 649 | /* case UNI_SLASH: |
| 650 | target[j] = '\\'; |
| 651 | break;*/ |
Steve French | 6a0b482 | 2005-04-28 22:41:05 -0700 | [diff] [blame] | 652 | case UNI_PIPE: |
| 653 | target[j] = '|'; |
| 654 | break; |
| 655 | case UNI_GRTRTHAN: |
| 656 | target[j] = '>'; |
| 657 | break; |
| 658 | case UNI_LESSTHAN: |
| 659 | target[j] = '<'; |
Steve French | 67594fe | 2005-05-17 13:04:49 -0500 | [diff] [blame] | 660 | break; |
Steve French | 6a0b482 | 2005-04-28 22:41:05 -0700 | [diff] [blame] | 661 | default: |
| 662 | len = cp->uni2char(src_char, &target[j], |
| 663 | NLS_MAX_CHARSET_SIZE); |
| 664 | if(len > 0) { |
| 665 | j += len; |
| 666 | continue; |
| 667 | } else { |
| 668 | target[j] = '?'; |
| 669 | } |
| 670 | } |
| 671 | j++; |
Steve French | 57337e4 | 2005-04-28 22:41:10 -0700 | [diff] [blame] | 672 | /* make sure we do not overrun callers allocated temp buffer */ |
Steve French | 6a0b482 | 2005-04-28 22:41:05 -0700 | [diff] [blame] | 673 | if(j >= (2 * NAME_MAX)) |
| 674 | break; |
| 675 | } |
| 676 | cUCS_out: |
| 677 | target[j] = 0; |
| 678 | return j; |
| 679 | } |
Steve French | 6c91d36 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 680 | |
| 681 | /* Convert 16 bit Unicode pathname to wire format from string in current code |
| 682 | page. Conversion may involve remapping up the seven characters that are |
| 683 | only legal in POSIX-like OS (if they are present in the string). Path |
| 684 | names are little endian 16 bit Unicode on the wire */ |
| 685 | int |
| 686 | cifsConvertToUCS(__le16 * target, const char *source, int maxlen, |
| 687 | const struct nls_table * cp, int mapChars) |
| 688 | { |
| 689 | int i,j,charlen; |
| 690 | int len_remaining = maxlen; |
| 691 | char src_char; |
Steve French | 70ca734 | 2005-09-22 16:32:06 -0700 | [diff] [blame] | 692 | __u16 temp; |
Steve French | 6c91d36 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 693 | |
| 694 | if(!mapChars) |
Steve French | e89dc92 | 2005-11-11 15:18:19 -0800 | [diff] [blame] | 695 | return cifs_strtoUCS(target, source, PATH_MAX, cp); |
Steve French | 6c91d36 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 696 | |
| 697 | for(i = 0, j = 0; i < maxlen; j++) { |
| 698 | src_char = source[i]; |
| 699 | switch (src_char) { |
| 700 | case 0: |
Steve French | f4cfd69 | 2005-07-14 18:29:02 -0500 | [diff] [blame] | 701 | target[j] = 0; |
Steve French | 6c91d36 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 702 | goto ctoUCS_out; |
| 703 | case ':': |
| 704 | target[j] = cpu_to_le16(UNI_COLON); |
| 705 | break; |
| 706 | case '*': |
| 707 | target[j] = cpu_to_le16(UNI_ASTERIK); |
| 708 | break; |
| 709 | case '?': |
| 710 | target[j] = cpu_to_le16(UNI_QUESTION); |
| 711 | break; |
| 712 | case '<': |
| 713 | target[j] = cpu_to_le16(UNI_LESSTHAN); |
| 714 | break; |
| 715 | case '>': |
| 716 | target[j] = cpu_to_le16(UNI_GRTRTHAN); |
| 717 | break; |
| 718 | case '|': |
| 719 | target[j] = cpu_to_le16(UNI_PIPE); |
| 720 | break; |
| 721 | /* BB We can not handle remapping slash until |
| 722 | all the calls to build_path_from_dentry |
| 723 | are modified, as they use slash as separator BB */ |
| 724 | /* case '\\': |
| 725 | target[j] = cpu_to_le16(UNI_SLASH); |
| 726 | break;*/ |
| 727 | default: |
| 728 | charlen = cp->char2uni(source+i, |
Steve French | 70ca734 | 2005-09-22 16:32:06 -0700 | [diff] [blame] | 729 | len_remaining, &temp); |
Steve French | 6c91d36 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 730 | /* if no match, use question mark, which |
| 731 | at least in some cases servers as wild card */ |
| 732 | if(charlen < 1) { |
| 733 | target[j] = cpu_to_le16(0x003f); |
| 734 | charlen = 1; |
Steve French | 70ca734 | 2005-09-22 16:32:06 -0700 | [diff] [blame] | 735 | } else |
| 736 | target[j] = cpu_to_le16(temp); |
Steve French | 6c91d36 | 2005-04-28 22:41:06 -0700 | [diff] [blame] | 737 | len_remaining -= charlen; |
| 738 | /* character may take more than one byte in the |
| 739 | the source string, but will take exactly two |
| 740 | bytes in the target string */ |
| 741 | i+= charlen; |
| 742 | continue; |
| 743 | } |
| 744 | i++; /* move to next char in source string */ |
| 745 | len_remaining--; |
| 746 | } |
| 747 | |
| 748 | ctoUCS_out: |
| 749 | return i; |
| 750 | } |