2002-06-15 15:15:31 +04:00
/*
Unix SMB / CIFS implementation .
Authenticate against a remote domain
Copyright ( C ) Andrew Tridgell 1992 - 2002
Copyright ( C ) Andrew Bartlett 2002
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
2002-06-15 15:15:31 +04: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 04:52:41 +04:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
2002-06-15 15:15:31 +04:00
*/
# include "includes.h"
/* For reasons known only to MS, many of their NT/Win2k versions
need serialised access only . Two connections at the same time
may ( in certain situations ) cause connections to be reset ,
or access to be denied .
This locking allows smbd ' s mutlithread architecture to look
like the single - connection that NT makes . */
2008-03-10 23:08:29 +03:00
struct named_mutex {
struct tdb_wrap * tdb ;
char * name ;
} ;
2002-06-15 15:15:31 +04:00
2008-03-10 23:08:29 +03:00
static int unlock_named_mutex ( struct named_mutex * mutex )
2002-06-15 15:15:31 +04:00
{
2008-03-10 23:08:29 +03:00
tdb_unlock_bystring ( mutex - > tdb - > tdb , mutex - > name ) ;
return 0 ;
}
struct named_mutex * grab_named_mutex ( TALLOC_CTX * mem_ctx , const char * name ,
int timeout )
{
struct named_mutex * result ;
result = talloc ( mem_ctx , struct named_mutex ) ;
if ( result = = NULL ) {
DEBUG ( 0 , ( " talloc failed \n " ) ) ;
return NULL ;
2002-06-15 15:15:31 +04:00
}
2008-03-10 23:08:29 +03:00
result - > name = talloc_strdup ( result , name ) ;
if ( result - > name = = NULL ) {
DEBUG ( 0 , ( " talloc failed \n " ) ) ;
TALLOC_FREE ( result ) ;
return NULL ;
2002-06-15 15:15:31 +04:00
}
2008-03-10 23:08:29 +03:00
result - > tdb = tdb_wrap_open ( result , lock_path ( " mutex.tdb " ) , 0 ,
TDB_DEFAULT , O_RDWR | O_CREAT , 0600 ) ;
if ( result - > tdb = = NULL ) {
DEBUG ( 1 , ( " Could not open mutex.tdb: %s \n " ,
strerror ( errno ) ) ) ;
TALLOC_FREE ( result ) ;
return NULL ;
}
2002-06-15 15:15:31 +04:00
2008-03-10 23:08:29 +03:00
if ( tdb_lock_bystring_with_timeout ( result - > tdb - > tdb , name ,
timeout ) = = - 1 ) {
DEBUG ( 1 , ( " Could not get the lock for %s \n " , name ) ) ;
TALLOC_FREE ( result ) ;
return NULL ;
2002-06-15 15:15:31 +04:00
}
2008-03-10 23:08:29 +03:00
talloc_set_destructor ( result , unlock_named_mutex ) ;
return result ;
2002-06-15 15:15:31 +04:00
}