| 1 | /* 
 | 
|---|
| 2 |    Unix SMB/CIFS implementation.
 | 
|---|
| 3 |    Authenticate against a remote domain
 | 
|---|
| 4 |    Copyright (C) Andrew Tridgell 1992-2002
 | 
|---|
| 5 |    Copyright (C) Andrew Bartlett 2002
 | 
|---|
| 6 |    
 | 
|---|
| 7 |    This program is free software; you can redistribute it and/or modify
 | 
|---|
| 8 |    it under the terms of the GNU General Public License as published by
 | 
|---|
| 9 |    the Free Software Foundation; either version 3 of the License, or
 | 
|---|
| 10 |    (at your option) any later version.
 | 
|---|
| 11 |    
 | 
|---|
| 12 |    This program is distributed in the hope that it will be useful,
 | 
|---|
| 13 |    but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
|---|
| 14 |    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
|---|
| 15 |    GNU General Public License for more details.
 | 
|---|
| 16 |    
 | 
|---|
| 17 |    You should have received a copy of the GNU General Public License
 | 
|---|
| 18 |    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
|---|
| 19 | */
 | 
|---|
| 20 | 
 | 
|---|
| 21 | #include "includes.h"
 | 
|---|
| 22 | 
 | 
|---|
| 23 | /* For reasons known only to MS, many of their NT/Win2k versions
 | 
|---|
| 24 |    need serialised access only.  Two connections at the same time
 | 
|---|
| 25 |    may (in certain situations) cause connections to be reset,
 | 
|---|
| 26 |    or access to be denied.
 | 
|---|
| 27 | 
 | 
|---|
| 28 |    This locking allows smbd's mutlithread architecture to look
 | 
|---|
| 29 |    like the single-connection that NT makes. */
 | 
|---|
| 30 | 
 | 
|---|
| 31 | struct named_mutex {
 | 
|---|
| 32 |         struct tdb_wrap *tdb;
 | 
|---|
| 33 |         char *name;
 | 
|---|
| 34 | };
 | 
|---|
| 35 | 
 | 
|---|
| 36 | static int unlock_named_mutex(struct named_mutex *mutex)
 | 
|---|
| 37 | {
 | 
|---|
| 38 |         tdb_unlock_bystring(mutex->tdb->tdb, mutex->name);
 | 
|---|
| 39 |         return 0;
 | 
|---|
| 40 | }
 | 
|---|
| 41 | 
 | 
|---|
| 42 | struct named_mutex *grab_named_mutex(TALLOC_CTX *mem_ctx, const char *name,
 | 
|---|
| 43 |                                      int timeout)
 | 
|---|
| 44 | {
 | 
|---|
| 45 |         struct named_mutex *result;
 | 
|---|
| 46 | 
 | 
|---|
| 47 |         result = talloc(mem_ctx, struct named_mutex);
 | 
|---|
| 48 |         if (result == NULL) {
 | 
|---|
| 49 |                 DEBUG(0, ("talloc failed\n"));
 | 
|---|
| 50 |                 return NULL;
 | 
|---|
| 51 |         }
 | 
|---|
| 52 | 
 | 
|---|
| 53 |         result->name = talloc_strdup(result, name);
 | 
|---|
| 54 |         if (result->name == NULL) {
 | 
|---|
| 55 |                 DEBUG(0, ("talloc failed\n"));
 | 
|---|
| 56 |                 TALLOC_FREE(result);
 | 
|---|
| 57 |                 return NULL;
 | 
|---|
| 58 |         }
 | 
|---|
| 59 | 
 | 
|---|
| 60 |         result->tdb = tdb_wrap_open(result, lock_path("mutex.tdb"), 0,
 | 
|---|
| 61 |                                     TDB_DEFAULT, O_RDWR|O_CREAT, 0600);
 | 
|---|
| 62 |         if (result->tdb == NULL) {
 | 
|---|
| 63 |                 DEBUG(1, ("Could not open mutex.tdb: %s\n",
 | 
|---|
| 64 |                           strerror(errno)));
 | 
|---|
| 65 |                 TALLOC_FREE(result);
 | 
|---|
| 66 |                 return NULL;
 | 
|---|
| 67 |         }
 | 
|---|
| 68 | 
 | 
|---|
| 69 |         if (tdb_lock_bystring_with_timeout(result->tdb->tdb, name,
 | 
|---|
| 70 |                                            timeout) == -1) {
 | 
|---|
| 71 |                 DEBUG(1, ("Could not get the lock for %s\n", name));
 | 
|---|
| 72 |                 TALLOC_FREE(result);
 | 
|---|
| 73 |                 return NULL;
 | 
|---|
| 74 |         }
 | 
|---|
| 75 | 
 | 
|---|
| 76 |         talloc_set_destructor(result, unlock_named_mutex);
 | 
|---|
| 77 |         return result;
 | 
|---|
| 78 | }
 | 
|---|