Carefully label SMB1-specific locking calls.
[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 extern char *last_from;
68 extern char *last_to;
69
70 struct msg_state;
71 extern struct msg_state *smbd_msg_state;
72
73 extern bool logged_ioctl_message;
74
75 extern int trans_num;
76
77 extern pid_t mypid;
78 extern time_t last_smb_conf_reload_time;
79 extern time_t last_printer_reload_time;
80 /****************************************************************************
81  structure to hold a linked list of queued messages.
82  for processing.
83 ****************************************************************************/
84 struct pending_message_list;
85 extern struct pending_message_list *deferred_open_queue;
86 extern uint32_t common_flags2;
87
88 struct smb_srv_trans_enc_ctx;
89 extern struct smb_srv_trans_enc_ctx *partial_srv_trans_enc_ctx;
90 extern struct smb_srv_trans_enc_ctx *srv_trans_enc_ctx;
91
92 struct sec_ctx {
93         UNIX_USER_TOKEN ut;
94         NT_USER_TOKEN *token;
95 };
96 /* A stack of security contexts.  We include the current context as being
97    the first one, so there is room for another MAX_SEC_CTX_DEPTH more. */
98 extern struct sec_ctx sec_ctx_stack[MAX_SEC_CTX_DEPTH + 1];
99 extern int sec_ctx_stack_ndx;
100 extern bool become_uid_done;
101 extern bool become_gid_done;
102
103 extern connection_struct *last_conn;
104 extern uint16_t last_flags;
105
106 extern uint32_t global_client_caps;
107
108 extern uint16_t fnf_handle;
109
110 struct conn_ctx {
111         connection_struct *conn;
112         uint16 vuid;
113 };
114 /* A stack of current_user connection contexts. */
115 extern struct conn_ctx conn_ctx_stack[MAX_SEC_CTX_DEPTH];
116 extern int conn_ctx_stack_ndx;
117
118 struct vfs_init_function_entry;
119 extern struct vfs_init_function_entry *backends;
120 extern char *sparse_buf;
121
122 /* Current number of oplocks we have outstanding. */
123 extern int32_t exclusive_oplocks_open;
124 extern int32_t level_II_oplocks_open;
125 extern bool global_client_failed_oplock_break;
126 extern struct kernel_oplocks *koplocks;
127
128 extern int am_parent;
129 extern int server_fd;
130 extern struct event_context *smbd_event_ctx;
131 extern struct messaging_context *smbd_msg_ctx;
132 extern struct memcache *smbd_memcache_ctx;
133 extern bool exit_firsttime;
134 struct child_pid;
135 extern struct child_pid *children;
136 extern int num_children;
137
138 struct tstream_context;
139 struct smbd_smb2_request;
140 struct smbd_smb2_session;
141 struct smbd_smb2_tcon;
142
143 DATA_BLOB negprot_spnego(void);
144
145 void smbd_lock_socket(struct smbd_server_connection *sconn);
146 void smbd_unlock_socket(struct smbd_server_connection *sconn);
147
148 NTSTATUS smb2_signing_sign_pdu(DATA_BLOB session_key,
149                                struct iovec *vector,
150                                int count);
151 NTSTATUS smb2_signing_check_pdu(DATA_BLOB session_key,
152                                 const struct iovec *vector,
153                                 int count);
154
155 struct smbd_lock_element {
156         uint32_t smbpid;
157         enum brl_type brltype;
158         uint64_t offset;
159         uint64_t count;
160 };
161
162 NTSTATUS smbd_do_locking(struct smb_request *req,
163                          files_struct *fsp,
164                          uint8_t type,
165                          int32_t timeout,
166                          uint16_t num_ulocks,
167                          struct smbd_lock_element *ulocks,
168                          uint16_t num_locks,
169                          struct smbd_lock_element *locks,
170                          bool *async);
171
172 NTSTATUS smbd_do_qfilepathinfo(connection_struct *conn,
173                                TALLOC_CTX *mem_ctx,
174                                uint16_t info_level,
175                                files_struct *fsp,
176                                struct smb_filename *smb_fname,
177                                bool delete_pending,
178                                struct timespec write_time_ts,
179                                struct ea_list *ea_list,
180                                int lock_data_count,
181                                char *lock_data,
182                                uint16_t flags2,
183                                unsigned int max_data_bytes,
184                                char **ppdata,
185                                unsigned int *pdata_size);
186
187 NTSTATUS smbd_do_setfilepathinfo(connection_struct *conn,
188                                 struct smb_request *req,
189                                 TALLOC_CTX *mem_ctx,
190                                 uint16_t info_level,
191                                 files_struct *fsp,
192                                 struct smb_filename *smb_fname,
193                                 char **ppdata, int total_data,
194                                 int *ret_data_size);
195
196 NTSTATUS smbd_do_qfsinfo(connection_struct *conn,
197                          TALLOC_CTX *mem_ctx,
198                          uint16_t info_level,
199                          uint16_t flags2,
200                          unsigned int max_data_bytes,
201                          char **ppdata,
202                          int *ret_data_len);
203
204 bool smbd_dirptr_get_entry(TALLOC_CTX *ctx,
205                            struct dptr_struct *dirptr,
206                            const char *mask,
207                            uint32_t dirtype,
208                            bool dont_descend,
209                            bool ask_sharemode,
210                            bool (*match_fn)(TALLOC_CTX *ctx,
211                                             void *private_data,
212                                             const char *dname,
213                                             const char *mask,
214                                             char **_fname),
215                            bool (*mode_fn)(TALLOC_CTX *ctx,
216                                            void *private_data,
217                                            struct smb_filename *smb_fname,
218                                            uint32_t *_mode),
219                            void *private_data,
220                            char **_fname,
221                            struct smb_filename **_smb_fname,
222                            uint32_t *_mode,
223                            long *_prev_offset);
224
225 bool smbd_dirptr_lanman2_entry(TALLOC_CTX *ctx,
226                                connection_struct *conn,
227                                struct dptr_struct *dirptr,
228                                uint16 flags2,
229                                const char *path_mask,
230                                uint32 dirtype,
231                                int info_level,
232                                int requires_resume_key,
233                                bool dont_descend,
234                                bool ask_sharemode,
235                                uint8_t align,
236                                bool do_pad,
237                                char **ppdata,
238                                char *base_data,
239                                char *end_data,
240                                int space_remaining,
241                                bool *out_of_space,
242                                bool *got_exact_match,
243                                int *_last_entry_off,
244                                struct ea_list *name_list);
245
246 NTSTATUS smbd_check_open_rights(struct connection_struct *conn,
247                                 const struct smb_filename *smb_fname,
248                                 uint32_t access_mask,
249                                 uint32_t *access_granted);
250
251 void smbd_notify_cancel_by_smbreq(struct smbd_server_connection *sconn,
252                                   const struct smb_request *smbreq);
253
254 void smbd_server_connection_terminate_ex(struct smbd_server_connection *sconn,
255                                          const char *reason,
256                                          const char *location);
257 #define smbd_server_connection_terminate(sconn, reason) \
258         smbd_server_connection_terminate_ex(sconn, reason, __location__)
259
260 bool smbd_is_smb2_header(const uint8_t *inbuf, size_t size);
261
262 void reply_smb2002(struct smb_request *req, uint16_t choice);
263 void smbd_smb2_first_negprot(struct smbd_server_connection *sconn,
264                              const uint8_t *inbuf, size_t size);
265
266 NTSTATUS smbd_smb2_request_error_ex(struct smbd_smb2_request *req,
267                                     NTSTATUS status,
268                                     DATA_BLOB *info,
269                                     const char *location);
270 #define smbd_smb2_request_error(req, status) \
271         smbd_smb2_request_error_ex(req, status, NULL, __location__)
272 NTSTATUS smbd_smb2_request_done_ex(struct smbd_smb2_request *req,
273                                    NTSTATUS status,
274                                    DATA_BLOB body, DATA_BLOB *dyn,
275                                    const char *location);
276 #define smbd_smb2_request_done(req, body, dyn) \
277         smbd_smb2_request_done_ex(req, NT_STATUS_OK, body, dyn, __location__)
278
279 NTSTATUS smbd_smb2_send_oplock_break(struct smbd_server_connection *sconn,
280                                      uint64_t file_id_volatile,
281                                      uint8_t oplock_level);
282
283 NTSTATUS smbd_smb2_request_pending_queue(struct smbd_smb2_request *req,
284                                          struct tevent_req *subreq);
285
286 NTSTATUS smbd_smb2_request_check_session(struct smbd_smb2_request *req);
287 NTSTATUS smbd_smb2_request_check_tcon(struct smbd_smb2_request *req);
288
289 struct smb_request *smbd_smb2_fake_smb_request(struct smbd_smb2_request *req);
290
291 NTSTATUS smbd_smb2_request_process_negprot(struct smbd_smb2_request *req);
292 NTSTATUS smbd_smb2_request_process_sesssetup(struct smbd_smb2_request *req);
293 NTSTATUS smbd_smb2_request_process_logoff(struct smbd_smb2_request *req);
294 NTSTATUS smbd_smb2_request_process_tcon(struct smbd_smb2_request *req);
295 NTSTATUS smbd_smb2_request_process_tdis(struct smbd_smb2_request *req);
296 NTSTATUS smbd_smb2_request_process_create(struct smbd_smb2_request *req);
297 NTSTATUS smbd_smb2_request_process_close(struct smbd_smb2_request *req);
298 NTSTATUS smbd_smb2_request_process_flush(struct smbd_smb2_request *req);
299 NTSTATUS smbd_smb2_request_process_read(struct smbd_smb2_request *req);
300 NTSTATUS smbd_smb2_request_process_write(struct smbd_smb2_request *req);
301 NTSTATUS smbd_smb2_request_process_lock(struct smbd_smb2_request *req);
302 NTSTATUS smbd_smb2_request_process_ioctl(struct smbd_smb2_request *req);
303 NTSTATUS smbd_smb2_request_process_keepalive(struct smbd_smb2_request *req);
304 NTSTATUS smbd_smb2_request_process_find(struct smbd_smb2_request *req);
305 NTSTATUS smbd_smb2_request_process_notify(struct smbd_smb2_request *req);
306 NTSTATUS smbd_smb2_request_process_getinfo(struct smbd_smb2_request *req);
307 NTSTATUS smbd_smb2_request_process_setinfo(struct smbd_smb2_request *req);
308 NTSTATUS smbd_smb2_request_process_break(struct smbd_smb2_request *req);
309 NTSTATUS smbd_smb2_request_dispatch(struct smbd_smb2_request *req);
310 void smbd_smb2_request_dispatch_immediate(struct tevent_context *ctx,
311                                 struct tevent_immediate *im,
312                                 void *private_data);
313
314 /* SMB1 -> SMB2 glue. */
315 void send_break_message_smb2(files_struct *fsp, int level);
316 bool push_blocking_lock_request_smb2( struct byte_range_lock *br_lck,
317                                 struct smb_request *req,
318                                 files_struct *fsp,
319                                 int lock_timeout,
320                                 int lock_num,
321                                 uint32_t lock_pid,
322                                 enum brl_type lock_type,
323                                 enum brl_flavour lock_flav,
324                                 uint64_t offset,
325                                 uint64_t count,
326                                 uint32_t blocking_pid);
327 void cancel_pending_lock_requests_by_fid_smb2(files_struct *fsp,
328                         struct byte_range_lock *br_lck);
329 /* From smbd/smb2_create.c */
330 int map_smb2_oplock_levels_to_samba(uint8_t in_oplock_level);
331 uint8_t map_samba_oplock_levels_to_smb2(int oplock_type);
332 bool get_deferred_open_message_state_smb2(struct smbd_smb2_request *smb2req,
333                         struct timeval *p_request_time,
334                         void **pp_state);
335 bool open_was_deferred_smb2(uint64_t mid);
336 void remove_deferred_open_message_smb2(uint64_t mid);
337 void schedule_deferred_open_message_smb2(uint64_t mid);
338 bool push_deferred_open_message_smb2(struct smbd_smb2_request *smb2req,
339                         struct timeval request_time,
340                         struct timeval timeout,
341                         struct file_id id,
342                         char *private_data,
343                         size_t priv_len);
344
345 struct smbd_smb2_request {
346         struct smbd_smb2_request *prev, *next;
347
348         TALLOC_CTX *mem_pool;
349         struct smbd_smb2_request **parent;
350
351         struct smbd_server_connection *sconn;
352
353         /* the session the request operates on, maybe NULL */
354         struct smbd_smb2_session *session;
355
356         /* the tcon the request operates on, maybe NULL */
357         struct smbd_smb2_tcon *tcon;
358
359         int current_idx;
360         bool do_signing;
361         bool async;
362         bool cancelled;
363
364         struct files_struct *compat_chain_fsp;
365
366         NTSTATUS next_status;
367
368         /*
369          * The sub request for async backend calls.
370          * This is used for SMB2 Cancel.
371          */
372         struct tevent_req *subreq;
373
374         struct {
375                 /* the NBT header is not allocated */
376                 uint8_t nbt_hdr[4];
377                 /*
378                  * vector[0] NBT
379                  * .
380                  * vector[1] SMB2
381                  * vector[2] fixed body
382                  * vector[3] dynamic body
383                  * .
384                  * .
385                  * .
386                  * vector[4] SMB2
387                  * vector[5] fixed body
388                  * vector[6] dynamic body
389                  * .
390                  * .
391                  * .
392                  */
393                 struct iovec *vector;
394                 int vector_count;
395         } in;
396         struct {
397                 /* the NBT header is not allocated */
398                 uint8_t nbt_hdr[4];
399                 /*
400                  * vector[0] NBT
401                  * .
402                  * vector[1] SMB2
403                  * vector[2] fixed body
404                  * vector[3] dynamic body
405                  * .
406                  * .
407                  * .
408                  * vector[4] SMB2
409                  * vector[5] fixed body
410                  * vector[6] dynamic body
411                  * .
412                  * .
413                  * .
414                  */
415                 struct iovec *vector;
416                 int vector_count;
417         } out;
418 };
419
420 struct smbd_server_connection;
421
422 struct smbd_smb2_session {
423         struct smbd_smb2_session *prev, *next;
424         struct smbd_server_connection *sconn;
425         NTSTATUS status;
426         uint64_t vuid;
427         AUTH_NTLMSSP_STATE *auth_ntlmssp_state;
428         struct auth_serversupplied_info *server_info;
429         DATA_BLOB session_key;
430         bool do_signing;
431
432         user_struct *compat_vuser;
433
434         struct {
435                 /* an id tree used to allocate tids */
436                 struct idr_context *idtree;
437
438                 /* this is the limit of tid values for this connection */
439                 uint32_t limit;
440
441                 struct smbd_smb2_tcon *list;
442         } tcons;
443 };
444
445 struct smbd_smb2_tcon {
446         struct smbd_smb2_tcon *prev, *next;
447         struct smbd_smb2_session *session;
448         uint32_t tid;
449         int snum;
450         connection_struct *compat_conn;
451 };
452
453 struct pending_auth_data;
454
455 struct smbd_server_connection {
456         const struct tsocket_address *local_address;
457         const struct tsocket_address *remote_address;
458         struct {
459                 bool got_session;
460         } nbt;
461         bool allow_smb2;
462         struct {
463                 struct fd_event *fde;
464
465                 struct {
466                         /*
467                          * fd for the fcntl lock mutexing access to smbd_server_fd
468                          */
469                         int socket_lock_fd;
470
471                         /*
472                          * fd for the trusted pipe from
473                          * echo handler child
474                          */
475                         int trusted_fd;
476
477                         /*
478                          * fde for the trusted_fd
479                          */
480                         struct fd_event *trusted_fde;
481
482                         /*
483                          * Reference count for the fcntl lock to
484                          * allow recursive locks.
485                          */
486                         int ref_count;
487                 } echo_handler;
488
489                 uint64_t num_requests;
490                 struct {
491                         bool encrypted_passwords;
492                         bool spnego;
493                         struct auth_context *auth_context;
494                         bool done;
495                         /*
496                          * Size of the data we can receive. Set by us.
497                          * Can be modified by the max xmit parameter.
498                          */
499                         int max_recv;
500                 } negprot;
501
502                 struct {
503                         bool done_sesssetup;
504                         /*
505                          * Size of data we can send to client. Set
506                          *  by the client for all protocols above CORE.
507                          *  Set by us for CORE protocol.
508                          */
509                         int max_send;
510                         uint16_t last_session_tag;
511
512                         /* users from session setup */
513                         char *session_userlist;
514                         /* workgroup from session setup. */
515                         char *session_workgroup;
516                         /*
517                          * this holds info on user ids that are already
518                          * validated for this VC
519                          */
520                         user_struct *validated_users;
521                         uint16_t next_vuid;
522                         int num_validated_vuids;
523 #ifdef HAVE_NETGROUP
524                         char *my_yp_domain;
525 #endif
526                 } sessions;
527                 struct {
528                         connection_struct *Connections;
529                         /* number of open connections */
530                         struct bitmap *bmap;
531                         int num_open;
532                 } tcons;
533                 struct smb_signing_state *signing_state;
534                 /* List to store partial SPNEGO auth fragments. */
535                 struct pending_auth_data *pd_list;
536
537                 struct notify_mid_map *notify_mid_maps;
538
539                 struct {
540                         struct bitmap *dptr_bmap;
541                         struct dptr_struct *dirptrs;
542                         int dirhandles_open;
543                 } searches;
544                 struct {
545                         /* dlink list we store pending lock records on. */
546                         struct blocking_lock_record *blocking_lock_queue;
547                         /* dlink list we move cancelled lock records onto. */
548                         struct blocking_lock_record *blocking_lock_cancelled_queue;
549
550                         /* The event that makes us process our blocking lock queue */
551                         struct timed_event *brl_timeout;
552
553                         bool blocking_lock_unlock_state;
554                         bool blocking_lock_cancel_state;
555                 } locks;
556         } smb1;
557         struct {
558                 struct tevent_context *event_ctx;
559                 struct tevent_queue *recv_queue;
560                 struct tevent_queue *send_queue;
561                 struct tstream_context *stream;
562                 struct {
563                         /* an id tree used to allocate vuids */
564                         /* this holds info on session vuids that are already
565                          * validated for this VC */
566                         struct idr_context *idtree;
567
568                         /* this is the limit of vuid values for this connection */
569                         uint64_t limit;
570
571                         struct smbd_smb2_session *list;
572                 } sessions;
573                 struct smbd_smb2_request *requests;
574         } smb2;
575 };
576
577 extern struct smbd_server_connection *smbd_server_conn;
578
579 void smbd_init_globals(void);