r23784: use the GPLv3 boilerplate as recommended by the FSF and the license text
[tprouty/samba.git] / source / 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
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 static char *mutex_server_name;
32
33 BOOL grab_server_mutex(const char *name)
34 {
35         mutex_server_name = SMB_STRDUP(name);
36         if (!mutex_server_name) {
37                 DEBUG(0,("grab_server_mutex: malloc failed for %s\n", name));
38                 return False;
39         }
40         if (!secrets_named_mutex(mutex_server_name, 10)) {
41                 DEBUG(10,("grab_server_mutex: failed for %s\n", name));
42                 SAFE_FREE(mutex_server_name);
43                 return False;
44         }
45
46         return True;
47 }
48
49 void release_server_mutex(void)
50 {
51         if (mutex_server_name) {
52                 secrets_named_mutex_release(mutex_server_name);
53                 SAFE_FREE(mutex_server_name);
54         }
55 }