2 Unix SMB/Netbios implementation.
4 Copyright (C) Stefan Metzmacher 2009
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 extern struct aio_extra
*aio_list_head
;
23 extern struct tevent_signal
*aio_signal_event
;
24 extern int aio_pending_size
;
25 extern int outstanding_aio_calls
;
28 /* dlink list we store pending lock records on. */
29 extern struct blocking_lock_record
*blocking_lock_queue
;
31 /* dlink list we move cancelled lock records onto. */
32 extern struct blocking_lock_record
*blocking_lock_cancelled_queue
;
34 /* The event that makes us process our blocking lock queue */
35 extern struct timed_event
*brl_timeout
;
37 extern bool blocking_lock_unlock_state
;
38 extern bool blocking_lock_cancel_state
;
41 struct smbd_dmapi_context
;
42 extern struct smbd_dmapi_context
*dmapi_ctx
;
45 extern bool dfree_broken
;
47 /* how many write cache buffers have been allocated */
48 extern unsigned int allocated_write_caches
;
50 extern int real_max_open_files
;
51 extern struct bitmap
*file_bmap
;
52 extern files_struct
*Files
;
53 extern int files_used
;
54 /* A singleton cache to speed up searching by dev/inode. */
55 struct fsp_singleton_cache
{
59 extern struct fsp_singleton_cache fsp_fi_cache
;
60 extern unsigned long file_gen_counter
;
61 extern int first_file
;
63 extern const struct mangle_fns
*mangle_fns
;
65 extern unsigned char *chartest
;
66 extern TDB_CONTEXT
*tdb_mangled_cache
;
68 /* these tables are used to provide fast tests for characters */
69 extern unsigned char char_flags
[256];
71 this determines how many characters are used from the original filename
72 in the 8.3 mangled name. A larger value leads to a weaker hash and more collisions.
73 The largest possible value is 6.
75 extern unsigned mangle_prefix
;
76 extern unsigned char base_reverse
[256];
78 extern char *last_from
;
82 extern struct msg_state
*smbd_msg_state
;
84 extern bool logged_ioctl_message
;
89 extern time_t last_smb_conf_reload_time
;
90 extern time_t last_printer_reload_time
;
91 /****************************************************************************
92 structure to hold a linked list of queued messages.
94 ****************************************************************************/
95 struct pending_message_list
;
96 extern struct pending_message_list
*deferred_open_queue
;
97 extern uint32_t common_flags2
;
99 struct smb_srv_trans_enc_ctx
;
100 extern struct smb_srv_trans_enc_ctx
*partial_srv_trans_enc_ctx
;
101 extern struct smb_srv_trans_enc_ctx
*srv_trans_enc_ctx
;
105 NT_USER_TOKEN
*token
;
107 /* A stack of security contexts. We include the current context as being
108 the first one, so there is room for another MAX_SEC_CTX_DEPTH more. */
109 extern struct sec_ctx sec_ctx_stack
[MAX_SEC_CTX_DEPTH
+ 1];
110 extern int sec_ctx_stack_ndx
;
111 extern bool become_uid_done
;
112 extern bool become_gid_done
;
114 extern connection_struct
*last_conn
;
115 extern uint16_t last_flags
;
117 extern struct db_context
*session_db_ctx_ptr
;
119 extern uint32_t global_client_caps
;
121 extern uint16_t fnf_handle
;
124 connection_struct
*conn
;
127 /* A stack of current_user connection contexts. */
128 extern struct conn_ctx conn_ctx_stack
[MAX_SEC_CTX_DEPTH
];
129 extern int conn_ctx_stack_ndx
;
131 struct vfs_init_function_entry
;
132 extern struct vfs_init_function_entry
*backends
;
133 extern char *sparse_buf
;
134 extern char *LastDir
;
136 /* Current number of oplocks we have outstanding. */
137 extern int32_t exclusive_oplocks_open
;
138 extern int32_t level_II_oplocks_open
;
139 extern bool global_client_failed_oplock_break
;
140 extern struct kernel_oplocks
*koplocks
;
142 extern int am_parent
;
143 extern int server_fd
;
144 extern struct event_context
*smbd_event_ctx
;
145 extern struct messaging_context
*smbd_msg_ctx
;
146 extern struct memcache
*smbd_memcache_ctx
;
147 extern bool exit_firsttime
;
149 extern struct child_pid
*children
;
150 extern int num_children
;
152 struct tstream_context
;
153 struct smbd_smb2_request
;
154 struct smbd_smb2_session
;
155 struct smbd_smb2_tcon
;
157 DATA_BLOB
negprot_spnego(void);
159 NTSTATUS
smb2_signing_sign_pdu(DATA_BLOB session_key
,
160 struct iovec
*vector
,
162 NTSTATUS
smb2_signing_check_pdu(DATA_BLOB session_key
,
163 const struct iovec
*vector
,
166 struct smbd_lock_element
{
168 enum brl_type brltype
;
173 NTSTATUS
smbd_do_locking(struct smb_request
*req
,
178 struct smbd_lock_element
*ulocks
,
180 struct smbd_lock_element
*locks
,
183 NTSTATUS
smbd_do_qfilepathinfo(connection_struct
*conn
,
187 struct smb_filename
*smb_fname
,
189 struct timespec write_time_ts
,
191 struct ea_list
*ea_list
,
195 unsigned int max_data_bytes
,
197 unsigned int *pdata_size
);
199 NTSTATUS
smbd_do_setfilepathinfo(connection_struct
*conn
,
200 struct smb_request
*req
,
204 struct smb_filename
*smb_fname
,
205 char **ppdata
, int total_data
,
208 NTSTATUS
smbd_do_qfsinfo(connection_struct
*conn
,
212 unsigned int max_data_bytes
,
216 bool smbd_dirptr_get_entry(TALLOC_CTX
*ctx
,
217 struct dptr_struct
*dirptr
,
222 bool (*match_fn
)(TALLOC_CTX
*ctx
,
227 bool (*mode_fn
)(TALLOC_CTX
*ctx
,
229 struct smb_filename
*smb_fname
,
233 struct smb_filename
**_smb_fname
,
237 bool smbd_dirptr_lanman2_entry(TALLOC_CTX
*ctx
,
238 connection_struct
*conn
,
239 struct dptr_struct
*dirptr
,
241 const char *path_mask
,
244 int requires_resume_key
,
254 bool *got_exact_match
,
255 int *_last_entry_off
,
256 struct ea_list
*name_list
);
258 NTSTATUS
smbd_check_open_rights(struct connection_struct
*conn
,
259 const struct smb_filename
*smb_fname
,
260 uint32_t access_mask
,
261 uint32_t *access_granted
);
263 void smbd_notify_cancel_by_smbreq(struct smbd_server_connection
*sconn
,
264 const struct smb_request
*smbreq
);
266 void smbd_server_connection_terminate_ex(struct smbd_server_connection
*sconn
,
268 const char *location
);
269 #define smbd_server_connection_terminate(sconn, reason) \
270 smbd_server_connection_terminate_ex(sconn, reason, __location__)
272 bool smbd_is_smb2_header(const uint8_t *inbuf
, size_t size
);
274 void reply_smb2002(struct smb_request
*req
, uint16_t choice
);
275 void smbd_smb2_first_negprot(struct smbd_server_connection
*sconn
,
276 const uint8_t *inbuf
, size_t size
);
278 NTSTATUS
smbd_smb2_request_error_ex(struct smbd_smb2_request
*req
,
281 const char *location
);
282 #define smbd_smb2_request_error(req, status) \
283 smbd_smb2_request_error_ex(req, status, NULL, __location__)
284 NTSTATUS
smbd_smb2_request_done_ex(struct smbd_smb2_request
*req
,
286 DATA_BLOB body
, DATA_BLOB
*dyn
,
287 const char *location
);
288 #define smbd_smb2_request_done(req, body, dyn) \
289 smbd_smb2_request_done_ex(req, NT_STATUS_OK, body, dyn, __location__)
291 NTSTATUS
smbd_smb2_send_oplock_break(struct smbd_server_connection
*sconn
,
292 uint64_t file_id_persistent
,
293 uint64_t file_id_volatile
,
294 uint8_t oplock_level
);
296 NTSTATUS
smbd_smb2_request_pending_queue(struct smbd_smb2_request
*req
,
297 struct tevent_req
*subreq
);
299 NTSTATUS
smbd_smb2_request_check_session(struct smbd_smb2_request
*req
);
300 NTSTATUS
smbd_smb2_request_check_tcon(struct smbd_smb2_request
*req
);
302 struct smb_request
*smbd_smb2_fake_smb_request(struct smbd_smb2_request
*req
);
304 NTSTATUS
smbd_smb2_request_process_negprot(struct smbd_smb2_request
*req
);
305 NTSTATUS
smbd_smb2_request_process_sesssetup(struct smbd_smb2_request
*req
);
306 NTSTATUS
smbd_smb2_request_process_logoff(struct smbd_smb2_request
*req
);
307 NTSTATUS
smbd_smb2_request_process_tcon(struct smbd_smb2_request
*req
);
308 NTSTATUS
smbd_smb2_request_process_tdis(struct smbd_smb2_request
*req
);
309 NTSTATUS
smbd_smb2_request_process_create(struct smbd_smb2_request
*req
);
310 NTSTATUS
smbd_smb2_request_process_close(struct smbd_smb2_request
*req
);
311 NTSTATUS
smbd_smb2_request_process_flush(struct smbd_smb2_request
*req
);
312 NTSTATUS
smbd_smb2_request_process_read(struct smbd_smb2_request
*req
);
313 NTSTATUS
smbd_smb2_request_process_write(struct smbd_smb2_request
*req
);
314 NTSTATUS
smbd_smb2_request_process_lock(struct smbd_smb2_request
*req
);
315 NTSTATUS
smbd_smb2_request_process_ioctl(struct smbd_smb2_request
*req
);
316 NTSTATUS
smbd_smb2_request_process_keepalive(struct smbd_smb2_request
*req
);
317 NTSTATUS
smbd_smb2_request_process_find(struct smbd_smb2_request
*req
);
318 NTSTATUS
smbd_smb2_request_process_notify(struct smbd_smb2_request
*req
);
319 NTSTATUS
smbd_smb2_request_process_getinfo(struct smbd_smb2_request
*req
);
320 NTSTATUS
smbd_smb2_request_process_setinfo(struct smbd_smb2_request
*req
);
321 NTSTATUS
smbd_smb2_request_process_break(struct smbd_smb2_request
*req
);
323 struct smbd_smb2_request
{
324 struct smbd_smb2_request
*prev
, *next
;
326 TALLOC_CTX
*mem_pool
;
327 struct smbd_smb2_request
**parent
;
329 struct smbd_server_connection
*sconn
;
331 /* the session the request operates on, maybe NULL */
332 struct smbd_smb2_session
*session
;
334 /* the tcon the request operates on, maybe NULL */
335 struct smbd_smb2_tcon
*tcon
;
340 struct files_struct
*compat_chain_fsp
;
342 NTSTATUS next_status
;
345 * The sub request for async backend calls.
346 * This is used for SMB2 Cancel.
348 struct tevent_req
*subreq
;
351 /* the NBT header is not allocated */
357 * vector[2] fixed body
358 * vector[3] dynamic body
363 * vector[5] fixed body
364 * vector[6] dynamic body
369 struct iovec
*vector
;
373 /* the NBT header is not allocated */
379 * vector[2] fixed body
380 * vector[3] dynamic body
385 * vector[5] fixed body
386 * vector[6] dynamic body
391 struct iovec
*vector
;
396 struct smbd_server_connection
;
398 struct smbd_smb2_session
{
399 struct smbd_smb2_session
*prev
, *next
;
400 struct smbd_server_connection
*sconn
;
403 AUTH_NTLMSSP_STATE
*auth_ntlmssp_state
;
404 struct auth_serversupplied_info
*server_info
;
405 DATA_BLOB session_key
;
408 user_struct
*compat_vuser
;
411 /* an id tree used to allocate tids */
412 struct idr_context
*idtree
;
414 /* this is the limit of tid values for this connection */
417 struct smbd_smb2_tcon
*list
;
421 struct smbd_smb2_tcon
{
422 struct smbd_smb2_tcon
*prev
, *next
;
423 struct smbd_smb2_session
*session
;
426 connection_struct
*compat_conn
;
429 struct pending_auth_data
;
431 struct smbd_server_connection
{
437 struct fd_event
*fde
;
438 uint64_t num_requests
;
440 bool encrypted_passwords
;
442 struct auth_context
*auth_context
;
445 * Size of the data we can receive. Set by us.
446 * Can be modified by the max xmit parameter.
454 * Size of data we can send to client. Set
455 * by the client for all protocols above CORE.
456 * Set by us for CORE protocol.
459 uint16_t last_session_tag
;
461 /* users from session setup */
462 char *session_userlist
;
463 /* workgroup from session setup. */
464 char *session_workgroup
;
466 * this holds info on user ids that are already
467 * validated for this VC
469 user_struct
*validated_users
;
471 int num_validated_vuids
;
477 connection_struct
*Connections
;
478 /* number of open connections */
482 struct smb_signing_state
*signing_state
;
483 /* List to store partial SPNEGO auth fragments. */
484 struct pending_auth_data
*pd_list
;
486 struct notify_mid_map
*notify_mid_maps
;
489 struct bitmap
*dptr_bmap
;
490 struct dptr_struct
*dirptrs
;
495 struct tevent_context
*event_ctx
;
496 struct tevent_queue
*recv_queue
;
497 struct tevent_queue
*send_queue
;
498 struct tstream_context
*stream
;
500 /* an id tree used to allocate vuids */
501 /* this holds info on session vuids that are already
502 * validated for this VC */
503 struct idr_context
*idtree
;
505 /* this is the limit of vuid values for this connection */
508 struct smbd_smb2_session
*list
;
510 struct smbd_smb2_request
*requests
;
514 extern struct smbd_server_connection
*smbd_server_conn
;
516 void smbd_init_globals(void);