1998-09-26 02:34:40 +04:00
/*
2002-01-30 09:08:46 +03:00
Unix SMB / CIFS implementation .
1998-09-26 02:34:40 +04:00
SMB parameters and setup
Copyright ( C ) Andrew Tridgell 1992 - 1998
Copyright ( C ) Luke Kenneth Casson Leighton 1996 - 1998
Copyright ( C ) Jeremy Allison 1998
This program is free software ; you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
2007-07-09 23:25:36 +04:00
the Free Software Foundation ; either version 3 of the License , or
1998-09-26 02:34:40 +04:00
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License
2007-07-10 04:52:41 +04:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
1998-09-26 02:34:40 +04:00
*/
# ifndef _CLIENT_H
# define _CLIENT_H
1998-10-04 11:50:44 +04:00
/* the client asks for a smaller buffer to save ram and also to get more
1998-10-04 13:42:51 +04:00
overlap on the wire . This size gives us a nice read / write size , which
will be a multiple of the page size on almost any system */
1999-12-13 16:27:58 +03:00
# define CLI_BUFFER_SIZE (0xFFFF)
2006-04-22 06:33:11 +04:00
# define CLI_SAMBA_MAX_LARGE_READX_SIZE (127*1024) /* Works for Samba servers */
2007-12-27 04:12:36 +03:00
# define CLI_SAMBA_MAX_LARGE_WRITEX_SIZE (127*1024) /* Works for Samba servers */
2006-04-22 06:33:11 +04:00
# define CLI_WINDOWS_MAX_LARGE_READX_SIZE ((64*1024)-2) /* Windows servers are broken.... */
2007-12-27 04:12:36 +03:00
# define CLI_WINDOWS_MAX_LARGE_WRITEX_SIZE ((64*1024)-2) /* Windows servers are broken.... */
2007-05-16 04:07:38 +04:00
# define CLI_SAMBA_MAX_POSIX_LARGE_READX_SIZE (0xFFFF00) /* 24-bit len. */
2007-11-02 22:21:34 +03:00
# define CLI_SAMBA_MAX_POSIX_LARGE_WRITEX_SIZE (0xFFFF00) /* 24-bit len. */
2001-02-20 11:09:06 +03:00
1998-09-26 02:34:40 +04:00
/*
* These definitions depend on smb . h
*/
2007-03-19 23:39:58 +03:00
struct print_job_info {
1998-10-04 13:42:51 +04:00
uint16 id ;
uint16 priority ;
size_t size ;
fstring user ;
fstring name ;
time_t t ;
} ;
2005-09-30 21:13:37 +04:00
struct cli_pipe_auth_data {
enum pipe_auth_type auth_type ; /* switch for the union below. Defined in ntdomain.h */
enum pipe_auth_level auth_level ; /* defined in ntdomain.h */
2008-04-22 00:27:29 +04:00
char * domain ;
char * user_name ;
2008-12-04 20:23:45 +03:00
DATA_BLOB user_session_key ;
2008-04-22 00:27:29 +04:00
2005-09-30 21:13:37 +04:00
union {
struct schannel_auth_struct * schannel_auth ;
NTLMSSP_STATE * ntlmssp_state ;
struct kerberos_auth_struct * kerberos_auth ;
} a_u ;
} ;
2009-01-22 20:50:37 +03:00
/**
* rpc_cli_transport defines a transport mechanism to ship rpc requests
* asynchronously to a server and receive replies
*/
struct rpc_cli_transport {
/**
* Trigger an async read from the server . May return a short read .
*/
struct async_req * ( * read_send ) ( TALLOC_CTX * mem_ctx ,
struct event_context * ev ,
uint8_t * data , size_t size ,
void * priv ) ;
/**
* Get the result from the read_send operation .
*/
NTSTATUS ( * read_recv ) ( struct async_req * req , ssize_t * preceived ) ;
/**
* Trigger an async write to the server . May return a short write .
*/
struct async_req * ( * write_send ) ( TALLOC_CTX * mem_ctx ,
struct event_context * ev ,
const uint8_t * data , size_t size ,
void * priv ) ;
/**
* Get the result from the read_send operation .
*/
NTSTATUS ( * write_recv ) ( struct async_req * req , ssize_t * psent ) ;
/**
* This is an optimization for the SMB transport . It models the
* TransactNamedPipe API call : Send and receive data in one round
* trip . The transport implementation is free to set this to NULL ,
* cli_pipe . c will fall back to the explicit write / read routines .
*/
struct async_req * ( * trans_send ) ( TALLOC_CTX * mem_ctx ,
struct event_context * ev ,
uint8_t * data , size_t data_len ,
uint32_t max_rdata_len ,
void * priv ) ;
/**
2009-03-09 18:10:59 +03:00
* Get the result from the trans_send operation .
2009-01-22 20:50:37 +03:00
*/
NTSTATUS ( * trans_recv ) ( struct async_req * req , TALLOC_CTX * mem_ctx ,
uint8_t * * prdata , uint32_t * prdata_len ) ;
void * priv ;
} ;
2005-06-09 02:10:34 +04:00
struct rpc_pipe_client {
2005-09-30 21:13:37 +04:00
struct rpc_pipe_client * prev , * next ;
2009-01-22 20:52:15 +03:00
struct rpc_cli_transport * transport ;
2005-06-09 02:10:34 +04:00
2008-07-20 12:21:14 +04:00
struct ndr_syntax_id abstract_syntax ;
struct ndr_syntax_id transfer_syntax ;
2008-04-20 13:45:41 +04:00
2009-01-21 16:05:51 +03:00
NTSTATUS ( * dispatch ) ( struct rpc_pipe_client * cli ,
TALLOC_CTX * mem_ctx ,
const struct ndr_interface_table * table ,
uint32_t opnum , void * r ) ;
2008-04-20 14:19:27 +04:00
char * desthost ;
char * srv_name_slash ;
2008-04-19 23:56:43 +04:00
2005-06-09 02:10:34 +04:00
uint16 max_xmit_frag ;
uint16 max_recv_frag ;
2005-09-30 21:13:37 +04:00
2008-04-21 12:39:37 +04:00
struct cli_pipe_auth_data * auth ;
2005-09-30 21:13:37 +04:00
/* The following is only non-null on a netlogon pipe. */
struct dcinfo * dc ;
2009-01-21 16:05:51 +03:00
/* Used by internal rpc_pipe_client */
pipes_struct * pipes_struct ;
2005-06-09 02:10:34 +04:00
} ;
2007-12-27 04:12:36 +03:00
/* Transport encryption state. */
2008-02-28 16:54:50 +03:00
enum smb_trans_enc_type {
SMB_TRANS_ENC_NTLM
# if defined(HAVE_GSSAPI) && defined(HAVE_KRB5)
, SMB_TRANS_ENC_GSS
# endif
} ;
2007-12-27 04:12:36 +03:00
# if defined(HAVE_GSSAPI) && defined(HAVE_KRB5)
struct smb_tran_enc_state_gss {
gss_ctx_id_t gss_ctx ;
gss_cred_id_t creds ;
} ;
# endif
struct smb_trans_enc_state {
enum smb_trans_enc_type smb_enc_type ;
uint16 enc_ctx_num ;
bool enc_on ;
union {
NTLMSSP_STATE * ntlmssp_state ;
# if defined(HAVE_GSSAPI) && defined(HAVE_KRB5)
struct smb_tran_enc_state_gss * gss_state ;
# endif
} s ;
} ;
1999-12-13 16:27:58 +03:00
struct cli_state {
2009-03-13 03:59:24 +03:00
/**
* A list of subsidiary connections for DFS .
*/
struct cli_state * prev , * next ;
1999-01-25 04:46:14 +03:00
int port ;
1998-10-09 03:57:46 +04:00
int fd ;
2007-11-05 22:12:56 +03:00
/* Last read or write error. */
2007-11-04 01:12:42 +03:00
enum smb_read_errors smb_rw_error ;
1998-10-09 03:57:46 +04:00
uint16 cnum ;
uint16 pid ;
uint16 mid ;
uint16 vuid ;
int protocol ;
int sec_mode ;
int rap_error ;
1999-11-25 01:45:09 +03:00
int privileges ;
1998-10-09 03:57:46 +04:00
fstring desthost ;
2005-09-30 21:13:37 +04:00
/* The credentials used to open the cli_state connection. */
2009-03-14 03:49:24 +03:00
char * domain ;
char * user_name ;
char * password ; /* Can be null to force use of zero NTLMSSP session key. */
1998-10-09 03:57:46 +04:00
1998-11-13 01:17:51 +03:00
/*
* The following strings are the
* ones returned by the server if
* the protocol > NT1 .
*/
fstring server_type ;
fstring server_os ;
fstring server_domain ;
1998-10-09 03:57:46 +04:00
fstring share ;
fstring dev ;
struct nmb_name called ;
struct nmb_name calling ;
1999-12-13 16:27:58 +03:00
fstring full_dest_host_name ;
2007-10-25 01:16:54 +04:00
struct sockaddr_storage dest_ss ;
1998-10-09 03:57:46 +04:00
2001-10-11 11:42:52 +04:00
DATA_BLOB secblob ; /* cryptkey or negTokenInit */
1998-10-09 03:57:46 +04:00
uint32 sesskey ;
int serverzone ;
uint32 servertime ;
int readbraw_supported ;
int writebraw_supported ;
1999-12-13 16:27:58 +03:00
int timeout ; /* in milliseconds. */
2003-03-18 02:04:03 +03:00
size_t max_xmit ;
size_t max_mux ;
1998-10-09 03:57:46 +04:00
char * outbuf ;
char * inbuf ;
2003-03-13 03:51:05 +03:00
unsigned int bufsize ;
1998-10-09 03:57:46 +04:00
int initialised ;
int win95 ;
2007-10-19 04:40:25 +04:00
bool is_samba ;
1998-10-09 03:57:46 +04:00
uint32 capabilities ;
2007-05-16 04:07:38 +04:00
uint32 posix_capabilities ;
2007-10-19 04:40:25 +04:00
bool dfsroot ;
1998-10-09 03:57:46 +04:00
2007-11-30 00:24:54 +03:00
#if 0
TALLOC_CTX * longterm_mem_ctx ;
TALLOC_CTX * call_mem_ctx ;
# endif
2000-07-27 04:47:19 +04:00
2002-07-15 14:35:28 +04:00
smb_sign_info sign_info ;
2007-12-27 04:12:36 +03:00
struct smb_trans_enc_state * trans_enc_state ; /* Setup if we're encrypting SMB's. */
2007-12-07 04:16:33 +03:00
/* the session key for this CLI, outside
2003-02-24 05:55:00 +03:00
any per - pipe authenticaion */
Changes all over the shop, but all towards:
- NTLM2 support in the server
- KEY_EXCH support in the server
- variable length session keys.
In detail:
- NTLM2 is an extension of NTLMv1, that is compatible with existing
domain controllers (unlike NTLMv2, which requires a DC upgrade).
* This is known as 'NTLMv2 session security' *
(This is not yet implemented on the RPC pipes however, so there may
well still be issues for PDC setups, particuarly around password
changes. We do not fully understand the sign/seal implications of
NTLM2 on RPC pipes.)
This requires modifications to our authentication subsystem, as we
must handle the 'challege' input into the challenge-response algorithm
being changed. This also needs to be turned off for
'security=server', which does not support this.
- KEY_EXCH is another 'security' mechanism, whereby the session key
actually used by the server is sent by the client, rather than being
the shared-secret directly or indirectly.
- As both these methods change the session key, the auth subsystem
needed to be changed, to 'override' session keys provided by the
backend.
- There has also been a major overhaul of the NTLMSSP subsystem, to merge the 'client' and 'server' functions, so they both operate on a single structure. This should help the SPNEGO implementation.
- The 'names blob' in NTLMSSP is always in unicode - never in ascii.
Don't make an ascii version ever.
- The other big change is to allow variable length session keys. We
have always assumed that session keys are 16 bytes long - and padded
to this length if shorter. However, Kerberos session keys are 8 bytes
long, when the krb5 login uses DES.
* This fix allows SMB signging on machines not yet running MIT KRB5 1.3.1. *
- Add better DEBUG() messages to ntlm_auth, warning administrators of
misconfigurations that prevent access to the privileged pipe. This
should help reduce some of the 'it just doesn't work' issues.
- Fix data_blob_talloc() to behave the same way data_blob() does when
passed a NULL data pointer. (just allocate)
REMEMBER to make clean after this commit - I have changed plenty of data structures...
(This used to be commit f3bbc87b0dac63426cda6fac7a295d3aad810ecc)
2003-11-22 16:19:38 +03:00
DATA_BLOB user_session_key ;
2003-02-24 05:55:00 +03:00
2005-09-30 21:13:37 +04:00
/* The list of pipes currently open on this connection. */
struct rpc_pipe_client * pipe_list ;
Jeremy requested that I get my NTLMSSP patch into CVS. He didn't request
the schannel code, but I've included that anyway. :-)
This patch revives the client-side NTLMSSP support for RPC named pipes
in Samba, and cleans up the client and server schannel code. The use of the
new code is enabled by the 'sign', 'seal' and 'schannel' commands in
rpcclient.
The aim was to prove that our separate NTLMSSP client library actually
implements NTLMSSP signing and sealing as per Microsoft's NTLMv1 implementation,
in the hope that knowing this will assist us in correctly implementing
NTLMSSP signing for SMB packets. (Still not yet functional)
This patch replaces the NTLMSSP implementation in rpc_client/cli_pipe.c with
calls to libsmb/ntlmssp.c. In the process, we have gained the ability to
use the more secure NT password, and the ability to sign-only, instead of
having to seal the pipe connection. (Previously we were limited to sealing,
and could only use the LM-password derived key).
Our new client-side NTLMSSP code also needed alteration to cope with our
comparatively simple server-side implementation. A future step is to replace
it with calls to the same NTLMSSP library.
Also included in this patch is the schannel 'sign only' patch I submitted to
the team earlier. While not enabled (and not functional, at this stage) the
work in this patch makes the code paths *much* easier to follow. I have also
included similar hooks in rpccleint to allow the use of schannel on *any* pipe.
rpcclient now defaults to not using schannel (or any other extra per-pipe
authenticiation) for any connection. The 'schannel' command enables schannel
for all pipes until disabled.
This code is also much more secure than the previous code, as changes to our
cli_pipe routines ensure that the authentication footer cannot be removed
by an attacker, and more error states are correctly handled.
(The same needs to be done to our server)
Andrew Bartlett
(This used to be commit 5472ddc9eaf4e79c5b2e1c8ee8c7f190dc285f19)
2003-07-14 12:46:32 +04:00
2007-10-19 04:40:25 +04:00
bool use_kerberos ;
bool fallback_after_kerberos ;
bool use_spnego ;
2008-08-08 04:55:57 +04:00
bool got_kerberos_mechanism ; /* Server supports krb5 in SPNEGO. */
1998-09-26 02:34:40 +04:00
2007-10-19 04:40:25 +04:00
bool use_oplocks ; /* should we use oplocks? */
bool use_level_II_oplocks ; /* should we use level II oplocks? */
2001-06-18 12:26:15 +04:00
/* a oplock break request handler */
2007-10-19 04:40:25 +04:00
bool ( * oplock_handler ) ( struct cli_state * cli , int fnum , unsigned char level ) ;
2001-11-25 05:58:15 +03:00
2007-10-19 04:40:25 +04:00
bool force_dos_errors ;
bool case_sensitive ; /* False by default. */
2008-02-28 16:41:25 +03:00
2008-08-24 16:17:43 +04:00
/**
* fd_event is around while we have async requests outstanding or are
* building a chained request .
*
2008-08-25 17:59:36 +04:00
* ( fd_event ! = NULL ) & &
* ( ( outstanding_request ! = NULL ) | | ( chain_accumulator ! = NULL ) )
2008-08-24 16:17:43 +04:00
*
* should always be true , as well as the reverse : If both cli_request
* pointers are NULL , no fd_event is around .
*/
2008-02-28 16:41:25 +03:00
struct fd_event * fd_event ;
char * evt_inbuf ;
2008-08-25 16:40:15 +04:00
/**
* A linked list of requests that are waiting for a reply
*/
2008-02-28 16:41:25 +03:00
struct cli_request * outstanding_requests ;
2008-08-25 17:59:36 +04:00
/**
2008-09-12 23:56:14 +04:00
* The place to build up the list of chained requests . In CIFS , a
* single cli_request corresponds to a MID and can serve more than one
* chained async_req .
2008-08-25 17:59:36 +04:00
*/
struct cli_request * chain_accumulator ;
2009-03-13 03:59:24 +03:00
/* Where (if anywhere) this is mounted under DFS. */
char * dfs_mountpoint ;
2008-02-28 16:41:25 +03:00
} ;
2007-03-09 02:54:57 +03:00
typedef struct file_info {
struct cli_state * cli ;
2008-10-14 03:59:36 +04:00
uint64_t size ;
2007-03-09 02:54:57 +03:00
uint16 mode ;
uid_t uid ;
gid_t gid ;
/* these times are normally kept in GMT */
struct timespec mtime_ts ;
struct timespec atime_ts ;
struct timespec ctime_ts ;
2007-12-07 04:16:33 +03:00
char * name ;
2007-03-09 02:54:57 +03:00
char short_name [ 13 * 3 ] ; /* the *3 is to cope with multi-byte */
} file_info ;
2002-07-15 14:35:28 +04:00
# define CLI_FULL_CONNECTION_DONT_SPNEGO 0x0001
# define CLI_FULL_CONNECTION_USE_KERBEROS 0x0002
2006-09-28 07:21:49 +04:00
# define CLI_FULL_CONNECTION_ANONYMOUS_FALLBACK 0x0004
2008-04-08 16:10:48 +04:00
# define CLI_FULL_CONNECTION_FALLBACK_AFTER_KERBEROS 0x0008
2002-07-15 14:35:28 +04:00
1998-09-26 02:34:40 +04:00
# endif /* _CLIENT_H */