]> git.samba.org - mat/samba.git/blob - source3/smbd/globals.h
Revert "Remove the global char *LastDir."
[mat/samba.git] / source3 / smbd / globals.h
1 /*
2    Unix SMB/Netbios implementation.
3    smbd globals
4    Copyright (C) Stefan Metzmacher 2009
5    Copyright (C) Jeremy Allison 2010
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 3 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 */
20
21 #if defined(WITH_AIO)
22 struct aio_extra;
23 extern struct aio_extra *aio_list_head;
24 extern struct tevent_signal *aio_signal_event;
25 extern int aio_pending_size;
26 extern int outstanding_aio_calls;
27 #endif
28
29 #ifdef USE_DMAPI
30 struct smbd_dmapi_context;
31 extern struct smbd_dmapi_context *dmapi_ctx;
32 #endif
33
34 extern bool dfree_broken;
35
36 /* how many write cache buffers have been allocated */
37 extern unsigned int allocated_write_caches;
38
39 extern int real_max_open_files;
40 extern struct bitmap *file_bmap;
41 extern files_struct *Files;
42 extern int files_used;
43 /* A singleton cache to speed up searching by dev/inode. */
44 struct fsp_singleton_cache {
45         files_struct *fsp;
46         struct file_id id;
47 };
48 extern struct fsp_singleton_cache fsp_fi_cache;
49 extern unsigned long file_gen_counter;
50 extern int first_file;
51
52 extern const struct mangle_fns *mangle_fns;
53
54 extern unsigned char *chartest;
55 extern TDB_CONTEXT *tdb_mangled_cache;
56
57 /* these tables are used to provide fast tests for characters */
58 extern unsigned char char_flags[256];
59 /*
60   this determines how many characters are used from the original filename
61   in the 8.3 mangled name. A larger value leads to a weaker hash and more collisions.
62   The largest possible value is 6.
63 */
64 extern unsigned mangle_prefix;
65 extern unsigned char base_reverse[256];
66
67 struct msg_state;
68 extern struct msg_state *smbd_msg_state;
69
70 extern bool logged_ioctl_message;
71
72 extern int trans_num;
73
74 extern pid_t mypid;
75 extern time_t last_smb_conf_reload_time;
76 extern time_t last_printer_reload_time;
77 /****************************************************************************
78  structure to hold a linked list of queued messages.
79  for processing.
80 ****************************************************************************/
81 struct pending_message_list;
82 extern struct pending_message_list *deferred_open_queue;
83 extern uint32_t common_flags2;
84
85 struct smb_srv_trans_enc_ctx;
86 extern struct smb_srv_trans_enc_ctx *partial_srv_trans_enc_ctx;
87 extern struct smb_srv_trans_enc_ctx *srv_trans_enc_ctx;
88
89 struct sec_ctx {
90         UNIX_USER_TOKEN ut;
91         NT_USER_TOKEN *token;
92 };
93 /* A stack of security contexts.  We include the current context as being
94    the first one, so there is room for another MAX_SEC_CTX_DEPTH more. */
95 extern struct sec_ctx sec_ctx_stack[MAX_SEC_CTX_DEPTH + 1];
96 extern int sec_ctx_stack_ndx;
97 extern bool become_uid_done;
98 extern bool become_gid_done;
99
100 extern connection_struct *last_conn;
101 extern uint16_t last_flags;
102
103 extern uint32_t global_client_caps;
104
105 extern uint16_t fnf_handle;
106
107 struct conn_ctx {
108         connection_struct *conn;
109         uint16 vuid;
110 };
111 /* A stack of current_user connection contexts. */
112 extern struct conn_ctx conn_ctx_stack[MAX_SEC_CTX_DEPTH];
113 extern int conn_ctx_stack_ndx;
114
115 struct vfs_init_function_entry;
116 extern struct vfs_init_function_entry *backends;
117 extern char *sparse_buf;
118 extern char *LastDir;
119
120 /* Current number of oplocks we have outstanding. */
121 extern int32_t exclusive_oplocks_open;
122 extern int32_t level_II_oplocks_open;
123 extern struct kernel_oplocks *koplocks;
124
125 extern int am_parent;
126 extern int server_fd;
127 extern struct event_context *smbd_event_ctx;
128 extern struct messaging_context *smbd_msg_ctx;
129 extern struct memcache *smbd_memcache_ctx;
130 extern bool exit_firsttime;
131 struct child_pid;
132 extern struct child_pid *children;
133 extern int num_children;
134
135 struct tstream_context;
136 struct smbd_smb2_request;
137 struct smbd_smb2_session;
138 struct smbd_smb2_tcon;
139
140 DATA_BLOB negprot_spnego(struct smbd_server_connection *sconn);
141
142 void smbd_lock_socket(struct smbd_server_connection *sconn);
143 void smbd_unlock_socket(struct smbd_server_connection *sconn);
144
145 NTSTATUS smb2_signing_sign_pdu(DATA_BLOB session_key,
146                                struct iovec *vector,
147                                int count);
148 NTSTATUS smb2_signing_check_pdu(DATA_BLOB session_key,
149                                 const struct iovec *vector,
150                                 int count);
151
152 NTSTATUS smbd_do_locking(struct smb_request *req,
153                          files_struct *fsp,
154                          uint8_t type,
155                          int32_t timeout,
156                          uint16_t num_ulocks,
157                          struct smbd_lock_element *ulocks,
158                          uint16_t num_locks,
159                          struct smbd_lock_element *locks,
160                          bool *async);
161
162 NTSTATUS smbd_do_qfilepathinfo(connection_struct *conn,
163                                TALLOC_CTX *mem_ctx,
164                                uint16_t info_level,
165                                files_struct *fsp,
166                                struct smb_filename *smb_fname,
167                                bool delete_pending,
168                                struct timespec write_time_ts,
169                                struct ea_list *ea_list,
170                                int lock_data_count,
171                                char *lock_data,
172                                uint16_t flags2,
173                                unsigned int max_data_bytes,
174                                char **ppdata,
175                                unsigned int *pdata_size);
176
177 NTSTATUS smbd_do_setfilepathinfo(connection_struct *conn,
178                                 struct smb_request *req,
179                                 TALLOC_CTX *mem_ctx,
180                                 uint16_t info_level,
181                                 files_struct *fsp,
182                                 struct smb_filename *smb_fname,
183                                 char **ppdata, int total_data,
184                                 int *ret_data_size);
185
186 NTSTATUS smbd_do_qfsinfo(connection_struct *conn,
187                          TALLOC_CTX *mem_ctx,
188                          uint16_t info_level,
189                          uint16_t flags2,
190                          unsigned int max_data_bytes,
191                          char **ppdata,
192                          int *ret_data_len);
193
194 bool smbd_dirptr_get_entry(TALLOC_CTX *ctx,
195                            struct dptr_struct *dirptr,
196                            const char *mask,
197                            uint32_t dirtype,
198                            bool dont_descend,
199                            bool ask_sharemode,
200                            bool (*match_fn)(TALLOC_CTX *ctx,
201                                             void *private_data,
202                                             const char *dname,
203                                             const char *mask,
204                                             char **_fname),
205                            bool (*mode_fn)(TALLOC_CTX *ctx,
206                                            void *private_data,
207                                            struct smb_filename *smb_fname,
208                                            uint32_t *_mode),
209                            void *private_data,
210                            char **_fname,
211                            struct smb_filename **_smb_fname,
212                            uint32_t *_mode,
213                            long *_prev_offset);
214
215 bool smbd_dirptr_lanman2_entry(TALLOC_CTX *ctx,
216                                connection_struct *conn,
217                                struct dptr_struct *dirptr,
218                                uint16 flags2,
219                                const char *path_mask,
220                                uint32 dirtype,
221                                int info_level,
222                                int requires_resume_key,
223                                bool dont_descend,
224                                bool ask_sharemode,
225                                uint8_t align,
226                                bool do_pad,
227                                char **ppdata,
228                                char *base_data,
229                                char *end_data,
230                                int space_remaining,
231                                bool *out_of_space,
232                                bool *got_exact_match,
233                                int *_last_entry_off,
234                                struct ea_list *name_list);
235
236 NTSTATUS smbd_check_open_rights(struct connection_struct *conn,
237                                 const struct smb_filename *smb_fname,
238                                 uint32_t access_mask,
239                                 uint32_t *access_granted);
240
241 void smbd_notify_cancel_by_smbreq(const struct smb_request *smbreq);
242
243 void smbd_server_connection_terminate_ex(struct smbd_server_connection *sconn,
244                                          const char *reason,
245                                          const char *location);
246 #define smbd_server_connection_terminate(sconn, reason) \
247         smbd_server_connection_terminate_ex(sconn, reason, __location__)
248
249 struct server_id sconn_server_id(const struct smbd_server_connection *sconn);
250
251 const char *smb2_opcode_name(uint16_t opcode);
252 bool smbd_is_smb2_header(const uint8_t *inbuf, size_t size);
253
254 void reply_smb2002(struct smb_request *req, uint16_t choice);
255 void smbd_smb2_first_negprot(struct smbd_server_connection *sconn,
256                              const uint8_t *inbuf, size_t size);
257
258 NTSTATUS smbd_smb2_request_error_ex(struct smbd_smb2_request *req,
259                                     NTSTATUS status,
260                                     DATA_BLOB *info,
261                                     const char *location);
262 #define smbd_smb2_request_error(req, status) \
263         smbd_smb2_request_error_ex(req, status, NULL, __location__)
264 NTSTATUS smbd_smb2_request_done_ex(struct smbd_smb2_request *req,
265                                    NTSTATUS status,
266                                    DATA_BLOB body, DATA_BLOB *dyn,
267                                    const char *location);
268 #define smbd_smb2_request_done(req, body, dyn) \
269         smbd_smb2_request_done_ex(req, NT_STATUS_OK, body, dyn, __location__)
270
271 NTSTATUS smbd_smb2_send_oplock_break(struct smbd_server_connection *sconn,
272                                      uint64_t file_id_persistent,
273                                      uint64_t file_id_volatile,
274                                      uint8_t oplock_level);
275
276 NTSTATUS smbd_smb2_request_pending_queue(struct smbd_smb2_request *req,
277                                          struct tevent_req *subreq);
278
279 NTSTATUS smbd_smb2_request_check_session(struct smbd_smb2_request *req);
280 NTSTATUS smbd_smb2_request_check_tcon(struct smbd_smb2_request *req);
281
282 struct smb_request *smbd_smb2_fake_smb_request(struct smbd_smb2_request *req);
283 void remove_smb2_chained_fsp(files_struct *fsp);
284
285 NTSTATUS smbd_smb2_request_process_negprot(struct smbd_smb2_request *req);
286 NTSTATUS smbd_smb2_request_process_sesssetup(struct smbd_smb2_request *req);
287 NTSTATUS smbd_smb2_request_process_logoff(struct smbd_smb2_request *req);
288 NTSTATUS smbd_smb2_request_process_tcon(struct smbd_smb2_request *req);
289 NTSTATUS smbd_smb2_request_process_tdis(struct smbd_smb2_request *req);
290 NTSTATUS smbd_smb2_request_process_create(struct smbd_smb2_request *req);
291 NTSTATUS smbd_smb2_request_process_close(struct smbd_smb2_request *req);
292 NTSTATUS smbd_smb2_request_process_flush(struct smbd_smb2_request *req);
293 NTSTATUS smbd_smb2_request_process_read(struct smbd_smb2_request *req);
294 NTSTATUS smb2_read_complete(struct tevent_req *req, ssize_t nread, int err);
295 NTSTATUS smbd_smb2_request_process_write(struct smbd_smb2_request *req);
296 NTSTATUS smb2_write_complete(struct tevent_req *req, ssize_t nwritten, int err);
297 NTSTATUS smbd_smb2_request_process_lock(struct smbd_smb2_request *req);
298 NTSTATUS smbd_smb2_request_process_ioctl(struct smbd_smb2_request *req);
299 NTSTATUS smbd_smb2_request_process_keepalive(struct smbd_smb2_request *req);
300 NTSTATUS smbd_smb2_request_process_find(struct smbd_smb2_request *req);
301 NTSTATUS smbd_smb2_request_process_notify(struct smbd_smb2_request *req);
302 NTSTATUS smbd_smb2_request_process_getinfo(struct smbd_smb2_request *req);
303 NTSTATUS smbd_smb2_request_process_setinfo(struct smbd_smb2_request *req);
304 NTSTATUS smbd_smb2_request_process_break(struct smbd_smb2_request *req);
305 NTSTATUS smbd_smb2_request_dispatch(struct smbd_smb2_request *req);
306 void smbd_smb2_request_dispatch_immediate(struct tevent_context *ctx,
307                                 struct tevent_immediate *im,
308                                 void *private_data);
309
310 /* SMB1 -> SMB2 glue. */
311 void send_break_message_smb2(files_struct *fsp, int level);
312 struct blocking_lock_record *get_pending_smb2req_blr(struct smbd_smb2_request *smb2req);
313 bool push_blocking_lock_request_smb2( struct byte_range_lock *br_lck,
314                                 struct smb_request *req,
315                                 files_struct *fsp,
316                                 int lock_timeout,
317                                 int lock_num,
318                                 uint64_t smblctx,
319                                 enum brl_type lock_type,
320                                 enum brl_flavour lock_flav,
321                                 uint64_t offset,
322                                 uint64_t count,
323                                 uint64_t blocking_smblctx);
324 void process_blocking_lock_queue_smb2(
325         struct smbd_server_connection *sconn, struct timeval tv_curr);
326 void cancel_pending_lock_requests_by_fid_smb2(files_struct *fsp,
327                         struct byte_range_lock *br_lck,
328                         enum file_close_type close_type);
329 /* From smbd/smb2_create.c */
330 int map_smb2_oplock_levels_to_samba(uint8_t in_oplock_level);
331 bool get_deferred_open_message_state_smb2(struct smbd_smb2_request *smb2req,
332                         struct timeval *p_request_time,
333                         void **pp_state);
334 bool open_was_deferred_smb2(struct smbd_server_connection *sconn,
335                             uint64_t mid);
336 void remove_deferred_open_message_smb2(
337         struct smbd_server_connection *sconn, uint64_t mid);
338 void schedule_deferred_open_message_smb2(
339         struct smbd_server_connection *sconn, uint64_t mid);
340 bool push_deferred_open_message_smb2(struct smbd_smb2_request *smb2req,
341                         struct timeval request_time,
342                         struct timeval timeout,
343                         struct file_id id,
344                         char *private_data,
345                         size_t priv_len);
346
347 struct smbd_smb2_request {
348         struct smbd_smb2_request *prev, *next;
349
350         TALLOC_CTX *mem_pool;
351         struct smbd_smb2_request **parent;
352
353         struct smbd_server_connection *sconn;
354
355         /* the session the request operates on, maybe NULL */
356         struct smbd_smb2_session *session;
357
358         /* the tcon the request operates on, maybe NULL */
359         struct smbd_smb2_tcon *tcon;
360
361         int current_idx;
362         bool do_signing;
363         bool async;
364         bool cancelled;
365
366         /* fake smb1 request. */
367         struct smb_request *smb1req;
368         struct files_struct *compat_chain_fsp;
369
370         NTSTATUS next_status;
371
372         /*
373          * The sub request for async backend calls.
374          * This is used for SMB2 Cancel.
375          */
376         struct tevent_req *subreq;
377
378         struct {
379                 /* the NBT header is not allocated */
380                 uint8_t nbt_hdr[4];
381                 /*
382                  * vector[0] NBT
383                  * .
384                  * vector[1] SMB2
385                  * vector[2] fixed body
386                  * vector[3] dynamic body
387                  * .
388                  * .
389                  * .
390                  * vector[4] SMB2
391                  * vector[5] fixed body
392                  * vector[6] dynamic body
393                  * .
394                  * .
395                  * .
396                  */
397                 struct iovec *vector;
398                 int vector_count;
399         } in;
400         struct {
401                 /* the NBT header is not allocated */
402                 uint8_t nbt_hdr[4];
403                 /*
404                  * vector[0] NBT
405                  * .
406                  * vector[1] SMB2
407                  * vector[2] fixed body
408                  * vector[3] dynamic body
409                  * .
410                  * .
411                  * .
412                  * vector[4] SMB2
413                  * vector[5] fixed body
414                  * vector[6] dynamic body
415                  * .
416                  * .
417                  * .
418                  */
419                 struct iovec *vector;
420                 int vector_count;
421         } out;
422 };
423
424 struct smbd_server_connection;
425
426 struct smbd_smb2_session {
427         struct smbd_smb2_session *prev, *next;
428         struct smbd_server_connection *sconn;
429         NTSTATUS status;
430         uint64_t vuid;
431         struct auth_ntlmssp_state *auth_ntlmssp_state;
432         struct auth_serversupplied_info *server_info;
433         DATA_BLOB session_key;
434         bool do_signing;
435
436         user_struct *compat_vuser;
437
438         struct {
439                 /* an id tree used to allocate tids */
440                 struct idr_context *idtree;
441
442                 /* this is the limit of tid values for this connection */
443                 uint32_t limit;
444
445                 struct smbd_smb2_tcon *list;
446         } tcons;
447 };
448
449 struct smbd_smb2_tcon {
450         struct smbd_smb2_tcon *prev, *next;
451         struct smbd_smb2_session *session;
452         uint32_t tid;
453         int snum;
454         connection_struct *compat_conn;
455 };
456
457 struct pending_auth_data;
458
459 struct smbd_server_connection {
460         const struct tsocket_address *local_address;
461         const struct tsocket_address *remote_address;
462         struct messaging_context *msg_ctx;
463         struct {
464                 bool got_session;
465         } nbt;
466         bool using_smb2;
467         struct {
468                 struct fd_event *fde;
469
470                 struct {
471                         /*
472                          * fd for the fcntl lock mutexing access to smbd_server_fd
473                          */
474                         int socket_lock_fd;
475
476                         /*
477                          * fd for the trusted pipe from
478                          * echo handler child
479                          */
480                         int trusted_fd;
481
482                         /*
483                          * fde for the trusted_fd
484                          */
485                         struct fd_event *trusted_fde;
486
487                         /*
488                          * Reference count for the fcntl lock to
489                          * allow recursive locks.
490                          */
491                         int ref_count;
492                 } echo_handler;
493
494                 uint64_t num_requests;
495                 struct {
496                         bool encrypted_passwords;
497                         bool spnego;
498                         struct auth_context *auth_context;
499                         bool done;
500                         /*
501                          * Size of the data we can receive. Set by us.
502                          * Can be modified by the max xmit parameter.
503                          */
504                         int max_recv;
505                 } negprot;
506
507                 struct {
508                         bool done_sesssetup;
509                         /*
510                          * Size of data we can send to client. Set
511                          *  by the client for all protocols above CORE.
512                          *  Set by us for CORE protocol.
513                          */
514                         int max_send;
515                         uint16_t last_session_tag;
516
517                         /* users from session setup */
518                         char *session_userlist;
519                         /* workgroup from session setup. */
520                         char *session_workgroup;
521                         /*
522                          * this holds info on user ids that are already
523                          * validated for this VC
524                          */
525                         user_struct *validated_users;
526                         uint16_t next_vuid;
527                         int num_validated_vuids;
528                 } sessions;
529                 struct {
530                         connection_struct *Connections;
531                         /* number of open connections */
532                         struct bitmap *bmap;
533                         int num_open;
534                 } tcons;
535                 struct smb_signing_state *signing_state;
536                 /* List to store partial SPNEGO auth fragments. */
537                 struct pending_auth_data *pd_list;
538
539                 struct notify_mid_map *notify_mid_maps;
540
541                 struct {
542                         struct bitmap *dptr_bmap;
543                         struct dptr_struct *dirptrs;
544                         int dirhandles_open;
545                 } searches;
546                 struct {
547                         /* dlink list we store pending lock records on. */
548                         struct blocking_lock_record *blocking_lock_queue;
549                         /* dlink list we move cancelled lock records onto. */
550                         struct blocking_lock_record *blocking_lock_cancelled_queue;
551
552                         /* The event that makes us process our blocking lock queue */
553                         struct timed_event *brl_timeout;
554
555                         bool blocking_lock_unlock_state;
556                         bool blocking_lock_cancel_state;
557                 } locks;
558         } smb1;
559         struct {
560                 struct tevent_context *event_ctx;
561                 struct tevent_queue *recv_queue;
562                 struct tevent_queue *send_queue;
563                 struct tstream_context *stream;
564                 struct {
565                         /* an id tree used to allocate vuids */
566                         /* this holds info on session vuids that are already
567                          * validated for this VC */
568                         struct idr_context *idtree;
569
570                         /* this is the limit of vuid values for this connection */
571                         uint64_t limit;
572
573                         struct smbd_smb2_session *list;
574                 } sessions;
575                 struct {
576                         /* The event that makes us process our blocking lock queue */
577                         struct timed_event *brl_timeout;
578                         bool blocking_lock_unlock_state;
579                 } locks;
580                 struct smbd_smb2_request *requests;
581                 uint64_t credits_granted;
582         } smb2;
583 };
584
585 extern struct smbd_server_connection *smbd_server_conn;
586
587 void smbd_init_globals(void);