s4-netlogon: implement dcesrv_netr_DsRAddressToSitenamesExW
[Samba/aatanasov.git] / source4 / smbd / process_model.c
blob0ae544e037baa86e23eb87017dce718a3c189584
1 /*
2 Unix SMB/CIFS implementation.
3 process model manager - main loop
4 Copyright (C) Andrew Tridgell 1992-2003
5 Copyright (C) James J Myers 2003 <myersjj@samba.org>
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "includes.h"
22 #include "smbd/process_model.h"
23 #include "smbd/process_model_proto.h"
24 #include "param/param.h"
26 static const struct model_ops *process_model_byname(const char *name);
29 setup the events for the chosen process model
31 _PUBLIC_ const struct model_ops *process_model_startup(struct tevent_context *ev, const char *model)
33 const struct model_ops *ops;
35 ops = process_model_byname(model);
36 if (!ops) {
37 DEBUG(0,("Unknown process model '%s'\n", model));
38 exit(-1);
41 ops->model_init(ev);
43 return ops;
46 /* the list of currently registered process models */
47 static struct process_model {
48 struct model_ops *ops;
49 } *models = NULL;
50 static int num_models;
53 register a process model.
55 The 'name' can be later used by other backends to find the operations
56 structure for this backend.
58 _PUBLIC_ NTSTATUS register_process_model(const void *_ops)
60 const struct model_ops *ops = _ops;
62 if (process_model_byname(ops->name) != NULL) {
63 /* its already registered! */
64 DEBUG(0,("PROCESS_MODEL '%s' already registered\n",
65 ops->name));
66 return NT_STATUS_OBJECT_NAME_COLLISION;
69 models = realloc_p(models, struct process_model, num_models+1);
70 if (!models) {
71 smb_panic("out of memory in register_process_model");
74 models[num_models].ops = smb_xmemdup(ops, sizeof(*ops));
75 models[num_models].ops->name = smb_xstrdup(ops->name);
77 num_models++;
79 DEBUG(3,("PROCESS_MODEL '%s' registered\n",
80 ops->name));
82 return NT_STATUS_OK;
85 _PUBLIC_ NTSTATUS process_model_init(struct loadparm_context *lp_ctx)
87 extern NTSTATUS process_model_thread_init(void);
88 extern NTSTATUS process_model_standard_init(void);
89 extern NTSTATUS process_model_prefork_init(void);
90 extern NTSTATUS process_model_single_init(void);
91 init_module_fn static_init[] = { STATIC_process_model_MODULES };
92 init_module_fn *shared_init = load_samba_modules(NULL, lp_ctx, "process_model");
94 run_init_functions(static_init);
95 run_init_functions(shared_init);
97 talloc_free(shared_init);
99 return NT_STATUS_OK;
103 return the operations structure for a named backend of the specified type
105 static const struct model_ops *process_model_byname(const char *name)
107 int i;
109 for (i=0;i<num_models;i++) {
110 if (strcmp(models[i].ops->name, name) == 0) {
111 return models[i].ops;
115 return NULL;
119 return the PROCESS_MODEL module version, and the size of some critical types
120 This can be used by process model modules to either detect compilation errors, or provide
121 multiple implementations for different smbd compilation options in one module
123 const struct process_model_critical_sizes *process_model_version(void)
125 static const struct process_model_critical_sizes critical_sizes = {
126 PROCESS_MODEL_VERSION,
127 sizeof(struct model_ops)
130 return &critical_sizes;