s4:kdc: remember is_krbtgt, is_rodc and is_trust samba_kdc_entry
[Samba.git] / source3 / rpc_server / rpc_modules.c
blob69b5d03236b9a38b0c9070aa5d01b989074697ff
1 /*
2 * Unix SMB/CIFS implementation.
4 * SMBD RPC modules
6 * Copyright (c) 2015 Ralph Boehme <slow@samba.org>
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.
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.
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/>.
22 #include "includes.h"
23 #include "rpc_server/rpc_modules.h"
25 static struct rpc_module *rpc_modules;
27 struct rpc_module {
28 struct rpc_module *prev, *next;
29 char *name;
30 struct rpc_module_fns *fns;
33 static struct rpc_module *find_rpc_module(const char *name)
35 struct rpc_module *module = NULL;
37 for (module = rpc_modules; module != NULL; module = module->next) {
38 if (strequal(module->name, name)) {
39 return module;
43 return NULL;
46 NTSTATUS register_rpc_module(struct rpc_module_fns *fns,
47 const char *name)
49 struct rpc_module *module = find_rpc_module(name);
51 if (module != NULL) {
52 DBG_ERR("RPC module %s already loaded!\n", name);
53 return NT_STATUS_OBJECT_NAME_COLLISION;
56 module = SMB_XMALLOC_P(struct rpc_module);
57 module->name = smb_xstrdup(name);
58 module->fns = fns;
60 DLIST_ADD(rpc_modules, module);
61 DBG_NOTICE("Successfully added RPC module '%s'\n", name);
63 return NT_STATUS_OK;
66 bool setup_rpc_module(struct tevent_context *ev_ctx,
67 struct messaging_context *msg_ctx,
68 const char *name)
70 bool ok;
71 struct rpc_module *module = find_rpc_module(name);
73 if (module == NULL) {
74 return false;
77 ok = module->fns->setup(ev_ctx, msg_ctx);
78 if (!ok) {
79 DBG_ERR("calling setup for %s failed\n", name);
82 return true;
85 bool setup_rpc_modules(struct tevent_context *ev_ctx,
86 struct messaging_context *msg_ctx)
88 bool ok;
89 struct rpc_module *module = rpc_modules;
91 for (module = rpc_modules; module; module = module->next) {
92 ok = module->fns->setup(ev_ctx, msg_ctx);
93 if (!ok) {
94 DBG_ERR("calling setup for %s failed\n", module->name);
98 return true;
101 bool init_rpc_module(const char *name,
102 const struct rpc_srv_callbacks *rpc_srv_cb)
104 struct rpc_module *module = find_rpc_module(name);
105 NTSTATUS status;
107 if (module == NULL) {
108 return false;
111 status = module->fns->init(rpc_srv_cb);
112 if (!NT_STATUS_IS_OK(status)) {
113 DBG_ERR("calling init for %s failed %s\n",
114 name, nt_errstr(status));
115 return false;
118 return true;
121 bool shutdown_rpc_module(const char *name)
123 struct rpc_module *module = find_rpc_module(name);
124 NTSTATUS status;
126 if (module == NULL) {
127 return false;
130 status = module->fns->shutdown();
131 if (!NT_STATUS_IS_OK(status)) {
132 DBG_ERR("calling shutdown for %s failed %s\n",
133 name, nt_errstr(status));
134 return false;
137 return true;