Merge branch 'v4-0-test' of ssh://git.samba.org/data/git/samba into v4-0-gmake4
[samba.git] / source4 / ntvfs / sysdep / sys_lease.c
1 /*
2    Unix SMB/CIFS implementation.
3
4    Copyright (C) Stefan Metzmacher 2008
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 /*
21   abstract the various kernel interfaces to leases (oplocks) into a
22   single Samba friendly interface
23 */
24
25 #include "includes.h"
26 #include "system/filesys.h"
27 #include "ntvfs/sysdep/sys_lease.h"
28 #include "lib/events/events.h"
29 #include "lib/util/dlinklist.h"
30 #include "param/param.h"
31 #include "build.h"
32
33 /* list of registered backends */
34 static struct sys_lease_ops *backends;
35 static uint32_t num_backends;
36
37 #define LEASE_BACKEND   "lease:backend"
38
39 /*
40   initialise a system change notify backend
41 */
42 _PUBLIC_ struct sys_lease_context *sys_lease_context_create(struct share_config *scfg,
43                                                             TALLOC_CTX *mem_ctx,
44                                                             struct event_context *ev,
45                                                             struct messaging_context *msg,
46                                                             sys_lease_send_break_fn break_send)
47 {
48         struct sys_lease_context *ctx;
49         const char *bname;
50         int i;
51         NTSTATUS status;
52
53         if (num_backends == 0) {
54                 return NULL;
55         }
56
57         if (ev == NULL) {
58                 ev = event_context_find(mem_ctx);
59         }
60
61         ctx = talloc_zero(mem_ctx, struct sys_lease_context);
62         if (ctx == NULL) {
63                 return NULL;
64         }
65
66         ctx->event_ctx = ev;
67         ctx->msg_ctx = msg;
68         ctx->break_send = break_send;
69
70         bname = share_string_option(scfg, LEASE_BACKEND, NULL);
71         if (!bname) {
72                 talloc_free(ctx);
73                 return NULL;
74         }
75
76         for (i=0;i<num_backends;i++) {
77                 if (strcasecmp(backends[i].name, bname) == 0) {
78                         ctx->ops = &backends[i];
79                         break;
80                 }
81         }
82
83         if (!ctx->ops) {
84                 talloc_free(ctx);
85                 return NULL;
86         }
87
88         status = ctx->ops->init(ctx);
89         if (!NT_STATUS_IS_OK(status)) {
90                 talloc_free(ctx);
91                 return NULL;
92         }
93
94         return ctx;
95 }
96
97 /*
98   register a lease backend
99 */
100 _PUBLIC_ NTSTATUS sys_lease_register(const struct sys_lease_ops *backend)
101 {
102         struct sys_lease_ops *b;
103         b = talloc_realloc(talloc_autofree_context(), backends,
104                            struct sys_lease_ops, num_backends+1);
105         NT_STATUS_HAVE_NO_MEMORY(b);
106         backends = b;
107         backends[num_backends] = *backend;
108         num_backends++;
109         return NT_STATUS_OK;
110 }
111
112 _PUBLIC_ NTSTATUS sys_lease_init(void)
113 {
114         static bool initialized = false;
115         extern NTSTATUS sys_lease_linux_init(void);
116
117         init_module_fn static_init[] = { STATIC_sys_lease_MODULES };
118
119         if (initialized) return NT_STATUS_OK;
120         initialized = true;
121
122         run_init_functions(static_init);
123
124         return NT_STATUS_OK;
125 }
126
127 NTSTATUS sys_lease_setup(struct sys_lease_context *ctx,
128                          struct opendb_entry *e)
129 {
130         return ctx->ops->setup(ctx, e);
131 }
132
133 NTSTATUS sys_lease_update(struct sys_lease_context *ctx,
134                           struct opendb_entry *e)
135 {
136         return ctx->ops->update(ctx, e);
137 }
138
139 NTSTATUS sys_lease_remove(struct sys_lease_context *ctx,
140                           struct opendb_entry *e)
141 {
142         return ctx->ops->remove(ctx, e);
143 }