2007-01-19 07:08:33 +03:00
/*
Unix SMB / CIFS implementation .
generic byte range locking code
Copyright ( C ) Andrew Tridgell 1992 - 2004
Copyright ( C ) Jeremy Allison 1992 - 2000
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-10 06:07:03 +04:00
the Free Software Foundation ; either version 3 of the License , or
2007-01-19 07:08:33 +03:00
( 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
2007-07-10 06:07:03 +04:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
2007-01-19 07:08:33 +03:00
*/
/* This module implements a tdb based byte range locking service,
replacing the fcntl ( ) based byte range locking previously
used . This allows us to provide the same semantics as NT */
# include "includes.h"
# include "system/filesys.h"
2011-06-20 13:10:25 +04:00
# include "tdb_compat.h"
2007-01-19 07:08:33 +03:00
# include "messaging/messaging.h"
# include "lib/messaging/irpc.h"
# include "libcli/libcli.h"
# include "cluster/cluster.h"
2007-01-19 14:58:03 +03:00
# include "ntvfs/common/ntvfs_common.h"
2007-01-19 07:08:33 +03:00
static const struct brlock_ops * ops ;
/*
set the brl backend ops
*/
2011-05-07 10:12:54 +04:00
void brlock_set_ops ( const struct brlock_ops * new_ops )
2007-01-19 07:08:33 +03:00
{
ops = new_ops ;
}
/*
Open up the brlock database . Close it down using talloc_free ( ) . We
2011-05-03 04:40:33 +04:00
need the imessaging_ctx to allow for pending lock notifications .
2007-01-19 07:08:33 +03:00
*/
2011-05-07 10:12:54 +04:00
struct brl_context * brlock_init ( TALLOC_CTX * mem_ctx , struct server_id server ,
2007-12-10 06:33:16 +03:00
struct loadparm_context * lp_ctx ,
2011-05-03 04:40:33 +04:00
struct imessaging_context * imessaging_ctx )
2007-01-19 07:08:33 +03:00
{
if ( ops = = NULL ) {
2007-08-09 10:36:16 +04:00
brl_tdb_init_ops ( ) ;
2007-01-19 07:08:33 +03:00
}
2011-05-03 04:40:33 +04:00
return ops - > brl_init ( mem_ctx , server , lp_ctx , imessaging_ctx ) ;
2007-01-19 07:08:33 +03:00
}
2011-05-07 10:12:54 +04:00
struct brl_handle * brlock_create_handle ( TALLOC_CTX * mem_ctx , struct ntvfs_handle * ntvfs , DATA_BLOB * file_key )
2007-01-19 07:08:33 +03:00
{
return ops - > brl_create_handle ( mem_ctx , ntvfs , file_key ) ;
}
/*
Lock a range of bytes . The lock_type can be a PENDING_ * _LOCK , in
which case a real lock is first tried , and if that fails then a
pending lock is created . When the pending lock is triggered ( by
someone else closing an overlapping lock range ) a messaging
notification is sent , identified by the notify_ptr
*/
2011-05-07 10:12:54 +04:00
NTSTATUS brlock_lock ( struct brl_context * brl ,
2007-01-19 07:08:33 +03:00
struct brl_handle * brlh ,
2008-12-24 01:02:54 +03:00
uint32_t smbpid ,
2007-01-19 07:08:33 +03:00
uint64_t start , uint64_t size ,
enum brl_type lock_type ,
void * notify_ptr )
{
return ops - > brl_lock ( brl , brlh , smbpid , start , size , lock_type , notify_ptr ) ;
}
/*
Unlock a range of bytes .
*/
2011-05-07 10:12:54 +04:00
NTSTATUS brlock_unlock ( struct brl_context * brl ,
2007-01-19 07:08:33 +03:00
struct brl_handle * brlh ,
2008-12-24 01:02:54 +03:00
uint32_t smbpid ,
2007-01-19 07:08:33 +03:00
uint64_t start , uint64_t size )
{
return ops - > brl_unlock ( brl , brlh , smbpid , start , size ) ;
}
/*
remove a pending lock . This is called when the caller has either
given up trying to establish a lock or when they have succeeded in
getting it . In either case they no longer need to be notified .
*/
2011-05-07 10:12:54 +04:00
NTSTATUS brlock_remove_pending ( struct brl_context * brl ,
2007-01-19 07:08:33 +03:00
struct brl_handle * brlh ,
void * notify_ptr )
{
return ops - > brl_remove_pending ( brl , brlh , notify_ptr ) ;
}
/*
Test if we are allowed to perform IO on a region of an open file
*/
2011-05-07 10:12:54 +04:00
NTSTATUS brlock_locktest ( struct brl_context * brl ,
2007-01-19 07:08:33 +03:00
struct brl_handle * brlh ,
2008-06-02 05:03:19 +04:00
uint32_t smbpid ,
2007-01-19 07:08:33 +03:00
uint64_t start , uint64_t size ,
enum brl_type lock_type )
{
return ops - > brl_locktest ( brl , brlh , smbpid , start , size , lock_type ) ;
}
/*
Remove any locks associated with a open file .
*/
2011-05-07 10:12:54 +04:00
NTSTATUS brlock_close ( struct brl_context * brl ,
2007-01-19 07:08:33 +03:00
struct brl_handle * brlh )
{
return ops - > brl_close ( brl , brlh ) ;
}
2011-01-31 20:20:24 +03:00
/*
Get a number of locks associated with a open file .
*/
2011-05-07 10:12:54 +04:00
NTSTATUS brlock_count ( struct brl_context * brl ,
2011-01-31 20:20:24 +03:00
struct brl_handle * brlh ,
int * count )
{
return ops - > brl_count ( brl , brlh , count ) ;
}