adding docs for 'printcap cache time' -- patch from Lars
[Samba.git] / source / smbd / notify.c
blob6e244663f28c26e0185f010ab0c844b6db8367b0
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 uni_name.buffer = NULL;
71 for (i=0; i<num_changes; i++) {
72 struct notify_change *c;
73 size_t namelen;
74 uint32 u32_tmp; /* Temp arg to prs_uint32 to avoid
75 * signed/unsigned issues */
77 /* Coalesce any identical records. */
78 while (i+1 < num_changes &&
79 notify_change_record_identical(&changes[i],
80 &changes[i+1])) {
81 i++;
84 c = &changes[i];
86 namelen = convert_string_allocate(
87 NULL, CH_UNIX, CH_UTF16LE, c->name, strlen(c->name)+1,
88 &uni_name.buffer, True);
89 if ((namelen == -1) || (uni_name.buffer == NULL)) {
90 goto fail;
93 namelen -= 2; /* Dump NULL termination */
96 * Offset to next entry, only if there is one
99 u32_tmp = (i == num_changes-1) ? 0 : namelen + 12;
100 if (!prs_uint32("offset", ps, 1, &u32_tmp)) goto fail;
102 u32_tmp = c->action;
103 if (!prs_uint32("action", ps, 1, &u32_tmp)) goto fail;
105 u32_tmp = namelen;
106 if (!prs_uint32("namelen", ps, 1, &u32_tmp)) goto fail;
108 if (!prs_unistr("name", ps, 1, &uni_name)) goto fail;
111 * Not NULL terminated, decrease by the 2 UCS2 \0 chars
113 prs_set_offset(ps, prs_offset(ps)-2);
115 SAFE_FREE(uni_name.buffer);
117 if (prs_offset(ps) > max_offset) {
118 /* Too much data for client. */
119 return False;
123 return True;
125 fail:
126 SAFE_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(const char *request_buf,
135 NTSTATUS error_code)
137 char outbuf[smb_size+38];
139 memset(outbuf, '\0', sizeof(outbuf));
140 construct_reply_common(request_buf, outbuf);
142 ERROR_NT(error_code);
145 * Seems NT needs a transact command with an error code
146 * in it. This is a longer packet than a simple error.
148 set_message(outbuf,18,0,False);
150 show_msg(outbuf);
151 if (!send_smb(smbd_server_fd(),outbuf))
152 exit_server_cleanly("change_notify_reply_packet: send_smb "
153 "failed.");
156 void change_notify_reply(const char *request_buf, uint32 max_param,
157 struct notify_change_buf *notify_buf)
159 char *outbuf = NULL;
160 prs_struct ps;
161 size_t buflen;
163 if (notify_buf->num_changes == -1) {
164 change_notify_reply_packet(request_buf, NT_STATUS_OK);
165 notify_buf->num_changes = 0;
166 return;
169 prs_init(&ps, 0, NULL, MARSHALL);
171 if (!notify_marshall_changes(notify_buf->num_changes, max_param,
172 notify_buf->changes, &ps)) {
174 * We exceed what the client is willing to accept. Send
175 * nothing.
177 change_notify_reply_packet(request_buf, NT_STATUS_OK);
178 goto done;
181 buflen = smb_size+38+prs_offset(&ps) + 4 /* padding */;
183 if (!(outbuf = SMB_MALLOC_ARRAY(char, buflen))) {
184 change_notify_reply_packet(request_buf, NT_STATUS_NO_MEMORY);
185 goto done;
188 construct_reply_common(request_buf, outbuf);
190 if (send_nt_replies(outbuf, buflen, NT_STATUS_OK, prs_data_p(&ps),
191 prs_offset(&ps), NULL, 0) == -1) {
192 exit_server("change_notify_reply_packet: send_smb failed.");
195 done:
196 SAFE_FREE(outbuf);
197 prs_mem_free(&ps);
199 TALLOC_FREE(notify_buf->changes);
200 notify_buf->num_changes = 0;
203 static void notify_callback(void *private_data, const struct notify_event *e)
205 files_struct *fsp = (files_struct *)private_data;
206 DEBUG(10, ("notify_callback called for %s\n", fsp->fsp_name));
207 notify_fsp(fsp, e->action, e->path);
210 NTSTATUS change_notify_create(struct files_struct *fsp, uint32 filter,
211 BOOL recursive)
213 char *fullpath;
214 struct notify_entry e;
215 NTSTATUS status;
217 SMB_ASSERT(fsp->notify == NULL);
219 if (!(fsp->notify = TALLOC_ZERO_P(NULL, struct notify_change_buf))) {
220 DEBUG(0, ("talloc failed\n"));
221 return NT_STATUS_NO_MEMORY;
224 if (asprintf(&fullpath, "%s/%s", fsp->conn->connectpath,
225 fsp->fsp_name) == -1) {
226 DEBUG(0, ("asprintf failed\n"));
227 return NT_STATUS_NO_MEMORY;
230 e.path = fullpath;
231 e.filter = filter;
232 e.subdir_filter = 0;
233 if (recursive) {
234 e.subdir_filter = filter;
237 status = notify_add(fsp->conn->notify_ctx, &e, notify_callback, fsp);
238 SAFE_FREE(fullpath);
240 return status;
243 NTSTATUS change_notify_add_request(const char *inbuf, uint32 max_param,
244 uint32 filter, BOOL recursive,
245 struct files_struct *fsp)
247 struct notify_change_request *request = NULL;
248 struct notify_mid_map *map = NULL;
250 if (!(request = SMB_MALLOC_P(struct notify_change_request))
251 || !(map = SMB_MALLOC_P(struct notify_mid_map))) {
252 SAFE_FREE(request);
253 return NT_STATUS_NO_MEMORY;
256 request->mid_map = map;
257 map->req = request;
259 memcpy(request->request_buf, inbuf, sizeof(request->request_buf));
260 request->max_param = max_param;
261 request->filter = filter;
262 request->fsp = fsp;
263 request->backend_data = NULL;
265 DLIST_ADD_END(fsp->notify->requests, request,
266 struct notify_change_request *);
268 map->mid = SVAL(inbuf, smb_mid);
269 DLIST_ADD(notify_changes_by_mid, map);
271 /* Push the MID of this packet on the signing queue. */
272 srv_defer_sign_response(SVAL(inbuf,smb_mid));
274 return NT_STATUS_OK;
277 static void change_notify_remove_request(struct notify_change_request *remove_req)
279 files_struct *fsp;
280 struct notify_change_request *req;
283 * Paranoia checks, the fsp referenced must must have the request in
284 * its list of pending requests
287 fsp = remove_req->fsp;
288 SMB_ASSERT(fsp->notify != NULL);
290 for (req = fsp->notify->requests; req; req = req->next) {
291 if (req == remove_req) {
292 break;
296 if (req == NULL) {
297 smb_panic("notify_req not found in fsp's requests\n");
300 DLIST_REMOVE(fsp->notify->requests, req);
301 DLIST_REMOVE(notify_changes_by_mid, req->mid_map);
302 SAFE_FREE(req->mid_map);
303 TALLOC_FREE(req->backend_data);
304 SAFE_FREE(req);
307 /****************************************************************************
308 Delete entries by mid from the change notify pending queue. Always send reply.
309 *****************************************************************************/
311 void remove_pending_change_notify_requests_by_mid(uint16 mid)
313 struct notify_mid_map *map;
315 for (map = notify_changes_by_mid; map; map = map->next) {
316 if (map->mid == mid) {
317 break;
321 if (map == NULL) {
322 return;
325 change_notify_reply_packet(map->req->request_buf, NT_STATUS_CANCELLED);
326 change_notify_remove_request(map->req);
329 /****************************************************************************
330 Delete entries by fnum from the change notify pending queue.
331 *****************************************************************************/
333 void remove_pending_change_notify_requests_by_fid(files_struct *fsp,
334 NTSTATUS status)
336 if (fsp->notify == NULL) {
337 return;
340 while (fsp->notify->requests != NULL) {
341 change_notify_reply_packet(
342 fsp->notify->requests->request_buf, status);
343 change_notify_remove_request(fsp->notify->requests);
347 void notify_fname(connection_struct *conn, uint32 action, uint32 filter,
348 const char *path)
350 char *fullpath;
352 if (asprintf(&fullpath, "%s/%s", conn->connectpath, path) == -1) {
353 DEBUG(0, ("asprintf failed\n"));
354 return;
357 notify_trigger(conn->notify_ctx, action, filter, fullpath);
358 SAFE_FREE(fullpath);
361 static void notify_fsp(files_struct *fsp, uint32 action, const char *name)
363 struct notify_change *change, *changes;
364 pstring name2;
366 if (fsp->notify == NULL) {
368 * Nobody is waiting, don't queue
370 return;
373 pstrcpy(name2, name);
374 string_replace(name2, '/', '\\');
377 * Someone has triggered a notify previously, queue the change for
378 * later.
381 if ((fsp->notify->num_changes > 1000) || (name == NULL)) {
383 * The real number depends on the client buf, just provide a
384 * guard against a DoS here.
386 TALLOC_FREE(fsp->notify->changes);
387 fsp->notify->num_changes = -1;
388 return;
391 if (fsp->notify->num_changes == -1) {
392 return;
395 if (!(changes = TALLOC_REALLOC_ARRAY(
396 fsp->notify, fsp->notify->changes,
397 struct notify_change, fsp->notify->num_changes+1))) {
398 DEBUG(0, ("talloc_realloc failed\n"));
399 return;
402 fsp->notify->changes = changes;
404 change = &(fsp->notify->changes[fsp->notify->num_changes]);
406 if (!(change->name = talloc_strdup(changes, name2))) {
407 DEBUG(0, ("talloc_strdup failed\n"));
408 return;
411 change->action = action;
412 fsp->notify->num_changes += 1;
414 if (fsp->notify->requests == NULL) {
416 * Nobody is waiting, so don't send anything. The ot
418 return;
421 if (action == NOTIFY_ACTION_OLD_NAME) {
423 * We have to send the two rename events in one reply. So hold
424 * the first part back.
426 return;
430 * Someone is waiting for the change, trigger the reply immediately.
432 * TODO: do we have to walk the lists of requests pending?
435 change_notify_reply(fsp->notify->requests->request_buf,
436 fsp->notify->requests->max_param,
437 fsp->notify);
439 change_notify_remove_request(fsp->notify->requests);
442 char *notify_filter_string(TALLOC_CTX *mem_ctx, uint32 filter)
444 char *result = NULL;
446 result = talloc_strdup(mem_ctx, "");
448 if (filter & FILE_NOTIFY_CHANGE_FILE_NAME)
449 result = talloc_asprintf_append(result, "FILE_NAME|");
450 if (filter & FILE_NOTIFY_CHANGE_DIR_NAME)
451 result = talloc_asprintf_append(result, "DIR_NAME|");
452 if (filter & FILE_NOTIFY_CHANGE_ATTRIBUTES)
453 result = talloc_asprintf_append(result, "ATTRIBUTES|");
454 if (filter & FILE_NOTIFY_CHANGE_SIZE)
455 result = talloc_asprintf_append(result, "SIZE|");
456 if (filter & FILE_NOTIFY_CHANGE_LAST_WRITE)
457 result = talloc_asprintf_append(result, "LAST_WRITE|");
458 if (filter & FILE_NOTIFY_CHANGE_LAST_ACCESS)
459 result = talloc_asprintf_append(result, "LAST_ACCESS|");
460 if (filter & FILE_NOTIFY_CHANGE_CREATION)
461 result = talloc_asprintf_append(result, "CREATION|");
462 if (filter & FILE_NOTIFY_CHANGE_EA)
463 result = talloc_asprintf_append(result, "EA|");
464 if (filter & FILE_NOTIFY_CHANGE_SECURITY)
465 result = talloc_asprintf_append(result, "SECURITY|");
466 if (filter & FILE_NOTIFY_CHANGE_STREAM_NAME)
467 result = talloc_asprintf_append(result, "STREAM_NAME|");
468 if (filter & FILE_NOTIFY_CHANGE_STREAM_SIZE)
469 result = talloc_asprintf_append(result, "STREAM_SIZE|");
470 if (filter & FILE_NOTIFY_CHANGE_STREAM_WRITE)
471 result = talloc_asprintf_append(result, "STREAM_WRITE|");
473 if (result == NULL) return NULL;
474 if (*result == '\0') return result;
476 result[strlen(result)-1] = '\0';
477 return result;
480 struct sys_notify_context *sys_notify_context_create(connection_struct *conn,
481 TALLOC_CTX *mem_ctx,
482 struct event_context *ev)
484 struct sys_notify_context *ctx;
486 if (!(ctx = TALLOC_P(mem_ctx, struct sys_notify_context))) {
487 DEBUG(0, ("talloc failed\n"));
488 return NULL;
491 ctx->ev = ev;
492 ctx->conn = conn;
493 ctx->private_data = NULL;
494 return ctx;
497 NTSTATUS sys_notify_watch(struct sys_notify_context *ctx,
498 struct notify_entry *e,
499 void (*callback)(struct sys_notify_context *ctx,
500 void *private_data,
501 struct notify_event *ev),
502 void *private_data, void *handle)
504 return SMB_VFS_NOTIFY_WATCH(ctx->conn, ctx, e, callback, private_data,
505 handle);