s3:smbd: move more session specific globals to struct smbd_server_connection
[samba.git] / source3 / smbd / globals.h
1 /*
2    Unix SMB/Netbios implementation.
3    smbd globals
4    Copyright (C) Stefan Metzmacher 2009
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #if defined(WITH_AIO)
21 struct aio_extra;
22 extern struct aio_extra *aio_list_head;
23 extern struct tevent_signal *aio_signal_event;
24 extern int aio_pending_size;
25 extern int outstanding_aio_calls;
26 #endif
27
28 /* dlink list we store pending lock records on. */
29 extern struct blocking_lock_record *blocking_lock_queue;
30
31 /* dlink list we move cancelled lock records onto. */
32 extern struct blocking_lock_record *blocking_lock_cancelled_queue;
33
34 /* The event that makes us process our blocking lock queue */
35 extern struct timed_event *brl_timeout;
36
37 extern bool blocking_lock_unlock_state;
38 extern bool blocking_lock_cancel_state;
39
40 #ifdef USE_DMAPI
41 struct smbd_dmapi_context;
42 extern struct smbd_dmapi_context *dmapi_ctx;
43 #endif
44
45 extern connection_struct *Connections;
46 /* number of open connections */
47 extern struct bitmap *bmap;
48 extern int num_open;
49
50 extern bool dfree_broken;
51
52 extern struct bitmap *dptr_bmap;
53 //struct dptr_struct;
54 extern struct dptr_struct *dirptrs;
55 extern int dirhandles_open;
56
57 /* how many write cache buffers have been allocated */
58 extern unsigned int allocated_write_caches;
59
60 extern int real_max_open_files;
61 extern struct bitmap *file_bmap;
62 extern files_struct *Files;
63 extern int files_used;
64 /* A singleton cache to speed up searching by dev/inode. */
65 struct fsp_singleton_cache {
66         files_struct *fsp;
67         struct file_id id;
68 };
69 extern struct fsp_singleton_cache fsp_fi_cache;
70 extern unsigned long file_gen_counter;
71 extern int first_file;
72
73 extern const struct mangle_fns *mangle_fns;
74
75 extern unsigned char *chartest;
76 extern TDB_CONTEXT *tdb_mangled_cache;
77
78 /* these tables are used to provide fast tests for characters */
79 extern unsigned char char_flags[256];
80 /*
81   this determines how many characters are used from the original filename
82   in the 8.3 mangled name. A larger value leads to a weaker hash and more collisions.
83   The largest possible value is 6.
84 */
85 extern unsigned mangle_prefix;
86 extern unsigned char base_reverse[256];
87
88 extern char *last_from;
89 extern char *last_to;
90
91 struct msg_state;
92 extern struct msg_state *smbd_msg_state;
93
94 extern bool logged_ioctl_message;
95
96 extern int trans_num;
97
98 extern pid_t mypid;
99 extern time_t last_smb_conf_reload_time;
100 extern time_t last_printer_reload_time;
101 /****************************************************************************
102  structure to hold a linked list of queued messages.
103  for processing.
104 ****************************************************************************/
105 struct pending_message_list;
106 extern struct pending_message_list *deferred_open_queue;
107 extern uint32_t common_flags2;
108
109 struct smb_srv_trans_enc_ctx;
110 extern struct smb_srv_trans_enc_ctx *partial_srv_trans_enc_ctx;
111 extern struct smb_srv_trans_enc_ctx *srv_trans_enc_ctx;
112
113 struct sec_ctx {
114         UNIX_USER_TOKEN ut;
115         NT_USER_TOKEN *token;
116 };
117 /* A stack of security contexts.  We include the current context as being
118    the first one, so there is room for another MAX_SEC_CTX_DEPTH more. */
119 extern struct sec_ctx sec_ctx_stack[MAX_SEC_CTX_DEPTH + 1];
120 extern int sec_ctx_stack_ndx;
121 extern bool become_uid_done;
122 extern bool become_gid_done;
123
124 extern connection_struct *last_conn;
125 extern uint16_t last_flags;
126
127 extern struct db_context *session_db_ctx_ptr;
128
129 extern uint32_t global_client_caps;
130
131 extern uint16_t fnf_handle;
132
133 struct conn_ctx {
134         connection_struct *conn;
135         uint16 vuid;
136 };
137 /* A stack of current_user connection contexts. */
138 extern struct conn_ctx conn_ctx_stack[MAX_SEC_CTX_DEPTH];
139 extern int conn_ctx_stack_ndx;
140
141 struct vfs_init_function_entry;
142 extern struct vfs_init_function_entry *backends;
143 extern char *sparse_buf;
144 extern char *LastDir;
145
146 /* Current number of oplocks we have outstanding. */
147 extern int32_t exclusive_oplocks_open;
148 extern int32_t level_II_oplocks_open;
149 extern bool global_client_failed_oplock_break;
150 extern struct kernel_oplocks *koplocks;
151
152 extern struct notify_mid_map *notify_changes_by_mid;
153
154 extern int am_parent;
155 extern int server_fd;
156 extern struct event_context *smbd_event_ctx;
157 extern struct messaging_context *smbd_msg_ctx;
158 extern struct memcache *smbd_memcache_ctx;
159 extern bool exit_firsttime;
160 struct child_pid;
161 extern struct child_pid *children;
162 extern int num_children;
163
164 struct tstream_context;
165 struct smbd_smb2_request;
166 struct smbd_smb2_session;
167 struct smbd_smb2_tcon;
168
169 DATA_BLOB negprot_spnego(void);
170
171 NTSTATUS smb2_signing_sign_pdu(DATA_BLOB session_key,
172                                struct iovec *vector,
173                                int count);
174 NTSTATUS smb2_signing_check_pdu(DATA_BLOB session_key,
175                                 const struct iovec *vector,
176                                 int count);
177
178 bool smbd_is_smb2_header(const uint8_t *inbuf, size_t size);
179
180 void reply_smb2002(struct smb_request *req, uint16_t choice);
181 void smbd_smb2_first_negprot(struct smbd_server_connection *conn,
182                              const uint8_t *inbuf, size_t size);
183
184 NTSTATUS smbd_smb2_request_error_ex(struct smbd_smb2_request *req,
185                                     NTSTATUS status, DATA_BLOB *info);
186 NTSTATUS smbd_smb2_request_error(struct smbd_smb2_request *req,
187                                  NTSTATUS status);
188 NTSTATUS smbd_smb2_request_done_ex(struct smbd_smb2_request *req,
189                                    NTSTATUS status,
190                                    DATA_BLOB body, DATA_BLOB *dyn);
191 NTSTATUS smbd_smb2_request_done(struct smbd_smb2_request *req,
192                                 DATA_BLOB body, DATA_BLOB *dyn);
193
194 NTSTATUS smbd_smb2_request_check_session(struct smbd_smb2_request *req);
195 NTSTATUS smbd_smb2_request_check_tcon(struct smbd_smb2_request *req);
196
197 NTSTATUS smbd_smb2_request_process_negprot(struct smbd_smb2_request *req);
198 NTSTATUS smbd_smb2_request_process_sesssetup(struct smbd_smb2_request *req);
199 NTSTATUS smbd_smb2_request_process_logoff(struct smbd_smb2_request *req);
200 NTSTATUS smbd_smb2_request_process_tcon(struct smbd_smb2_request *req);
201 NTSTATUS smbd_smb2_request_process_tdis(struct smbd_smb2_request *req);
202 NTSTATUS smbd_smb2_request_process_keepalive(struct smbd_smb2_request *req);
203
204 struct smbd_smb2_request {
205         TALLOC_CTX *mem_pool;
206
207         struct smbd_server_connection *conn;
208
209         /* the session the request operates on, maybe NULL */
210         struct smbd_smb2_session *session;
211
212         /* the tcon the request operates on, maybe NULL */
213         struct smbd_smb2_tcon *tcon;
214
215         int current_idx;
216         bool do_signing;
217
218         struct {
219                 /* the NBT header is not allocated */
220                 uint8_t nbt_hdr[4];
221                 /*
222                  * vector[0] NBT
223                  * .
224                  * vector[1] SMB2
225                  * vector[2] fixed body
226                  * vector[3] dynamic body
227                  * .
228                  * .
229                  * .
230                  * vector[4] SMB2
231                  * vector[5] fixed body
232                  * vector[6] dynamic body
233                  * .
234                  * .
235                  * .
236                  */
237                 struct iovec *vector;
238                 int vector_count;
239         } in;
240         struct {
241                 /* the NBT header is not allocated */
242                 uint8_t nbt_hdr[4];
243                 /*
244                  * vector[0] NBT
245                  * .
246                  * vector[1] SMB2
247                  * vector[2] fixed body
248                  * vector[3] dynamic body
249                  * .
250                  * .
251                  * .
252                  * vector[4] SMB2
253                  * vector[5] fixed body
254                  * vector[6] dynamic body
255                  * .
256                  * .
257                  * .
258                  */
259                 struct iovec *vector;
260                 int vector_count;
261         } out;
262 };
263
264 struct smbd_server_connection;
265
266 struct smbd_smb2_session {
267         struct smbd_smb2_session *prev, *next;
268         struct smbd_server_connection *conn;
269         NTSTATUS status;
270         uint64_t vuid;
271         AUTH_NTLMSSP_STATE *auth_ntlmssp_state;
272         struct auth_serversupplied_info *server_info;
273         DATA_BLOB session_key;
274         bool do_signing;
275
276         struct {
277                 /* an id tree used to allocate tids */
278                 struct idr_context *idtree;
279
280                 /* this is the limit of tid values for this connection */
281                 uint32_t limit;
282
283                 struct smbd_smb2_tcon *list;
284         } tcons;
285 };
286
287 struct smbd_smb2_tcon {
288         struct smbd_smb2_tcon *prev, *next;
289         struct smbd_smb2_session *session;
290         uint32_t tid;
291         int snum;
292 };
293
294 struct pending_auth_data;
295
296 struct smbd_server_connection {
297         struct {
298                 bool got_session;
299         } nbt;
300         bool allow_smb2;
301         struct {
302                 struct fd_event *fde;
303                 uint64_t num_requests;
304                 struct {
305                         bool encrypted_passwords;
306                         bool spnego;
307                         struct auth_context *auth_context;
308                         bool done;
309                         /*
310                          * Size of the data we can receive. Set by us.
311                          * Can be modified by the max xmit parameter.
312                          */
313                         int max_recv;
314                 } negprot;
315
316                 struct {
317                         bool done_sesssetup;
318                         /*
319                          * Size of data we can send to client. Set
320                          *  by the client for all protocols above CORE.
321                          *  Set by us for CORE protocol.
322                          */
323                         int max_send;
324                         uint16_t last_session_tag;
325
326                         /* users from session setup */
327                         char *session_userlist;
328                         /* workgroup from session setup. */
329                         char *session_workgroup;
330                         /*
331                          * this holds info on user ids that are already
332                          * validated for this VC
333                          */
334                         user_struct *validated_users;
335                         uint16_t next_vuid;
336                         int num_validated_vuids;
337 #ifdef HAVE_NETGROUP
338                         char *my_yp_domain;
339 #endif
340                 } sessions;
341                 struct smb_signing_state *signing_state;
342                 /* List to store partial SPNEGO auth fragments. */
343                 struct pending_auth_data *pd_list;
344         } smb1;
345         struct {
346                 struct tevent_context *event_ctx;
347                 struct tevent_queue *recv_queue;
348                 struct tevent_queue *send_queue;
349                 struct tstream_context *stream;
350                 struct {
351                         /* an id tree used to allocate vuids */
352                         /* this holds info on session vuids that are already
353                          * validated for this VC */
354                         struct idr_context *idtree;
355
356                         /* this is the limit of vuid values for this connection */
357                         uint64_t limit;
358
359                         struct smbd_smb2_session *list;
360                 } sessions;
361         } smb2;
362 };
363
364 extern struct smbd_server_connection *smbd_server_conn;
365
366 void smbd_init_globals(void);