summaryrefslogtreecommitdiff
path: root/source3/smbd
AgeCommit message (Collapse)AuthorFilesLines
2011-12-14s3:smbd/server: maintain the list of child processes under smbd_parent_contextStefan Metzmacher3-36/+55
metze
2011-12-14s3:smbd/server: pass smbd_parent_context to smbd_setup_sig_chld_handler()Stefan Metzmacher1-6/+6
metze
2011-12-14s3:smbd/globals: change 'int am_parent' into 'struct smbd_parent_context ↵Stefan Metzmacher3-10/+12
*am_parent' This is a short term solution on the way to get rid of 'am_parent' completely. metze
2011-12-13s3:smbd/globals: remove unused extern declarationsStefan Metzmacher1-2/+0
metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Tue Dec 13 22:06:02 CET 2011 on sn-devel-104
2011-12-13s3:smbd/server: move smbd_open_socket and smbd_parent_context to the topStefan Metzmacher1-19/+19
metze
2011-12-13s3:smbd/oplock_onefs: avoid using smbd_messaging_context()Stefan Metzmacher1-2/+2
metze
2011-12-13s3:smbd/oplock_onefs: pass smbd_server_connection to onefs_oplock_wait_record()Stefan Metzmacher1-1/+4
metze
2011-12-13s3:smbd: pass smbd_server_connection to smbd_setup_sig_hup_handler()Stefan Metzmacher3-14/+13
metze
2011-12-13s3:smbd: pass smbd_server_connection to smbd_setup_sig_term_handler()Stefan Metzmacher3-6/+6
metze
2011-12-13s3:smbd/oplock: pass smbd_server_connection to onefs_init_kernel_oplocks()Stefan Metzmacher3-4/+6
metze
2011-12-13s3:smbd/oplock: pass smbd_server_connection to linux_init_kernel_oplocks()Stefan Metzmacher3-7/+14
metze
2011-12-13s3:smbd/oplock: pass smbd_server_connection to irix_init_kernel_oplocks()Stefan Metzmacher3-7/+9
metze
2011-12-13s3:smbd/oplock: pass sconn as private_data to process_open_retry_message()Stefan Metzmacher1-6/+9
metze
2011-12-13s3:smbd/oplock: pass sconn as private_data to process_kernel_oplock_break()Stefan Metzmacher1-8/+8
metze
2011-12-13s3:smbd/oplock: pass sconn as private_data to process_oplock_break_response()Stefan Metzmacher1-6/+9
metze
2011-12-13s3:smbd/oplock: pass sconn as private_data to ↵Stefan Metzmacher1-7/+7
process_oplock_async_level2_break_message() metze
2011-12-13s3:smbd/oplock: pass sconn as private_data to process_oplock_break_message()Stefan Metzmacher1-7/+7
metze
2011-12-13s3:smbd/oplock: pass smbd_server_connection to init_oplocks()Stefan Metzmacher3-8/+8
metze
2011-12-13s3: Move can_delete_directory to smbd/, remove shimVolker Lendecke3-5/+2
Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Tue Dec 13 19:00:37 CET 2011 on sn-devel-104
2011-12-13s3: Move can_set_delete_on_close to smbd/Volker Lendecke2-0/+60
2011-12-13s3: Remove an else{} in remove_deferred_open_entryVolker Lendecke1-3/+3
2011-12-13s3:smbd/msdfs: enum_msdfs_links() doesn't need a smbd_server_connection anymoreStefan Metzmacher2-4/+2
metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Tue Dec 13 17:26:20 CET 2011 on sn-devel-104
2011-12-13s3:smbd: use connections_snum_used() instead of conn_snum_used() for ↵Stefan Metzmacher2-2/+2
load_usershare_shares() Before removing the share security descriptor, we should make sure there're really no active users anymore. metze
2011-12-13s3:smbd: add connections_snum_used()Stefan Metzmacher2-0/+13
This works similar to conn_snum_used(), but instead of looking at the current connection only, it looks at all active connections in "connections.tdb". metze
2011-12-13s3:param: don't reference conn_snum_used directly in load_usershare_shares()Stefan Metzmacher2-2/+2
This uses the same logic as lp_killunused(). metze
2011-12-13s3:smbd/server: remove unused msg_sam_sync()Stefan Metzmacher1-15/+0
metze
2011-12-13s3:smbd/server: add parent specific SIGTERM and SIGHUP handlersStefan Metzmacher1-3/+45
metze
2011-12-13s3:smbd/server: create smbd_parent_context earlierStefan Metzmacher1-7/+8
metze
2011-12-13s3:smbd/server: remember the ev_ctx on the smbd_parent_contextStefan Metzmacher1-0/+2
metze
2011-12-13s3:smbd/server: remember the msg_ctx on the smbd_parent_contextStefan Metzmacher1-4/+4
metze
2011-12-13s3:smbd/open: pass smbd_server_connection as private_data to ↵Stefan Metzmacher2-4/+4
msg_file_was_renamed() metze
2011-12-13s3:smbd: register MSG_SMB_FILE_RENAME after the forkStefan Metzmacher2-2/+2
The parent smbd doesn't need to handle this, as it doesn't have any file handles open. metze
2011-12-13s3:smbd/conn_msg: pass smbd_server_connection as private_data to ↵Stefan Metzmacher2-4/+4
msg_force_tdis() metze
2011-12-13s3:smbd/blocking: pass smbd_server_connection as private_data to ↵Stefan Metzmacher1-8/+8
process_blocking_lock_cancel_message() metze
2011-12-13s3: Use pid_to_procidVolker Lendecke1-2/+1
Autobuild-User: Volker Lendecke <vlendec@samba.org> Autobuild-Date: Tue Dec 13 12:35:09 CET 2011 on sn-devel-104
2011-12-13s3: Remove a call to procid_self()Volker Lendecke1-1/+1
2011-12-13s3: Remove a call to procid_self()Volker Lendecke1-1/+1
2011-12-13s3: Remove a call to procid_self()Volker Lendecke1-2/+3
2011-12-12s3: Remove a bunch of calls to procid_self()Volker Lendecke2-3/+2
All callers to messaging_[re]init only used procid_self()
2011-12-12s3:smbd/close: pass smbd_server_connection to notify_deferred_opens()Stefan Metzmacher1-9/+5
metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Mon Dec 12 21:49:11 CET 2011 on sn-devel-104
2011-12-12s3:smbd/clode: pass smbd_server_connection as private_data to msg_close_file()Stefan Metzmacher2-4/+4
metze
2011-12-12s3:smbd/blocking: pass smbd_server_connection as private_data to ↵Stefan Metzmacher1-4/+4
received_unlock_msg() metze
2011-12-12s3:smb2_lock: pass smbd_server_connection as private_data to ↵Stefan Metzmacher1-6/+7
received_unlock_msg() metze
2011-12-12s3:smb2_server: use sconn->ev_ctx instead of sconn->smb2.event_ctxStefan Metzmacher13-25/+22
metze Autobuild-User: Stefan Metzmacher <metze@samba.org> Autobuild-Date: Mon Dec 12 16:08:59 CET 2011 on sn-devel-104
2011-12-12s3:smb2_lock: avoid using server_event_context()Stefan Metzmacher1-2/+2
metze
2011-12-12s3:smbd/pipes: avoid passing server_event_context() as event context to ↵Stefan Metzmacher4-7/+7
np_{read,write}_send metze
2011-12-12s3:smbd/process: avoid using server_event_context() for the forked echo handlerStefan Metzmacher1-3/+3
metze
2011-12-12s3:smbd/process: avoid using server_event_context() for ↵Stefan Metzmacher1-10/+10
smbd_deferred_open_timer events metze
2011-12-12s3:smbd/oplock: avoid using server_event_context() in ↵Stefan Metzmacher1-3/+3
add_oplock_timeout_handler() metze
2011-12-12s3:smbd/service: avoid using server_event_context() for notify_init()Stefan Metzmacher1-1/+1
metze