mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
5a88e43c69
In the child, we fully re-open serverid.tdb, which leads to one fcntl lock for CLEAR_IF_FIRST detection per smbd. This opens the tdb in the parent and holds it, so that tdb_reopen_all correctly catches the CLEAR_IF_FIRST bit.
72 lines
1.8 KiB
C
72 lines
1.8 KiB
C
/*
|
|
Unix SMB/CIFS implementation.
|
|
Implementation of a reliable server_exists()
|
|
Copyright (C) Volker Lendecke 2010
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef __SERVERID_H__
|
|
#define __SERVERID_H__
|
|
|
|
#include "includes.h"
|
|
|
|
/*
|
|
* Register a server with its unique id
|
|
*/
|
|
bool serverid_register(const struct server_id *id, uint32_t msg_flags);
|
|
|
|
/*
|
|
* Register ourselves with a unique id
|
|
*/
|
|
bool serverid_register_self(uint32_t msg_flags);
|
|
|
|
/*
|
|
* De-register a server with its unique id
|
|
*/
|
|
bool serverid_deregister(const struct server_id *id);
|
|
|
|
/*
|
|
* De-register ourself
|
|
*/
|
|
bool serverid_deregister_self(void);
|
|
|
|
/*
|
|
* Check existence of a server id
|
|
*/
|
|
bool serverid_exists(const struct server_id *id);
|
|
|
|
/*
|
|
* Walk the list of server_ids registered
|
|
*/
|
|
bool serverid_traverse(int (*fn)(struct db_record *rec,
|
|
const struct server_id *id,
|
|
uint32_t msg_flags,
|
|
void *private_data),
|
|
void *private_data);
|
|
|
|
/*
|
|
* Walk the list of server_ids registered read-only
|
|
*/
|
|
bool serverid_traverse_read(int (*fn)(const struct server_id *id,
|
|
uint32_t msg_flags,
|
|
void *private_data),
|
|
void *private_data);
|
|
/*
|
|
* Ensure CLEAR_IF_FIRST works fine, to be called from the parent smbd
|
|
*/
|
|
bool serverid_parent_init(void);
|
|
|
|
#endif
|