Make cli_getatr() async.
[Samba/gebeck_regimport.git] / source3 / smbd / notify.c
blob12a75cc9f6363d83dadc444e489d2a2336c70492
1 /*
2 Unix SMB/CIFS implementation.
3 change notify handling
4 Copyright (C) Andrew Tridgell 2000
5 Copyright (C) Jeremy Allison 1994-1998
6 Copyright (C) Volker Lendecke 2007
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 "smbd/globals.h"
25 struct notify_change_request {
26 struct notify_change_request *prev, *next;
27 struct files_struct *fsp; /* backpointer for cancel by mid */
28 struct smb_request *req;
29 uint32 filter;
30 uint32 max_param;
31 struct notify_mid_map *mid_map;
32 void *backend_data;
35 static void notify_fsp(files_struct *fsp, uint32 action, const char *name);
38 * For NTCancel, we need to find the notify_change_request indexed by
39 * mid. Separate list here.
42 struct notify_mid_map {
43 struct notify_mid_map *prev, *next;
44 struct notify_change_request *req;
45 uint16 mid;
48 static bool notify_change_record_identical(struct notify_change *c1,
49 struct notify_change *c2)
51 /* Note this is deliberately case sensitive. */
52 if (c1->action == c2->action &&
53 strcmp(c1->name, c2->name) == 0) {
54 return True;
56 return False;
59 static bool notify_marshall_changes(int num_changes,
60 uint32 max_offset,
61 struct notify_change *changes,
62 prs_struct *ps)
64 int i;
65 UNISTR uni_name;
67 uni_name.buffer = NULL;
69 for (i=0; i<num_changes; i++) {
70 struct notify_change *c;
71 size_t namelen;
72 uint32 u32_tmp; /* Temp arg to prs_uint32 to avoid
73 * signed/unsigned issues */
75 /* Coalesce any identical records. */
76 while (i+1 < num_changes &&
77 notify_change_record_identical(&changes[i],
78 &changes[i+1])) {
79 i++;
82 c = &changes[i];
84 if (!convert_string_talloc(talloc_tos(), CH_UNIX, CH_UTF16LE,
85 c->name, strlen(c->name)+1, &uni_name.buffer,
86 &namelen, True) || (uni_name.buffer == NULL)) {
87 goto fail;
90 namelen -= 2; /* Dump NULL termination */
93 * Offset to next entry, only if there is one
96 u32_tmp = (i == num_changes-1) ? 0 : namelen + 12;
97 if (!prs_uint32("offset", ps, 1, &u32_tmp)) goto fail;
99 u32_tmp = c->action;
100 if (!prs_uint32("action", ps, 1, &u32_tmp)) goto fail;
102 u32_tmp = namelen;
103 if (!prs_uint32("namelen", ps, 1, &u32_tmp)) goto fail;
105 if (!prs_unistr("name", ps, 1, &uni_name)) goto fail;
108 * Not NULL terminated, decrease by the 2 UCS2 \0 chars
110 prs_set_offset(ps, prs_offset(ps)-2);
112 TALLOC_FREE(uni_name.buffer);
114 if (prs_offset(ps) > max_offset) {
115 /* Too much data for client. */
116 DEBUG(10, ("Client only wanted %d bytes, trying to "
117 "marshall %d bytes\n", (int)max_offset,
118 (int)prs_offset(ps)));
119 return False;
123 return True;
125 fail:
126 TALLOC_FREE(uni_name.buffer);
127 return False;
130 /****************************************************************************
131 Setup the common parts of the return packet and send it.
132 *****************************************************************************/
134 static void change_notify_reply_packet(connection_struct *conn,
135 struct smb_request *req,
136 NTSTATUS error_code)
138 reply_outbuf(req, 18, 0);
140 if (!NT_STATUS_IS_OK(error_code)) {
141 error_packet_set((char *)req->outbuf, 0, 0, error_code,
142 __LINE__,__FILE__);
145 show_msg((char *)req->outbuf);
146 if (!srv_send_smb(smbd_server_fd(),
147 (char *)req->outbuf,
148 true, req->seqnum+1,
149 req->encrypted, &req->pcd)) {
150 exit_server_cleanly("change_notify_reply_packet: srv_send_smb "
151 "failed.");
153 TALLOC_FREE(req->outbuf);
156 void change_notify_reply(connection_struct *conn,
157 struct smb_request *req, uint32 max_param,
158 struct notify_change_buf *notify_buf)
160 prs_struct ps;
162 if (notify_buf->num_changes == -1) {
163 change_notify_reply_packet(conn, req, NT_STATUS_OK);
164 notify_buf->num_changes = 0;
165 return;
168 prs_init_empty(&ps, NULL, MARSHALL);
170 if (!notify_marshall_changes(notify_buf->num_changes, max_param,
171 notify_buf->changes, &ps)) {
173 * We exceed what the client is willing to accept. Send
174 * nothing.
176 change_notify_reply_packet(conn, req, NT_STATUS_OK);
177 goto done;
180 send_nt_replies(conn, req, NT_STATUS_OK, prs_data_p(&ps),
181 prs_offset(&ps), NULL, 0);
183 done:
184 prs_mem_free(&ps);
186 TALLOC_FREE(notify_buf->changes);
187 notify_buf->num_changes = 0;
190 static void notify_callback(void *private_data, const struct notify_event *e)
192 files_struct *fsp = (files_struct *)private_data;
193 DEBUG(10, ("notify_callback called for %s\n", fsp->fsp_name));
194 notify_fsp(fsp, e->action, e->path);
197 NTSTATUS change_notify_create(struct files_struct *fsp, uint32 filter,
198 bool recursive)
200 char *fullpath;
201 struct notify_entry e;
202 NTSTATUS status;
204 SMB_ASSERT(fsp->notify == NULL);
206 if (!(fsp->notify = TALLOC_ZERO_P(NULL, struct notify_change_buf))) {
207 DEBUG(0, ("talloc failed\n"));
208 return NT_STATUS_NO_MEMORY;
211 if (asprintf(&fullpath, "%s/%s", fsp->conn->connectpath,
212 fsp->fsp_name) == -1) {
213 DEBUG(0, ("asprintf failed\n"));
214 TALLOC_FREE(fsp->notify);
215 return NT_STATUS_NO_MEMORY;
218 ZERO_STRUCT(e);
219 e.path = fullpath;
220 e.dir_fd = fsp->fh->fd;
221 e.dir_id = fsp->file_id;
222 e.filter = filter;
223 e.subdir_filter = 0;
224 if (recursive) {
225 e.subdir_filter = filter;
228 status = notify_add(fsp->conn->notify_ctx, &e, notify_callback, fsp);
229 SAFE_FREE(fullpath);
231 return status;
234 NTSTATUS change_notify_add_request(struct smb_request *req,
235 uint32 max_param,
236 uint32 filter, bool recursive,
237 struct files_struct *fsp)
239 struct notify_change_request *request = NULL;
240 struct notify_mid_map *map = NULL;
242 DEBUG(10, ("change_notify_add_request: Adding request for %s: "
243 "max_param = %d\n", fsp->fsp_name, (int)max_param));
245 if (!(request = talloc(NULL, struct notify_change_request))
246 || !(map = talloc(request, struct notify_mid_map))) {
247 TALLOC_FREE(request);
248 return NT_STATUS_NO_MEMORY;
251 request->mid_map = map;
252 map->req = request;
254 request->req = talloc_move(request, &req);
255 request->max_param = max_param;
256 request->filter = filter;
257 request->fsp = fsp;
258 request->backend_data = NULL;
260 DLIST_ADD_END(fsp->notify->requests, request,
261 struct notify_change_request *);
263 map->mid = request->req->mid;
264 DLIST_ADD(notify_changes_by_mid, map);
266 return NT_STATUS_OK;
269 static void change_notify_remove_request(struct notify_change_request *remove_req)
271 files_struct *fsp;
272 struct notify_change_request *req;
275 * Paranoia checks, the fsp referenced must must have the request in
276 * its list of pending requests
279 fsp = remove_req->fsp;
280 SMB_ASSERT(fsp->notify != NULL);
282 for (req = fsp->notify->requests; req; req = req->next) {
283 if (req == remove_req) {
284 break;
288 if (req == NULL) {
289 smb_panic("notify_req not found in fsp's requests");
292 DLIST_REMOVE(fsp->notify->requests, req);
293 DLIST_REMOVE(notify_changes_by_mid, req->mid_map);
294 TALLOC_FREE(req);
297 /****************************************************************************
298 Delete entries by mid from the change notify pending queue. Always send reply.
299 *****************************************************************************/
301 void remove_pending_change_notify_requests_by_mid(uint16 mid)
303 struct notify_mid_map *map;
305 for (map = notify_changes_by_mid; map; map = map->next) {
306 if (map->mid == mid) {
307 break;
311 if (map == NULL) {
312 return;
315 change_notify_reply_packet(map->req->fsp->conn, map->req->req,
316 NT_STATUS_CANCELLED);
317 change_notify_remove_request(map->req);
320 /****************************************************************************
321 Delete entries by fnum from the change notify pending queue.
322 *****************************************************************************/
324 void remove_pending_change_notify_requests_by_fid(files_struct *fsp,
325 NTSTATUS status)
327 if (fsp->notify == NULL) {
328 return;
331 while (fsp->notify->requests != NULL) {
332 change_notify_reply_packet(
333 fsp->conn, fsp->notify->requests->req, status);
334 change_notify_remove_request(fsp->notify->requests);
338 void notify_fname(connection_struct *conn, uint32 action, uint32 filter,
339 const char *path)
341 char *fullpath;
342 char *parent;
343 const char *name;
344 SMB_STRUCT_STAT sbuf;
346 if (path[0] == '.' && path[1] == '/') {
347 path += 2;
349 if (asprintf(&fullpath, "%s/%s", conn->connectpath, path) == -1) {
350 DEBUG(0, ("asprintf failed\n"));
351 return;
354 if (parent_dirname(talloc_tos(), path, &parent, &name)
355 && (SMB_VFS_STAT(conn, parent, &sbuf) != -1)) {
356 notify_onelevel(conn->notify_ctx, action, filter,
357 SMB_VFS_FILE_ID_CREATE(conn, &sbuf),
358 name);
361 notify_trigger(conn->notify_ctx, action, filter, fullpath);
362 SAFE_FREE(fullpath);
365 static void notify_fsp(files_struct *fsp, uint32 action, const char *name)
367 struct notify_change *change, *changes;
368 char *tmp;
370 if (fsp->notify == NULL) {
372 * Nobody is waiting, don't queue
374 return;
378 * Someone has triggered a notify previously, queue the change for
379 * later.
382 if ((fsp->notify->num_changes > 1000) || (name == NULL)) {
384 * The real number depends on the client buf, just provide a
385 * guard against a DoS here. If name == NULL the CN backend is
386 * alerting us to a problem. Possibly dropped events. Clear
387 * queued changes and send the catch-all response to the client
388 * if a request is pending.
390 TALLOC_FREE(fsp->notify->changes);
391 fsp->notify->num_changes = -1;
392 if (fsp->notify->requests != NULL) {
393 change_notify_reply(fsp->conn,
394 fsp->notify->requests->req,
395 fsp->notify->requests->max_param,
396 fsp->notify);
397 change_notify_remove_request(fsp->notify->requests);
399 return;
402 /* If we've exceeded the server side queue or received a NULL name
403 * from the underlying CN implementation, don't queue up any more
404 * requests until we can send a catch-all response to the client */
405 if (fsp->notify->num_changes == -1) {
406 return;
409 if (!(changes = TALLOC_REALLOC_ARRAY(
410 fsp->notify, fsp->notify->changes,
411 struct notify_change, fsp->notify->num_changes+1))) {
412 DEBUG(0, ("talloc_realloc failed\n"));
413 return;
416 fsp->notify->changes = changes;
418 change = &(fsp->notify->changes[fsp->notify->num_changes]);
420 if (!(tmp = talloc_strdup(changes, name))) {
421 DEBUG(0, ("talloc_strdup failed\n"));
422 return;
425 string_replace(tmp, '/', '\\');
426 change->name = tmp;
428 change->action = action;
429 fsp->notify->num_changes += 1;
431 if (fsp->notify->requests == NULL) {
433 * Nobody is waiting, so don't send anything. The ot
435 return;
438 if (action == NOTIFY_ACTION_OLD_NAME) {
440 * We have to send the two rename events in one reply. So hold
441 * the first part back.
443 return;
447 * Someone is waiting for the change, trigger the reply immediately.
449 * TODO: do we have to walk the lists of requests pending?
452 change_notify_reply(fsp->conn,
453 fsp->notify->requests->req,
454 fsp->notify->requests->max_param,
455 fsp->notify);
457 change_notify_remove_request(fsp->notify->requests);
460 char *notify_filter_string(TALLOC_CTX *mem_ctx, uint32 filter)
462 char *result = NULL;
464 result = talloc_strdup(mem_ctx, "");
466 if (filter & FILE_NOTIFY_CHANGE_FILE_NAME)
467 result = talloc_asprintf_append(result, "FILE_NAME|");
468 if (filter & FILE_NOTIFY_CHANGE_DIR_NAME)
469 result = talloc_asprintf_append(result, "DIR_NAME|");
470 if (filter & FILE_NOTIFY_CHANGE_ATTRIBUTES)
471 result = talloc_asprintf_append(result, "ATTRIBUTES|");
472 if (filter & FILE_NOTIFY_CHANGE_SIZE)
473 result = talloc_asprintf_append(result, "SIZE|");
474 if (filter & FILE_NOTIFY_CHANGE_LAST_WRITE)
475 result = talloc_asprintf_append(result, "LAST_WRITE|");
476 if (filter & FILE_NOTIFY_CHANGE_LAST_ACCESS)
477 result = talloc_asprintf_append(result, "LAST_ACCESS|");
478 if (filter & FILE_NOTIFY_CHANGE_CREATION)
479 result = talloc_asprintf_append(result, "CREATION|");
480 if (filter & FILE_NOTIFY_CHANGE_EA)
481 result = talloc_asprintf_append(result, "EA|");
482 if (filter & FILE_NOTIFY_CHANGE_SECURITY)
483 result = talloc_asprintf_append(result, "SECURITY|");
484 if (filter & FILE_NOTIFY_CHANGE_STREAM_NAME)
485 result = talloc_asprintf_append(result, "STREAM_NAME|");
486 if (filter & FILE_NOTIFY_CHANGE_STREAM_SIZE)
487 result = talloc_asprintf_append(result, "STREAM_SIZE|");
488 if (filter & FILE_NOTIFY_CHANGE_STREAM_WRITE)
489 result = talloc_asprintf_append(result, "STREAM_WRITE|");
491 if (result == NULL) return NULL;
492 if (*result == '\0') return result;
494 result[strlen(result)-1] = '\0';
495 return result;
498 struct sys_notify_context *sys_notify_context_create(connection_struct *conn,
499 TALLOC_CTX *mem_ctx,
500 struct event_context *ev)
502 struct sys_notify_context *ctx;
504 if (!(ctx = TALLOC_P(mem_ctx, struct sys_notify_context))) {
505 DEBUG(0, ("talloc failed\n"));
506 return NULL;
509 ctx->ev = ev;
510 ctx->conn = conn;
511 ctx->private_data = NULL;
512 return ctx;
515 NTSTATUS sys_notify_watch(struct sys_notify_context *ctx,
516 struct notify_entry *e,
517 void (*callback)(struct sys_notify_context *ctx,
518 void *private_data,
519 struct notify_event *ev),
520 void *private_data, void *handle)
522 return SMB_VFS_NOTIFY_WATCH(ctx->conn, ctx, e, callback, private_data,
523 handle);