smbd: qfsinfo has fixed/variable buffers
[Samba.git] / source3 / smbd / globals.h
blob9ea5e25bc038a3eb144d4b82e014cb61f379baa9
1 /*
2 Unix SMB/Netbios implementation.
3 smbd globals
4 Copyright (C) Stefan Metzmacher 2009
5 Copyright (C) Jeremy Allison 2010
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.
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.
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/>.
21 #include "system/select.h"
22 #include "librpc/gen_ndr/smbXsrv.h"
24 extern int aio_pending_size;
25 extern int outstanding_aio_calls;
27 #ifdef USE_DMAPI
28 struct smbd_dmapi_context;
29 extern struct smbd_dmapi_context *dmapi_ctx;
30 #endif
32 extern bool dfree_broken;
34 /* how many write cache buffers have been allocated */
35 extern unsigned int allocated_write_caches;
37 /* A singleton cache to speed up searching by dev/inode. */
38 struct fsp_singleton_cache {
39 files_struct *fsp;
40 struct file_id id;
43 extern const struct mangle_fns *mangle_fns;
45 extern unsigned char *chartest;
46 struct tdb_context;
47 extern struct tdb_context *tdb_mangled_cache;
50 this determines how many characters are used from the original filename
51 in the 8.3 mangled name. A larger value leads to a weaker hash and more collisions.
52 The largest possible value is 6.
54 extern unsigned mangle_prefix;
56 struct msg_state;
58 extern bool logged_ioctl_message;
60 extern int trans_num;
62 extern time_t last_smb_conf_reload_time;
63 extern time_t last_printer_reload_time;
64 extern pid_t background_lpq_updater_pid;
66 /****************************************************************************
67 structure to hold a linked list of queued messages.
68 for processing.
69 ****************************************************************************/
70 extern uint32_t common_flags2;
72 extern struct smb_trans_enc_state *partial_srv_trans_enc_ctx;
73 extern struct smb_trans_enc_state *srv_trans_enc_ctx;
75 struct sec_ctx {
76 struct security_unix_token ut;
77 struct security_token *token;
79 /* A stack of security contexts. We include the current context as being
80 the first one, so there is room for another MAX_SEC_CTX_DEPTH more. */
81 extern struct sec_ctx sec_ctx_stack[MAX_SEC_CTX_DEPTH + 1];
82 extern int sec_ctx_stack_ndx;
83 extern bool become_uid_done;
84 extern bool become_gid_done;
86 extern connection_struct *last_conn;
87 extern uint16_t last_flags;
89 extern uint32_t global_client_caps;
91 extern uint16_t fnf_handle;
93 struct conn_ctx {
94 connection_struct *conn;
95 uint64_t vuid;
97 /* A stack of current_user connection contexts. */
98 extern struct conn_ctx conn_ctx_stack[MAX_SEC_CTX_DEPTH];
99 extern int conn_ctx_stack_ndx;
101 struct vfs_init_function_entry;
102 extern struct vfs_init_function_entry *backends;
103 extern char *sparse_buf;
104 extern char *LastDir;
106 struct smbd_parent_context;
107 extern struct smbd_parent_context *am_parent;
108 extern struct memcache *smbd_memcache_ctx;
109 extern bool exit_firsttime;
111 struct tstream_context;
112 struct smbd_smb2_request;
114 DATA_BLOB negprot_spnego(TALLOC_CTX *ctx, struct smbd_server_connection *sconn);
116 void smbd_lock_socket(struct smbd_server_connection *sconn);
117 void smbd_unlock_socket(struct smbd_server_connection *sconn);
119 NTSTATUS smbd_do_locking(struct smb_request *req,
120 files_struct *fsp,
121 uint8_t type,
122 int32_t timeout,
123 uint16_t num_ulocks,
124 struct smbd_lock_element *ulocks,
125 uint16_t num_locks,
126 struct smbd_lock_element *locks,
127 bool *async);
129 NTSTATUS smbd_do_qfilepathinfo(connection_struct *conn,
130 TALLOC_CTX *mem_ctx,
131 uint16_t info_level,
132 files_struct *fsp,
133 struct smb_filename *smb_fname,
134 bool delete_pending,
135 struct timespec write_time_ts,
136 struct ea_list *ea_list,
137 int lock_data_count,
138 char *lock_data,
139 uint16_t flags2,
140 unsigned int max_data_bytes,
141 size_t *fixed_portion,
142 char **ppdata,
143 unsigned int *pdata_size);
145 NTSTATUS smbd_do_setfilepathinfo(connection_struct *conn,
146 struct smb_request *req,
147 TALLOC_CTX *mem_ctx,
148 uint16_t info_level,
149 files_struct *fsp,
150 struct smb_filename *smb_fname,
151 char **ppdata, int total_data,
152 int *ret_data_size);
154 NTSTATUS smbd_do_qfsinfo(connection_struct *conn,
155 TALLOC_CTX *mem_ctx,
156 uint16_t info_level,
157 uint16_t flags2,
158 unsigned int max_data_bytes,
159 size_t *fixed_portion,
160 struct smb_filename *smb_fname,
161 char **ppdata,
162 int *ret_data_len);
164 bool smbd_dirptr_get_entry(TALLOC_CTX *ctx,
165 struct dptr_struct *dirptr,
166 const char *mask,
167 uint32_t dirtype,
168 bool dont_descend,
169 bool ask_sharemode,
170 bool (*match_fn)(TALLOC_CTX *ctx,
171 void *private_data,
172 const char *dname,
173 const char *mask,
174 char **_fname),
175 bool (*mode_fn)(TALLOC_CTX *ctx,
176 void *private_data,
177 struct smb_filename *smb_fname,
178 uint32_t *_mode),
179 void *private_data,
180 char **_fname,
181 struct smb_filename **_smb_fname,
182 uint32_t *_mode,
183 long *_prev_offset);
185 bool smbd_dirptr_lanman2_entry(TALLOC_CTX *ctx,
186 connection_struct *conn,
187 struct dptr_struct *dirptr,
188 uint16 flags2,
189 const char *path_mask,
190 uint32 dirtype,
191 int info_level,
192 int requires_resume_key,
193 bool dont_descend,
194 bool ask_sharemode,
195 uint8_t align,
196 bool do_pad,
197 char **ppdata,
198 char *base_data,
199 char *end_data,
200 int space_remaining,
201 bool *out_of_space,
202 bool *got_exact_match,
203 int *_last_entry_off,
204 struct ea_list *name_list);
206 NTSTATUS smbd_calculate_access_mask(connection_struct *conn,
207 const struct smb_filename *smb_fname,
208 bool use_privs,
209 uint32_t access_mask,
210 uint32_t *access_mask_out);
212 void smbd_notify_cancel_by_smbreq(const struct smb_request *smbreq);
214 void smbd_server_connection_terminate_ex(struct smbd_server_connection *sconn,
215 const char *reason,
216 const char *location);
217 #define smbd_server_connection_terminate(sconn, reason) \
218 smbd_server_connection_terminate_ex(sconn, reason, __location__)
220 const char *smb2_opcode_name(uint16_t opcode);
221 bool smbd_is_smb2_header(const uint8_t *inbuf, size_t size);
223 void reply_smb2002(struct smb_request *req, uint16_t choice);
224 void reply_smb20ff(struct smb_request *req, uint16_t choice);
225 void smbd_smb2_first_negprot(struct smbd_server_connection *sconn,
226 uint8_t *inbuf, size_t size);
228 NTSTATUS smbd_smb2_request_error_ex(struct smbd_smb2_request *req,
229 NTSTATUS status,
230 DATA_BLOB *info,
231 const char *location);
232 #define smbd_smb2_request_error(req, status) \
233 smbd_smb2_request_error_ex(req, status, NULL, __location__)
234 NTSTATUS smbd_smb2_request_done_ex(struct smbd_smb2_request *req,
235 NTSTATUS status,
236 DATA_BLOB body, DATA_BLOB *dyn,
237 const char *location);
238 #define smbd_smb2_request_done(req, body, dyn) \
239 smbd_smb2_request_done_ex(req, NT_STATUS_OK, body, dyn, __location__)
241 NTSTATUS smbd_smb2_send_oplock_break(struct smbd_server_connection *sconn,
242 struct smbXsrv_session *session,
243 struct smbXsrv_tcon *tcon,
244 struct smbXsrv_open *op,
245 uint8_t oplock_level);
247 NTSTATUS smbd_smb2_request_pending_queue(struct smbd_smb2_request *req,
248 struct tevent_req *subreq,
249 uint32_t defer_time);
251 struct smb_request *smbd_smb2_fake_smb_request(struct smbd_smb2_request *req);
252 size_t smbd_smb2_unread_bytes(struct smbd_smb2_request *req);
253 void remove_smb2_chained_fsp(files_struct *fsp);
255 NTSTATUS smbd_smb2_request_verify_creditcharge(struct smbd_smb2_request *req,
256 uint32_t data_length);
258 NTSTATUS smbd_smb2_request_verify_sizes(struct smbd_smb2_request *req,
259 size_t expected_body_size);
261 NTSTATUS smbd_smb2_request_process_negprot(struct smbd_smb2_request *req);
262 NTSTATUS smbd_smb2_request_process_sesssetup(struct smbd_smb2_request *req);
263 NTSTATUS smbd_smb2_request_process_logoff(struct smbd_smb2_request *req);
264 NTSTATUS smbd_smb2_request_process_tcon(struct smbd_smb2_request *req);
265 NTSTATUS smbd_smb2_request_process_tdis(struct smbd_smb2_request *req);
266 NTSTATUS smbd_smb2_request_process_create(struct smbd_smb2_request *req);
267 NTSTATUS smbd_smb2_request_process_close(struct smbd_smb2_request *req);
268 NTSTATUS smbd_smb2_request_process_flush(struct smbd_smb2_request *req);
269 NTSTATUS smbd_smb2_request_process_read(struct smbd_smb2_request *req);
270 NTSTATUS smb2_read_complete(struct tevent_req *req, ssize_t nread, int err);
271 NTSTATUS smbd_smb2_request_process_write(struct smbd_smb2_request *req);
272 NTSTATUS smb2_write_complete(struct tevent_req *req, ssize_t nwritten, int err);
273 NTSTATUS smb2_write_complete_nosync(struct tevent_req *req, ssize_t nwritten,
274 int err);
275 NTSTATUS smbd_smb2_request_process_lock(struct smbd_smb2_request *req);
276 NTSTATUS smbd_smb2_request_process_ioctl(struct smbd_smb2_request *req);
277 NTSTATUS smbd_smb2_request_process_keepalive(struct smbd_smb2_request *req);
278 NTSTATUS smbd_smb2_request_process_find(struct smbd_smb2_request *req);
279 NTSTATUS smbd_smb2_request_process_notify(struct smbd_smb2_request *req);
280 NTSTATUS smbd_smb2_request_process_getinfo(struct smbd_smb2_request *req);
281 NTSTATUS smbd_smb2_request_process_setinfo(struct smbd_smb2_request *req);
282 NTSTATUS smbd_smb2_request_process_break(struct smbd_smb2_request *req);
283 NTSTATUS smbd_smb2_request_dispatch(struct smbd_smb2_request *req);
284 void smbd_smb2_request_dispatch_immediate(struct tevent_context *ctx,
285 struct tevent_immediate *im,
286 void *private_data);
288 /* SMB1 -> SMB2 glue. */
289 void send_break_message_smb2(files_struct *fsp, int level);
290 struct blocking_lock_record *get_pending_smb2req_blr(struct smbd_smb2_request *smb2req);
291 bool push_blocking_lock_request_smb2( struct byte_range_lock *br_lck,
292 struct smb_request *req,
293 files_struct *fsp,
294 int lock_timeout,
295 int lock_num,
296 uint64_t smblctx,
297 enum brl_type lock_type,
298 enum brl_flavour lock_flav,
299 uint64_t offset,
300 uint64_t count,
301 uint64_t blocking_smblctx);
302 void process_blocking_lock_queue_smb2(
303 struct smbd_server_connection *sconn, struct timeval tv_curr);
304 void cancel_pending_lock_requests_by_fid_smb2(files_struct *fsp,
305 struct byte_range_lock *br_lck,
306 enum file_close_type close_type);
307 /* From smbd/smb2_create.c */
308 int map_smb2_oplock_levels_to_samba(uint8_t in_oplock_level);
309 bool get_deferred_open_message_state_smb2(struct smbd_smb2_request *smb2req,
310 struct timeval *p_request_time,
311 void **pp_state);
312 bool open_was_deferred_smb2(struct smbd_server_connection *sconn,
313 uint64_t mid);
314 void remove_deferred_open_message_smb2(
315 struct smbd_server_connection *sconn, uint64_t mid);
316 bool schedule_deferred_open_message_smb2(
317 struct smbd_server_connection *sconn, uint64_t mid);
318 bool push_deferred_open_message_smb2(struct smbd_smb2_request *smb2req,
319 struct timeval request_time,
320 struct timeval timeout,
321 struct file_id id,
322 char *private_data,
323 size_t priv_len);
325 struct smbXsrv_connection {
326 struct smbd_server_connection *sconn;
328 const struct tsocket_address *local_address;
329 const struct tsocket_address *remote_address;
330 const char *remote_hostname;
332 struct tevent_context *ev_ctx;
333 struct messaging_context *msg_ctx;
335 enum protocol_types protocol;
337 struct {
338 struct {
339 uint32_t capabilities;
340 struct GUID guid;
341 uint16_t security_mode;
342 uint16_t num_dialects;
343 uint16_t *dialects;
344 } client;
345 struct {
346 uint32_t capabilities;
347 struct GUID guid;
348 uint16_t security_mode;
349 uint16_t dialect;
350 uint32_t max_trans;
351 uint32_t max_read;
352 uint32_t max_write;
353 } server;
354 } smb2;
356 struct msg_state *msg_state;
359 * Link into libasys for asynchronous operations
361 struct asys_context *asys_ctx;
362 struct tevent_fd *asys_fde;
364 uint64_t smbd_idle_profstamp;
367 * this session_table is used for SMB1 and SMB2,
369 struct smbXsrv_session_table *session_table;
371 * this tcon_table is only used for SMB1.
373 struct smbXsrv_tcon_table *tcon_table;
375 * this open_table is used for SMB1 and SMB2,
376 * because we have a global sconn->real_max_open_files
377 * limit.
379 struct smbXsrv_open_table *open_table;
382 NTSTATUS smbXsrv_version_global_init(const struct server_id *server_id);
383 uint32_t smbXsrv_version_global_current(void);
385 NTSTATUS smbXsrv_connection_init_tables(struct smbXsrv_connection *conn,
386 enum protocol_types protocol);
388 NTSTATUS smbXsrv_session_global_init(void);
389 NTSTATUS smbXsrv_session_create(struct smbXsrv_connection *conn,
390 NTTIME now,
391 struct smbXsrv_session **_session);
392 NTSTATUS smbXsrv_session_update(struct smbXsrv_session *session);
393 NTSTATUS smbXsrv_session_logoff(struct smbXsrv_session *session);
394 NTSTATUS smbXsrv_session_logoff_all(struct smbXsrv_connection *conn);
395 NTSTATUS smb1srv_session_table_init(struct smbXsrv_connection *conn);
396 NTSTATUS smb1srv_session_lookup(struct smbXsrv_connection *conn,
397 uint16_t vuid, NTTIME now,
398 struct smbXsrv_session **session);
399 NTSTATUS smb2srv_session_table_init(struct smbXsrv_connection *conn);
400 NTSTATUS smb2srv_session_lookup(struct smbXsrv_connection *conn,
401 uint64_t session_id, NTTIME now,
402 struct smbXsrv_session **session);
403 struct smbXsrv_session_global0;
404 NTSTATUS smbXsrv_session_global_traverse(
405 int (*fn)(struct smbXsrv_session_global0 *, void *),
406 void *private_data);
407 struct tevent_req *smb2srv_session_close_previous_send(TALLOC_CTX *mem_ctx,
408 struct tevent_context *ev,
409 struct smbXsrv_connection *conn,
410 struct auth_session_info *session_info,
411 uint64_t previous_session_id,
412 uint64_t current_session_id);
413 NTSTATUS smb2srv_session_close_previous_recv(struct tevent_req *req);
415 NTSTATUS smbXsrv_tcon_global_init(void);
416 NTSTATUS smbXsrv_tcon_update(struct smbXsrv_tcon *tcon);
417 NTSTATUS smbXsrv_tcon_disconnect(struct smbXsrv_tcon *tcon, uint64_t vuid);
418 NTSTATUS smb1srv_tcon_table_init(struct smbXsrv_connection *conn);
419 NTSTATUS smb1srv_tcon_create(struct smbXsrv_connection *conn,
420 NTTIME now,
421 struct smbXsrv_tcon **_tcon);
422 NTSTATUS smb1srv_tcon_lookup(struct smbXsrv_connection *conn,
423 uint16_t tree_id, NTTIME now,
424 struct smbXsrv_tcon **tcon);
425 NTSTATUS smb1srv_tcon_disconnect_all(struct smbXsrv_connection *conn);
426 NTSTATUS smb2srv_tcon_table_init(struct smbXsrv_session *session);
427 NTSTATUS smb2srv_tcon_create(struct smbXsrv_session *session,
428 NTTIME now,
429 struct smbXsrv_tcon **_tcon);
430 NTSTATUS smb2srv_tcon_lookup(struct smbXsrv_session *session,
431 uint32_t tree_id, NTTIME now,
432 struct smbXsrv_tcon **tcon);
433 NTSTATUS smb2srv_tcon_disconnect_all(struct smbXsrv_session *session);
434 struct smbXsrv_tcon_global0;
435 NTSTATUS smbXsrv_tcon_global_traverse(
436 int (*fn)(struct smbXsrv_tcon_global0 *, void *),
437 void *private_data);
439 NTSTATUS smbXsrv_open_global_init(void);
440 NTSTATUS smbXsrv_open_create(struct smbXsrv_connection *conn,
441 struct auth_session_info *session_info,
442 NTTIME now,
443 struct smbXsrv_open **_open);
444 uint32_t smbXsrv_open_hash(struct smbXsrv_open *_open);
445 NTSTATUS smbXsrv_open_update(struct smbXsrv_open *_open);
446 NTSTATUS smbXsrv_open_close(struct smbXsrv_open *op, NTTIME now);
447 NTSTATUS smb1srv_open_table_init(struct smbXsrv_connection *conn);
448 NTSTATUS smb1srv_open_lookup(struct smbXsrv_connection *conn,
449 uint16_t fnum, NTTIME now,
450 struct smbXsrv_open **_open);
451 NTSTATUS smb2srv_open_table_init(struct smbXsrv_connection *conn);
452 NTSTATUS smb2srv_open_lookup(struct smbXsrv_connection *conn,
453 uint64_t persistent_id,
454 uint64_t volatile_id,
455 NTTIME now,
456 struct smbXsrv_open **_open);
457 NTSTATUS smb2srv_open_recreate(struct smbXsrv_connection *conn,
458 struct auth_session_info *session_info,
459 uint64_t persistent_id,
460 struct GUID create_guid,
461 NTTIME now,
462 struct smbXsrv_open **_open);
463 struct smbXsrv_open_global0;
464 NTSTATUS smbXsrv_open_global_traverse(
465 int (*fn)(struct smbXsrv_open_global0 *, void *),
466 void *private_data);
468 NTSTATUS smbXsrv_open_cleanup(uint64_t persistent_id);
471 struct smbd_smb2_request {
472 struct smbd_smb2_request *prev, *next;
474 struct smbd_server_connection *sconn;
476 /* the session the request operates on, maybe NULL */
477 struct smbXsrv_session *session;
478 uint64_t last_session_id;
480 /* the tcon the request operates on, maybe NULL */
481 struct smbXsrv_tcon *tcon;
482 uint32_t last_tid;
484 int current_idx;
485 bool do_signing;
486 bool do_encryption;
487 struct tevent_timer *async_te;
488 bool compound_related;
491 * the encryption key for the whole
492 * compound chain
494 DATA_BLOB first_key;
496 * the signing key for the last
497 * request/response of a compound chain
499 DATA_BLOB last_key;
501 struct timeval request_time;
503 /* fake smb1 request. */
504 struct smb_request *smb1req;
505 struct files_struct *compat_chain_fsp;
508 * The sub request for async backend calls.
509 * This is used for SMB2 Cancel.
511 struct tevent_req *subreq;
513 #define SMBD_SMB2_TF_IOV_OFS 0
514 #define SMBD_SMB2_HDR_IOV_OFS 1
515 #define SMBD_SMB2_BODY_IOV_OFS 2
516 #define SMBD_SMB2_DYN_IOV_OFS 3
518 #define SMBD_SMB2_NUM_IOV_PER_REQ 4
520 #define SMBD_SMB2_IOV_IDX_OFS(req,dir,idx,ofs) \
521 (&req->dir.vector[(idx)+(ofs)])
523 #define SMBD_SMB2_IDX_TF_IOV(req,dir,idx) \
524 SMBD_SMB2_IOV_IDX_OFS(req,dir,idx,SMBD_SMB2_TF_IOV_OFS)
525 #define SMBD_SMB2_IDX_HDR_IOV(req,dir,idx) \
526 SMBD_SMB2_IOV_IDX_OFS(req,dir,idx,SMBD_SMB2_HDR_IOV_OFS)
527 #define SMBD_SMB2_IDX_BODY_IOV(req,dir,idx) \
528 SMBD_SMB2_IOV_IDX_OFS(req,dir,idx,SMBD_SMB2_BODY_IOV_OFS)
529 #define SMBD_SMB2_IDX_DYN_IOV(req,dir,idx) \
530 SMBD_SMB2_IOV_IDX_OFS(req,dir,idx,SMBD_SMB2_DYN_IOV_OFS)
532 #define SMBD_SMB2_IN_TF_IOV(req) SMBD_SMB2_IDX_TF_IOV(req,in,req->current_idx)
533 #define SMBD_SMB2_IN_TF_PTR(req) (uint8_t *)(SMBD_SMB2_IN_TF_IOV(req)->iov_base)
534 #define SMBD_SMB2_IN_HDR_IOV(req) SMBD_SMB2_IDX_HDR_IOV(req,in,req->current_idx)
535 #define SMBD_SMB2_IN_HDR_PTR(req) (uint8_t *)(SMBD_SMB2_IN_HDR_IOV(req)->iov_base)
536 #define SMBD_SMB2_IN_BODY_IOV(req) SMBD_SMB2_IDX_BODY_IOV(req,in,req->current_idx)
537 #define SMBD_SMB2_IN_BODY_PTR(req) (uint8_t *)(SMBD_SMB2_IN_BODY_IOV(req)->iov_base)
538 #define SMBD_SMB2_IN_BODY_LEN(req) (SMBD_SMB2_IN_BODY_IOV(req)->iov_len)
539 #define SMBD_SMB2_IN_DYN_IOV(req) SMBD_SMB2_IDX_DYN_IOV(req,in,req->current_idx)
540 #define SMBD_SMB2_IN_DYN_PTR(req) (uint8_t *)(SMBD_SMB2_IN_DYN_IOV(req)->iov_base)
541 #define SMBD_SMB2_IN_DYN_LEN(req) (SMBD_SMB2_IN_DYN_IOV(req)->iov_len)
543 #define SMBD_SMB2_OUT_TF_IOV(req) SMBD_SMB2_IDX_TF_IOV(req,out,req->current_idx)
544 #define SMBD_SMB2_OUT_TF_PTR(req) (uint8_t *)(SMBD_SMB2_OUT_TF_IOV(req)->iov_base)
545 #define SMBD_SMB2_OUT_HDR_IOV(req) SMBD_SMB2_IDX_HDR_IOV(req,out,req->current_idx)
546 #define SMBD_SMB2_OUT_HDR_PTR(req) (uint8_t *)(SMBD_SMB2_OUT_HDR_IOV(req)->iov_base)
547 #define SMBD_SMB2_OUT_BODY_IOV(req) SMBD_SMB2_IDX_BODY_IOV(req,out,req->current_idx)
548 #define SMBD_SMB2_OUT_BODY_PTR(req) (uint8_t *)(SMBD_SMB2_OUT_BODY_IOV(req)->iov_base)
549 #define SMBD_SMB2_OUT_BODY_LEN(req) (SMBD_SMB2_OUT_BODY_IOV(req)->iov_len)
550 #define SMBD_SMB2_OUT_DYN_IOV(req) SMBD_SMB2_IDX_DYN_IOV(req,out,req->current_idx)
551 #define SMBD_SMB2_OUT_DYN_PTR(req) (uint8_t *)(SMBD_SMB2_OUT_DYN_IOV(req)->iov_base)
552 #define SMBD_SMB2_OUT_DYN_LEN(req) (SMBD_SMB2_OUT_DYN_IOV(req)->iov_len)
554 #define SMBD_SMB2_SHORT_RECEIVEFILE_WRITE_LEN (SMB2_HDR_BODY + 0x30)
556 struct {
558 * vector[0] TRANSPORT HEADER (empty)
560 * vector[1] SMB2_TRANSFORM (optional)
561 * vector[2] SMB2
562 * vector[3] fixed body
563 * vector[4] dynamic body
567 * vector[5] SMB2_TRANSFORM (optional)
568 * vector[6] SMB2
569 * vector[7] fixed body
570 * vector[8] dynamic body
575 struct iovec *vector;
576 int vector_count;
577 } in;
578 struct {
579 /* the NBT header is not allocated */
580 uint8_t nbt_hdr[4];
582 * vector[0] TRANSPORT HEADER
584 * vector[1] SMB2_TRANSFORM (optional)
585 * vector[2] SMB2
586 * vector[3] fixed body
587 * vector[4] dynamic body
591 * vector[5] SMB2_TRANSFORM (empty)
592 * vector[6] SMB2
593 * vector[7] fixed body
594 * vector[8] dynamic body
599 struct iovec *vector;
600 int vector_count;
601 } out;
604 struct smbd_server_connection;
605 struct user_struct;
607 struct pending_message_list;
608 struct pending_auth_data;
610 struct user_struct {
611 struct user_struct *next, *prev;
612 uint64_t vuid; /* Tag for this entry. */
614 char *session_keystr; /* used by utmp and pam session code.
615 TDB key string */
616 int homes_snum;
618 struct auth_session_info *session_info;
620 struct smbXsrv_session *session;
623 struct smbd_server_connection {
624 int sock;
625 const struct tsocket_address *local_address;
626 const struct tsocket_address *remote_address;
627 const char *remote_hostname;
628 struct tevent_context *ev_ctx;
629 struct messaging_context *msg_ctx;
630 struct sys_notify_context *sys_notify_ctx;
631 struct notify_context *notify_ctx;
632 struct {
633 bool got_session;
634 } nbt;
635 bool using_smb2;
636 int trans_num;
638 size_t num_users;
639 struct user_struct *users;
641 size_t num_connections;
642 struct connection_struct *connections;
644 size_t num_files;
645 struct files_struct *files;
647 int real_max_open_files;
648 struct fsp_singleton_cache fsp_fi_cache;
650 struct pending_message_list *deferred_open_queue;
653 /* open directory handles. */
654 struct {
655 struct bitmap *dptr_bmap;
656 struct dptr_struct *dirptrs;
657 int dirhandles_open;
658 } searches;
660 uint64_t num_requests;
662 /* Current number of oplocks we have outstanding. */
663 struct {
664 int32_t exclusive_open;
665 int32_t level_II_open;
666 struct kernel_oplocks *kernel_ops;
667 } oplocks;
669 struct {
670 struct tevent_fd *fde;
672 struct {
674 * fd for the fcntl lock mutexing access to our sock
676 int socket_lock_fd;
679 * fd for the trusted pipe from
680 * echo handler child
682 int trusted_fd;
685 * fde for the trusted_fd
687 struct tevent_fd *trusted_fde;
690 * Reference count for the fcntl lock to
691 * allow recursive locks.
693 int ref_count;
694 } echo_handler;
696 struct {
697 bool encrypted_passwords;
698 bool spnego;
699 struct auth4_context *auth_context;
700 bool done;
702 * Size of the data we can receive. Set by us.
703 * Can be modified by the max xmit parameter.
705 int max_recv;
706 } negprot;
708 struct {
709 uint16_t client_major;
710 uint16_t client_minor;
711 uint32_t client_cap_low;
712 uint32_t client_cap_high;
713 } unix_info;
715 struct {
716 bool done_sesssetup;
718 * Size of data we can send to client. Set
719 * by the client for all protocols above CORE.
720 * Set by us for CORE protocol.
722 int max_send;
723 uint64_t last_session_tag;
724 } sessions;
725 struct smb_signing_state *signing_state;
727 struct notify_mid_map *notify_mid_maps;
729 struct {
730 /* dlink list we store pending lock records on. */
731 struct blocking_lock_record *blocking_lock_queue;
732 /* dlink list we move cancelled lock records onto. */
733 struct blocking_lock_record *blocking_lock_cancelled_queue;
735 /* The event that makes us process our blocking lock queue */
736 struct tevent_timer *brl_timeout;
738 bool blocking_lock_unlock_state;
739 bool blocking_lock_cancel_state;
740 } locks;
741 } smb1;
742 struct {
743 struct tevent_queue *recv_queue;
744 struct tevent_queue *send_queue;
745 struct tstream_context *stream;
746 bool negprot_2ff;
747 struct {
748 /* The event that makes us process our blocking lock queue */
749 struct tevent_timer *brl_timeout;
750 bool blocking_lock_unlock_state;
751 } locks;
752 struct smbd_smb2_request *requests;
754 * seqnum_low is the lowest sequence number
755 * we will accept.
757 uint64_t seqnum_low;
759 * seqnum_range is the range of credits we have
760 * granted from the sequence windows starting
761 * at seqnum_low.
763 * This gets incremented when new credits are
764 * granted and gets decremented when the
765 * lowest sequence number is consumed
766 * (when seqnum_low gets incremented).
768 uint16_t seqnum_range;
770 * credits_grantedThe number of credits we have currently granted
771 * to the client.
773 * This gets incremented when new credits are
774 * granted and gets decremented when any credit
775 * is comsumed.
777 * Note: the decrementing is different compared
778 * to seqnum_range.
780 uint16_t credits_granted;
782 * The maximum number of credits we will ever
783 * grant to the client.
785 * Typically we will only grant 1/16th of
786 * max_credits.
788 * This is the "server max credits" parameter.
790 uint16_t max_credits;
792 * a bitmap of size max_credits
794 struct bitmap *credits_bitmap;
795 bool supports_multicredit;
796 uint32_t max_trans;
797 uint32_t max_read;
798 uint32_t max_write;
799 } smb2;
801 struct smbXsrv_connection *conn;
804 extern struct smbXsrv_connection *global_smbXsrv_connection;
806 void smbd_init_globals(void);