[GLUE] Rsync SAMBA_3_0 SVN r25598 in order to create the v3-0-test branch.
[Samba.git] / source / smbd / notify.c
blobdf9d8ad1378c779fe84f4b1a267d33240bfd47b9
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 2 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, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 #include "includes.h"
25 struct notify_change_request {
26 struct notify_change_request *prev, *next;
27 struct files_struct *fsp; /* backpointer for cancel by mid */
28 char request_buf[smb_size];
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);
37 static struct notify_mid_map *notify_changes_by_mid;
40 * For NTCancel, we need to find the notify_change_request indexed by
41 * mid. Separate list here.
44 struct notify_mid_map {
45 struct notify_mid_map *prev, *next;
46 struct notify_change_request *req;
47 uint16 mid;
50 static BOOL notify_change_record_identical(struct notify_change *c1,
51 struct notify_change *c2)
53 /* Note this is deliberately case sensitive. */
54 if (c1->action == c2->action &&
55 strcmp(c1->name, c2->name) == 0) {
56 return True;
58 return False;
61 static BOOL notify_marshall_changes(int num_changes,
62 uint32 max_offset,
63 struct notify_change *changes,
64 prs_struct *ps)
66 int i;
67 UNISTR uni_name;
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 namelen = convert_string_allocate(
85 NULL, CH_UNIX, CH_UTF16LE, c->name, strlen(c->name)+1,
86 &uni_name.buffer, True);
87 if ((namelen == -1) || (uni_name.buffer == NULL)) {
88 goto fail;
91 namelen -= 2; /* Dump NULL termination */
94 * Offset to next entry, only if there is one
97 u32_tmp = (i == num_changes-1) ? 0 : namelen + 12;
98 if (!prs_uint32("offset", ps, 1, &u32_tmp)) goto fail;
100 u32_tmp = c->action;
101 if (!prs_uint32("action", ps, 1, &u32_tmp)) goto fail;
103 u32_tmp = namelen;
104 if (!prs_uint32("namelen", ps, 1, &u32_tmp)) goto fail;
106 if (!prs_unistr("name", ps, 1, &uni_name)) goto fail;
109 * Not NULL terminated, decrease by the 2 UCS2 \0 chars
111 prs_set_offset(ps, prs_offset(ps)-2);
113 SAFE_FREE(uni_name.buffer);
115 if (prs_offset(ps) > max_offset) {
116 /* Too much data for client. */
117 return False;
121 return True;
123 fail:
124 SAFE_FREE(uni_name.buffer);
125 return False;
128 /****************************************************************************
129 Setup the common parts of the return packet and send it.
130 *****************************************************************************/
132 static void change_notify_reply_packet(const char *request_buf,
133 NTSTATUS error_code)
135 char outbuf[smb_size+38];
137 memset(outbuf, '\0', sizeof(outbuf));
138 construct_reply_common(request_buf, outbuf);
140 ERROR_NT(error_code);
143 * Seems NT needs a transact command with an error code
144 * in it. This is a longer packet than a simple error.
146 set_message(outbuf,18,0,False);
148 show_msg(outbuf);
149 if (!send_smb(smbd_server_fd(),outbuf))
150 exit_server_cleanly("change_notify_reply_packet: send_smb "
151 "failed.");
154 void change_notify_reply(const char *request_buf, uint32 max_param,
155 struct notify_change_buf *notify_buf)
157 char *outbuf = NULL;
158 prs_struct ps;
159 size_t buflen;
161 if (notify_buf->num_changes == -1) {
162 change_notify_reply_packet(request_buf, NT_STATUS_OK);
163 notify_buf->num_changes = 0;
164 return;
167 prs_init(&ps, 0, NULL, MARSHALL);
169 if (!notify_marshall_changes(notify_buf->num_changes, max_param,
170 notify_buf->changes, &ps)) {
172 * We exceed what the client is willing to accept. Send
173 * nothing.
175 change_notify_reply_packet(request_buf, NT_STATUS_OK);
176 goto done;
179 buflen = smb_size+38+prs_offset(&ps) + 4 /* padding */;
181 if (!(outbuf = SMB_MALLOC_ARRAY(char, buflen))) {
182 change_notify_reply_packet(request_buf, NT_STATUS_NO_MEMORY);
183 goto done;
186 construct_reply_common(request_buf, outbuf);
188 if (send_nt_replies(outbuf, buflen, NT_STATUS_OK, prs_data_p(&ps),
189 prs_offset(&ps), NULL, 0) == -1) {
190 exit_server("change_notify_reply_packet: send_smb failed.");
193 done:
194 SAFE_FREE(outbuf);
195 prs_mem_free(&ps);
197 TALLOC_FREE(notify_buf->changes);
198 notify_buf->num_changes = 0;
201 static void notify_callback(void *private_data, const struct notify_event *e)
203 files_struct *fsp = (files_struct *)private_data;
204 DEBUG(10, ("notify_callback called for %s\n", fsp->fsp_name));
205 notify_fsp(fsp, e->action, e->path);
208 NTSTATUS change_notify_create(struct files_struct *fsp, uint32 filter,
209 BOOL recursive)
211 char *fullpath;
212 struct notify_entry e;
213 NTSTATUS status;
215 SMB_ASSERT(fsp->notify == NULL);
217 if (!(fsp->notify = TALLOC_ZERO_P(NULL, struct notify_change_buf))) {
218 DEBUG(0, ("talloc failed\n"));
219 return NT_STATUS_NO_MEMORY;
222 if (asprintf(&fullpath, "%s/%s", fsp->conn->connectpath,
223 fsp->fsp_name) == -1) {
224 DEBUG(0, ("asprintf failed\n"));
225 return NT_STATUS_NO_MEMORY;
228 e.path = fullpath;
229 e.filter = filter;
230 e.subdir_filter = 0;
231 if (recursive) {
232 e.subdir_filter = filter;
235 status = notify_add(fsp->conn->notify_ctx, &e, notify_callback, fsp);
236 SAFE_FREE(fullpath);
238 return status;
241 NTSTATUS change_notify_add_request(const char *inbuf, uint32 max_param,
242 uint32 filter, BOOL recursive,
243 struct files_struct *fsp)
245 struct notify_change_request *request = NULL;
246 struct notify_mid_map *map = NULL;
248 if (!(request = SMB_MALLOC_P(struct notify_change_request))
249 || !(map = SMB_MALLOC_P(struct notify_mid_map))) {
250 SAFE_FREE(request);
251 return NT_STATUS_NO_MEMORY;
254 request->mid_map = map;
255 map->req = request;
257 memcpy(request->request_buf, inbuf, sizeof(request->request_buf));
258 request->max_param = max_param;
259 request->filter = filter;
260 request->fsp = fsp;
261 request->backend_data = NULL;
263 DLIST_ADD_END(fsp->notify->requests, request,
264 struct notify_change_request *);
266 map->mid = SVAL(inbuf, smb_mid);
267 DLIST_ADD(notify_changes_by_mid, map);
269 /* Push the MID of this packet on the signing queue. */
270 srv_defer_sign_response(SVAL(inbuf,smb_mid));
272 return NT_STATUS_OK;
275 static void change_notify_remove_request(struct notify_change_request *remove_req)
277 files_struct *fsp;
278 struct notify_change_request *req;
281 * Paranoia checks, the fsp referenced must must have the request in
282 * its list of pending requests
285 fsp = remove_req->fsp;
286 SMB_ASSERT(fsp->notify != NULL);
288 for (req = fsp->notify->requests; req; req = req->next) {
289 if (req == remove_req) {
290 break;
294 if (req == NULL) {
295 smb_panic("notify_req not found in fsp's requests\n");
298 DLIST_REMOVE(fsp->notify->requests, req);
299 DLIST_REMOVE(notify_changes_by_mid, req->mid_map);
300 SAFE_FREE(req->mid_map);
301 TALLOC_FREE(req->backend_data);
302 SAFE_FREE(req);
305 /****************************************************************************
306 Delete entries by mid from the change notify pending queue. Always send reply.
307 *****************************************************************************/
309 void remove_pending_change_notify_requests_by_mid(uint16 mid)
311 struct notify_mid_map *map;
313 for (map = notify_changes_by_mid; map; map = map->next) {
314 if (map->mid == mid) {
315 break;
319 if (map == NULL) {
320 return;
323 change_notify_reply_packet(map->req->request_buf, NT_STATUS_CANCELLED);
324 change_notify_remove_request(map->req);
327 /****************************************************************************
328 Delete entries by fnum from the change notify pending queue.
329 *****************************************************************************/
331 void remove_pending_change_notify_requests_by_fid(files_struct *fsp,
332 NTSTATUS status)
334 if (fsp->notify == NULL) {
335 return;
338 while (fsp->notify->requests != NULL) {
339 change_notify_reply_packet(
340 fsp->notify->requests->request_buf, status);
341 change_notify_remove_request(fsp->notify->requests);
345 void notify_fname(connection_struct *conn, uint32 action, uint32 filter,
346 const char *path)
348 char *fullpath;
350 if (asprintf(&fullpath, "%s/%s", conn->connectpath, path) == -1) {
351 DEBUG(0, ("asprintf failed\n"));
352 return;
355 notify_trigger(conn->notify_ctx, action, filter, fullpath);
356 SAFE_FREE(fullpath);
359 static void notify_fsp(files_struct *fsp, uint32 action, const char *name)
361 struct notify_change *change, *changes;
362 pstring name2;
364 if (fsp->notify == NULL) {
366 * Nobody is waiting, don't queue
368 return;
371 pstrcpy(name2, name);
372 string_replace(name2, '/', '\\');
375 * Someone has triggered a notify previously, queue the change for
376 * later.
379 if ((fsp->notify->num_changes > 1000) || (name == NULL)) {
381 * The real number depends on the client buf, just provide a
382 * guard against a DoS here.
384 TALLOC_FREE(fsp->notify->changes);
385 fsp->notify->num_changes = -1;
386 return;
389 if (fsp->notify->num_changes == -1) {
390 return;
393 if (!(changes = TALLOC_REALLOC_ARRAY(
394 fsp->notify, fsp->notify->changes,
395 struct notify_change, fsp->notify->num_changes+1))) {
396 DEBUG(0, ("talloc_realloc failed\n"));
397 return;
400 fsp->notify->changes = changes;
402 change = &(fsp->notify->changes[fsp->notify->num_changes]);
404 if (!(change->name = talloc_strdup(changes, name2))) {
405 DEBUG(0, ("talloc_strdup failed\n"));
406 return;
409 change->action = action;
410 fsp->notify->num_changes += 1;
412 if (fsp->notify->requests == NULL) {
414 * Nobody is waiting, so don't send anything. The ot
416 return;
419 if (action == NOTIFY_ACTION_OLD_NAME) {
421 * We have to send the two rename events in one reply. So hold
422 * the first part back.
424 return;
428 * Someone is waiting for the change, trigger the reply immediately.
430 * TODO: do we have to walk the lists of requests pending?
433 change_notify_reply(fsp->notify->requests->request_buf,
434 fsp->notify->requests->max_param,
435 fsp->notify);
437 change_notify_remove_request(fsp->notify->requests);
440 char *notify_filter_string(TALLOC_CTX *mem_ctx, uint32 filter)
442 char *result = NULL;
444 result = talloc_strdup(mem_ctx, "");
446 if (filter & FILE_NOTIFY_CHANGE_FILE_NAME)
447 result = talloc_asprintf_append(result, "FILE_NAME|");
448 if (filter & FILE_NOTIFY_CHANGE_DIR_NAME)
449 result = talloc_asprintf_append(result, "DIR_NAME|");
450 if (filter & FILE_NOTIFY_CHANGE_ATTRIBUTES)
451 result = talloc_asprintf_append(result, "ATTRIBUTES|");
452 if (filter & FILE_NOTIFY_CHANGE_SIZE)
453 result = talloc_asprintf_append(result, "SIZE|");
454 if (filter & FILE_NOTIFY_CHANGE_LAST_WRITE)
455 result = talloc_asprintf_append(result, "LAST_WRITE|");
456 if (filter & FILE_NOTIFY_CHANGE_LAST_ACCESS)
457 result = talloc_asprintf_append(result, "LAST_ACCESS|");
458 if (filter & FILE_NOTIFY_CHANGE_CREATION)
459 result = talloc_asprintf_append(result, "CREATION|");
460 if (filter & FILE_NOTIFY_CHANGE_EA)
461 result = talloc_asprintf_append(result, "EA|");
462 if (filter & FILE_NOTIFY_CHANGE_SECURITY)
463 result = talloc_asprintf_append(result, "SECURITY|");
464 if (filter & FILE_NOTIFY_CHANGE_STREAM_NAME)
465 result = talloc_asprintf_append(result, "STREAM_NAME|");
466 if (filter & FILE_NOTIFY_CHANGE_STREAM_SIZE)
467 result = talloc_asprintf_append(result, "STREAM_SIZE|");
468 if (filter & FILE_NOTIFY_CHANGE_STREAM_WRITE)
469 result = talloc_asprintf_append(result, "STREAM_WRITE|");
471 if (result == NULL) return NULL;
472 if (*result == '\0') return result;
474 result[strlen(result)-1] = '\0';
475 return result;
478 struct sys_notify_context *sys_notify_context_create(connection_struct *conn,
479 TALLOC_CTX *mem_ctx,
480 struct event_context *ev)
482 struct sys_notify_context *ctx;
484 if (!(ctx = TALLOC_P(mem_ctx, struct sys_notify_context))) {
485 DEBUG(0, ("talloc failed\n"));
486 return NULL;
489 ctx->ev = ev;
490 ctx->conn = conn;
491 ctx->private_data = NULL;
492 return ctx;
495 NTSTATUS sys_notify_watch(struct sys_notify_context *ctx,
496 struct notify_entry *e,
497 void (*callback)(struct sys_notify_context *ctx,
498 void *private_data,
499 struct notify_event *ev),
500 void *private_data, void *handle)
502 return SMB_VFS_NOTIFY_WATCH(ctx->conn, ctx, e, callback, private_data,
503 handle);