| 1 | /*
|
|---|
| 2 | Unix SMB/CIFS implementation.
|
|---|
| 3 | Main SMB reply routines
|
|---|
| 4 | Copyright (C) Andrew Tridgell 1992-1998
|
|---|
| 5 | Copyright (C) Andrew Bartlett 2001
|
|---|
| 6 | Copyright (C) Jeremy Allison 1992-2007.
|
|---|
| 7 |
|
|---|
| 8 | This program is free software; you can redistribute it and/or modify
|
|---|
| 9 | it under the terms of the GNU General Public License as published by
|
|---|
| 10 | the Free Software Foundation; either version 2 of the License, or
|
|---|
| 11 | (at your option) any later version.
|
|---|
| 12 |
|
|---|
| 13 | This program is distributed in the hope that it will be useful,
|
|---|
| 14 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|---|
| 16 | GNU General Public License for more details.
|
|---|
| 17 |
|
|---|
| 18 | You should have received a copy of the GNU General Public License
|
|---|
| 19 | along with this program; if not, write to the Free Software
|
|---|
| 20 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|---|
| 21 | */
|
|---|
| 22 | /*
|
|---|
| 23 | This file handles most of the reply_ calls that the server
|
|---|
| 24 | makes to handle specific protocols
|
|---|
| 25 | */
|
|---|
| 26 |
|
|---|
| 27 | #include "includes.h"
|
|---|
| 28 |
|
|---|
| 29 | /* look in server.c for some explanation of these variables */
|
|---|
| 30 | extern enum protocol_types Protocol;
|
|---|
| 31 | extern int max_send;
|
|---|
| 32 | extern int max_recv;
|
|---|
| 33 | unsigned int smb_echo_count = 0;
|
|---|
| 34 | extern uint32 global_client_caps;
|
|---|
| 35 |
|
|---|
| 36 | extern struct current_user current_user;
|
|---|
| 37 | extern BOOL global_encrypted_passwords_negotiated;
|
|---|
| 38 |
|
|---|
| 39 | /****************************************************************************
|
|---|
| 40 | Ensure we check the path in *exactly* the same way as W2K for a findfirst/findnext
|
|---|
| 41 | path or anything including wildcards.
|
|---|
| 42 | We're assuming here that '/' is not the second byte in any multibyte char
|
|---|
| 43 | set (a safe assumption). '\\' *may* be the second byte in a multibyte char
|
|---|
| 44 | set.
|
|---|
| 45 | ****************************************************************************/
|
|---|
| 46 |
|
|---|
| 47 | /* Custom version for processing POSIX paths. */
|
|---|
| 48 | #define IS_PATH_SEP(c,posix_only) ((c) == '/' || (!(posix_only) && (c) == '\\'))
|
|---|
| 49 |
|
|---|
| 50 | NTSTATUS check_path_syntax_internal(pstring destname,
|
|---|
| 51 | const pstring srcname,
|
|---|
| 52 | BOOL posix_path,
|
|---|
| 53 | BOOL *p_last_component_contains_wcard)
|
|---|
| 54 | {
|
|---|
| 55 | char *d = destname;
|
|---|
| 56 | const char *s = srcname;
|
|---|
| 57 | NTSTATUS ret = NT_STATUS_OK;
|
|---|
|
|---|