r10656: BIG merge from trunk. Features not copied over
[ira/wip.git] / source3 / include / client.h
1 /*
2    Unix SMB/CIFS implementation.
3    SMB parameters and setup
4    Copyright (C) Andrew Tridgell 1992-1998
5    Copyright (C) Luke Kenneth Casson Leighton 1996-1998
6    Copyright (C) Jeremy Allison 1998
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 #ifndef _CLIENT_H
24 #define _CLIENT_H
25
26 /* the client asks for a smaller buffer to save ram and also to get more
27    overlap on the wire. This size gives us a nice read/write size, which
28    will be a multiple of the page size on almost any system */
29 #define CLI_BUFFER_SIZE (0xFFFF)
30 #define CLI_MAX_LARGE_READX_SIZE (127*1024)
31
32 /*
33  * These definitions depend on smb.h
34  */
35
36 typedef struct file_info
37 {
38         SMB_BIG_UINT size;
39         uint16 mode;
40         uid_t uid;
41         gid_t gid;
42         /* these times are normally kept in GMT */
43         time_t mtime;
44         time_t atime;
45         time_t ctime;
46         pstring name;
47         char short_name[13*3]; /* the *3 is to cope with multi-byte */
48 } file_info;
49
50 struct print_job_info
51 {
52         uint16 id;
53         uint16 priority;
54         size_t size;
55         fstring user;
56         fstring name;
57         time_t t;
58 };
59
60 struct cli_pipe_auth_data {
61         enum pipe_auth_type auth_type; /* switch for the union below. Defined in ntdomain.h */
62         enum pipe_auth_level auth_level; /* defined in ntdomain.h */
63         union {
64                 struct schannel_auth_struct *schannel_auth;
65                 NTLMSSP_STATE *ntlmssp_state;
66                 struct kerberos_auth_struct *kerberos_auth;
67         } a_u;
68         void (*cli_auth_data_free_func)(struct cli_pipe_auth_data *);
69 };
70
71 struct rpc_pipe_client {
72         struct rpc_pipe_client *prev, *next;
73
74         TALLOC_CTX *mem_ctx;
75
76         struct cli_state *cli;
77
78         int pipe_idx;
79         const char *pipe_name;
80         uint16 fnum;
81
82         const char *domain;
83         const char *user_name;
84         struct pwd_info pwd;
85
86         uint16 max_xmit_frag;
87         uint16 max_recv_frag;
88
89         struct cli_pipe_auth_data auth;
90
91         /* The following is only non-null on a netlogon pipe. */
92         struct dcinfo *dc;
93 };
94
95 struct cli_state {
96         int port;
97         int fd;
98         int smb_rw_error; /* Copy of last read or write error. */
99         uint16 cnum;
100         uint16 pid;
101         uint16 mid;
102         uint16 vuid;
103         int protocol;
104         int sec_mode;
105         int rap_error;
106         int privileges;
107
108         fstring desthost;
109
110         /* The credentials used to open the cli_state connection. */
111         fstring domain;
112         fstring user_name;
113         struct pwd_info pwd;
114
115         /*
116          * The following strings are the
117          * ones returned by the server if
118          * the protocol > NT1.
119          */
120         fstring server_type;
121         fstring server_os;
122         fstring server_domain;
123
124         fstring share;
125         fstring dev;
126         struct nmb_name called;
127         struct nmb_name calling;
128         fstring full_dest_host_name;
129         struct in_addr dest_ip;
130
131         DATA_BLOB secblob; /* cryptkey or negTokenInit */
132         uint32 sesskey;
133         int serverzone;
134         uint32 servertime;
135         int readbraw_supported;
136         int writebraw_supported;
137         int timeout; /* in milliseconds. */
138         size_t max_xmit;
139         size_t max_mux;
140         char *outbuf;
141         char *inbuf;
142         unsigned int bufsize;
143         int initialised;
144         int win95;
145         uint32 capabilities;
146         BOOL dfsroot;
147
148         TALLOC_CTX *mem_ctx;
149
150         smb_sign_info sign_info;
151
152         /* the session key for this CLI, outside 
153            any per-pipe authenticaion */
154         DATA_BLOB user_session_key;
155
156         /* The list of pipes currently open on this connection. */
157         struct rpc_pipe_client *pipe_list;
158
159         BOOL use_kerberos;
160         BOOL fallback_after_kerberos;
161         BOOL use_spnego;
162
163         BOOL use_oplocks; /* should we use oplocks? */
164         BOOL use_level_II_oplocks; /* should we use level II oplocks? */
165
166         /* a oplock break request handler */
167         BOOL (*oplock_handler)(struct cli_state *cli, int fnum, unsigned char level);
168
169         BOOL force_dos_errors;
170         BOOL case_sensitive; /* False by default. */
171
172         /* was this structure allocated by cli_initialise? If so, then
173            free in cli_shutdown() */
174         BOOL allocated;
175 };
176
177 #define CLI_FULL_CONNECTION_DONT_SPNEGO 0x0001
178 #define CLI_FULL_CONNECTION_USE_KERBEROS 0x0002
179 #define CLI_FULL_CONNECTION_ANNONYMOUS_FALLBACK 0x0004
180
181 #endif /* _CLIENT_H */