further abstraction involving client states. main client-side code
[samba.git] / source / include / client.h
1 /*
2    Unix SMB/Netbios implementation.
3    Version 1.9.
4    SMB parameters and setup
5    Copyright (C) Andrew Tridgell 1992-1998
6    Copyright (C) Luke Kenneth Casson Leighton 1996-1998
7    Copyright (C) Jeremy Allison 1998
8
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 2 of the License, or
12    (at your option) any later version.
13
14    This program 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 the
17    GNU General Public License for more details.
18
19    You should have received a copy of the GNU General Public License
20    along with this program; if not, write to the Free Software
21    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 */
23
24 #ifndef _CLIENT_H
25 #define _CLIENT_H
26
27 /* the client asks for a smaller buffer to save ram and also to get more
28    overlap on the wire. This size gives us a nice read/write size, which
29    will be a multiple of the page size on almost any system */
30 #define CLI_BUFFER_SIZE (0x4400)
31
32 /*
33  * These definitions depend on smb.h
34  */
35
36 typedef struct file_info
37 {
38         SMB_OFF_T 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 } file_info;
48
49 struct print_job_info
50 {
51         uint16 id;
52         uint16 priority;
53         size_t size;
54         fstring user;
55         fstring name;
56         time_t t;
57 };
58
59 struct pwd_info
60 {
61         BOOL null_pwd;
62         BOOL cleartext;
63         BOOL crypted;
64
65         fstring password;
66
67         uchar smb_lm_pwd[16];
68         uchar smb_nt_pwd[16];
69
70         uchar smb_lm_owf[24];
71         uchar smb_nt_owf[128];
72         size_t nt_owf_len;
73
74         uchar lm_cli_chal[8];
75         uchar nt_cli_chal[128];
76         size_t nt_cli_chal_len;
77
78         uchar sess_key[16];
79 };
80
81 struct user_credentials
82 {
83         fstring user_name;
84         fstring domain;
85         struct pwd_info pwd;
86
87         uint32 ntlmssp_flags;
88 };
89
90 struct cli_state
91 {
92         int port;
93         int fd;
94         uint16 cnum;
95         uint16 pid;
96         uint16 mid;
97         uint16 vuid;
98         int protocol;
99         int sec_mode;
100         int rap_error;
101         int privileges;
102
103         struct user_credentials usr;
104
105         fstring eff_name;
106         fstring desthost;
107
108         /*
109          * The following strings are the
110          * ones returned by the server if
111          * the protocol > NT1.
112          */
113         fstring server_type;
114         fstring server_os;
115         fstring server_domain;
116
117         fstring share;
118         fstring dev;
119         struct nmb_name called;
120         struct nmb_name calling;
121         struct in_addr dest_ip;
122
123         unsigned char cryptkey[8];
124         unsigned char lm_cli_chal[8];
125         unsigned char nt_cli_chal[128];
126         size_t nt_cli_chal_len;
127
128         BOOL use_ntlmv2;
129
130         uint32 sesskey;
131         int serverzone;
132         uint32 servertime;
133         int readbraw_supported;
134         int writebraw_supported;
135         int timeout;
136         int max_xmit;
137         int max_mux;
138         char *outbuf;
139         char *inbuf;
140         int bufsize;
141         int initialised;
142         int win95;
143         uint32 capabilities;
144
145         /*
146          * Only used in NT domain calls.
147          */
148
149         uint32 nt_error;                   /* NT RPC error code. */
150         unsigned char sess_key[16];        /* Current session key. */
151         unsigned char ntlmssp_hash[258];   /* ntlmssp data. */
152         uint32 ntlmssp_cli_flgs;           /* ntlmssp client flags */
153         uint32 ntlmssp_srv_flgs;           /* ntlmssp server flags */
154         uint32 ntlmssp_seq_num;            /* ntlmssp sequence number */
155         DOM_CRED clnt_cred;                /* Client credential. */
156         fstring mach_acct;                 /* MYNAME$. */
157         fstring srv_name_slash;            /* \\remote server. */
158         fstring clnt_name_slash;           /* \\local client. */
159         uint16 max_xmit_frag;
160         uint16 max_recv_frag;
161 };
162
163 struct cli_connection;
164
165 #endif /* _CLIENT_H */