s3-build: Provide a run-time shim to work around duplicate symbols
[nivanova/samba-autobuild/.git] / source3 / lib / smbd_shim.h
1 /*
2    Unix SMB/CIFS implementation.
3    RPC pipe client
4
5    Copyright (C) Gerald (Jerry) Carter          2004.
6    Copyright (C) Andrew Bartlett                2011.
7
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 3 of the License, or
11    (at your option) any later version.
12
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 */
21
22 /* Shim functions required due to the horrible dependency mess
23    in Samba. */
24
25 struct smbd_shim
26 {
27         void (*cancel_pending_lock_requests_by_fid)(files_struct *fsp,
28                                                     struct byte_range_lock *br_lck,
29                                                     enum file_close_type close_type);
30         void (*send_stat_cache_delete_message)(struct messaging_context *msg_ctx,
31                                                const char *name);
32
33         NTSTATUS (*can_delete_directory)(struct connection_struct *conn,
34                                          const char *dirname);
35
36         bool (*change_to_root_user)(void);
37
38         void (*contend_level2_oplocks_begin)(files_struct *fsp,
39                                              enum level2_contention_type type);
40         
41         void (*contend_level2_oplocks_end)(files_struct *fsp,
42                                            enum level2_contention_type type);
43
44         void (*become_root)(void);
45
46         void (*unbecome_root)(void);
47 };
48
49 void set_smbd_shim(const struct smbd_shim *shim_functions);
50
51