Samba 3: added Samba 3.0.24 sources
[tomato.git] / release / src / router / samba3 / source / lib / server_mutex.c
blob2267fba9c8865d59696368e0b65f68812645b1b9
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
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 2 of the License, or
10 (at your option) any later version.
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.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #include "includes.h"
24 /* For reasons known only to MS, many of their NT/Win2k versions
25 need serialised access only. Two connections at the same time
26 may (in certain situations) cause connections to be reset,
27 or access to be denied.
29 This locking allows smbd's mutlithread architecture to look
30 like the single-connection that NT makes. */
32 static char *mutex_server_name;
34 BOOL grab_server_mutex(const char *name)
36 mutex_server_name = SMB_STRDUP(name);
37 if (!mutex_server_name) {
38 DEBUG(0,("grab_server_mutex: malloc failed for %s\n", name));
39 return False;
41 if (!secrets_named_mutex(mutex_server_name, 10)) {
42 DEBUG(10,("grab_server_mutex: failed for %s\n", name));
43 SAFE_FREE(mutex_server_name);
44 return False;
47 return True;
50 void release_server_mutex(void)
52 if (mutex_server_name) {
53 secrets_named_mutex_release(mutex_server_name);
54 SAFE_FREE(mutex_server_name);