1998-08-17 17:11:34 +04:00
/*
2002-01-30 09:08:46 +03:00
Unix SMB / CIFS implementation .
1998-08-17 17:11:34 +04:00
oplock processing
Copyright ( C ) Andrew Tridgell 1992 - 1998
2001-10-21 01:59:34 +04:00
Copyright ( C ) Jeremy Allison 1998 - 2001
2005-09-30 21:13:37 +04:00
Copyright ( C ) Volker Lendecke 2005
2011-08-02 18:44:53 +04:00
1998-08-17 17:11:34 +04:00
This program is free software ; you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
2007-07-09 23:25:36 +04:00
the Free Software Foundation ; either version 3 of the License , or
1998-08-17 17:11:34 +04:00
( at your option ) any later version .
2011-08-02 18:44:53 +04:00
1998-08-17 17:11:34 +04:00
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
2011-08-02 18:44:53 +04:00
1998-08-17 17:11:34 +04:00
You should have received a copy of the GNU General Public License
2007-07-10 04:52:41 +04:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
1998-08-17 17:11:34 +04:00
*/
2006-05-05 06:06:37 +04:00
# define DBGC_CLASS DBGC_LOCKING
1998-08-17 17:11:34 +04:00
# include "includes.h"
2011-03-22 18:57:01 +03:00
# include "smbd/smbd.h"
2009-01-08 14:03:45 +03:00
# include "smbd/globals.h"
2011-03-24 17:31:06 +03:00
# include "messages.h"
2011-11-24 17:11:28 +04:00
# include "../librpc/gen_ndr/open_files.h"
2000-06-10 17:38:07 +04:00
2009-01-23 12:08:44 +03:00
/*
* helper function used by the kernel oplock backends to post the break message
*/
void break_kernel_oplock ( struct messaging_context * msg_ctx , files_struct * fsp )
2001-09-06 02:45:48 +04:00
{
2009-01-23 12:08:44 +03:00
uint8_t msg [ MSG_SMB_KERNEL_BREAK_SIZE ] ;
2001-09-06 02:45:48 +04:00
2009-01-23 12:08:44 +03:00
/* Put the kernel break info into the message. */
2009-02-16 10:45:28 +03:00
push_file_id_24 ( ( char * ) msg , & fsp - > file_id ) ;
SIVAL ( msg , 24 , fsp - > fh - > gen_id ) ;
2000-06-09 10:58:06 +04:00
2009-01-23 12:08:44 +03:00
/* Don't need to be root here as we're only ever
sending to ourselves . */
2002-07-15 14:35:28 +04:00
2010-07-04 20:07:29 +04:00
messaging_send_buf ( msg_ctx , messaging_server_id ( msg_ctx ) ,
2009-01-23 12:08:44 +03:00
MSG_SMB_KERNEL_BREAK ,
msg , MSG_SMB_KERNEL_BREAK_SIZE ) ;
1998-09-23 05:48:45 +04:00
}
1999-12-13 16:27:58 +03:00
/****************************************************************************
2011-01-31 23:00:15 +03:00
Attempt to set an oplock on a file . Succeeds if kernel oplocks are
2013-09-03 17:31:27 +04:00
disabled ( just sets flags ) .
1999-12-13 16:27:58 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2001-10-21 01:59:34 +04:00
2013-09-03 17:57:11 +04:00
NTSTATUS set_file_oplock ( files_struct * fsp )
1999-12-13 16:27:58 +03:00
{
2012-05-25 01:15:08 +04:00
struct smbd_server_connection * sconn = fsp - > conn - > sconn ;
2012-05-25 01:33:32 +04:00
struct kernel_oplocks * koplocks = sconn - > oplocks . kernel_ops ;
2012-03-30 18:11:08 +04:00
bool use_kernel = lp_kernel_oplocks ( SNUM ( fsp - > conn ) ) & & koplocks ;
2011-01-31 23:00:15 +03:00
if ( fsp - > oplock_type = = LEVEL_II_OPLOCK ) {
2012-03-30 18:11:08 +04:00
if ( use_kernel & &
2011-01-31 23:00:15 +03:00
! ( koplocks - > flags & KOPLOCKS_LEVEL2_SUPPORTED ) ) {
DEBUG ( 10 , ( " Refusing level2 oplock, kernel oplocks "
" don't support them \n " ) ) ;
2012-06-08 19:47:31 +04:00
return NT_STATUS_NOT_SUPPORTED ;
2011-01-31 23:00:15 +03:00
}
2009-04-08 10:29:23 +04:00
}
2011-01-31 23:00:15 +03:00
2008-12-18 04:23:13 +03:00
if ( ( fsp - > oplock_type ! = NO_OPLOCK ) & &
2012-03-30 18:11:08 +04:00
use_kernel & &
2013-09-03 17:57:11 +04:00
! koplocks - > ops - > set_oplock ( koplocks , fsp , fsp - > oplock_type ) )
2012-06-08 19:47:31 +04:00
{
return map_nt_error_from_unix ( errno ) ;
2006-01-13 01:17:54 +03:00
}
1999-12-13 16:27:58 +03:00
2000-06-09 10:58:06 +04:00
fsp - > sent_oplock_break = NO_BREAK_SENT ;
2013-09-03 17:57:11 +04:00
if ( fsp - > oplock_type = = LEVEL_II_OPLOCK ) {
2012-05-25 01:15:08 +04:00
sconn - > oplocks . level_II_open + + ;
2008-12-18 04:23:13 +03:00
} else if ( EXCLUSIVE_OPLOCK_TYPE ( fsp - > oplock_type ) ) {
2012-05-25 01:15:08 +04:00
sconn - > oplocks . exclusive_open + + ;
2006-01-13 01:17:54 +03:00
}
1999-12-13 16:27:58 +03:00
2007-05-29 13:30:34 +04:00
DEBUG ( 5 , ( " set_file_oplock: granted oplock on file %s, %s/%lu, "
2006-05-05 06:06:37 +04:00
" tv_sec = %x, tv_usec = %x \n " ,
2009-07-11 01:50:37 +04:00
fsp_str_dbg ( fsp ) , file_id_string_tos ( & fsp - > file_id ) ,
2007-05-29 13:30:34 +04:00
fsp - > fh - > gen_id , ( int ) fsp - > open_time . tv_sec ,
2006-05-05 06:06:37 +04:00
( int ) fsp - > open_time . tv_usec ) ) ;
1998-08-17 17:11:34 +04:00
2012-06-08 19:47:31 +04:00
return NT_STATUS_OK ;
1998-08-17 17:11:34 +04:00
}
1999-12-13 16:27:58 +03:00
/****************************************************************************
Attempt to release an oplock on a file . Decrements oplock count .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2013-09-13 15:55:05 +04:00
static void release_file_oplock ( files_struct * fsp )
1999-12-13 16:27:58 +03:00
{
2012-05-25 01:15:08 +04:00
struct smbd_server_connection * sconn = fsp - > conn - > sconn ;
2012-05-25 01:33:32 +04:00
struct kernel_oplocks * koplocks = sconn - > oplocks . kernel_ops ;
2012-05-25 01:15:08 +04:00
2005-09-30 21:13:37 +04:00
if ( ( fsp - > oplock_type ! = NO_OPLOCK ) & &
koplocks ) {
2009-01-10 00:07:58 +03:00
koplocks - > ops - > release_oplock ( koplocks , fsp , NO_OPLOCK ) ;
2005-09-30 21:13:37 +04:00
}
2000-06-09 10:58:06 +04:00
2006-01-13 01:17:54 +03:00
if ( fsp - > oplock_type = = LEVEL_II_OPLOCK ) {
2012-05-25 01:15:08 +04:00
sconn - > oplocks . level_II_open - - ;
2006-01-13 01:17:54 +03:00
} else if ( EXCLUSIVE_OPLOCK_TYPE ( fsp - > oplock_type ) ) {
2012-05-25 01:15:08 +04:00
sconn - > oplocks . exclusive_open - - ;
2006-01-13 01:17:54 +03:00
}
2005-09-30 21:13:37 +04:00
2012-05-25 01:15:08 +04:00
SMB_ASSERT ( sconn - > oplocks . exclusive_open > = 0 ) ;
SMB_ASSERT ( sconn - > oplocks . level_II_open > = 0 ) ;
2008-12-18 04:23:13 +03:00
2013-09-11 20:07:33 +04:00
fsp - > oplock_type = NO_OPLOCK ;
2000-06-09 10:58:06 +04:00
fsp - > sent_oplock_break = NO_BREAK_SENT ;
2008-12-18 04:23:13 +03:00
2013-11-22 09:33:33 +04:00
flush_write_cache ( fsp , SAMBA_OPLOCK_RELEASE_FLUSH ) ;
2010-10-02 19:07:00 +04:00
delete_write_cache ( fsp ) ;
2007-06-22 21:19:08 +04:00
TALLOC_FREE ( fsp - > oplock_timeout ) ;
1999-12-13 16:27:58 +03:00
}
/****************************************************************************
Attempt to downgrade an oplock on a file . Doesn ' t decrement oplock count .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static void downgrade_file_oplock ( files_struct * fsp )
{
2012-05-25 01:15:08 +04:00
struct smbd_server_connection * sconn = fsp - > conn - > sconn ;
2012-05-25 01:33:32 +04:00
struct kernel_oplocks * koplocks = sconn - > oplocks . kernel_ops ;
2012-05-25 01:15:08 +04:00
2009-01-28 03:13:35 +03:00
if ( ! EXCLUSIVE_OPLOCK_TYPE ( fsp - > oplock_type ) ) {
DEBUG ( 0 , ( " trying to downgrade an already-downgraded oplock! \n " ) ) ;
return ;
}
2006-01-13 01:17:54 +03:00
if ( koplocks ) {
2009-01-10 00:07:58 +03:00
koplocks - > ops - > release_oplock ( koplocks , fsp , LEVEL_II_OPLOCK ) ;
2006-01-13 01:17:54 +03:00
}
2000-06-10 17:38:07 +04:00
fsp - > oplock_type = LEVEL_II_OPLOCK ;
2012-05-25 01:15:08 +04:00
sconn - > oplocks . exclusive_open - - ;
sconn - > oplocks . level_II_open + + ;
2000-06-10 17:38:07 +04:00
fsp - > sent_oplock_break = NO_BREAK_SENT ;
2013-09-04 15:57:00 +04:00
TALLOC_FREE ( fsp - > oplock_timeout ) ;
1999-12-13 16:27:58 +03:00
}
/****************************************************************************
Remove a file oplock . Copes with level II and exclusive .
2000-11-16 03:59:18 +03:00
Locks then unlocks the share mode lock . Client can decide to go directly
to none even if a " break-to-level II " was sent .
1999-12-13 16:27:58 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2007-10-19 04:40:25 +04:00
bool remove_oplock ( files_struct * fsp )
1999-12-13 16:27:58 +03:00
{
2007-10-19 04:40:25 +04:00
bool ret ;
2005-09-30 21:13:37 +04:00
struct share_mode_lock * lck ;
2000-06-10 17:38:07 +04:00
2013-09-13 16:13:51 +04:00
DEBUG ( 10 , ( " remove_oplock called for %s \n " ,
fsp_str_dbg ( fsp ) ) ) ;
2000-06-10 17:38:07 +04:00
/* Remove the oplock flag from the sharemode. */
2012-02-19 17:23:56 +04:00
lck = get_existing_share_mode_lock ( talloc_tos ( ) , fsp - > file_id ) ;
2005-09-30 21:13:37 +04:00
if ( lck = = NULL ) {
DEBUG ( 0 , ( " remove_oplock: failed to lock share entry for "
2009-07-11 01:50:37 +04:00
" file %s \n " , fsp_str_dbg ( fsp ) ) ) ;
2003-04-22 05:12:52 +04:00
return False ;
2000-06-10 17:38:07 +04:00
}
2013-09-11 20:07:33 +04:00
if ( fsp - > oplock_type = = LEVEL_II_OPLOCK ) {
/*
* If we ' re the only LEVEL_II holder , we have to remove the
* have_read_oplocks from the brlock entry
*/
struct share_mode_data * data = lck - > data ;
uint32_t i , num_level2 ;
num_level2 = 0 ;
for ( i = 0 ; i < data - > num_share_modes ; i + + ) {
if ( data - > share_modes [ i ] . op_type = = LEVEL_II_OPLOCK ) {
num_level2 + = 1 ;
}
if ( num_level2 > 1 ) {
/*
* No need to count them all . . .
*/
break ;
}
}
if ( num_level2 = = 1 ) {
/*
* That ' s only us . We are dropping that level2 oplock ,
* so remove the brlock flag .
*/
struct byte_range_lock * brl ;
brl = brl_get_locks ( talloc_tos ( ) , fsp ) ;
if ( brl ) {
brl_set_have_read_oplocks ( brl , false ) ;
TALLOC_FREE ( brl ) ;
}
}
}
2005-09-30 21:13:37 +04:00
ret = remove_share_oplock ( lck , fsp ) ;
if ( ! ret ) {
DEBUG ( 0 , ( " remove_oplock: failed to remove share oplock for "
2012-06-14 14:55:59 +04:00
" file %s, %s, %s \n " ,
fsp_str_dbg ( fsp ) , fsp_fnum_dbg ( fsp ) ,
2009-07-11 01:50:37 +04:00
file_id_string_tos ( & fsp - > file_id ) ) ) ;
2005-09-30 21:13:37 +04:00
}
release_file_oplock ( fsp ) ;
2006-02-20 20:59:58 +03:00
TALLOC_FREE ( lck ) ;
2005-09-30 21:13:37 +04:00
return ret ;
}
1999-12-13 16:27:58 +03:00
2005-09-30 21:13:37 +04:00
/*
* Deal with a reply when a break - to - level II was sent .
*/
2007-10-19 04:40:25 +04:00
bool downgrade_oplock ( files_struct * fsp )
2005-09-30 21:13:37 +04:00
{
2007-10-19 04:40:25 +04:00
bool ret ;
2005-09-30 21:13:37 +04:00
struct share_mode_lock * lck ;
2013-09-11 20:07:33 +04:00
struct byte_range_lock * brl ;
1999-12-13 16:27:58 +03:00
2013-09-13 16:13:51 +04:00
DEBUG ( 10 , ( " downgrade_oplock called for %s \n " ,
fsp_str_dbg ( fsp ) ) ) ;
2012-02-19 17:23:56 +04:00
lck = get_existing_share_mode_lock ( talloc_tos ( ) , fsp - > file_id ) ;
2005-09-30 21:13:37 +04:00
if ( lck = = NULL ) {
DEBUG ( 0 , ( " downgrade_oplock: failed to lock share entry for "
2009-07-11 01:50:37 +04:00
" file %s \n " , fsp_str_dbg ( fsp ) ) ) ;
2005-09-30 21:13:37 +04:00
return False ;
2000-06-10 17:38:07 +04:00
}
2005-09-30 21:13:37 +04:00
ret = downgrade_share_oplock ( lck , fsp ) ;
if ( ! ret ) {
DEBUG ( 0 , ( " downgrade_oplock: failed to downgrade share oplock "
2012-06-14 14:55:59 +04:00
" for file %s, %s, file_id %s \n " ,
fsp_str_dbg ( fsp ) , fsp_fnum_dbg ( fsp ) ,
2009-07-11 01:50:37 +04:00
file_id_string_tos ( & fsp - > file_id ) ) ) ;
2005-09-30 21:13:37 +04:00
}
2006-01-13 01:17:54 +03:00
2005-09-30 21:13:37 +04:00
downgrade_file_oplock ( fsp ) ;
2013-09-11 20:07:33 +04:00
brl = brl_get_locks ( talloc_tos ( ) , fsp ) ;
if ( brl ! = NULL ) {
brl_set_have_read_oplocks ( brl , true ) ;
TALLOC_FREE ( brl ) ;
}
2006-02-20 20:59:58 +03:00
TALLOC_FREE ( lck ) ;
2000-06-10 17:38:07 +04:00
return ret ;
1998-09-23 05:48:45 +04:00
}
/****************************************************************************
2005-09-30 21:13:37 +04:00
Set up an oplock break message .
1998-08-17 17:11:34 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2001-10-21 01:59:34 +04:00
2013-08-19 16:28:24 +04:00
# define SMB1_BREAK_MESSAGE_LENGTH (smb_size + 8*2)
2001-10-21 01:59:34 +04:00
2013-08-19 16:28:24 +04:00
static void new_break_message_smb1 ( files_struct * fsp , int cmd ,
char result [ SMB1_BREAK_MESSAGE_LENGTH ] )
{
2005-09-30 21:13:37 +04:00
memset ( result , ' \0 ' , smb_size ) ;
2008-01-04 23:56:23 +03:00
srv_set_message ( result , 8 , 0 , true ) ;
2005-09-30 21:13:37 +04:00
SCVAL ( result , smb_com , SMBlockingX ) ;
SSVAL ( result , smb_tid , fsp - > conn - > cnum ) ;
SSVAL ( result , smb_pid , 0xFFFF ) ;
SSVAL ( result , smb_uid , 0 ) ;
SSVAL ( result , smb_mid , 0xFFFF ) ;
SCVAL ( result , smb_vwv0 , 0xFF ) ;
SSVAL ( result , smb_vwv2 , fsp - > fnum ) ;
SCVAL ( result , smb_vwv3 , LOCKING_ANDX_OPLOCK_RELEASE ) ;
SCVAL ( result , smb_vwv3 + 1 , cmd ) ;
1999-12-13 16:27:58 +03:00
}
/****************************************************************************
Function to do the waiting before sending a local break .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2005-07-17 13:56:25 +04:00
static void wait_before_sending_break ( void )
1999-12-13 16:27:58 +03:00
{
2006-04-15 08:07:10 +04:00
long wait_time = ( long ) lp_oplock_break_wait_time ( ) ;
1999-12-13 16:27:58 +03:00
2006-04-15 08:07:10 +04:00
if ( wait_time ) {
smb_msleep ( wait_time ) ;
2001-10-21 01:59:34 +04:00
}
1999-12-13 16:27:58 +03:00
}
/****************************************************************************
Ensure that we have a valid oplock .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2001-10-21 01:59:34 +04:00
2010-10-03 19:18:26 +04:00
static files_struct * initial_break_processing (
struct smbd_server_connection * sconn , struct file_id id ,
unsigned long file_id )
1998-08-17 17:11:34 +04:00
{
2001-10-21 01:59:34 +04:00
files_struct * fsp = NULL ;
2013-09-16 06:18:41 +04:00
DEBUG ( 3 , ( " initial_break_processing: called for %s/%u \n "
" Current oplocks_open (exclusive = %d, levelII = %d) \n " ,
file_id_string_tos ( & id ) , ( int ) file_id ,
sconn - > oplocks . exclusive_open ,
sconn - > oplocks . level_II_open ) ) ;
2001-10-21 01:59:34 +04:00
/*
* We need to search the file open table for the
* entry containing this dev and inode , and ensure
* we have an oplock on it .
*/
2010-10-03 19:18:26 +04:00
fsp = file_find_dif ( sconn , id , file_id ) ;
2001-10-21 01:59:34 +04:00
if ( fsp = = NULL ) {
/* The file could have been closed in the meantime - return success. */
2013-09-16 06:18:41 +04:00
DEBUG ( 3 , ( " initial_break_processing: cannot find open file "
" with file_id %s gen_id = %lu, allowing break to "
" succeed. \n " , file_id_string_tos ( & id ) , file_id ) ) ;
2001-10-21 01:59:34 +04:00
return NULL ;
}
/* Ensure we have an oplock on the file */
/*
* There is a potential race condition in that an oplock could
* have been broken due to another udp request , and yet there are
* still oplock break messages being sent in the udp message
* queue for this file . So return true if we don ' t have an oplock ,
* as we may have just freed it .
*/
if ( fsp - > oplock_type = = NO_OPLOCK ) {
2013-09-16 06:18:41 +04:00
DEBUG ( 3 , ( " initial_break_processing: file %s (file_id = %s "
" gen_id = %lu) has no oplock. Allowing break to "
" succeed regardless. \n " , fsp_str_dbg ( fsp ) ,
file_id_string_tos ( & id ) , fsp - > fh - > gen_id ) ) ;
2001-10-21 01:59:34 +04:00
return NULL ;
}
return fsp ;
1999-12-13 16:27:58 +03:00
}
2013-02-18 12:56:41 +04:00
static void oplock_timeout_handler ( struct tevent_context * ctx ,
2013-02-18 13:18:29 +04:00
struct tevent_timer * te ,
2009-01-05 12:22:50 +03:00
struct timeval now ,
2005-09-30 21:13:37 +04:00
void * private_data )
1999-12-13 16:27:58 +03:00
{
2006-08-08 13:56:38 +04:00
files_struct * fsp = ( files_struct * ) private_data ;
2004-06-12 03:54:52 +04:00
2013-09-04 16:20:00 +04:00
SMB_ASSERT ( fsp - > sent_oplock_break ! = NO_BREAK_SENT ) ;
2007-06-22 21:19:08 +04:00
/* Remove the timed event handler. */
TALLOC_FREE ( fsp - > oplock_timeout ) ;
2009-07-11 01:50:37 +04:00
DEBUG ( 0 , ( " Oplock break failed for file %s -- replying anyway \n " ,
fsp_str_dbg ( fsp ) ) ) ;
2005-09-30 21:13:37 +04:00
remove_oplock ( fsp ) ;
1999-12-13 16:27:58 +03:00
}
2006-01-28 02:30:30 +03:00
/*******************************************************************
Add a timeout handler waiting for the client reply .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static void add_oplock_timeout_handler ( files_struct * fsp )
{
2012-05-25 01:33:32 +04:00
struct smbd_server_connection * sconn = fsp - > conn - > sconn ;
struct kernel_oplocks * koplocks = sconn - > oplocks . kernel_ops ;
2009-02-04 02:40:23 +03:00
/*
* If kernel oplocks already notifies smbds when an oplock break times
* out , just return .
*/
if ( koplocks & &
( koplocks - > flags & KOPLOCKS_TIMEOUT_NOTIFICATION ) ) {
return ;
}
2006-01-28 02:30:30 +03:00
if ( fsp - > oplock_timeout ! = NULL ) {
DEBUG ( 0 , ( " Logic problem -- have an oplock event hanging "
" around \n " ) ) ;
}
fsp - > oplock_timeout =
2011-12-12 16:51:27 +04:00
tevent_add_timer ( fsp - > conn - > sconn - > ev_ctx , fsp ,
timeval_current_ofs ( OPLOCK_BREAK_TIMEOUT , 0 ) ,
oplock_timeout_handler , fsp ) ;
2006-01-28 02:30:30 +03:00
if ( fsp - > oplock_timeout = = NULL ) {
DEBUG ( 0 , ( " Could not add oplock timeout handler \n " ) ) ;
}
}
2010-04-24 11:29:41 +04:00
static void send_break_message_smb1 ( files_struct * fsp , int level )
2010-04-08 06:00:44 +04:00
{
2013-08-19 16:28:24 +04:00
char break_msg [ SMB1_BREAK_MESSAGE_LENGTH ] ;
new_break_message_smb1 ( fsp , level , break_msg ) ;
2010-04-08 06:00:44 +04:00
show_msg ( break_msg ) ;
2010-08-24 22:10:20 +04:00
if ( ! srv_send_smb ( fsp - > conn - > sconn ,
2010-04-08 06:00:44 +04:00
break_msg , false , 0 ,
IS_CONN_ENCRYPTED ( fsp - > conn ) ,
NULL ) ) {
2010-04-10 06:26:34 +04:00
exit_server_cleanly ( " send_break_message_smb1: "
2010-04-08 06:00:44 +04:00
" srv_send_smb failed. " ) ;
}
}
2006-01-28 02:30:30 +03:00
/*******************************************************************
This handles the generic oplock break message from another smbd .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2007-05-15 00:31:28 +04:00
static void process_oplock_break_message ( struct messaging_context * msg_ctx ,
void * private_data ,
uint32_t msg_type ,
struct server_id src ,
DATA_BLOB * data )
1999-12-13 16:27:58 +03:00
{
2006-01-13 01:17:54 +03:00
struct share_mode_entry msg ;
2005-09-30 21:13:37 +04:00
files_struct * fsp ;
2007-10-19 04:40:25 +04:00
bool break_to_level2 = False ;
2012-03-30 18:11:08 +04:00
bool use_kernel ;
2011-12-13 16:18:47 +04:00
struct smbd_server_connection * sconn =
2011-12-14 12:50:24 +04:00
talloc_get_type_abort ( private_data ,
2011-12-13 16:18:47 +04:00
struct smbd_server_connection ) ;
2012-06-02 15:39:33 +04:00
struct server_id self = messaging_server_id ( sconn - > msg_ctx ) ;
2012-05-25 01:33:32 +04:00
struct kernel_oplocks * koplocks = sconn - > oplocks . kernel_ops ;
2013-09-27 03:15:31 +04:00
uint16_t break_to ;
2001-10-21 01:59:34 +04:00
2011-12-13 16:18:47 +04:00
if ( data - > data = = NULL ) {
DEBUG ( 0 , ( " Got NULL buffer \n " ) ) ;
2010-10-03 19:22:09 +04:00
return ;
}
2007-05-15 00:31:28 +04:00
if ( data - > length ! = MSG_SMB_SHARE_MODE_ENTRY_SIZE ) {
DEBUG ( 0 , ( " Got invalid msg len %d \n " , ( int ) data - > length ) ) ;
2005-09-30 21:13:37 +04:00
return ;
2001-10-21 01:59:34 +04:00
}
2006-01-13 01:17:54 +03:00
/* De-linearize incoming message. */
2007-05-15 00:31:28 +04:00
message_to_share_mode_entry ( & msg , ( char * ) data - > data ) ;
2013-09-27 03:15:31 +04:00
break_to = msg . op_type ;
2006-01-13 01:17:54 +03:00
2013-09-27 03:15:31 +04:00
DEBUG ( 10 , ( " Got oplock break to %u message from pid %s: %s/%llu \n " ,
( unsigned ) break_to , server_id_str ( talloc_tos ( ) , & src ) ,
2011-12-02 18:03:05 +04:00
file_id_string_tos ( & msg . id ) ,
( unsigned long long ) msg . share_file_id ) ) ;
2001-10-21 01:59:34 +04:00
2010-10-03 19:22:09 +04:00
fsp = initial_break_processing ( sconn , msg . id , msg . share_file_id ) ;
2001-10-21 01:59:34 +04:00
2005-09-30 21:13:37 +04:00
if ( fsp = = NULL ) {
2010-01-19 18:51:33 +03:00
/* We hit a race here. Break messages are sent, and before we
2013-04-12 16:03:08 +04:00
* get to process this message , we have closed the file . */
2005-09-30 21:13:37 +04:00
DEBUG ( 3 , ( " Did not find fsp \n " ) ) ;
return ;
2001-10-21 01:59:34 +04:00
}
2005-09-30 21:13:37 +04:00
if ( fsp - > sent_oplock_break ! = NO_BREAK_SENT ) {
2013-04-12 16:09:12 +04:00
/*
* Nothing to do anymore
*/
2005-09-30 21:13:37 +04:00
return ;
2001-10-21 01:59:34 +04:00
}
2013-09-27 03:15:31 +04:00
if ( break_to = = fsp - > oplock_type ) {
2007-05-29 13:30:34 +04:00
DEBUG ( 3 , ( " Already downgraded oplock on %s: %s \n " ,
2007-09-10 14:56:07 +04:00
file_id_string_tos ( & fsp - > file_id ) ,
2009-07-11 01:50:37 +04:00
fsp_str_dbg ( fsp ) ) ) ;
2005-09-30 21:13:37 +04:00
return ;
2005-07-17 13:56:25 +04:00
}
2001-10-21 01:59:34 +04:00
2012-03-30 18:11:08 +04:00
use_kernel = lp_kernel_oplocks ( SNUM ( fsp - > conn ) ) & & koplocks ;
if ( ( global_client_caps & CAP_LEVEL_II_OPLOCKS ) & &
2013-09-27 03:15:31 +04:00
( break_to ! = NO_OPLOCK ) & &
2012-03-30 18:11:08 +04:00
! ( use_kernel & & ! ( koplocks - > flags & KOPLOCKS_LEVEL2_SUPPORTED ) ) & &
2005-09-30 21:13:37 +04:00
lp_level2_oplocks ( SNUM ( fsp - > conn ) ) ) {
break_to_level2 = True ;
}
2001-10-21 01:59:34 +04:00
2010-04-08 06:00:44 +04:00
/* Need to wait before sending a break
message if we sent ourselves this message . */
2012-06-16 02:26:26 +04:00
if ( serverid_equal ( & self , & src ) ) {
2005-09-30 21:13:37 +04:00
wait_before_sending_break ( ) ;
}
2001-10-21 01:59:34 +04:00
2010-06-10 06:12:02 +04:00
if ( sconn - > using_smb2 ) {
2010-04-10 06:26:34 +04:00
send_break_message_smb2 ( fsp , break_to_level2 ?
2010-04-08 06:00:44 +04:00
OPLOCKLEVEL_II : OPLOCKLEVEL_NONE ) ;
} else {
2010-04-10 06:26:34 +04:00
send_break_message_smb1 ( fsp , break_to_level2 ?
2010-04-08 06:00:44 +04:00
OPLOCKLEVEL_II : OPLOCKLEVEL_NONE ) ;
2003-07-17 01:06:21 +04:00
}
2003-07-17 04:58:14 +04:00
2013-10-22 15:33:42 +04:00
if ( ( fsp - > oplock_type = = LEVEL_II_OPLOCK ) & & ( break_to = = NO_OPLOCK ) ) {
/*
* This is an async break without a reply and thus no timeout
*/
remove_oplock ( fsp ) ;
return ;
}
2006-01-28 02:30:30 +03:00
fsp - > sent_oplock_break = break_to_level2 ? LEVEL_II_BREAK_SENT : BREAK_TO_NONE_SENT ;
add_oplock_timeout_handler ( fsp ) ;
2005-09-30 21:13:37 +04:00
}
2001-10-21 01:59:34 +04:00
2006-01-28 02:30:30 +03:00
/*******************************************************************
This handles the kernel oplock break message .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2007-05-15 00:31:28 +04:00
static void process_kernel_oplock_break ( struct messaging_context * msg_ctx ,
void * private_data ,
uint32_t msg_type ,
struct server_id src ,
DATA_BLOB * data )
2005-09-30 21:13:37 +04:00
{
2007-05-29 13:30:34 +04:00
struct file_id id ;
2006-01-13 01:17:54 +03:00
unsigned long file_id ;
2005-09-30 21:13:37 +04:00
files_struct * fsp ;
2011-12-13 16:18:47 +04:00
struct smbd_server_connection * sconn =
2011-12-14 12:50:24 +04:00
talloc_get_type_abort ( private_data ,
2011-12-13 16:18:47 +04:00
struct smbd_server_connection ) ;
2007-05-15 00:31:28 +04:00
if ( data - > data = = NULL ) {
2005-09-30 21:13:37 +04:00
DEBUG ( 0 , ( " Got NULL buffer \n " ) ) ;
return ;
2001-10-21 01:59:34 +04:00
}
2007-05-15 00:31:28 +04:00
if ( data - > length ! = MSG_SMB_KERNEL_BREAK_SIZE ) {
DEBUG ( 0 , ( " Got invalid msg len %d \n " , ( int ) data - > length ) ) ;
2005-09-30 21:13:37 +04:00
return ;
2001-10-21 01:59:34 +04:00
}
2006-01-13 01:17:54 +03:00
/* Pull the data from the message. */
2009-02-16 10:45:28 +03:00
pull_file_id_24 ( ( char * ) data - > data , & id ) ;
file_id = ( unsigned long ) IVAL ( data - > data , 24 ) ;
2001-10-21 01:59:34 +04:00
2009-04-03 12:42:43 +04:00
DEBUG ( 10 , ( " Got kernel oplock break message from pid %s: %s/%u \n " ,
2011-06-08 08:05:55 +04:00
server_id_str ( talloc_tos ( ) , & src ) , file_id_string_tos ( & id ) ,
2006-01-13 01:17:54 +03:00
( unsigned int ) file_id ) ) ;
2010-10-03 19:24:33 +04:00
fsp = initial_break_processing ( sconn , id , file_id ) ;
2001-10-21 01:59:34 +04:00
2005-09-30 21:13:37 +04:00
if ( fsp = = NULL ) {
DEBUG ( 3 , ( " Got a kernel oplock break message for a file "
" I don't know about \n " ) ) ;
return ;
2001-10-21 01:59:34 +04:00
}
2005-09-30 21:13:37 +04:00
if ( fsp - > sent_oplock_break ! = NO_BREAK_SENT ) {
/* This is ok, kernel oplocks come in completely async */
DEBUG ( 3 , ( " Got a kernel oplock request while waiting for a "
" break reply \n " ) ) ;
return ;
2001-10-21 01:59:34 +04:00
}
2010-06-10 06:12:02 +04:00
if ( sconn - > using_smb2 ) {
2010-04-10 06:26:34 +04:00
send_break_message_smb2 ( fsp , OPLOCKLEVEL_NONE ) ;
2010-04-08 06:00:44 +04:00
} else {
2010-04-10 06:26:34 +04:00
send_break_message_smb1 ( fsp , OPLOCKLEVEL_NONE ) ;
2001-10-21 01:59:34 +04:00
}
2005-09-30 21:13:37 +04:00
fsp - > sent_oplock_break = BREAK_TO_NONE_SENT ;
2006-01-28 02:30:30 +03:00
add_oplock_timeout_handler ( fsp ) ;
2005-09-30 21:13:37 +04:00
}
1998-08-17 17:11:34 +04:00
2012-01-13 16:26:41 +04:00
struct break_to_none_state {
struct smbd_server_connection * sconn ;
struct file_id id ;
} ;
2013-08-16 15:40:38 +04:00
static void do_break_to_none ( struct tevent_context * ctx ,
struct tevent_immediate * im ,
void * private_data ) ;
2012-01-13 16:26:41 +04:00
2000-11-16 03:59:18 +03:00
/****************************************************************************
This function is called on any file modification or lock request . If a file
2005-09-30 21:13:37 +04:00
is level 2 oplocked then it must tell all other level 2 holders to break to
none .
2000-11-16 03:59:18 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2009-02-03 22:56:35 +03:00
static void contend_level2_oplocks_begin_default ( files_struct * fsp ,
enum level2_contention_type type )
2000-11-16 03:59:18 +03:00
{
2012-01-13 16:26:41 +04:00
struct smbd_server_connection * sconn = fsp - > conn - > sconn ;
2013-08-16 15:40:38 +04:00
struct tevent_immediate * im ;
2012-01-13 16:26:41 +04:00
struct break_to_none_state * state ;
2013-09-11 20:07:33 +04:00
struct byte_range_lock * brl ;
2000-11-16 03:59:18 +03:00
/*
* If this file is level II oplocked then we need
* to grab the shared memory lock and inform all
* other files with a level II lock that they need
* to flush their read caches . We keep the lock over
* the shared memory area whilst doing this .
*/
2013-09-11 20:07:33 +04:00
if ( EXCLUSIVE_OPLOCK_TYPE ( fsp - > oplock_type ) ) {
/*
* There can ' t be any level2 oplocks , we ' re alone .
*/
return ;
}
brl = brl_get_locks_readonly ( fsp ) ;
if ( ( brl ! = NULL ) & & ! brl_have_read_oplocks ( brl ) ) {
DEBUG ( 10 , ( " No read oplocks around \n " ) ) ;
2000-11-16 03:59:18 +03:00
return ;
2013-09-11 20:07:33 +04:00
}
2000-11-16 03:59:18 +03:00
2012-01-13 16:26:41 +04:00
/*
* When we get here we might have a brlock entry locked . Also
* locking the share mode entry would violate the locking
* order . Breaking level2 oplocks to none is asynchronous
2013-10-02 19:20:16 +04:00
* anyway , so we postpone this into an immediate event .
2012-01-13 16:26:41 +04:00
*/
state = talloc ( sconn , struct break_to_none_state ) ;
if ( state = = NULL ) {
DEBUG ( 1 , ( " talloc failed \n " ) ) ;
return ;
}
state - > sconn = sconn ;
state - > id = fsp - > file_id ;
2013-08-16 15:40:38 +04:00
im = tevent_create_immediate ( state ) ;
if ( im = = NULL ) {
DEBUG ( 1 , ( " tevent_create_immediate failed \n " ) ) ;
2012-01-13 16:26:41 +04:00
TALLOC_FREE ( state ) ;
2006-03-07 12:09:13 +03:00
return ;
2000-11-16 03:59:18 +03:00
}
2013-08-16 15:40:38 +04:00
tevent_schedule_immediate ( im , sconn - > ev_ctx , do_break_to_none , state ) ;
2012-01-13 16:26:41 +04:00
}
2013-08-16 15:40:38 +04:00
static void do_break_to_none ( struct tevent_context * ctx ,
struct tevent_immediate * im ,
void * private_data )
2012-01-13 16:26:41 +04:00
{
2013-08-16 15:40:38 +04:00
struct break_to_none_state * state = talloc_get_type_abort (
private_data , struct break_to_none_state ) ;
2012-01-13 16:26:41 +04:00
int i ;
struct share_mode_lock * lck ;
2012-02-19 17:23:56 +04:00
lck = get_existing_share_mode_lock ( talloc_tos ( ) , state - > id ) ;
2012-01-13 16:26:41 +04:00
if ( lck = = NULL ) {
2013-11-01 15:55:43 +04:00
DEBUG ( 1 , ( " %s: failed to lock share mode entry for file %s. \n " ,
__func__ , file_id_string_tos ( & state - > id ) ) ) ;
2012-01-13 16:26:41 +04:00
goto done ;
}
2000-11-16 03:59:18 +03:00
2013-11-01 15:55:43 +04:00
DEBUG ( 10 , ( " %s: num_share_modes = %d \n " , __func__ ,
2012-01-10 16:56:37 +04:00
lck - > data - > num_share_modes ) ) ;
2005-09-30 21:13:37 +04:00
2012-01-10 16:56:37 +04:00
for ( i = 0 ; i < lck - > data - > num_share_modes ; i + + ) {
struct share_mode_entry * share_entry = & lck - > data - > share_modes [ i ] ;
2006-01-13 01:17:54 +03:00
char msg [ MSG_SMB_SHARE_MODE_ENTRY_SIZE ] ;
2000-11-16 03:59:18 +03:00
2006-01-27 22:54:39 +03:00
if ( ! is_valid_share_mode_entry ( share_entry ) ) {
continue ;
}
2000-11-16 03:59:18 +03:00
/*
2005-09-30 21:13:37 +04:00
* As there could have been multiple writes waiting at the
* lock_share_entry gate we may not be the first to
* enter . Hence the state of the op_types in the share mode
2013-09-13 17:18:15 +04:00
* entries may be partly NO_OPLOCK and partly LEVEL_II
2005-09-30 21:13:37 +04:00
* oplock . It will do no harm to re - send break messages to
* those smbd ' s that are still waiting their turn to remove
* their LEVEL_II state , and also no harm to ignore existing
* NO_OPLOCK states . JRA .
2000-11-16 03:59:18 +03:00
*/
2013-11-01 15:55:43 +04:00
DEBUG ( 10 , ( " %s: share_entry[%i]->op_type == %d \n " , __func__ ,
2005-09-30 21:13:37 +04:00
i , share_entry - > op_type ) ) ;
2001-08-22 04:29:40 +04:00
2006-01-28 02:30:30 +03:00
if ( share_entry - > op_type = = NO_OPLOCK ) {
2000-11-16 03:59:18 +03:00
continue ;
2005-09-30 21:13:37 +04:00
}
2000-11-16 03:59:18 +03:00
/* Paranoia .... */
if ( EXCLUSIVE_OPLOCK_TYPE ( share_entry - > op_type ) ) {
2013-11-01 15:55:43 +04:00
DEBUG ( 0 , ( " %s: PANIC. "
2005-09-30 21:13:37 +04:00
" share mode entry %d is an exlusive "
2013-11-01 15:55:43 +04:00
" oplock ! \n " , __func__ , i ) ) ;
2006-02-20 20:59:58 +03:00
TALLOC_FREE ( lck ) ;
2000-11-16 03:59:18 +03:00
abort ( ) ;
}
2006-01-13 01:17:54 +03:00
share_mode_entry_to_message ( msg , share_entry ) ;
2013-10-22 15:33:42 +04:00
/* Overload entry->op_type */
SSVAL ( msg , OP_BREAK_MSG_OP_TYPE_OFFSET , NO_OPLOCK ) ;
2006-01-13 01:17:54 +03:00
2013-10-04 13:24:29 +04:00
messaging_send_buf ( state - > sconn - > msg_ctx , share_entry - > pid ,
2013-10-22 15:33:42 +04:00
MSG_SMB_BREAK_REQUEST ,
2013-10-04 13:24:29 +04:00
( uint8 * ) msg , sizeof ( msg ) ) ;
2004-06-08 20:14:31 +04:00
}
2006-01-28 02:30:30 +03:00
/* We let the message receivers handle removing the oplock state
in the share mode lock db . */
2006-02-20 20:59:58 +03:00
TALLOC_FREE ( lck ) ;
2012-01-13 16:26:41 +04:00
done :
TALLOC_FREE ( state ) ;
return ;
2004-06-08 20:14:31 +04:00
}
2011-05-31 07:18:37 +04:00
void smbd_contend_level2_oplocks_begin ( files_struct * fsp ,
2009-02-03 22:56:35 +03:00
enum level2_contention_type type )
{
2012-05-25 01:33:32 +04:00
struct smbd_server_connection * sconn = fsp - > conn - > sconn ;
struct kernel_oplocks * koplocks = sconn - > oplocks . kernel_ops ;
2009-02-03 22:56:35 +03:00
if ( koplocks & & koplocks - > ops - > contend_level2_oplocks_begin ) {
koplocks - > ops - > contend_level2_oplocks_begin ( fsp , type ) ;
return ;
}
contend_level2_oplocks_begin_default ( fsp , type ) ;
}
2011-05-31 07:18:37 +04:00
void smbd_contend_level2_oplocks_end ( files_struct * fsp ,
2009-02-03 22:56:35 +03:00
enum level2_contention_type type )
{
2012-05-25 01:33:32 +04:00
struct smbd_server_connection * sconn = fsp - > conn - > sconn ;
struct kernel_oplocks * koplocks = sconn - > oplocks . kernel_ops ;
2009-02-03 22:56:35 +03:00
/* Only kernel oplocks implement this so far */
if ( koplocks & & koplocks - > ops - > contend_level2_oplocks_end ) {
koplocks - > ops - > contend_level2_oplocks_end ( fsp , type ) ;
}
}
2006-01-13 01:17:54 +03:00
/****************************************************************************
Linearize a share mode entry struct to an internal oplock break message .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2008-05-27 22:23:59 +04:00
void share_mode_entry_to_message ( char * msg , const struct share_mode_entry * e )
2006-01-13 01:17:54 +03:00
{
2010-04-13 08:40:28 +04:00
SIVAL ( msg , OP_BREAK_MSG_PID_OFFSET , ( uint32 ) e - > pid . pid ) ;
SBVAL ( msg , OP_BREAK_MSG_MID_OFFSET , e - > op_mid ) ;
SSVAL ( msg , OP_BREAK_MSG_OP_TYPE_OFFSET , e - > op_type ) ;
SIVAL ( msg , OP_BREAK_MSG_ACCESS_MASK_OFFSET , e - > access_mask ) ;
SIVAL ( msg , OP_BREAK_MSG_SHARE_ACCESS_OFFSET , e - > share_access ) ;
SIVAL ( msg , OP_BREAK_MSG_PRIV_OFFSET , e - > private_options ) ;
SIVAL ( msg , OP_BREAK_MSG_TIME_SEC_OFFSET , ( uint32_t ) e - > time . tv_sec ) ;
SIVAL ( msg , OP_BREAK_MSG_TIME_USEC_OFFSET , ( uint32_t ) e - > time . tv_usec ) ;
push_file_id_24 ( msg + OP_BREAK_MSG_DEV_OFFSET , & e - > id ) ;
SIVAL ( msg , OP_BREAK_MSG_FILE_ID_OFFSET , e - > share_file_id ) ;
SIVAL ( msg , OP_BREAK_MSG_UID_OFFSET , e - > uid ) ;
SSVAL ( msg , OP_BREAK_MSG_FLAGS_OFFSET , e - > flags ) ;
2011-01-26 01:01:52 +03:00
SIVAL ( msg , OP_BREAK_MSG_NAME_HASH_OFFSET , e - > name_hash ) ;
2010-04-13 08:40:28 +04:00
SIVAL ( msg , OP_BREAK_MSG_VNN_OFFSET , e - > pid . vnn ) ;
2006-01-13 01:17:54 +03:00
}
/****************************************************************************
De - linearize an internal oplock break message to a share mode entry struct .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2013-09-03 15:55:27 +04:00
void message_to_share_mode_entry ( struct share_mode_entry * e , const char * msg )
2006-01-13 01:17:54 +03:00
{
2010-04-13 08:40:28 +04:00
e - > pid . pid = ( pid_t ) IVAL ( msg , OP_BREAK_MSG_PID_OFFSET ) ;
e - > op_mid = BVAL ( msg , OP_BREAK_MSG_MID_OFFSET ) ;
e - > op_type = SVAL ( msg , OP_BREAK_MSG_OP_TYPE_OFFSET ) ;
e - > access_mask = IVAL ( msg , OP_BREAK_MSG_ACCESS_MASK_OFFSET ) ;
e - > share_access = IVAL ( msg , OP_BREAK_MSG_SHARE_ACCESS_OFFSET ) ;
e - > private_options = IVAL ( msg , OP_BREAK_MSG_PRIV_OFFSET ) ;
e - > time . tv_sec = ( time_t ) IVAL ( msg , OP_BREAK_MSG_TIME_SEC_OFFSET ) ;
e - > time . tv_usec = ( int ) IVAL ( msg , OP_BREAK_MSG_TIME_USEC_OFFSET ) ;
pull_file_id_24 ( msg + OP_BREAK_MSG_DEV_OFFSET , & e - > id ) ;
e - > share_file_id = ( unsigned long ) IVAL ( msg , OP_BREAK_MSG_FILE_ID_OFFSET ) ;
e - > uid = ( uint32 ) IVAL ( msg , OP_BREAK_MSG_UID_OFFSET ) ;
e - > flags = ( uint16 ) SVAL ( msg , OP_BREAK_MSG_FLAGS_OFFSET ) ;
2011-01-26 01:01:52 +03:00
e - > name_hash = IVAL ( msg , OP_BREAK_MSG_NAME_HASH_OFFSET ) ;
2010-04-13 08:40:28 +04:00
e - > pid . vnn = IVAL ( msg , OP_BREAK_MSG_VNN_OFFSET ) ;
2006-01-13 01:17:54 +03:00
}
2004-06-08 20:14:31 +04:00
/****************************************************************************
Setup oplocks for this process .
1998-09-23 05:48:45 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2001-10-21 01:59:34 +04:00
2011-12-13 16:13:53 +04:00
bool init_oplocks ( struct smbd_server_connection * sconn )
1998-09-18 21:50:18 +04:00
{
2006-07-19 14:42:50 +04:00
DEBUG ( 3 , ( " init_oplocks: initializing messages. \n " ) ) ;
2000-06-10 17:38:07 +04:00
2011-12-13 16:18:47 +04:00
messaging_register ( sconn - > msg_ctx , sconn , MSG_SMB_BREAK_REQUEST ,
2007-05-15 00:31:28 +04:00
process_oplock_break_message ) ;
2011-12-13 16:18:47 +04:00
messaging_register ( sconn - > msg_ctx , sconn , MSG_SMB_KERNEL_BREAK ,
2007-05-15 00:31:28 +04:00
process_kernel_oplock_break ) ;
2012-03-30 17:51:25 +04:00
return true ;
}
void init_kernel_oplocks ( struct smbd_server_connection * sconn )
{
2012-05-25 01:33:32 +04:00
struct kernel_oplocks * koplocks = sconn - > oplocks . kernel_ops ;
2012-03-30 17:51:25 +04:00
/* only initialize once */
if ( koplocks = = NULL ) {
2000-06-10 17:38:07 +04:00
# if HAVE_KERNEL_OPLOCKS_IRIX
2011-12-13 16:38:41 +04:00
koplocks = irix_init_kernel_oplocks ( sconn ) ;
2000-06-11 09:57:58 +04:00
# elif HAVE_KERNEL_OPLOCKS_LINUX
2011-12-13 16:38:41 +04:00
koplocks = linux_init_kernel_oplocks ( sconn ) ;
2000-06-10 17:38:07 +04:00
# endif
2012-05-25 01:33:32 +04:00
sconn - > oplocks . kernel_ops = koplocks ;
2000-06-10 17:38:07 +04:00
}
1998-09-18 21:50:18 +04:00
}