fd92c22e7299fe27049322b6c7a1bb50025bbb10
[ira/wip.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 bool dfree_broken;
46
47 /* how many write cache buffers have been allocated */
48 extern unsigned int allocated_write_caches;
49
50 extern int real_max_open_files;
51 extern struct bitmap *file_bmap;
52 extern files_struct *Files;
53 extern int files_used;
54 /* A singleton cache to speed up searching by dev/inode. */
55 struct fsp_singleton_cache {
56         files_struct *fsp;
57         struct file_id id;
58 };
59 extern struct fsp_singleton_cache fsp_fi_cache;
60 extern unsigned long file_gen_counter;
61 extern int first_file;
62
63 extern const struct mangle_fns *mangle_fns;
64
65 extern unsigned char *chartest;
66 extern TDB_CONTEXT *tdb_mangled_cache;
67
68 /* these tables are used to provide fast tests for characters */
69 extern unsigned char char_flags[256];
70 /*
71   this determines how many characters are used from the original filename
72   in the 8.3 mangled name. A larger value leads to a weaker hash and more collisions.
73   The largest possible value is 6.
74 */
75 extern unsigned mangle_prefix;
76 extern unsigned char base_reverse[256];
77
78 extern char *last_from;
79 extern char *last_to;
80
81 struct msg_state;
82 extern struct msg_state *smbd_msg_state;
83
84 extern bool logged_ioctl_message;
85
86 extern int trans_num;
87
88 extern pid_t mypid;
89 extern time_t last_smb_conf_reload_time;
90 extern time_t last_printer_reload_time;
91 /****************************************************************************
92  structure to hold a linked list of queued messages.
93  for processing.
94 ****************************************************************************/
95 struct pending_message_list;
96 extern struct pending_message_list *deferred_open_queue;
97 extern uint32_t common_flags2;
98
99 struct smb_srv_trans_enc_ctx;
100 extern struct smb_srv_trans_enc_ctx *partial_srv_trans_enc_ctx;
101 extern struct smb_srv_trans_enc_ctx *srv_trans_enc_ctx;
102
103 struct sec_ctx {
104         UNIX_USER_TOKEN ut;
105         NT_USER_TOKEN *token;
106 };
107 /* A stack of security contexts.  We include the current context as being
108    the first one, so there is room for another MAX_SEC_CTX_DEPTH more. */
109 extern struct sec_ctx sec_ctx_stack[MAX_SEC_CTX_DEPTH + 1];
110 extern int sec_ctx_stack_ndx;
111 extern bool become_uid_done;
112 extern bool become_gid_done;
113
114 extern connection_struct *last_conn;
115 extern uint16_t last_flags;
116
117 extern struct db_context *session_db_ctx_ptr;
118
119 extern uint32_t global_client_caps;
120
121 extern uint16_t fnf_handle;
122
123 struct conn_ctx {
124         connection_struct *conn;
125         uint16 vuid;
126 };
127 /* A stack of current_user connection contexts. */
128 extern struct conn_ctx conn_ctx_stack[MAX_SEC_CTX_DEPTH];
129 extern int conn_ctx_stack_ndx;
130
131 struct vfs_init_function_entry;
132 extern struct vfs_init_function_entry *backends;
133 extern char *sparse_buf;
134 extern char *LastDir;
135
136 /* Current number of oplocks we have outstanding. */
137 extern int32_t exclusive_oplocks_open;
138 extern int32_t level_II_oplocks_open;
139 extern bool global_client_failed_oplock_break;
140 extern struct kernel_oplocks *koplocks;
141
142 extern int am_parent;
143 extern int server_fd;
144 extern struct event_context *smbd_event_ctx;
145 extern struct messaging_context *smbd_msg_ctx;
146 extern struct memcache *smbd_memcache_ctx;
147 extern bool exit_firsttime;
148 struct child_pid;
149 extern struct child_pid *children;
150 extern int num_children;
151
152 struct tstream_context;
153 struct smbd_smb2_request;
154 struct smbd_smb2_session;
155 struct smbd_smb2_tcon;
156
157 DATA_BLOB negprot_spnego(void);
158
159 NTSTATUS smb2_signing_sign_pdu(DATA_BLOB session_key,
160                                struct iovec *vector,
161                                int count);
162 NTSTATUS smb2_signing_check_pdu(DATA_BLOB session_key,
163                                 const struct iovec *vector,
164                                 int count);
165
166 struct smbd_lock_element {
167         uint32_t smbpid;
168         enum brl_type brltype;
169         uint64_t offset;
170         uint64_t count;
171 };
172
173 NTSTATUS smbd_do_locking(struct smb_request *req,
174                          files_struct *fsp,
175                          uint8_t type,
176                          int32_t timeout,
177                          uint16_t num_ulocks,
178                          struct smbd_lock_element *ulocks,
179                          uint16_t num_locks,
180                          struct smbd_lock_element *locks,
181                          bool *async);
182
183 NTSTATUS smbd_do_qfilepathinfo(connection_struct *conn,
184                                TALLOC_CTX *mem_ctx,
185                                uint16_t info_level,
186                                files_struct *fsp,
187                                struct smb_filename *smb_fname,
188                                bool delete_pending,
189                                struct timespec write_time_ts,
190                                bool ms_dfs_link,
191                                struct ea_list *ea_list,
192                                int lock_data_count,
193                                char *lock_data,
194                                uint16_t flags2,
195                                unsigned int max_data_bytes,
196                                char **ppdata,
197                                unsigned int *pdata_size);
198
199 NTSTATUS smbd_do_setfilepathinfo(connection_struct *conn,
200                                 struct smb_request *req,
201                                 TALLOC_CTX *mem_ctx,
202                                 uint16_t info_level,
203                                 files_struct *fsp,
204                                 struct smb_filename *smb_fname,
205                                 char **ppdata, int total_data,
206                                 int *ret_data_size);
207
208 NTSTATUS smbd_do_qfsinfo(connection_struct *conn,
209                          TALLOC_CTX *mem_ctx,
210                          uint16_t info_level,
211                          uint16_t flags2,
212                          unsigned int max_data_bytes,
213                          char **ppdata,
214                          int *ret_data_len);
215
216 bool smbd_dirptr_get_entry(TALLOC_CTX *ctx,
217                            struct dptr_struct *dirptr,
218                            const char *mask,
219                            uint32_t dirtype,
220                            bool dont_descend,
221                            bool ask_sharemode,
222                            bool (*match_fn)(TALLOC_CTX *ctx,
223                                             void *private_data,
224                                             const char *dname,
225                                             const char *mask,
226                                             char **_fname),
227                            bool (*mode_fn)(TALLOC_CTX *ctx,
228                                            void *private_data,
229                                            struct smb_filename *smb_fname,
230                                            uint32_t *_mode),
231                            void *private_data,
232                            char **_fname,
233                            struct smb_filename **_smb_fname,
234                            uint32_t *_mode,
235                            long *_prev_offset);
236
237 NTSTATUS smbd_check_open_rights(struct connection_struct *conn,
238                                 const struct smb_filename *smb_fname,
239                                 uint32_t access_mask,
240                                 uint32_t *access_granted);
241
242 void smbd_notify_cancel_by_smbreq(struct smbd_server_connection *sconn,
243                                   const struct smb_request *smbreq);
244
245 void smbd_server_connection_terminate_ex(struct smbd_server_connection *sconn,
246                                          const char *reason,
247                                          const char *location);
248 #define smbd_server_connection_terminate(sconn, reason) \
249         smbd_server_connection_terminate_ex(sconn, reason, __location__)
250
251 bool smbd_is_smb2_header(const uint8_t *inbuf, size_t size);
252
253 void reply_smb2002(struct smb_request *req, uint16_t choice);
254 void smbd_smb2_first_negprot(struct smbd_server_connection *sconn,
255                              const uint8_t *inbuf, size_t size);
256
257 NTSTATUS smbd_smb2_request_error_ex(struct smbd_smb2_request *req,
258                                     NTSTATUS status,
259                                     DATA_BLOB *info,
260                                     const char *location);
261 #define smbd_smb2_request_error(req, status) \
262         smbd_smb2_request_error_ex(req, status, NULL, __location__)
263 NTSTATUS smbd_smb2_request_done_ex(struct smbd_smb2_request *req,
264                                    NTSTATUS status,
265                                    DATA_BLOB body, DATA_BLOB *dyn,
266                                    const char *location);
267 #define smbd_smb2_request_done(req, body, dyn) \
268         smbd_smb2_request_done_ex(req, NT_STATUS_OK, body, dyn, __location__)
269
270 NTSTATUS smbd_smb2_send_oplock_break(struct smbd_server_connection *sconn,
271                                      uint64_t file_id_persistent,
272                                      uint64_t file_id_volatile,
273                                      uint8_t oplock_level);
274
275 NTSTATUS smbd_smb2_request_pending_queue(struct smbd_smb2_request *req,
276                                          struct tevent_req *subreq);
277
278 NTSTATUS smbd_smb2_request_check_session(struct smbd_smb2_request *req);
279 NTSTATUS smbd_smb2_request_check_tcon(struct smbd_smb2_request *req);
280
281 struct smb_request *smbd_smb2_fake_smb_request(struct smbd_smb2_request *req);
282
283 NTSTATUS smbd_smb2_request_process_negprot(struct smbd_smb2_request *req);
284 NTSTATUS smbd_smb2_request_process_sesssetup(struct smbd_smb2_request *req);
285 NTSTATUS smbd_smb2_request_process_logoff(struct smbd_smb2_request *req);
286 NTSTATUS smbd_smb2_request_process_tcon(struct smbd_smb2_request *req);
287 NTSTATUS smbd_smb2_request_process_tdis(struct smbd_smb2_request *req);
288 NTSTATUS smbd_smb2_request_process_create(struct smbd_smb2_request *req);
289 NTSTATUS smbd_smb2_request_process_close(struct smbd_smb2_request *req);
290 NTSTATUS smbd_smb2_request_process_flush(struct smbd_smb2_request *req);
291 NTSTATUS smbd_smb2_request_process_read(struct smbd_smb2_request *req);
292 NTSTATUS smbd_smb2_request_process_write(struct smbd_smb2_request *req);
293 NTSTATUS smbd_smb2_request_process_lock(struct smbd_smb2_request *req);
294 NTSTATUS smbd_smb2_request_process_ioctl(struct smbd_smb2_request *req);
295 NTSTATUS smbd_smb2_request_process_keepalive(struct smbd_smb2_request *req);
296 NTSTATUS smbd_smb2_request_process_find(struct smbd_smb2_request *req);
297 NTSTATUS smbd_smb2_request_process_notify(struct smbd_smb2_request *req);
298 NTSTATUS smbd_smb2_request_process_getinfo(struct smbd_smb2_request *req);
299 NTSTATUS smbd_smb2_request_process_setinfo(struct smbd_smb2_request *req);
300 NTSTATUS smbd_smb2_request_process_break(struct smbd_smb2_request *req);
301
302 struct smbd_smb2_request {
303         struct smbd_smb2_request *prev, *next;
304
305         TALLOC_CTX *mem_pool;
306         struct smbd_smb2_request **parent;
307
308         struct smbd_server_connection *sconn;
309
310         /* the session the request operates on, maybe NULL */
311         struct smbd_smb2_session *session;
312
313         /* the tcon the request operates on, maybe NULL */
314         struct smbd_smb2_tcon *tcon;
315
316         int current_idx;
317         bool do_signing;
318
319         struct files_struct *compat_chain_fsp;
320
321         NTSTATUS next_status;
322
323         /*
324          * The sub request for async backend calls.
325          * This is used for SMB2 Cancel.
326          */
327         struct tevent_req *subreq;
328
329         struct {
330                 /* the NBT header is not allocated */
331                 uint8_t nbt_hdr[4];
332                 /*
333                  * vector[0] NBT
334                  * .
335                  * vector[1] SMB2
336                  * vector[2] fixed body
337                  * vector[3] dynamic body
338                  * .
339                  * .
340                  * .
341                  * vector[4] SMB2
342                  * vector[5] fixed body
343                  * vector[6] dynamic body
344                  * .
345                  * .
346                  * .
347                  */
348                 struct iovec *vector;
349                 int vector_count;
350         } in;
351         struct {
352                 /* the NBT header is not allocated */
353                 uint8_t nbt_hdr[4];
354                 /*
355                  * vector[0] NBT
356                  * .
357                  * vector[1] SMB2
358                  * vector[2] fixed body
359                  * vector[3] dynamic body
360                  * .
361                  * .
362                  * .
363                  * vector[4] SMB2
364                  * vector[5] fixed body
365                  * vector[6] dynamic body
366                  * .
367                  * .
368                  * .
369                  */
370                 struct iovec *vector;
371                 int vector_count;
372         } out;
373 };
374
375 struct smbd_server_connection;
376
377 struct smbd_smb2_session {
378         struct smbd_smb2_session *prev, *next;
379         struct smbd_server_connection *sconn;
380         NTSTATUS status;
381         uint64_t vuid;
382         AUTH_NTLMSSP_STATE *auth_ntlmssp_state;
383         struct auth_serversupplied_info *server_info;
384         DATA_BLOB session_key;
385         bool do_signing;
386
387         user_struct *compat_vuser;
388
389         struct {
390                 /* an id tree used to allocate tids */
391                 struct idr_context *idtree;
392
393                 /* this is the limit of tid values for this connection */
394                 uint32_t limit;
395
396                 struct smbd_smb2_tcon *list;
397         } tcons;
398 };
399
400 struct smbd_smb2_tcon {
401         struct smbd_smb2_tcon *prev, *next;
402         struct smbd_smb2_session *session;
403         uint32_t tid;
404         int snum;
405         connection_struct *compat_conn;
406 };
407
408 struct pending_auth_data;
409
410 struct smbd_server_connection {
411         struct {
412                 bool got_session;
413         } nbt;
414         bool allow_smb2;
415         struct {
416                 struct fd_event *fde;
417                 uint64_t num_requests;
418                 struct {
419                         bool encrypted_passwords;
420                         bool spnego;
421                         struct auth_context *auth_context;
422                         bool done;
423                         /*
424                          * Size of the data we can receive. Set by us.
425                          * Can be modified by the max xmit parameter.
426                          */
427                         int max_recv;
428                 } negprot;
429
430                 struct {
431                         bool done_sesssetup;
432                         /*
433                          * Size of data we can send to client. Set
434                          *  by the client for all protocols above CORE.
435                          *  Set by us for CORE protocol.
436                          */
437                         int max_send;
438                         uint16_t last_session_tag;
439
440                         /* users from session setup */
441                         char *session_userlist;
442                         /* workgroup from session setup. */
443                         char *session_workgroup;
444                         /*
445                          * this holds info on user ids that are already
446                          * validated for this VC
447                          */
448                         user_struct *validated_users;
449                         uint16_t next_vuid;
450                         int num_validated_vuids;
451 #ifdef HAVE_NETGROUP
452                         char *my_yp_domain;
453 #endif
454                 } sessions;
455                 struct {
456                         connection_struct *Connections;
457                         /* number of open connections */
458                         struct bitmap *bmap;
459                         int num_open;
460                 } tcons;
461                 struct smb_signing_state *signing_state;
462                 /* List to store partial SPNEGO auth fragments. */
463                 struct pending_auth_data *pd_list;
464
465                 struct notify_mid_map *notify_mid_maps;
466
467                 struct {
468                         struct bitmap *dptr_bmap;
469                         struct dptr_struct *dirptrs;
470                         int dirhandles_open;
471                 } searches;
472         } smb1;
473         struct {
474                 struct tevent_context *event_ctx;
475                 struct tevent_queue *recv_queue;
476                 struct tevent_queue *send_queue;
477                 struct tstream_context *stream;
478                 struct {
479                         /* an id tree used to allocate vuids */
480                         /* this holds info on session vuids that are already
481                          * validated for this VC */
482                         struct idr_context *idtree;
483
484                         /* this is the limit of vuid values for this connection */
485                         uint64_t limit;
486
487                         struct smbd_smb2_session *list;
488                 } sessions;
489                 struct smbd_smb2_request *requests;
490         } smb2;
491 };
492
493 extern struct smbd_server_connection *smbd_server_conn;
494
495 void smbd_init_globals(void);