r12608: Remove some unused #include lines.
[jelmer/samba4-debian.git] / source / ntptr / ntptr_base.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    NTPTR base code
5
6    Copyright (C) Stefan (metze) Metzmacher 2005
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 2 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, write to the Free Software
20    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22 /*
23   this implements the core code for all NTPTR modules. Backends register themselves here.
24 */
25
26 #include "includes.h"
27 #include "ntptr/ntptr.h"
28 #include "smb_build.h"
29
30 /* the list of currently registered NTPTR backends */
31 static struct ntptr_backend {
32         const struct ntptr_ops *ops;
33 } *backends = NULL;
34 static int num_backends;
35
36 /*
37   register a NTPTR backend. 
38
39   The 'name' can be later used by other backends to find the operations
40   structure for this backend.
41 */
42 NTSTATUS ntptr_register(const void *_ops)
43 {
44         const struct ntptr_ops *ops = _ops;
45         struct ntptr_ops *new_ops;
46
47         if (ntptr_backend_byname(ops->name) != NULL) {
48                 /* its already registered! */
49                 DEBUG(0,("NTPTR backend '%s' already registered\n", 
50                          ops->name));
51                 return NT_STATUS_OBJECT_NAME_COLLISION;
52         }
53
54         backends = realloc_p(backends, struct ntptr_backend, num_backends+1);
55         if (!backends) {
56                 smb_panic("out of memory in ntptr_register");
57         }
58
59         new_ops = smb_xmemdup(ops, sizeof(*ops));
60         new_ops->name = smb_xstrdup(ops->name);
61
62         backends[num_backends].ops = new_ops;
63
64         num_backends++;
65
66         DEBUG(3,("NTPTR backend '%s'\n", 
67                  ops->name));
68
69         return NT_STATUS_OK;
70 }
71
72 NTSTATUS ntptr_init(void)
73 {
74         init_module_fn static_init[] = STATIC_NTPTR_MODULES;
75         init_module_fn *shared_init = load_samba_modules(NULL, "ntptr");
76
77         run_init_functions(static_init);
78         run_init_functions(shared_init);
79
80         talloc_free(shared_init);
81         
82         return NT_STATUS_OK;    
83 }
84
85
86 /*
87   return the operations structure for a named backend
88 */
89 const struct ntptr_ops *ntptr_backend_byname(const char *name)
90 {
91         int i;
92
93         for (i=0;i<num_backends;i++) {
94                 if (strcmp(backends[i].ops->name, name) == 0) {
95                         return backends[i].ops;
96                 }
97         }
98
99         return NULL;
100 }
101
102
103 /*
104   return the NTPTR interface version, and the size of some critical types
105   This can be used by backends to either detect compilation errors, or provide
106   multiple implementations for different smbd compilation options in one module
107 */
108 static const struct ntptr_critical_sizes critical_sizes = {
109         .interface_version              = NTPTR_INTERFACE_VERSION,
110         .sizeof_ntptr_critical_sizes    = sizeof(struct ntptr_critical_sizes),
111         .sizeof_ntptr_context           = sizeof(struct ntptr_context),
112         .sizeof_ntptr_ops               = sizeof(struct ntptr_ops),
113 };
114 const struct ntptr_critical_sizes *ntptr_interface_version(void)
115 {
116         return &critical_sizes;
117 }
118
119 /*
120   create a ntptr_context with a specified NTPTR backend
121 */
122 NTSTATUS ntptr_init_context(TALLOC_CTX *mem_ctx, const char *providor, struct ntptr_context **_ntptr)
123 {
124         NTSTATUS status;
125         struct ntptr_context *ntptr;
126
127         if (!providor) {
128                 return NT_STATUS_INTERNAL_ERROR;
129         }
130
131         ntptr = talloc(mem_ctx, struct ntptr_context);
132         NT_STATUS_HAVE_NO_MEMORY(ntptr);
133         ntptr->private_data     = NULL;
134         ntptr->ops              = ntptr_backend_byname(providor);
135
136         if (!ntptr->ops) {
137                 DEBUG(1,("ntptr_init_context: failed to find NTPTR providor='%s'\n",
138                          providor));
139                 return NT_STATUS_INTERNAL_ERROR;
140         }
141
142         status = ntptr->ops->init_context(ntptr);
143         NT_STATUS_NOT_OK_RETURN(status);
144
145         *_ntptr = ntptr;
146         return NT_STATUS_OK;
147 }