2 Unix SMB/Netbios implementation.
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
;
28 struct smbd_dmapi_context
;
29 extern struct smbd_dmapi_context
*dmapi_ctx
;
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
{
43 extern const struct mangle_fns
*mangle_fns
;
45 extern unsigned char *chartest
;
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
;
58 extern bool logged_ioctl_message
;
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.
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
;
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
;
94 connection_struct
*conn
;
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
,
124 struct smbd_lock_element
*ulocks
,
126 struct smbd_lock_element
*locks
,
129 NTSTATUS
smbd_do_qfilepathinfo(connection_struct
*conn
,
133 struct smb_filename
*smb_fname
,
135 struct timespec write_time_ts
,
136 struct ea_list
*ea_list
,
140 unsigned int max_data_bytes
,
141 size_t *fixed_portion
,
143 unsigned int *pdata_size
);
145 NTSTATUS
smbd_do_setfilepathinfo(connection_struct
*conn
,
146 struct smb_request
*req
,
150 struct smb_filename
*smb_fname
,
151 char **ppdata
, int total_data
,
154 NTSTATUS
smbd_do_qfsinfo(connection_struct
*conn
,
158 unsigned int max_data_bytes
,
159 size_t *fixed_portion
,
160 struct smb_filename
*smb_fname
,
164 bool smbd_dirptr_get_entry(TALLOC_CTX
*ctx
,
165 struct dptr_struct
*dirptr
,
170 bool (*match_fn
)(TALLOC_CTX
*ctx
,
175 bool (*mode_fn
)(TALLOC_CTX
*ctx
,
177 struct smb_filename
*smb_fname
,
181 struct smb_filename
**_smb_fname
,
185 bool smbd_dirptr_lanman2_entry(TALLOC_CTX
*ctx
,
186 connection_struct
*conn
,
187 struct dptr_struct
*dirptr
,
189 const char *path_mask
,
192 int requires_resume_key
,
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
,
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
,
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 DATA_BLOB
smbd_smb2_generate_outbody(struct smbd_smb2_request
*req
, size_t size
);
230 NTSTATUS
smbd_smb2_request_error_ex(struct smbd_smb2_request
*req
,
233 const char *location
);
234 #define smbd_smb2_request_error(req, status) \
235 smbd_smb2_request_error_ex(req, status, NULL, __location__)
236 NTSTATUS
smbd_smb2_request_done_ex(struct smbd_smb2_request
*req
,
238 DATA_BLOB body
, DATA_BLOB
*dyn
,
239 const char *location
);
240 #define smbd_smb2_request_done(req, body, dyn) \
241 smbd_smb2_request_done_ex(req, NT_STATUS_OK, body, dyn, __location__)
243 NTSTATUS
smbd_smb2_send_oplock_break(struct smbd_server_connection
*sconn
,
244 struct smbXsrv_session
*session
,
245 struct smbXsrv_tcon
*tcon
,
246 struct smbXsrv_open
*op
,
247 uint8_t oplock_level
);
249 NTSTATUS
smbd_smb2_request_pending_queue(struct smbd_smb2_request
*req
,
250 struct tevent_req
*subreq
,
251 uint32_t defer_time
);
253 struct smb_request
*smbd_smb2_fake_smb_request(struct smbd_smb2_request
*req
);
254 size_t smbd_smb2_unread_bytes(struct smbd_smb2_request
*req
);
255 void remove_smb2_chained_fsp(files_struct
*fsp
);
257 NTSTATUS
smbd_smb2_request_verify_creditcharge(struct smbd_smb2_request
*req
,
258 uint32_t data_length
);
260 NTSTATUS
smbd_smb2_request_verify_sizes(struct smbd_smb2_request
*req
,
261 size_t expected_body_size
);
263 enum protocol_types
smbd_smb2_protocol_dialect_match(const uint8_t *indyn
,
264 const int dialect_count
,
266 NTSTATUS
smbd_smb2_request_process_negprot(struct smbd_smb2_request
*req
);
267 NTSTATUS
smbd_smb2_request_process_sesssetup(struct smbd_smb2_request
*req
);
268 NTSTATUS
smbd_smb2_request_process_logoff(struct smbd_smb2_request
*req
);
269 NTSTATUS
smbd_smb2_request_process_tcon(struct smbd_smb2_request
*req
);
270 NTSTATUS
smbd_smb2_request_process_tdis(struct smbd_smb2_request
*req
);
271 NTSTATUS
smbd_smb2_request_process_create(struct smbd_smb2_request
*req
);
272 NTSTATUS
smbd_smb2_request_process_close(struct smbd_smb2_request
*req
);
273 NTSTATUS
smbd_smb2_request_process_flush(struct smbd_smb2_request
*req
);
274 NTSTATUS
smbd_smb2_request_process_read(struct smbd_smb2_request
*req
);
275 NTSTATUS
smb2_read_complete(struct tevent_req
*req
, ssize_t nread
, int err
);
276 NTSTATUS
smbd_smb2_request_process_write(struct smbd_smb2_request
*req
);
277 NTSTATUS
smb2_write_complete(struct tevent_req
*req
, ssize_t nwritten
, int err
);
278 NTSTATUS
smb2_write_complete_nosync(struct tevent_req
*req
, ssize_t nwritten
,
280 NTSTATUS
smbd_smb2_request_process_lock(struct smbd_smb2_request
*req
);
281 NTSTATUS
smbd_smb2_request_process_ioctl(struct smbd_smb2_request
*req
);
282 NTSTATUS
smbd_smb2_request_process_keepalive(struct smbd_smb2_request
*req
);
283 NTSTATUS
smbd_smb2_request_process_find(struct smbd_smb2_request
*req
);
284 NTSTATUS
smbd_smb2_request_process_notify(struct smbd_smb2_request
*req
);
285 NTSTATUS
smbd_smb2_request_process_getinfo(struct smbd_smb2_request
*req
);
286 NTSTATUS
smbd_smb2_request_process_setinfo(struct smbd_smb2_request
*req
);
287 NTSTATUS
smbd_smb2_request_process_break(struct smbd_smb2_request
*req
);
288 NTSTATUS
smbd_smb2_request_dispatch(struct smbd_smb2_request
*req
);
289 void smbd_smb2_request_dispatch_immediate(struct tevent_context
*ctx
,
290 struct tevent_immediate
*im
,
293 struct deferred_open_record
;
295 /* SMB1 -> SMB2 glue. */
296 void send_break_message_smb2(files_struct
*fsp
, int level
);
297 struct blocking_lock_record
*get_pending_smb2req_blr(struct smbd_smb2_request
*smb2req
);
298 bool push_blocking_lock_request_smb2( struct byte_range_lock
*br_lck
,
299 struct smb_request
*req
,
304 enum brl_type lock_type
,
305 enum brl_flavour lock_flav
,
308 uint64_t blocking_smblctx
);
309 void process_blocking_lock_queue_smb2(
310 struct smbd_server_connection
*sconn
, struct timeval tv_curr
);
311 void cancel_pending_lock_requests_by_fid_smb2(files_struct
*fsp
,
312 struct byte_range_lock
*br_lck
,
313 enum file_close_type close_type
);
314 /* From smbd/smb2_create.c */
315 int map_smb2_oplock_levels_to_samba(uint8_t in_oplock_level
);
316 bool get_deferred_open_message_state_smb2(struct smbd_smb2_request
*smb2req
,
317 struct timeval
*p_request_time
,
318 struct deferred_open_record
**open_rec
);
319 bool open_was_deferred_smb2(struct smbd_server_connection
*sconn
,
321 void remove_deferred_open_message_smb2(
322 struct smbd_server_connection
*sconn
, uint64_t mid
);
323 bool schedule_deferred_open_message_smb2(
324 struct smbd_server_connection
*sconn
, uint64_t mid
);
325 bool push_deferred_open_message_smb2(struct smbd_smb2_request
*smb2req
,
326 struct timeval request_time
,
327 struct timeval timeout
,
329 struct deferred_open_record
*open_rec
);
331 struct smbXsrv_connection
{
332 struct smbd_server_connection
*sconn
;
334 const struct tsocket_address
*local_address
;
335 const struct tsocket_address
*remote_address
;
336 const char *remote_hostname
;
338 struct tevent_context
*ev_ctx
;
339 struct messaging_context
*msg_ctx
;
341 enum protocol_types protocol
;
345 uint32_t capabilities
;
347 uint16_t security_mode
;
348 uint16_t num_dialects
;
352 uint32_t capabilities
;
354 uint16_t security_mode
;
362 struct msg_state
*msg_state
;
365 * Link into libasys for asynchronous operations
367 struct asys_context
*asys_ctx
;
368 struct tevent_fd
*asys_fde
;
370 uint64_t smbd_idle_profstamp
;
373 * this session_table is used for SMB1 and SMB2,
375 struct smbXsrv_session_table
*session_table
;
376 uint64_t last_session_id
;
378 * this tcon_table is only used for SMB1.
380 struct smbXsrv_tcon_table
*tcon_table
;
382 * this open_table is used for SMB1 and SMB2,
383 * because we have a global sconn->real_max_open_files
386 struct smbXsrv_open_table
*open_table
;
389 NTSTATUS
smbXsrv_version_global_init(const struct server_id
*server_id
);
390 uint32_t smbXsrv_version_global_current(void);
392 NTSTATUS
smbXsrv_connection_init_tables(struct smbXsrv_connection
*conn
,
393 enum protocol_types protocol
);
395 NTSTATUS
smbXsrv_session_global_init(void);
396 NTSTATUS
smbXsrv_session_create(struct smbXsrv_connection
*conn
,
398 struct smbXsrv_session
**_session
);
399 NTSTATUS
smbXsrv_session_update(struct smbXsrv_session
*session
);
400 NTSTATUS
smbXsrv_session_logoff(struct smbXsrv_session
*session
);
401 NTSTATUS
smbXsrv_session_logoff_all(struct smbXsrv_connection
*conn
);
402 NTSTATUS
smb1srv_session_table_init(struct smbXsrv_connection
*conn
);
403 NTSTATUS
smb1srv_session_lookup(struct smbXsrv_connection
*conn
,
404 uint16_t vuid
, NTTIME now
,
405 struct smbXsrv_session
**session
);
406 NTSTATUS
smb2srv_session_table_init(struct smbXsrv_connection
*conn
);
407 NTSTATUS
smb2srv_session_lookup(struct smbXsrv_connection
*conn
,
408 uint64_t session_id
, NTTIME now
,
409 struct smbXsrv_session
**session
);
410 struct smbXsrv_session_global0
;
411 NTSTATUS
smbXsrv_session_global_traverse(
412 int (*fn
)(struct smbXsrv_session_global0
*, void *),
414 struct tevent_req
*smb2srv_session_close_previous_send(TALLOC_CTX
*mem_ctx
,
415 struct tevent_context
*ev
,
416 struct smbXsrv_connection
*conn
,
417 struct auth_session_info
*session_info
,
418 uint64_t previous_session_id
,
419 uint64_t current_session_id
);
420 NTSTATUS
smb2srv_session_close_previous_recv(struct tevent_req
*req
);
422 NTSTATUS
smbXsrv_tcon_global_init(void);
423 NTSTATUS
smbXsrv_tcon_update(struct smbXsrv_tcon
*tcon
);
424 NTSTATUS
smbXsrv_tcon_disconnect(struct smbXsrv_tcon
*tcon
, uint64_t vuid
);
425 NTSTATUS
smb1srv_tcon_table_init(struct smbXsrv_connection
*conn
);
426 NTSTATUS
smb1srv_tcon_create(struct smbXsrv_connection
*conn
,
428 struct smbXsrv_tcon
**_tcon
);
429 NTSTATUS
smb1srv_tcon_lookup(struct smbXsrv_connection
*conn
,
430 uint16_t tree_id
, NTTIME now
,
431 struct smbXsrv_tcon
**tcon
);
432 NTSTATUS
smb1srv_tcon_disconnect_all(struct smbXsrv_connection
*conn
);
433 NTSTATUS
smb2srv_tcon_table_init(struct smbXsrv_session
*session
);
434 NTSTATUS
smb2srv_tcon_create(struct smbXsrv_session
*session
,
436 struct smbXsrv_tcon
**_tcon
);
437 NTSTATUS
smb2srv_tcon_lookup(struct smbXsrv_session
*session
,
438 uint32_t tree_id
, NTTIME now
,
439 struct smbXsrv_tcon
**tcon
);
440 NTSTATUS
smb2srv_tcon_disconnect_all(struct smbXsrv_session
*session
);
441 struct smbXsrv_tcon_global0
;
442 NTSTATUS
smbXsrv_tcon_global_traverse(
443 int (*fn
)(struct smbXsrv_tcon_global0
*, void *),
446 NTSTATUS
smbXsrv_open_global_init(void);
447 NTSTATUS
smbXsrv_open_create(struct smbXsrv_connection
*conn
,
448 struct auth_session_info
*session_info
,
450 struct smbXsrv_open
**_open
);
451 uint32_t smbXsrv_open_hash(struct smbXsrv_open
*_open
);
452 NTSTATUS
smbXsrv_open_update(struct smbXsrv_open
*_open
);
453 NTSTATUS
smbXsrv_open_close(struct smbXsrv_open
*op
, NTTIME now
);
454 NTSTATUS
smb1srv_open_table_init(struct smbXsrv_connection
*conn
);
455 NTSTATUS
smb1srv_open_lookup(struct smbXsrv_connection
*conn
,
456 uint16_t fnum
, NTTIME now
,
457 struct smbXsrv_open
**_open
);
458 NTSTATUS
smb2srv_open_table_init(struct smbXsrv_connection
*conn
);
459 NTSTATUS
smb2srv_open_lookup(struct smbXsrv_connection
*conn
,
460 uint64_t persistent_id
,
461 uint64_t volatile_id
,
463 struct smbXsrv_open
**_open
);
464 NTSTATUS
smb2srv_open_recreate(struct smbXsrv_connection
*conn
,
465 struct auth_session_info
*session_info
,
466 uint64_t persistent_id
,
467 const struct GUID
*create_guid
,
469 struct smbXsrv_open
**_open
);
470 struct smbXsrv_open_global0
;
471 NTSTATUS
smbXsrv_open_global_traverse(
472 int (*fn
)(struct smbXsrv_open_global0
*, void *),
475 NTSTATUS
smbXsrv_open_cleanup(uint64_t persistent_id
);
477 struct smbd_smb2_send_queue
{
478 struct smbd_smb2_send_queue
*prev
, *next
;
480 DATA_BLOB
*sendfile_header
;
481 struct iovec
*vector
;
487 struct smbd_smb2_request
{
488 struct smbd_smb2_request
*prev
, *next
;
490 struct smbd_server_connection
*sconn
;
492 struct smbd_smb2_send_queue queue_entry
;
494 /* the session the request operates on, maybe NULL */
495 struct smbXsrv_session
*session
;
496 uint64_t last_session_id
;
498 /* the tcon the request operates on, maybe NULL */
499 struct smbXsrv_tcon
*tcon
;
505 struct tevent_timer
*async_te
;
506 bool compound_related
;
509 * the encryption key for the whole
514 * the signing key for the last
515 * request/response of a compound chain
519 struct timeval request_time
;
521 /* fake smb1 request. */
522 struct smb_request
*smb1req
;
523 struct files_struct
*compat_chain_fsp
;
526 * The sub request for async backend calls.
527 * This is used for SMB2 Cancel.
529 struct tevent_req
*subreq
;
531 #define SMBD_SMB2_TF_IOV_OFS 0
532 #define SMBD_SMB2_HDR_IOV_OFS 1
533 #define SMBD_SMB2_BODY_IOV_OFS 2
534 #define SMBD_SMB2_DYN_IOV_OFS 3
536 #define SMBD_SMB2_NUM_IOV_PER_REQ 4
538 #define SMBD_SMB2_IOV_IDX_OFS(req,dir,idx,ofs) \
539 (&req->dir.vector[(idx)+(ofs)])
541 #define SMBD_SMB2_IDX_TF_IOV(req,dir,idx) \
542 SMBD_SMB2_IOV_IDX_OFS(req,dir,idx,SMBD_SMB2_TF_IOV_OFS)
543 #define SMBD_SMB2_IDX_HDR_IOV(req,dir,idx) \
544 SMBD_SMB2_IOV_IDX_OFS(req,dir,idx,SMBD_SMB2_HDR_IOV_OFS)
545 #define SMBD_SMB2_IDX_BODY_IOV(req,dir,idx) \
546 SMBD_SMB2_IOV_IDX_OFS(req,dir,idx,SMBD_SMB2_BODY_IOV_OFS)
547 #define SMBD_SMB2_IDX_DYN_IOV(req,dir,idx) \
548 SMBD_SMB2_IOV_IDX_OFS(req,dir,idx,SMBD_SMB2_DYN_IOV_OFS)
550 #define SMBD_SMB2_IN_TF_IOV(req) SMBD_SMB2_IDX_TF_IOV(req,in,req->current_idx)
551 #define SMBD_SMB2_IN_TF_PTR(req) (uint8_t *)(SMBD_SMB2_IN_TF_IOV(req)->iov_base)
552 #define SMBD_SMB2_IN_HDR_IOV(req) SMBD_SMB2_IDX_HDR_IOV(req,in,req->current_idx)
553 #define SMBD_SMB2_IN_HDR_PTR(req) (uint8_t *)(SMBD_SMB2_IN_HDR_IOV(req)->iov_base)
554 #define SMBD_SMB2_IN_BODY_IOV(req) SMBD_SMB2_IDX_BODY_IOV(req,in,req->current_idx)
555 #define SMBD_SMB2_IN_BODY_PTR(req) (uint8_t *)(SMBD_SMB2_IN_BODY_IOV(req)->iov_base)
556 #define SMBD_SMB2_IN_BODY_LEN(req) (SMBD_SMB2_IN_BODY_IOV(req)->iov_len)
557 #define SMBD_SMB2_IN_DYN_IOV(req) SMBD_SMB2_IDX_DYN_IOV(req,in,req->current_idx)
558 #define SMBD_SMB2_IN_DYN_PTR(req) (uint8_t *)(SMBD_SMB2_IN_DYN_IOV(req)->iov_base)
559 #define SMBD_SMB2_IN_DYN_LEN(req) (SMBD_SMB2_IN_DYN_IOV(req)->iov_len)
561 #define SMBD_SMB2_OUT_TF_IOV(req) SMBD_SMB2_IDX_TF_IOV(req,out,req->current_idx)
562 #define SMBD_SMB2_OUT_TF_PTR(req) (uint8_t *)(SMBD_SMB2_OUT_TF_IOV(req)->iov_base)
563 #define SMBD_SMB2_OUT_HDR_IOV(req) SMBD_SMB2_IDX_HDR_IOV(req,out,req->current_idx)
564 #define SMBD_SMB2_OUT_HDR_PTR(req) (uint8_t *)(SMBD_SMB2_OUT_HDR_IOV(req)->iov_base)
565 #define SMBD_SMB2_OUT_BODY_IOV(req) SMBD_SMB2_IDX_BODY_IOV(req,out,req->current_idx)
566 #define SMBD_SMB2_OUT_BODY_PTR(req) (uint8_t *)(SMBD_SMB2_OUT_BODY_IOV(req)->iov_base)
567 #define SMBD_SMB2_OUT_BODY_LEN(req) (SMBD_SMB2_OUT_BODY_IOV(req)->iov_len)
568 #define SMBD_SMB2_OUT_DYN_IOV(req) SMBD_SMB2_IDX_DYN_IOV(req,out,req->current_idx)
569 #define SMBD_SMB2_OUT_DYN_PTR(req) (uint8_t *)(SMBD_SMB2_OUT_DYN_IOV(req)->iov_base)
570 #define SMBD_SMB2_OUT_DYN_LEN(req) (SMBD_SMB2_OUT_DYN_IOV(req)->iov_len)
572 #define SMBD_SMB2_SHORT_RECEIVEFILE_WRITE_LEN (SMB2_HDR_BODY + 0x30)
576 * vector[0] TRANSPORT HEADER (empty)
578 * vector[1] SMB2_TRANSFORM (optional)
580 * vector[3] fixed body
581 * vector[4] dynamic body
585 * vector[5] SMB2_TRANSFORM (optional)
587 * vector[7] fixed body
588 * vector[8] dynamic body
593 struct iovec
*vector
;
595 struct iovec _vector
[1 + SMBD_SMB2_NUM_IOV_PER_REQ
];
598 /* the NBT header is not allocated */
601 * vector[0] TRANSPORT HEADER
603 * vector[1] SMB2_TRANSFORM (optional)
605 * vector[3] fixed body
606 * vector[4] dynamic body
610 * vector[5] SMB2_TRANSFORM (empty)
612 * vector[7] fixed body
613 * vector[8] dynamic body
618 struct iovec
*vector
;
620 struct iovec _vector
[1 + SMBD_SMB2_NUM_IOV_PER_REQ
];
621 #define OUTVEC_ALLOC_SIZE (SMB2_HDR_BODY + 9)
622 uint8_t _hdr
[OUTVEC_ALLOC_SIZE
];
627 struct smbd_server_connection
;
630 struct pending_message_list
;
631 struct pending_auth_data
;
634 struct user_struct
*next
, *prev
;
635 uint64_t vuid
; /* Tag for this entry. */
637 char *session_keystr
; /* used by utmp and pam session code.
641 struct auth_session_info
*session_info
;
643 struct smbXsrv_session
*session
;
646 struct smbd_server_connection
{
649 const struct tsocket_address
*local_address
;
650 const struct tsocket_address
*remote_address
;
651 const char *remote_hostname
;
652 struct tevent_context
*ev_ctx
;
653 struct messaging_context
*msg_ctx
;
654 struct sys_notify_context
*sys_notify_ctx
;
655 struct notify_context
*notify_ctx
;
663 struct user_struct
*users
;
665 size_t num_connections
;
666 struct connection_struct
*connections
;
669 struct files_struct
*files
;
671 int real_max_open_files
;
672 struct fsp_singleton_cache fsp_fi_cache
;
674 struct pending_message_list
*deferred_open_queue
;
677 /* open directory handles. */
679 struct bitmap
*dptr_bmap
;
680 struct dptr_struct
*dirptrs
;
684 uint64_t num_requests
;
686 /* Current number of oplocks we have outstanding. */
688 int32_t exclusive_open
;
689 int32_t level_II_open
;
690 struct kernel_oplocks
*kernel_ops
;
694 struct tevent_fd
*fde
;
698 * fd for the fcntl lock mutexing access to our sock
703 * fd for the trusted pipe from
709 * fde for the trusted_fd
711 struct tevent_fd
*trusted_fde
;
714 * Reference count for the fcntl lock to
715 * allow recursive locks.
721 bool encrypted_passwords
;
723 struct auth4_context
*auth_context
;
726 * Size of the data we can receive. Set by us.
727 * Can be modified by the max xmit parameter.
733 uint16_t client_major
;
734 uint16_t client_minor
;
735 uint32_t client_cap_low
;
736 uint32_t client_cap_high
;
742 * Size of data we can send to client. Set
743 * by the client for all protocols above CORE.
744 * Set by us for CORE protocol.
748 struct smb_signing_state
*signing_state
;
750 struct notify_mid_map
*notify_mid_maps
;
753 /* dlink list we store pending lock records on. */
754 struct blocking_lock_record
*blocking_lock_queue
;
755 /* dlink list we move cancelled lock records onto. */
756 struct blocking_lock_record
*blocking_lock_cancelled_queue
;
758 /* The event that makes us process our blocking lock queue */
759 struct tevent_timer
*brl_timeout
;
761 bool blocking_lock_unlock_state
;
762 bool blocking_lock_cancel_state
;
766 struct smbd_smb2_request_read_state
{
767 struct smbd_smb2_request
*req
;
769 uint8_t nbt
[NBT_HDR_SIZE
];
773 bool doing_receivefile
;
774 size_t min_recv_size
;
778 } request_read_state
;
779 struct smbd_smb2_send_queue
*send_queue
;
780 size_t send_queue_len
;
781 struct tevent_fd
*fde
;
784 /* The event that makes us process our blocking lock queue */
785 struct tevent_timer
*brl_timeout
;
786 bool blocking_lock_unlock_state
;
788 struct smbd_smb2_request
*requests
;
790 * seqnum_low is the lowest sequence number
795 * seqnum_range is the range of credits we have
796 * granted from the sequence windows starting
799 * This gets incremented when new credits are
800 * granted and gets decremented when the
801 * lowest sequence number is consumed
802 * (when seqnum_low gets incremented).
804 uint16_t seqnum_range
;
806 * credits_grantedThe number of credits we have currently granted
809 * This gets incremented when new credits are
810 * granted and gets decremented when any credit
813 * Note: the decrementing is different compared
816 uint16_t credits_granted
;
818 * The maximum number of credits we will ever
819 * grant to the client.
821 * Typically we will only grant 1/16th of
824 * This is the "server max credits" parameter.
826 uint16_t max_credits
;
828 * a bitmap of size max_credits
830 struct bitmap
*credits_bitmap
;
831 bool supports_multicredit
;
837 struct smbXsrv_connection
*conn
;
840 extern struct smbXsrv_connection
*global_smbXsrv_connection
;
842 void smbd_init_globals(void);