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