s4: torture: Add an async SMB2_OP_FLUSH + SMB2_OP_CLOSE test to smb2.compound_async.
[Samba.git] / source4 / samba / service_task.c
blobd911027db0a7c0d1625aa043a33666a09ebd264a
1 /*
2 Unix SMB/CIFS implementation.
4 helper functions for task based servers (nbtd, winbind etc)
6 Copyright (C) Andrew Tridgell 2005
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 "process_model.h"
24 #include "lib/messaging/irpc.h"
25 #include "param/param.h"
26 #include "librpc/gen_ndr/ndr_irpc_c.h"
29 terminate a task service
31 void task_server_terminate(struct task_server *task, const char *reason, bool fatal)
33 struct tevent_context *event_ctx = task->event_ctx;
34 const struct model_ops *model_ops = task->model_ops;
35 if (fatal) {
36 DBG_ERR("task_server_terminate: [%s]\n", reason);
37 } else {
38 DBG_NOTICE("task_server_terminate: [%s]\n", reason);
41 if (fatal && task->msg_ctx != NULL) {
42 struct dcerpc_binding_handle *irpc_handle;
43 struct samba_terminate r;
45 irpc_handle = irpc_binding_handle_by_name(task, task->msg_ctx,
46 "samba", &ndr_table_irpc);
47 if (irpc_handle != NULL) {
48 /* Note: this makes use of nested event loops... */
49 dcerpc_binding_handle_set_sync_ev(irpc_handle, event_ctx);
50 r.in.reason = reason;
51 dcerpc_samba_terminate_r(irpc_handle, task, &r);
55 imessaging_cleanup(task->msg_ctx);
57 model_ops->terminate_task(
58 event_ctx, task->lp_ctx, reason, fatal, task->process_context);
59 /* don't free this above, it might contain the 'reason' being printed */
60 talloc_free(task);
63 /* used for the callback from the process model code */
64 struct task_state {
65 const struct service_details *service_details;
66 const struct model_ops *model_ops;
71 called by the process model code when the new task starts up. This then calls
72 the server specific startup code
74 static struct task_server *task_server_callback(struct tevent_context *event_ctx,
75 struct loadparm_context *lp_ctx,
76 struct server_id server_id,
77 void *private_data,
78 void *context)
80 struct task_server *task;
81 NTSTATUS status = NT_STATUS_OK;
83 struct task_state *state = talloc_get_type(private_data, struct task_state);
84 task = talloc(event_ctx, struct task_server);
85 if (task == NULL) return NULL;
87 task->event_ctx = event_ctx;
88 task->model_ops = state->model_ops;
89 task->server_id = server_id;
90 task->lp_ctx = lp_ctx;
91 task->process_context = context;
93 task->msg_ctx = imessaging_init(task,
94 task->lp_ctx,
95 task->server_id,
96 task->event_ctx);
97 if (!task->msg_ctx) {
98 task_server_terminate(task, "imessaging_init() failed", true);
99 return NULL;
102 status = state->service_details->task_init(task);
103 if (!NT_STATUS_IS_OK(status)) {
104 return NULL;
106 return task;
110 startup a task based server
112 NTSTATUS task_server_startup(struct tevent_context *event_ctx,
113 struct loadparm_context *lp_ctx,
114 const char *service_name,
115 const struct model_ops *model_ops,
116 const struct service_details *service_details,
117 int from_parent_fd)
119 struct task_state *state;
121 state = talloc(event_ctx, struct task_state);
122 NT_STATUS_HAVE_NO_MEMORY(state);
124 state->service_details = service_details;
125 state->model_ops = model_ops;
127 state->model_ops->new_task(event_ctx, lp_ctx, service_name,
128 task_server_callback, state, service_details,
129 from_parent_fd);
131 return NT_STATUS_OK;
135 setup a task title
137 void task_server_set_title(struct task_server *task, const char *title)
139 task->model_ops->set_title(task->event_ctx, title);