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 | #include "system/filesys.h"
|
---|
23 | #include "lib/util/tdb_wrap.h"
|
---|
24 | #include "util_tdb.h"
|
---|
25 |
|
---|
26 | /* For reasons known only to MS, many of their NT/Win2k versions
|
---|
27 | need serialised access only. Two connections at the same time
|
---|
28 | may (in certain situations) cause connections to be reset,
|
---|
29 | or access to be denied.
|
---|
30 |
|
---|
31 | This locking allows smbd's mutlithread architecture to look
|
---|
32 | like the single-connection that NT makes. */
|
---|
33 |
|
---|
34 | struct named_mutex {
|
---|
35 | struct tdb_wrap *tdb;
|
---|
36 | char *name;
|
---|
37 | };
|
---|
38 |
|
---|
39 | static int unlock_named_mutex(struct named_mutex *mutex)
|
---|
40 | {
|
---|
41 | tdb_unlock_bystring(mutex->tdb->tdb, mutex->name);
|
---|
42 | return 0;
|
---|
43 | }
|
---|
44 |
|
---|
45 | struct named_mutex *grab_named_mutex(TALLOC_CTX *mem_ctx, const char *name,
|
---|
46 | int timeout)
|
---|
47 | {
|
---|
48 | struct named_mutex *result;
|
---|
49 |
|
---|
50 | result = talloc(mem_ctx, struct named_mutex);
|
---|
51 | if (result == NULL) {
|
---|
52 | DEBUG(0, ("talloc failed\n"));
|
---|
53 | return NULL;
|
---|
54 | }
|
---|
55 |
|
---|
56 | result->name = talloc_strdup(result, name);
|
---|
57 | if (result->name == NULL) {
|
---|
58 | DEBUG(0, ("talloc failed\n"));
|
---|
59 | TALLOC_FREE(result);
|
---|
60 | return NULL;
|
---|
61 | }
|
---|
62 |
|
---|
63 | result->tdb = tdb_wrap_open(result, lock_path("mutex.tdb"), 0,
|
---|
64 | TDB_DEFAULT, O_RDWR|O_CREAT, 0600);
|
---|
65 | if (result->tdb == NULL) {
|
---|
66 | DEBUG(1, ("Could not open mutex.tdb: %s\n",
|
---|
67 | strerror(errno)));
|
---|
68 | TALLOC_FREE(result);
|
---|
69 | return NULL;
|
---|
70 | }
|
---|
71 |
|
---|
72 | if (tdb_lock_bystring_with_timeout(result->tdb->tdb, name,
|
---|
73 | timeout) == -1) {
|
---|
74 | DEBUG(1, ("Could not get the lock for %s\n", name));
|
---|
75 | TALLOC_FREE(result);
|
---|
76 | return NULL;
|
---|
77 | }
|
---|
78 |
|
---|
79 | talloc_set_destructor(result, unlock_named_mutex);
|
---|
80 | return result;
|
---|
81 | }
|
---|