1996-05-04 11:50:46 +04:00
/*
2002-01-30 09:08:46 +03:00
Unix SMB / CIFS implementation .
1996-05-04 11:50:46 +04:00
Locking functions
2000-04-28 01:12:33 +04:00
Copyright ( C ) Andrew Tridgell 1992 - 2000
Copyright ( C ) Jeremy Allison 1992 - 2000
2005-07-08 08:51:27 +04:00
Copyright ( C ) Volker Lendecke 2005
1996-05-04 11:50:46 +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
the Free Software Foundation ; either version 2 of the License , or
( at your option ) any later version .
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 .
You should have received a copy of the GNU General Public License
along with this program ; if not , write to the Free Software
Foundation , Inc . , 675 Mass Ave , Cambridge , MA 0213 9 , USA .
1996-08-15 19:11:34 +04:00
Revision History :
12 aug 96 : Erik . Devriendt @ te6 . siemens . be
added support for shared memory implementation of share mode locking
1997-05-20 04:32:51 +04:00
May 1997. Jeremy Allison ( jallison @ whistle . com ) . Modified share mode
locking to deal with multiple share modes per open file .
1997-10-07 22:46:19 +04:00
September 1997. Jeremy Allison ( jallison @ whistle . com ) . Added oplock
support .
1999-12-21 12:25:59 +03:00
rewrtten completely to use new tdb code . Tridge , Dec ' 99
2000-04-28 01:12:33 +04:00
Added POSIX locking support . Jeremy Allison ( jeremy @ valinux . com ) , Apr . 2000.
1996-05-04 11:50:46 +04:00
*/
# include "includes.h"
2001-07-02 06:42:41 +04:00
uint16 global_smbpid ;
1996-05-04 11:50:46 +04:00
2005-04-27 22:32:37 +04:00
# undef DBGC_CLASS
# define DBGC_CLASS DBGC_LOCKING
1999-12-21 12:25:59 +03:00
/* the locking database handle */
static TDB_CONTEXT * tdb ;
1997-10-20 12:46:00 +04:00
2004-06-08 20:14:31 +04:00
struct locking_data {
union {
2005-07-08 08:51:27 +04:00
struct {
int num_share_mode_entries ;
BOOL delete_on_close ;
} s ;
2005-09-30 21:13:37 +04:00
struct share_mode_entry dummy ; /* Needed for alignment. */
2004-06-08 20:14:31 +04:00
} u ;
/* the following two entries are implicit
2005-09-30 21:13:37 +04:00
struct share_mode_entry modes [ num_share_mode_entries ] ;
2004-06-08 20:14:31 +04:00
char file_name [ ] ;
*/
} ;
2000-04-12 21:59:09 +04:00
/****************************************************************************
Debugging aid : - ) .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static const char * lock_type_name ( enum brl_type lock_type )
{
return ( lock_type = = READ_LOCK ) ? " READ " : " WRITE " ;
}
1996-05-04 11:50:46 +04:00
/****************************************************************************
1998-07-23 04:10:26 +04:00
Utility function called to see if a file region is locked .
1996-05-04 11:50:46 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2000-04-12 21:59:09 +04:00
1998-08-15 11:27:34 +04:00
BOOL is_locked ( files_struct * fsp , connection_struct * conn ,
2000-04-11 23:44:54 +04:00
SMB_BIG_UINT count , SMB_BIG_UINT offset ,
2004-12-09 04:07:06 +03:00
enum brl_type lock_type )
1996-05-04 11:50:46 +04:00
{
1998-08-14 21:38:29 +04:00
int snum = SNUM ( conn ) ;
2004-12-11 03:30:28 +03:00
int strict_locking = lp_strict_locking ( snum ) ;
2000-04-12 21:59:09 +04:00
BOOL ret ;
1999-12-21 12:25:59 +03:00
1998-08-14 21:38:29 +04:00
if ( count = = 0 )
return ( False ) ;
1996-05-04 11:50:46 +04:00
2004-12-11 03:30:28 +03:00
if ( ! lp_locking ( snum ) | | ! strict_locking )
1998-08-14 21:38:29 +04:00
return ( False ) ;
1998-07-28 22:26:47 +04:00
2004-12-11 03:30:28 +03:00
if ( strict_locking = = Auto ) {
if ( EXCLUSIVE_OPLOCK_TYPE ( fsp - > oplock_type ) & & ( lock_type = = READ_LOCK | | lock_type = = WRITE_LOCK ) ) {
DEBUG ( 10 , ( " is_locked: optimisation - exclusive oplock on file %s \n " , fsp - > fsp_name ) ) ;
ret = 0 ;
2005-09-30 21:13:37 +04:00
} else if ( ( fsp - > oplock_type = = LEVEL_II_OPLOCK ) & &
( lock_type = = READ_LOCK ) ) {
2004-12-11 03:30:28 +03:00
DEBUG ( 10 , ( " is_locked: optimisation - level II oplock on file %s \n " , fsp - > fsp_name ) ) ;
ret = 0 ;
} else {
ret = ! brl_locktest ( fsp - > dev , fsp - > inode , fsp - > fnum ,
2005-09-30 21:13:37 +04:00
global_smbpid , procid_self ( ) , conn - > cnum ,
2004-12-11 03:30:28 +03:00
offset , count , lock_type ) ;
}
2004-12-10 01:10:40 +03:00
} else {
ret = ! brl_locktest ( fsp - > dev , fsp - > inode , fsp - > fnum ,
2005-09-30 21:13:37 +04:00
global_smbpid , procid_self ( ) , conn - > cnum ,
2004-12-11 03:30:28 +03:00
offset , count , lock_type ) ;
2004-12-10 01:10:40 +03:00
}
2001-06-30 05:59:48 +04:00
DEBUG ( 10 , ( " is_locked: brl start=%.0f len=%.0f %s for file %s \n " ,
( double ) offset , ( double ) count , ret ? " locked " : " unlocked " ,
fsp - > fsp_name ) ) ;
1996-05-04 11:50:46 +04:00
2000-04-12 21:59:09 +04:00
/*
* There is no lock held by an SMB daemon , check to
* see if there is a POSIX lock from a UNIX or NFS process .
*/
2001-06-30 05:59:48 +04:00
if ( ! ret & & lp_posix_locking ( snum ) ) {
2000-04-13 03:01:11 +04:00
ret = is_posix_locked ( fsp , offset , count , lock_type ) ;
2000-04-12 21:59:09 +04:00
2001-06-30 05:59:48 +04:00
DEBUG ( 10 , ( " is_locked: posix start=%.0f len=%.0f %s for file %s \n " ,
( double ) offset , ( double ) count , ret ? " locked " : " unlocked " ,
fsp - > fsp_name ) ) ;
}
2000-04-12 21:59:09 +04:00
return ret ;
}
1996-05-04 11:50:46 +04:00
/****************************************************************************
1998-07-23 04:10:26 +04:00
Utility function called by locking requests .
1996-05-04 11:50:46 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2000-04-12 21:59:09 +04:00
2002-03-13 23:28:19 +03:00
static NTSTATUS do_lock ( files_struct * fsp , connection_struct * conn , uint16 lock_pid ,
2003-10-09 05:46:01 +04:00
SMB_BIG_UINT count , SMB_BIG_UINT offset , enum brl_type lock_type , BOOL * my_lock_ctx )
1996-05-04 11:50:46 +04:00
{
2003-01-03 21:50:13 +03:00
NTSTATUS status = NT_STATUS_LOCK_NOT_GRANTED ;
1999-12-21 12:25:59 +03:00
if ( ! lp_locking ( SNUM ( conn ) ) )
2001-09-04 11:13:01 +04:00
return NT_STATUS_OK ;
1999-12-21 12:25:59 +03:00
2001-08-24 08:55:28 +04:00
/* NOTE! 0 byte long ranges ARE allowed and should be stored */
2000-04-12 21:59:09 +04:00
DEBUG ( 10 , ( " do_lock: lock type %s start=%.0f len=%.0f requested for file %s \n " ,
lock_type_name ( lock_type ) , ( double ) offset , ( double ) count , fsp - > fsp_name ) ) ;
1999-12-21 12:25:59 +03:00
2000-01-13 15:09:36 +03:00
if ( OPEN_FSP ( fsp ) & & fsp - > can_lock & & ( fsp - > conn = = conn ) ) {
2001-09-06 05:19:35 +04:00
status = brl_lock ( fsp - > dev , fsp - > inode , fsp - > fnum ,
2005-09-30 21:13:37 +04:00
lock_pid , procid_self ( ) , conn - > cnum ,
2001-09-06 05:19:35 +04:00
offset , count ,
2003-10-09 05:46:01 +04:00
lock_type , my_lock_ctx ) ;
2000-04-12 21:59:09 +04:00
2001-09-06 05:19:35 +04:00
if ( NT_STATUS_IS_OK ( status ) & & lp_posix_locking ( SNUM ( conn ) ) ) {
2000-04-12 21:59:09 +04:00
/*
* Try and get a POSIX lock on this range .
2000-04-19 00:41:04 +04:00
* Note that this is ok if it is a read lock
* overlapping on a different fd . JRA .
2000-04-12 21:59:09 +04:00
*/
2001-09-06 05:19:35 +04:00
if ( ! set_posix_lock ( fsp , offset , count , lock_type ) ) {
2003-08-01 10:10:30 +04:00
if ( errno = = EACCES | | errno = = EAGAIN )
status = NT_STATUS_FILE_LOCK_CONFLICT ;
else
status = map_nt_error_from_unix ( errno ) ;
2000-04-12 21:59:09 +04:00
/*
* We failed to map - we must now remove the brl
* lock entry .
*/
( void ) brl_unlock ( fsp - > dev , fsp - > inode , fsp - > fnum ,
2005-09-30 21:13:37 +04:00
lock_pid , procid_self ( ) , conn - > cnum ,
2003-04-05 00:38:12 +04:00
offset , count , False ,
NULL , NULL ) ;
2000-04-12 21:59:09 +04:00
}
}
2000-01-13 15:09:36 +03:00
}
1999-12-21 12:25:59 +03:00
2001-09-06 05:19:35 +04:00
return status ;
1996-05-04 11:50:46 +04:00
}
2002-03-13 23:28:19 +03:00
/****************************************************************************
2002-09-25 19:19:00 +04:00
Utility function called by locking requests . This is * DISGUSTING * . It also
2002-03-13 23:28:19 +03:00
appears to be " What Windows Does " ( tm ) . Andrew , ever wonder why Windows 2000
is so slow on the locking tests . . . . . . ? This is the reason . Much though I hate
it , we need this . JRA .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
NTSTATUS do_lock_spin ( files_struct * fsp , connection_struct * conn , uint16 lock_pid ,
2003-10-09 05:46:01 +04:00
SMB_BIG_UINT count , SMB_BIG_UINT offset , enum brl_type lock_type , BOOL * my_lock_ctx )
2002-03-13 23:28:19 +03:00
{
int j , maxj = lp_lock_spin_count ( ) ;
int sleeptime = lp_lock_sleep_time ( ) ;
2002-03-15 12:51:37 +03:00
NTSTATUS status , ret ;
2002-03-13 23:28:19 +03:00
2002-03-13 23:49:57 +03:00
if ( maxj < = 0 )
maxj = 1 ;
2002-03-15 12:51:37 +03:00
ret = NT_STATUS_OK ; /* to keep dumb compilers happy */
2002-03-13 23:28:19 +03:00
for ( j = 0 ; j < maxj ; j + + ) {
2003-10-09 05:46:01 +04:00
status = do_lock ( fsp , conn , lock_pid , count , offset , lock_type , my_lock_ctx ) ;
2002-03-13 23:28:19 +03:00
if ( ! NT_STATUS_EQUAL ( status , NT_STATUS_LOCK_NOT_GRANTED ) & &
2002-03-15 12:51:37 +03:00
! NT_STATUS_EQUAL ( status , NT_STATUS_FILE_LOCK_CONFLICT ) ) {
return status ;
}
/* if we do fail then return the first error code we got */
if ( j = = 0 ) {
ret = status ;
2003-10-09 05:46:01 +04:00
/* Don't spin if we blocked ourselves. */
if ( * my_lock_ctx )
return ret ;
2002-03-15 12:51:37 +03:00
}
2002-03-13 23:49:57 +03:00
if ( sleeptime )
2002-03-14 04:05:34 +03:00
sys_usleep ( sleeptime ) ;
2002-03-13 23:28:19 +03:00
}
2002-03-15 12:51:37 +03:00
return ret ;
2002-03-13 23:28:19 +03:00
}
2003-04-05 00:38:12 +04:00
/* Struct passed to brl_unlock. */
struct posix_unlock_data_struct {
files_struct * fsp ;
SMB_BIG_UINT offset ;
SMB_BIG_UINT count ;
} ;
/****************************************************************************
Function passed to brl_unlock to allow POSIX unlock to be done first .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static void posix_unlock ( void * pre_data )
{
struct posix_unlock_data_struct * pdata = ( struct posix_unlock_data_struct * ) pre_data ;
if ( lp_posix_locking ( SNUM ( pdata - > fsp - > conn ) ) )
release_posix_lock ( pdata - > fsp , pdata - > offset , pdata - > count ) ;
}
1996-05-04 11:50:46 +04:00
/****************************************************************************
1998-07-23 04:10:26 +04:00
Utility function called by unlocking requests .
1996-05-04 11:50:46 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2000-04-13 03:01:11 +04:00
2001-08-27 12:19:43 +04:00
NTSTATUS do_unlock ( files_struct * fsp , connection_struct * conn , uint16 lock_pid ,
SMB_BIG_UINT count , SMB_BIG_UINT offset )
1996-05-04 11:50:46 +04:00
{
1999-12-21 12:25:59 +03:00
BOOL ok = False ;
2003-04-05 00:38:12 +04:00
struct posix_unlock_data_struct posix_data ;
1999-12-21 12:25:59 +03:00
if ( ! lp_locking ( SNUM ( conn ) ) )
2001-09-04 11:13:01 +04:00
return NT_STATUS_OK ;
1999-12-21 12:25:59 +03:00
2000-04-26 00:30:58 +04:00
if ( ! OPEN_FSP ( fsp ) | | ! fsp - > can_lock | | ( fsp - > conn ! = conn ) ) {
2001-09-04 11:13:01 +04:00
return NT_STATUS_INVALID_HANDLE ;
2000-04-26 00:30:58 +04:00
}
1999-12-21 12:25:59 +03:00
DEBUG ( 10 , ( " do_unlock: unlock start=%.0f len=%.0f requested for file %s \n " ,
( double ) offset , ( double ) count , fsp - > fsp_name ) ) ;
2000-04-19 00:41:04 +04:00
2000-04-26 00:30:58 +04:00
/*
* Remove the existing lock record from the tdb lockdb
* before looking at POSIX locks . If this record doesn ' t
* match then don ' t bother looking to remove POSIX locks .
*/
2000-04-12 21:59:09 +04:00
2003-04-05 00:38:12 +04:00
posix_data . fsp = fsp ;
posix_data . offset = offset ;
posix_data . count = count ;
2000-04-26 00:30:58 +04:00
ok = brl_unlock ( fsp - > dev , fsp - > inode , fsp - > fnum ,
2005-09-30 21:13:37 +04:00
lock_pid , procid_self ( ) , conn - > cnum , offset , count ,
2003-04-05 00:38:12 +04:00
False , posix_unlock , ( void * ) & posix_data ) ;
1996-05-04 11:50:46 +04:00
1999-12-21 12:25:59 +03:00
if ( ! ok ) {
2000-04-28 02:23:04 +04:00
DEBUG ( 10 , ( " do_unlock: returning ERRlock. \n " ) ) ;
2002-03-11 02:17:07 +03:00
return NT_STATUS_RANGE_NOT_LOCKED ;
1999-12-21 12:25:59 +03:00
}
2001-09-04 11:13:01 +04:00
return NT_STATUS_OK ;
1996-05-04 11:50:46 +04:00
}
2000-04-26 00:30:58 +04:00
/****************************************************************************
Remove any locks on this fd . Called from file_close ( ) .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
void locking_close_file ( files_struct * fsp )
{
2005-09-30 21:13:37 +04:00
struct process_id pid = procid_self ( ) ;
2000-04-26 00:30:58 +04:00
if ( ! lp_locking ( SNUM ( fsp - > conn ) ) )
return ;
2000-04-29 00:54:23 +04:00
/*
* Just release all the brl locks , no need to release individually .
*/
2000-04-26 00:30:58 +04:00
2000-04-29 00:54:23 +04:00
brl_close ( fsp - > dev , fsp - > inode , pid , fsp - > conn - > cnum , fsp - > fnum ) ;
2000-04-26 00:30:58 +04:00
2000-04-29 00:54:23 +04:00
if ( lp_posix_locking ( SNUM ( fsp - > conn ) ) ) {
2000-04-26 00:30:58 +04:00
2000-04-29 00:54:23 +04:00
/*
* Release all the POSIX locks .
2000-04-26 00:30:58 +04:00
*/
2000-04-29 00:54:23 +04:00
posix_locking_close_file ( fsp ) ;
2000-04-26 00:30:58 +04:00
}
}
1997-10-20 12:46:00 +04:00
/****************************************************************************
1998-07-23 04:10:26 +04:00
Initialise the locking functions .
1997-10-20 12:46:00 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2001-05-23 00:35:48 +04:00
static int open_read_only ;
1997-10-27 17:27:17 +03:00
BOOL locking_init ( int read_only )
1996-08-15 19:11:34 +04:00
{
2000-01-16 14:14:44 +03:00
brl_init ( read_only ) ;
2000-01-13 15:09:36 +03:00
2001-05-23 00:35:48 +04:00
if ( tdb )
return True ;
1997-10-29 05:18:08 +03:00
2004-06-04 21:26:09 +04:00
tdb = tdb_open_log ( lock_path ( " locking.tdb " ) ,
2001-09-07 02:08:19 +04:00
0 , TDB_DEFAULT | ( read_only ? 0x0 : TDB_CLEAR_IF_FIRST ) ,
1999-12-21 12:25:59 +03:00
read_only ? O_RDONLY : O_RDWR | O_CREAT ,
2004-06-04 21:26:09 +04:00
0644 ) ;
1998-07-29 07:08:05 +04:00
1999-12-21 12:25:59 +03:00
if ( ! tdb ) {
2000-09-11 11:02:43 +04:00
DEBUG ( 0 , ( " ERROR: Failed to initialise locking database \n " ) ) ;
1999-12-13 16:27:58 +03:00
return False ;
}
2005-05-01 11:01:18 +04:00
2000-06-13 19:46:46 +04:00
if ( ! posix_locking_init ( read_only ) )
2000-04-29 00:54:23 +04:00
return False ;
2001-05-23 00:35:48 +04:00
open_read_only = read_only ;
1999-12-13 16:27:58 +03:00
return True ;
1996-05-04 11:50:46 +04:00
}
/*******************************************************************
1998-07-23 04:10:26 +04:00
Deinitialize the share_mode management .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2001-05-23 00:35:48 +04:00
1997-10-20 12:46:00 +04:00
BOOL locking_end ( void )
1996-05-04 11:50:46 +04:00
{
2005-05-01 11:01:18 +04:00
BOOL ret = True ;
2001-05-23 00:35:48 +04:00
brl_shutdown ( open_read_only ) ;
if ( tdb ) {
if ( tdb_close ( tdb ) ! = 0 )
2005-05-01 11:01:18 +04:00
ret = False ;
2001-05-23 00:35:48 +04:00
}
2005-05-01 11:01:18 +04:00
return ret ;
1996-05-04 11:50:46 +04:00
}
1999-12-21 12:25:59 +03:00
/*******************************************************************
2001-08-21 05:25:45 +04:00
Form a static locking key for a dev / inode pair .
1999-12-21 12:25:59 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2001-08-21 05:25:45 +04:00
2005-09-30 21:13:37 +04:00
/* key and data records in the tdb locking database */
struct locking_key {
SMB_DEV_T dev ;
SMB_INO_T ino ;
} ;
/*******************************************************************
Form a static locking key for a dev / inode pair .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1999-12-21 12:25:59 +03:00
static TDB_DATA locking_key ( SMB_DEV_T dev , SMB_INO_T inode )
{
static struct locking_key key ;
TDB_DATA kbuf ;
2000-05-10 04:05:27 +04:00
memset ( & key , ' \0 ' , sizeof ( key ) ) ;
1999-12-21 12:25:59 +03:00
key . dev = dev ;
2005-09-30 21:13:37 +04:00
key . ino = inode ;
1999-12-21 12:25:59 +03:00
kbuf . dptr = ( char * ) & key ;
kbuf . dsize = sizeof ( key ) ;
return kbuf ;
}
2001-08-21 05:25:45 +04:00
2002-01-08 03:52:36 +03:00
/*******************************************************************
Print out a share mode .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2005-09-30 21:13:37 +04:00
char * share_mode_str ( int num , struct share_mode_entry * e )
2002-01-08 03:52:36 +03:00
{
static pstring share_str ;
2005-07-08 08:51:27 +04:00
slprintf ( share_str , sizeof ( share_str ) - 1 , " share_mode_entry[%d]: "
2005-09-30 21:13:37 +04:00
" pid = %s, share_access = 0x%x, private_options = 0x%x, "
" access_mask = 0x%x, mid = 0x%x, type= 0x%x, file_id = %lu, "
2005-07-08 08:51:27 +04:00
" dev = 0x%x, inode = %.0f " ,
2005-09-30 21:13:37 +04:00
num , procid_str_static ( & e - > pid ) ,
2005-07-08 08:51:27 +04:00
e - > share_access , e - > private_options ,
2005-09-30 21:13:37 +04:00
e - > access_mask , e - > op_mid , e - > op_type , e - > share_file_id ,
2005-07-08 08:51:27 +04:00
( unsigned int ) e - > dev , ( double ) e - > inode ) ;
2002-01-08 03:52:36 +03:00
return share_str ;
}
/*******************************************************************
Print out a share mode table .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static void print_share_mode_table ( struct locking_data * data )
{
2005-07-08 08:51:27 +04:00
int num_share_modes = data - > u . s . num_share_mode_entries ;
2005-09-30 21:13:37 +04:00
struct share_mode_entry * shares =
( struct share_mode_entry * ) ( data + 1 ) ;
2002-01-08 03:52:36 +03:00
int i ;
for ( i = 0 ; i < num_share_modes ; i + + ) {
2005-09-30 21:13:37 +04:00
struct share_mode_entry * entry_p = & shares [ i ] ;
DEBUG ( 10 , ( " print_share_mode_table: %s \n " ,
share_mode_str ( i , entry_p ) ) ) ;
2002-01-08 03:52:36 +03:00
}
}
1996-05-04 11:50:46 +04:00
/*******************************************************************
1998-07-23 04:10:26 +04:00
Get all share mode entries for a dev / inode pair .
1997-10-20 12:46:00 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2001-08-21 05:25:45 +04:00
2005-09-30 21:13:37 +04:00
static BOOL parse_share_modes ( TDB_DATA dbuf , struct share_mode_lock * lck )
1997-05-20 04:32:51 +04:00
{
1999-12-21 12:25:59 +03:00
struct locking_data * data ;
2005-09-30 21:13:37 +04:00
int i ;
2005-07-08 08:51:27 +04:00
2005-09-30 21:13:37 +04:00
if ( dbuf . dsize < sizeof ( struct locking_data ) ) {
DEBUG ( 0 , ( " parse_share_modes: buffer too short \n " ) ) ;
return False ;
}
2001-11-30 04:59:03 +03:00
2005-09-30 21:13:37 +04:00
data = ( struct locking_data * ) dbuf . dptr ;
2004-06-08 20:14:31 +04:00
2005-09-30 21:13:37 +04:00
lck - > delete_on_close = data - > u . s . delete_on_close ;
lck - > num_share_modes = data - > u . s . num_share_mode_entries ;
2001-11-30 04:59:03 +03:00
2005-09-30 21:13:37 +04:00
DEBUG ( 10 , ( " parse_share_modes: delete_on_close: %d, "
" num_share_modes: %d \n " , lck - > delete_on_close ,
lck - > num_share_modes ) ) ;
2001-11-30 04:59:03 +03:00
2005-09-30 21:13:37 +04:00
if ( ( lck - > num_share_modes < 0 ) | | ( lck - > num_share_modes > 1000000 ) ) {
DEBUG ( 0 , ( " invalid number of share modes: %d \n " ,
lck - > num_share_modes ) ) ;
return False ;
2001-11-30 04:59:03 +03:00
}
2005-09-30 21:13:37 +04:00
lck - > share_modes = NULL ;
1999-12-21 12:25:59 +03:00
2005-09-30 21:13:37 +04:00
if ( lck - > num_share_modes ! = 0 ) {
2005-07-08 08:51:27 +04:00
2005-09-30 21:13:37 +04:00
if ( dbuf . dsize < ( sizeof ( struct locking_data ) +
( lck - > num_share_modes *
sizeof ( struct share_mode_entry ) ) ) ) {
DEBUG ( 0 , ( " parse_share_modes: buffer too short \n " ) ) ;
return False ;
}
lck - > share_modes = talloc_memdup ( lck , dbuf . dptr + sizeof ( * data ) ,
lck - > num_share_modes *
sizeof ( struct share_mode_entry ) ) ;
This is a big, rather ugly patch. Whilst investigating the files not truncated
when copying to a full disk problem, I discovered that we were not allowing
the delete on close flag to be set properly, this led to other things, and
after investigation of the proper delete on close semantics and their relationship
to the file_share_delete flag I discovered there were some cases where we
weren't doing the deny modes properly. And this after only 5 years working
on them..... :-) :-).
So here's the latest attempt. I realised the delete on close flag needs to
be set across all smbds with a dev/ino pair open - in addition, the delete
on close flag, allow share delete and delete access requested all need to
be stored in the share mode tdb.
The "delete_on_close" entry in the fsp struct is now redundant and should
really be removed. This may also mean we can get rid of the "iterate_fsp"
calls that I didn't like adding in the first place. Whilst doing this patch,
I also discovered we needed to do the se_map_generic() call for file opens
and POSIX ACL mapping, so I added that also.
This code, although ugly, now passes the deny mode torture tests plus the
delete on close tests I added. I do need to add one more multiple connection
delete on close test to make sure I got the semantics exactly right, plus we
should also (as Andrew suggested) move to random testing here.
The good news is that NT should now correctly delete the file on disk
full error when copying to a disk :-).
Jeremy.
(This used to be commit 51987684bd231c744da2e5f3705fd236d5616173)
2001-03-30 12:57:24 +04:00
2005-09-30 21:13:37 +04:00
if ( lck - > share_modes = = NULL ) {
DEBUG ( 0 , ( " talloc failed \n " ) ) ;
return False ;
}
}
2001-09-18 10:41:29 +04:00
2005-09-30 21:13:37 +04:00
/* Save off the associated filename. */
lck - > filename = talloc_strdup ( lck , dbuf . dptr + sizeof ( * data ) +
lck - > num_share_modes *
sizeof ( struct share_mode_entry ) ) ;
2001-08-21 05:25:45 +04:00
2005-09-30 21:13:37 +04:00
/*
* Ensure that each entry has a real process attached .
*/
2001-08-21 05:25:45 +04:00
2005-09-30 21:13:37 +04:00
for ( i = 0 ; i < lck - > num_share_modes ; i + + ) {
struct share_mode_entry * entry_p = & lck - > share_modes [ i ] ;
DEBUG ( 10 , ( " parse_share_modes: %s \n " ,
share_mode_str ( i , entry_p ) ) ) ;
if ( ! process_exists ( entry_p - > pid ) ) {
DEBUG ( 10 , ( " parse_share_modes: deleted %s \n " ,
share_mode_str ( i , entry_p ) ) ) ;
entry_p - > op_type = UNUSED_SHARE_MODE_ENTRY ;
lck - > modified = True ;
}
2001-10-21 01:59:34 +04:00
}
2005-09-30 21:13:37 +04:00
return True ;
2001-08-21 05:25:45 +04:00
}
2005-09-30 21:13:37 +04:00
static TDB_DATA unparse_share_modes ( struct share_mode_lock * lck )
1999-12-21 12:25:59 +03:00
{
2005-09-30 21:13:37 +04:00
TDB_DATA result ;
int num_valid = 0 ;
int i ;
1999-12-21 12:25:59 +03:00
struct locking_data * data ;
2005-09-30 21:13:37 +04:00
ssize_t offset ;
2001-08-22 04:29:40 +04:00
2005-09-30 21:13:37 +04:00
result . dptr = NULL ;
result . dsize = 0 ;
2001-08-22 04:29:40 +04:00
2005-09-30 21:13:37 +04:00
for ( i = 0 ; i < lck - > num_share_modes ; i + + ) {
if ( ! is_unused_share_mode_entry ( & lck - > share_modes [ i ] ) ) {
num_valid + = 1 ;
1999-12-21 12:25:59 +03:00
}
}
2005-09-30 21:13:37 +04:00
if ( num_valid = = 0 ) {
return result ;
2000-04-23 18:25:04 +04:00
}
1997-05-20 04:32:51 +04:00
2005-09-30 21:13:37 +04:00
result . dsize = sizeof ( * data ) +
lck - > num_share_modes * sizeof ( struct share_mode_entry ) +
strlen ( lck - > filename ) + 1 ;
result . dptr = talloc_size ( lck , result . dsize ) ;
2001-08-21 05:25:45 +04:00
2005-09-30 21:13:37 +04:00
if ( result . dptr = = NULL ) {
smb_panic ( " talloc failed \n " ) ;
}
2001-08-21 05:25:45 +04:00
2005-09-30 21:13:37 +04:00
data = ( struct locking_data * ) result . dptr ;
ZERO_STRUCTP ( data ) ;
data - > u . s . num_share_mode_entries = lck - > num_share_modes ;
data - > u . s . delete_on_close = lck - > delete_on_close ;
DEBUG ( 10 , ( " unparse_share_modes: del: %d, num: %d \n " ,
data - > u . s . delete_on_close ,
data - > u . s . num_share_mode_entries ) ) ;
memcpy ( result . dptr + sizeof ( * data ) , lck - > share_modes ,
sizeof ( struct share_mode_entry ) * lck - > num_share_modes ) ;
offset = sizeof ( * data ) +
sizeof ( struct share_mode_entry ) * lck - > num_share_modes ;
safe_strcpy ( result . dptr + offset , lck - > filename ,
result . dsize - offset - 1 ) ;
print_share_mode_table ( data ) ;
return result ;
1997-05-20 04:32:51 +04:00
}
2005-09-30 21:13:37 +04:00
static int share_mode_lock_destructor ( void * p )
1997-05-20 04:32:51 +04:00
{
2005-09-30 21:13:37 +04:00
struct share_mode_lock * lck =
talloc_get_type_abort ( p , struct share_mode_lock ) ;
TDB_DATA key = locking_key ( lck - > dev , lck - > ino ) ;
TDB_DATA data ;
2002-01-05 05:37:23 +03:00
2005-09-30 21:13:37 +04:00
if ( ! lck - > modified ) {
goto done ;
}
2002-01-08 03:52:36 +03:00
2005-09-30 21:13:37 +04:00
data = unparse_share_modes ( lck ) ;
2002-01-08 03:52:36 +03:00
2005-09-30 21:13:37 +04:00
if ( data . dptr = = NULL ) {
if ( ! lck - > fresh ) {
/* There has been an entry before, delete it */
if ( tdb_delete ( tdb , key ) = = - 1 ) {
smb_panic ( " Could not delete share entry \n " ) ;
}
}
goto done ;
1999-12-21 12:25:59 +03:00
}
2005-09-30 21:13:37 +04:00
if ( tdb_store ( tdb , key , data , TDB_REPLACE ) = = - 1 ) {
smb_panic ( " Could not store share mode entry \n " ) ;
}
1999-12-21 12:25:59 +03:00
2005-09-30 21:13:37 +04:00
done :
tdb_chainunlock ( tdb , key ) ;
2002-01-05 05:37:23 +03:00
2005-09-30 21:13:37 +04:00
return 0 ;
1996-05-04 11:50:46 +04:00
}
2005-09-30 21:13:37 +04:00
struct share_mode_lock * get_share_mode_lock ( TALLOC_CTX * mem_ctx ,
SMB_DEV_T dev , SMB_INO_T ino ,
const char * fname )
1999-12-21 12:25:59 +03:00
{
2005-09-30 21:13:37 +04:00
struct share_mode_lock * lck ;
TDB_DATA key = locking_key ( dev , ino ) ;
TDB_DATA data ;
1999-12-21 12:25:59 +03:00
2005-09-30 21:13:37 +04:00
lck = TALLOC_P ( mem_ctx , struct share_mode_lock ) ;
if ( lck = = NULL ) {
DEBUG ( 0 , ( " talloc failed \n " ) ) ;
return NULL ;
}
1999-12-21 12:25:59 +03:00
2005-09-30 21:13:37 +04:00
lck - > dev = dev ;
lck - > ino = ino ;
lck - > delete_on_close = False ;
lck - > num_share_modes = 0 ;
lck - > share_modes = NULL ;
lck - > modified = False ;
if ( tdb_chainlock ( tdb , key ) ! = 0 ) {
DEBUG ( 3 , ( " Could not lock share entry \n " ) ) ;
talloc_free ( lck ) ;
return NULL ;
1999-12-21 12:25:59 +03:00
}
2005-09-30 21:13:37 +04:00
data = tdb_fetch ( tdb , key ) ;
lck - > fresh = ( data . dptr = = NULL ) ;
if ( lck - > fresh ) {
if ( fname = = NULL ) {
DEBUG ( 0 , ( " New file, but no filename supplied \n " ) ) ;
talloc_free ( lck ) ;
return NULL ;
}
lck - > filename = talloc_strdup ( lck , fname ) ;
if ( lck - > filename = = NULL ) {
DEBUG ( 0 , ( " talloc failed \n " ) ) ;
talloc_free ( lck ) ;
return NULL ;
}
} else {
if ( ! parse_share_modes ( data , lck ) ) {
DEBUG ( 0 , ( " Could not parse share modes \n " ) ) ;
talloc_free ( lck ) ;
SAFE_FREE ( data . dptr ) ;
return NULL ;
2000-04-23 18:25:04 +04:00
}
1999-12-21 12:25:59 +03:00
}
2005-09-30 21:13:37 +04:00
talloc_set_destructor ( lck , share_mode_lock_destructor ) ;
SAFE_FREE ( data . dptr ) ;
1999-12-21 12:25:59 +03:00
2005-09-30 21:13:37 +04:00
return lck ;
}
2001-08-21 05:25:45 +04:00
2005-09-30 21:13:37 +04:00
BOOL get_delete_on_close_flag ( SMB_DEV_T dev , SMB_INO_T inode ,
const char * fname )
1998-10-23 07:34:50 +04:00
{
2005-09-30 21:13:37 +04:00
BOOL result ;
struct share_mode_lock * lck = get_share_mode_lock ( NULL , dev , inode ,
fname ) ;
result = lck - > delete_on_close ;
talloc_free ( lck ) ;
return result ;
1998-10-23 07:34:50 +04:00
}
2005-09-30 21:13:37 +04:00
BOOL is_valid_share_mode_entry ( const struct share_mode_entry * e )
1998-10-23 07:34:50 +04:00
{
2005-09-30 21:13:37 +04:00
int num_props = 0 ;
num_props + = ( ( e - > op_type = = NO_OPLOCK ) ? 1 : 0 ) ;
num_props + = ( EXCLUSIVE_OPLOCK_TYPE ( e - > op_type ) ? 1 : 0 ) ;
num_props + = ( LEVEL_II_OPLOCK_TYPE ( e - > op_type ) ? 1 : 0 ) ;
SMB_ASSERT ( num_props < = 1 ) ;
return ( num_props ! = 0 ) ;
1998-10-23 07:34:50 +04:00
}
2005-09-30 21:13:37 +04:00
BOOL is_deferred_open_entry ( const struct share_mode_entry * e )
{
return ( e - > op_type = = DEFERRED_OPEN_ENTRY ) ;
}
2001-08-21 05:25:45 +04:00
2005-09-30 21:13:37 +04:00
BOOL is_unused_share_mode_entry ( const struct share_mode_entry * e )
1999-12-13 16:27:58 +03:00
{
2005-09-30 21:13:37 +04:00
return ( e - > op_type = = UNUSED_SHARE_MODE_ENTRY ) ;
1999-12-13 16:27:58 +03:00
}
/*******************************************************************
2005-09-30 21:13:37 +04:00
Fill a share mode entry .
1999-12-13 16:27:58 +03:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2001-08-21 05:25:45 +04:00
2005-09-30 21:13:37 +04:00
static void fill_share_mode_entry ( struct share_mode_entry * e ,
files_struct * fsp ,
uint16 mid , uint16 op_type )
1999-12-13 16:27:58 +03:00
{
2005-09-30 21:13:37 +04:00
ZERO_STRUCTP ( e ) ;
e - > pid = procid_self ( ) ;
e - > share_access = fsp - > share_access ;
e - > private_options = fsp - > fh - > private_options ;
e - > access_mask = fsp - > access_mask ;
e - > op_mid = mid ;
e - > op_type = op_type ;
e - > time . tv_sec = fsp - > open_time . tv_sec ;
e - > time . tv_usec = fsp - > open_time . tv_usec ;
e - > share_file_id = fsp - > file_id ;
e - > dev = fsp - > dev ;
e - > inode = fsp - > inode ;
2001-08-22 04:29:40 +04:00
}
2005-09-30 21:13:37 +04:00
static void fill_deferred_open_entry ( struct share_mode_entry * e ,
const struct timeval request_time ,
SMB_DEV_T dev , SMB_INO_T ino , uint16 mid )
1998-10-23 07:34:50 +04:00
{
2005-09-30 21:13:37 +04:00
ZERO_STRUCTP ( e ) ;
e - > pid = procid_self ( ) ;
e - > op_mid = mid ;
e - > op_type = DEFERRED_OPEN_ENTRY ;
e - > time . tv_sec = request_time . tv_sec ;
e - > time . tv_usec = request_time . tv_usec ;
e - > dev = dev ;
e - > inode = ino ;
}
1998-10-23 07:34:50 +04:00
2005-09-30 21:13:37 +04:00
static void add_share_mode_entry ( struct share_mode_lock * lck ,
const struct share_mode_entry * entry )
{
int i ;
This is a big, rather ugly patch. Whilst investigating the files not truncated
when copying to a full disk problem, I discovered that we were not allowing
the delete on close flag to be set properly, this led to other things, and
after investigation of the proper delete on close semantics and their relationship
to the file_share_delete flag I discovered there were some cases where we
weren't doing the deny modes properly. And this after only 5 years working
on them..... :-) :-).
So here's the latest attempt. I realised the delete on close flag needs to
be set across all smbds with a dev/ino pair open - in addition, the delete
on close flag, allow share delete and delete access requested all need to
be stored in the share mode tdb.
The "delete_on_close" entry in the fsp struct is now redundant and should
really be removed. This may also mean we can get rid of the "iterate_fsp"
calls that I didn't like adding in the first place. Whilst doing this patch,
I also discovered we needed to do the se_map_generic() call for file opens
and POSIX ACL mapping, so I added that also.
This code, although ugly, now passes the deny mode torture tests plus the
delete on close tests I added. I do need to add one more multiple connection
delete on close test to make sure I got the semantics exactly right, plus we
should also (as Andrew suggested) move to random testing here.
The good news is that NT should now correctly delete the file on disk
full error when copying to a disk :-).
Jeremy.
(This used to be commit 51987684bd231c744da2e5f3705fd236d5616173)
2001-03-30 12:57:24 +04:00
2005-09-30 21:13:37 +04:00
for ( i = 0 ; i < lck - > num_share_modes ; i + + ) {
struct share_mode_entry * e = & lck - > share_modes [ i ] ;
if ( is_unused_share_mode_entry ( e ) ) {
* e = * entry ;
break ;
}
}
1999-12-13 16:27:58 +03:00
2005-09-30 21:13:37 +04:00
if ( i = = lck - > num_share_modes ) {
/* No unused entry found */
ADD_TO_ARRAY ( lck , struct share_mode_entry , * entry ,
& lck - > share_modes , & lck - > num_share_modes ) ;
}
lck - > modified = True ;
}
1999-12-13 16:27:58 +03:00
2005-09-30 21:13:37 +04:00
void set_share_mode ( struct share_mode_lock * lck , files_struct * fsp ,
uint16 mid , uint16 op_type )
{
struct share_mode_entry entry ;
fill_share_mode_entry ( & entry , fsp , mid , op_type ) ;
add_share_mode_entry ( lck , & entry ) ;
}
This is a big, rather ugly patch. Whilst investigating the files not truncated
when copying to a full disk problem, I discovered that we were not allowing
the delete on close flag to be set properly, this led to other things, and
after investigation of the proper delete on close semantics and their relationship
to the file_share_delete flag I discovered there were some cases where we
weren't doing the deny modes properly. And this after only 5 years working
on them..... :-) :-).
So here's the latest attempt. I realised the delete on close flag needs to
be set across all smbds with a dev/ino pair open - in addition, the delete
on close flag, allow share delete and delete access requested all need to
be stored in the share mode tdb.
The "delete_on_close" entry in the fsp struct is now redundant and should
really be removed. This may also mean we can get rid of the "iterate_fsp"
calls that I didn't like adding in the first place. Whilst doing this patch,
I also discovered we needed to do the se_map_generic() call for file opens
and POSIX ACL mapping, so I added that also.
This code, although ugly, now passes the deny mode torture tests plus the
delete on close tests I added. I do need to add one more multiple connection
delete on close test to make sure I got the semantics exactly right, plus we
should also (as Andrew suggested) move to random testing here.
The good news is that NT should now correctly delete the file on disk
full error when copying to a disk :-).
Jeremy.
(This used to be commit 51987684bd231c744da2e5f3705fd236d5616173)
2001-03-30 12:57:24 +04:00
2005-09-30 21:13:37 +04:00
void add_deferred_open ( struct share_mode_lock * lck , uint16 mid ,
struct timeval request_time ,
SMB_DEV_T dev , SMB_INO_T ino )
{
struct share_mode_entry entry ;
fill_deferred_open_entry ( & entry , request_time , dev , ino , mid ) ;
add_share_mode_entry ( lck , & entry ) ;
1997-10-20 12:46:00 +04:00
}
1997-05-20 04:32:51 +04:00
2004-06-08 20:14:31 +04:00
/*******************************************************************
2005-09-30 21:13:37 +04:00
Check if two share mode entries are identical , ignoring oplock
and mid info and desired_access .
2004-06-08 20:14:31 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2005-09-30 21:13:37 +04:00
static BOOL share_modes_identical ( struct share_mode_entry * e1 ,
struct share_mode_entry * e2 )
2004-06-08 20:14:31 +04:00
{
2005-09-30 21:13:37 +04:00
# if 1 /* JRA PARANOIA TEST - REMOVE LATER */
if ( procid_equal ( & e1 - > pid , & e2 - > pid ) & &
e1 - > share_file_id = = e2 - > share_file_id & &
e1 - > dev = = e2 - > dev & &
e1 - > inode = = e2 - > inode & &
( e1 - > share_access ) ! = ( e2 - > share_access ) ) {
DEBUG ( 0 , ( " PANIC: share_modes_identical: share_mode "
" mismatch (e1 = 0x%x, e2 = 0x%x). Logic error. \n " ,
( unsigned int ) e1 - > share_access ,
( unsigned int ) e2 - > share_access ) ) ;
smb_panic ( " PANIC: share_modes_identical logic error. \n " ) ;
}
# endif
2004-06-08 20:14:31 +04:00
2005-09-30 21:13:37 +04:00
return ( procid_equal ( & e1 - > pid , & e2 - > pid ) & &
( e1 - > share_access ) = = ( e2 - > share_access ) & &
e1 - > dev = = e2 - > dev & &
e1 - > inode = = e2 - > inode & &
e1 - > share_file_id = = e2 - > share_file_id ) ;
2004-06-08 20:14:31 +04:00
}
2005-09-30 21:13:37 +04:00
static BOOL deferred_open_identical ( struct share_mode_entry * e1 ,
struct share_mode_entry * e2 )
{
return ( procid_equal ( & e1 - > pid , & e2 - > pid ) & &
( e1 - > op_mid = = e2 - > op_mid ) & &
( e1 - > dev = = e2 - > dev ) & &
( e1 - > inode = = e2 - > inode ) ) ;
}
2004-06-08 20:14:31 +04:00
2005-09-30 21:13:37 +04:00
static struct share_mode_entry * find_share_mode_entry ( struct share_mode_lock * lck ,
struct share_mode_entry * entry )
{
int i ;
2004-06-08 20:14:31 +04:00
2005-09-30 21:13:37 +04:00
for ( i = 0 ; i < lck - > num_share_modes ; i + + ) {
struct share_mode_entry * e = & lck - > share_modes [ i ] ;
if ( is_valid_share_mode_entry ( entry ) & &
is_valid_share_mode_entry ( e ) & &
share_modes_identical ( e , entry ) ) {
return e ;
}
if ( is_deferred_open_entry ( entry ) & &
is_deferred_open_entry ( e ) & &
deferred_open_identical ( e , entry ) ) {
return e ;
}
}
return NULL ;
}
2004-06-08 20:14:31 +04:00
/*******************************************************************
2005-09-30 21:13:37 +04:00
Del the share mode of a file for this process . Return the number of
entries left .
2004-06-08 20:14:31 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2005-09-30 21:13:37 +04:00
BOOL del_share_mode ( struct share_mode_lock * lck , files_struct * fsp )
2004-06-08 20:14:31 +04:00
{
2005-09-30 21:13:37 +04:00
struct share_mode_entry entry , * e ;
fill_share_mode_entry ( & entry , fsp , 0 , 0 ) ;
2004-06-08 20:14:31 +04:00
2005-09-30 21:13:37 +04:00
e = find_share_mode_entry ( lck , & entry ) ;
if ( e = = NULL ) {
return False ;
2004-06-08 20:14:31 +04:00
}
2005-09-30 21:13:37 +04:00
e - > op_type = UNUSED_SHARE_MODE_ENTRY ;
lck - > modified = True ;
return True ;
2004-06-08 20:14:31 +04:00
}
2005-09-30 21:13:37 +04:00
void del_deferred_open_entry ( struct share_mode_lock * lck , uint16 mid )
{
struct share_mode_entry entry , * e ;
2004-06-08 20:14:31 +04:00
2005-09-30 21:13:37 +04:00
fill_deferred_open_entry ( & entry , timeval_zero ( ) ,
lck - > dev , lck - > ino , mid ) ;
2004-06-08 20:14:31 +04:00
2005-09-30 21:13:37 +04:00
e = find_share_mode_entry ( lck , & entry ) ;
if ( e = = NULL ) {
return ;
}
2004-06-08 20:14:31 +04:00
2005-09-30 21:13:37 +04:00
e - > op_type = UNUSED_SHARE_MODE_ENTRY ;
lck - > modified = True ;
2004-06-08 20:14:31 +04:00
}
/*******************************************************************
2005-09-30 21:13:37 +04:00
Remove an oplock mid and mode entry from a share mode .
2004-06-08 20:14:31 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2005-09-30 21:13:37 +04:00
BOOL remove_share_oplock ( struct share_mode_lock * lck , files_struct * fsp )
2004-06-08 20:14:31 +04:00
{
2005-09-30 21:13:37 +04:00
struct share_mode_entry entry , * e ;
2004-06-08 20:14:31 +04:00
2005-09-30 21:13:37 +04:00
fill_share_mode_entry ( & entry , fsp , 0 , 0 ) ;
2004-06-08 20:14:31 +04:00
2005-09-30 21:13:37 +04:00
e = find_share_mode_entry ( lck , & entry ) ;
if ( e = = NULL ) {
return False ;
}
2004-06-08 20:14:31 +04:00
2005-09-30 21:13:37 +04:00
e - > op_mid = 0 ;
e - > op_type = NO_OPLOCK ;
lck - > modified = True ;
return True ;
}
2004-06-08 20:14:31 +04:00
2005-09-30 21:13:37 +04:00
/*******************************************************************
Downgrade a oplock type from exclusive to level II .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2004-06-08 20:14:31 +04:00
2005-09-30 21:13:37 +04:00
BOOL downgrade_share_oplock ( struct share_mode_lock * lck , files_struct * fsp )
{
struct share_mode_entry entry , * e ;
2004-06-08 20:14:31 +04:00
2005-09-30 21:13:37 +04:00
fill_share_mode_entry ( & entry , fsp , 0 , 0 ) ;
2004-06-08 20:14:31 +04:00
2005-09-30 21:13:37 +04:00
e = find_share_mode_entry ( lck , & entry ) ;
if ( e = = NULL ) {
return False ;
2004-06-08 20:14:31 +04:00
}
2005-09-30 21:13:37 +04:00
e - > op_type = LEVEL_II_OPLOCK ;
lck - > modified = True ;
return True ;
2004-06-08 20:14:31 +04:00
}
2005-09-30 21:13:37 +04:00
2004-06-08 20:14:31 +04:00
/*******************************************************************
2005-09-30 21:13:37 +04:00
We ' ve just told all the smbd ' s that our level2 or fake level2 has been
written to .
2004-06-08 20:14:31 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2005-09-30 21:13:37 +04:00
BOOL remove_all_share_oplocks ( struct share_mode_lock * lck , files_struct * fsp )
2004-06-08 20:14:31 +04:00
{
2005-09-30 21:13:37 +04:00
int i ;
for ( i = 0 ; i < lck - > num_share_modes ; i + + ) {
struct share_mode_entry * e = & lck - > share_modes [ i ] ;
if ( ! is_valid_share_mode_entry ( e ) ) {
continue ;
}
if ( e - > op_type = = NO_OPLOCK ) {
continue ;
}
e - > op_type = NO_OPLOCK ;
lck - > modified = True ;
}
return True ;
2004-06-08 20:14:31 +04:00
}
2005-09-30 21:13:37 +04:00
/****************************************************************************
Deal with the internal needs of setting the delete on close flag . Note that
as the tdb locking is recursive , it is safe to call this from within
open_file_shared . JRA .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2004-06-08 20:14:31 +04:00
2005-09-30 21:13:37 +04:00
NTSTATUS can_set_delete_on_close ( files_struct * fsp , BOOL delete_on_close ,
uint32 dosmode )
2004-06-08 20:14:31 +04:00
{
2005-09-30 21:13:37 +04:00
if ( ! delete_on_close ) {
return NT_STATUS_OK ;
}
2004-06-08 20:14:31 +04:00
/*
2005-09-30 21:13:37 +04:00
* Only allow delete on close for writable files .
2004-06-08 20:14:31 +04:00
*/
2005-09-30 21:13:37 +04:00
if ( ( dosmode & aRONLY ) & &
! lp_delete_readonly ( SNUM ( fsp - > conn ) ) ) {
DEBUG ( 10 , ( " can_set_delete_on_close: file %s delete on close "
" flag set but file attribute is readonly. \n " ,
fsp - > fsp_name ) ) ;
return NT_STATUS_CANNOT_DELETE ;
2004-06-08 20:14:31 +04:00
}
2005-09-30 21:13:37 +04:00
/*
* Only allow delete on close for writable shares .
*/
2004-06-08 20:14:31 +04:00
2005-09-30 21:13:37 +04:00
if ( ! CAN_WRITE ( fsp - > conn ) ) {
DEBUG ( 10 , ( " can_set_delete_on_close: file %s delete on "
" close flag set but write access denied on share. \n " ,
fsp - > fsp_name ) ) ;
return NT_STATUS_ACCESS_DENIED ;
2004-06-08 20:14:31 +04:00
}
2005-09-30 21:13:37 +04:00
/*
* Only allow delete on close for files / directories opened with delete
* intent .
*/
2004-06-08 20:14:31 +04:00
2005-09-30 21:13:37 +04:00
if ( ! ( fsp - > access_mask & DELETE_ACCESS ) ) {
DEBUG ( 10 , ( " can_set_delete_on_close: file %s delete on "
" close flag set but delete access denied. \n " ,
fsp - > fsp_name ) ) ;
return NT_STATUS_ACCESS_DENIED ;
}
2004-06-08 20:14:31 +04:00
2005-09-30 21:13:37 +04:00
return NT_STATUS_OK ;
2004-06-08 20:14:31 +04:00
}
2005-09-30 21:13:37 +04:00
/****************************************************************************
Sets the delete on close flag over all share modes on this file .
Modify the share mode entry for all files open
on this device and inode to tell other smbds we have
changed the delete on close flag . This will be noticed
in the close code , the last closer will delete the file
if flag is set .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2004-06-08 20:14:31 +04:00
2005-09-30 21:13:37 +04:00
BOOL set_delete_on_close ( files_struct * fsp , BOOL delete_on_close )
2004-06-08 20:14:31 +04:00
{
2005-09-30 21:13:37 +04:00
struct share_mode_lock * lck ;
2004-06-08 20:14:31 +04:00
2005-09-30 21:13:37 +04:00
DEBUG ( 10 , ( " set_delete_on_close: %s delete on close flag for "
" fnum = %d, file %s \n " ,
delete_on_close ? " Adding " : " Removing " , fsp - > fnum ,
fsp - > fsp_name ) ) ;
2004-06-08 20:14:31 +04:00
2005-09-30 21:13:37 +04:00
if ( fsp - > is_directory | | fsp - > is_stat )
return True ;
2004-06-08 20:14:31 +04:00
2005-09-30 21:13:37 +04:00
lck = get_share_mode_lock ( NULL , fsp - > dev , fsp - > inode , NULL ) ;
if ( lck = = NULL ) {
2004-06-08 20:14:31 +04:00
return False ;
}
2005-09-30 21:13:37 +04:00
if ( lck - > delete_on_close ! = delete_on_close ) {
lck - > delete_on_close = delete_on_close ;
lck - > modified = True ;
}
2004-06-08 20:14:31 +04:00
2005-09-30 21:13:37 +04:00
talloc_free ( lck ) ;
return True ;
}
2001-08-21 05:25:45 +04:00
2000-02-07 03:24:04 +03:00
static int traverse_fn ( TDB_CONTEXT * the_tdb , TDB_DATA kbuf , TDB_DATA dbuf ,
2005-09-30 21:13:37 +04:00
void * state )
1997-05-20 04:32:51 +04:00
{
1999-12-21 12:25:59 +03:00
struct locking_data * data ;
2005-09-30 21:13:37 +04:00
struct share_mode_entry * shares ;
1999-12-21 12:25:59 +03:00
char * name ;
int i ;
2005-09-30 21:13:37 +04:00
void ( * traverse_callback ) ( struct share_mode_entry * , char * ) = state ;
1) added void* state argument to tdb_traverse. guess what! there were
two places i found where it was appropriate to _use_ that third argument,
in locking.c and brlock.c! there was a static traverse_function and
i removed the static variable, typecast it to a void*, passed it to
tdb_traverse and re-cast it back to the traverse_function inside the
tdb_traverse function. this makes the use of tdb_traverse() reentrant,
which is never going to happen, i know, i just don't like to see
statics lying about when there's no need for them.
as i had to do in samba-tng, all uses of tdb_traverse modified to take
the new void* state argument.
2) disabled rpcclient: referring people to use SAMBA_TNG rpcclient.
i don't know how the other samba team members would react if i deleted
rpcclient from cvs main. damn, that code's so old, it's unreal.
20 rpcclient commands, instead of about 70 in SAMBA_TNG.
(This used to be commit 49d7f0afbc1c5425d53019e234d54ddf205c8e9a)
2000-02-04 07:59:31 +03:00
2004-06-08 20:14:31 +04:00
/* Ensure this is a locking_key record. */
if ( kbuf . dsize ! = sizeof ( struct locking_key ) )
return 0 ;
1999-12-21 12:25:59 +03:00
data = ( struct locking_data * ) dbuf . dptr ;
2005-09-30 21:13:37 +04:00
shares = ( struct share_mode_entry * ) ( dbuf . dptr + sizeof ( * data ) ) ;
name = dbuf . dptr + sizeof ( * data ) +
data - > u . s . num_share_mode_entries * sizeof ( * shares ) ;
1999-12-21 12:25:59 +03:00
2005-07-08 08:51:27 +04:00
for ( i = 0 ; i < data - > u . s . num_share_mode_entries ; i + + ) {
1999-12-21 12:25:59 +03:00
traverse_callback ( & shares [ i ] , name ) ;
}
return 0 ;
1996-05-04 11:50:46 +04:00
}
1997-10-02 03:32:22 +04:00
/*******************************************************************
1999-12-21 12:25:59 +03:00
Call the specified function on each entry under management by the
share mode system .
1997-10-02 03:32:22 +04:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2001-08-21 05:25:45 +04:00
2005-09-30 21:13:37 +04:00
int share_mode_forall ( void ( * fn ) ( const struct share_mode_entry * , char * ) )
1997-10-02 03:32:22 +04:00
{
2005-09-30 21:13:37 +04:00
if ( tdb = = NULL )
2001-08-21 05:25:45 +04:00
return 0 ;
2005-09-30 21:13:37 +04:00
return tdb_traverse ( tdb , traverse_fn , fn ) ;
1997-10-02 03:32:22 +04:00
}