s4-samba-tool: add password verification in change user pass
[Samba/gebeck_regimport.git] / source4 / ntvfs / posix / pvfs_wait.c
blob89b0cee2f15bb05fa814ac77d343d972504abbdf
1 /*
2 Unix SMB/CIFS implementation.
4 POSIX NTVFS backend - async request wait routines
6 Copyright (C) Andrew Tridgell 2004
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 "lib/events/events.h"
24 #include "../lib/util/dlinklist.h"
25 #include "vfs_posix.h"
26 #include "smbd/service_stream.h"
27 #include "lib/messaging/irpc.h"
29 /* the context for a single wait instance */
30 struct pvfs_wait {
31 struct pvfs_wait *next, *prev;
32 struct pvfs_state *pvfs;
33 void (*handler)(void *, enum pvfs_wait_notice);
34 void *private_data;
35 int msg_type;
36 struct imessaging_context *msg_ctx;
37 struct tevent_context *ev;
38 struct ntvfs_request *req;
39 enum pvfs_wait_notice reason;
43 called from the ntvfs layer when we have requested setup of an async
44 call. this ensures that async calls runs with the right state of
45 previous ntvfs handlers in the chain (such as security context)
47 NTSTATUS pvfs_async_setup(struct ntvfs_module_context *ntvfs,
48 struct ntvfs_request *req, void *private_data)
50 struct pvfs_wait *pwait = talloc_get_type(private_data,
51 struct pvfs_wait);
52 pwait->handler(pwait->private_data, pwait->reason);
53 return NT_STATUS_OK;
57 receive a completion message for a wait
59 static void pvfs_wait_dispatch(struct imessaging_context *msg,
60 void *private_data, uint32_t msg_type,
61 struct server_id src, DATA_BLOB *data)
63 struct pvfs_wait *pwait = talloc_get_type(private_data,
64 struct pvfs_wait);
65 struct ntvfs_request *req;
66 void *p = NULL;
68 /* we need to check that this one is for us. See
69 imessaging_send_ptr() for the other side of this.
71 if (data->length == sizeof(void *)) {
72 void **pp;
73 pp = (void **)data->data;
74 p = *pp;
76 if (p == NULL || p != pwait->private_data) {
77 return;
80 pwait->reason = PVFS_WAIT_EVENT;
82 /* the extra reference here is to ensure that the req
83 structure is not destroyed when the async request reply is
84 sent, which would cause problems with the other ntvfs
85 modules above us */
86 req = talloc_reference(msg, pwait->req);
87 ntvfs_async_setup(pwait->req, pwait);
88 talloc_unlink(msg, req);
93 receive a timeout on a message wait
95 static void pvfs_wait_timeout(struct tevent_context *ev,
96 struct tevent_timer *te, struct timeval t,
97 void *private_data)
99 struct pvfs_wait *pwait = talloc_get_type(private_data,
100 struct pvfs_wait);
101 struct ntvfs_request *req = pwait->req;
103 pwait->reason = PVFS_WAIT_TIMEOUT;
105 req = talloc_reference(ev, req);
106 if (req != NULL) {
107 ntvfs_async_setup(req, pwait);
108 talloc_unlink(ev, req);
114 destroy a pending wait
116 static int pvfs_wait_destructor(struct pvfs_wait *pwait)
118 if (pwait->msg_type != -1) {
119 imessaging_deregister(pwait->msg_ctx, pwait->msg_type, pwait);
121 DLIST_REMOVE(pwait->pvfs->wait_list, pwait);
122 return 0;
126 setup a request to wait on a message of type msg_type, with a
127 timeout (given as an expiry time)
129 the return value is a handle. To stop waiting talloc_free this
130 handle.
132 if msg_type == -1 then no message is registered, and it is assumed
133 that the caller handles any messaging setup needed
135 struct pvfs_wait *pvfs_wait_message(struct pvfs_state *pvfs,
136 struct ntvfs_request *req,
137 int msg_type,
138 struct timeval end_time,
139 void (*fn)(void *, enum pvfs_wait_notice),
140 void *private_data)
142 struct pvfs_wait *pwait;
144 pwait = talloc(pvfs, struct pvfs_wait);
145 if (pwait == NULL) {
146 return NULL;
149 pwait->private_data = private_data;
150 pwait->handler = fn;
151 pwait->msg_ctx = pvfs->ntvfs->ctx->msg_ctx;
152 pwait->ev = pvfs->ntvfs->ctx->event_ctx;
153 pwait->msg_type = msg_type;
154 pwait->req = talloc_reference(pwait, req);
155 pwait->pvfs = pvfs;
157 if (!timeval_is_zero(&end_time)) {
158 /* setup a timer */
159 tevent_add_timer(pwait->ev, pwait, end_time, pvfs_wait_timeout, pwait);
162 /* register with the messaging subsystem for this message
163 type */
164 if (msg_type != -1) {
165 imessaging_register(pwait->msg_ctx,
166 pwait,
167 msg_type,
168 pvfs_wait_dispatch);
171 /* tell the main smb server layer that we will be replying
172 asynchronously */
173 req->async_states->state |= NTVFS_ASYNC_STATE_ASYNC;
175 DLIST_ADD(pvfs->wait_list, pwait);
177 /* make sure we cleanup the timer and message handler */
178 talloc_set_destructor(pwait, pvfs_wait_destructor);
180 return pwait;
185 cancel an outstanding async request
187 NTSTATUS pvfs_cancel(struct ntvfs_module_context *ntvfs, struct ntvfs_request *req)
189 struct pvfs_state *pvfs = talloc_get_type(ntvfs->private_data,
190 struct pvfs_state);
191 struct pvfs_wait *pwait;
193 for (pwait=pvfs->wait_list;pwait;pwait=pwait->next) {
194 if (pwait->req == req) {
195 /* trigger a cancel on the request */
196 pwait->reason = PVFS_WAIT_CANCEL;
197 ntvfs_async_setup(pwait->req, pwait);
198 return NT_STATUS_OK;
202 return NT_STATUS_DOS(ERRDOS, ERRcancelviolation);