2 Unix SMB/CIFS implementation.
4 Copyright (C) Andrew Tridgell 2006
5 Copyright (C) Volker Lendecke 2012
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 this is the change notify database. It implements mechanisms for
23 storing current change notify waiters in a tdb, and checking if a
24 given event matches any of the stored notify waiters.
28 #include "system/filesys.h"
29 #include "librpc/gen_ndr/ndr_notify.h"
30 #include "dbwrap/dbwrap.h"
31 #include "dbwrap/dbwrap_open.h"
32 #include "dbwrap/dbwrap_tdb.h"
33 #include "smbd/smbd.h"
35 #include "lib/tdb_wrap/tdb_wrap.h"
37 #include "lib/param/param.h"
38 #include "lib/dbwrap/dbwrap_cache.h"
39 #include "ctdb_srvids.h"
40 #include "ctdbd_conn.h"
41 #include "ctdb_conn.h"
42 #include "lib/util/tevent_unix.h"
45 struct notify_list
*next
, *prev
;
47 void (*callback
)(void *, const struct notify_event
*);
51 struct notify_context
{
52 struct messaging_context
*msg
;
53 struct notify_list
*list
;
56 * The notify database is split up into two databases: One
57 * relatively static index db and the real notify db with the
62 * "db_notify" is indexed by pathname. Per record it stores an
63 * array of notify_db_entry structs. These represent the
64 * notify records as requested by the smb client. This
65 * database is always held locally, it is never clustered.
67 struct db_context
*db_notify
;
70 * "db_index" is indexed by pathname. The records are an array
71 * of VNNs which have any interest in notifies for this path
74 * In the non-clustered case this database is cached in RAM by
75 * means of db_cache_open, which maintains a cache per
76 * process. Cache consistency is maintained by the tdb
79 * In the clustered case right now we can not use the tdb
80 * sequence number, but by means of read only records we
81 * should be able to avoid a lot of full migrations.
83 * In both cases, it is important to keep the update
84 * operations to db_index to a minimum. This is achieved by
85 * delayed deletion. When a db_notify is initially created,
86 * the db_index record is also created. When more notifies are
87 * added for a path, then only the db_notify record needs to be
88 * modified, the db_index record is not touched. When the last
89 * entry from the db_notify record is deleted, the db_index
90 * record is not immediately deleted. Instead, the db_notify
91 * record is replaced with a current timestamp. A regular
92 * cleanup process will delete all db_index records that are
93 * older than a minute.
95 struct db_context
*db_index
;
98 static void notify_trigger_local(struct notify_context
*notify
,
99 uint32_t action
, uint32_t filter
,
100 const char *path
, size_t path_len
,
102 static NTSTATUS
notify_send(struct notify_context
*notify
,
103 struct server_id
*pid
,
104 const char *path
, uint32_t action
,
106 static NTSTATUS
notify_add_entry(struct db_record
*rec
,
107 const struct notify_db_entry
*e
,
109 static NTSTATUS
notify_add_idx(struct db_record
*rec
, uint32_t vnn
);
111 static NTSTATUS
notify_del_entry(struct db_record
*rec
,
112 const struct server_id
*pid
,
114 static NTSTATUS
notify_del_idx(struct db_record
*rec
, uint32_t vnn
);
116 static int notify_context_destructor(struct notify_context
*notify
);
118 static void notify_handler(struct messaging_context
*msg_ctx
,
119 void *private_data
, uint32_t msg_type
,
120 struct server_id server_id
, DATA_BLOB
*data
);
122 struct notify_context
*notify_init(TALLOC_CTX
*mem_ctx
,
123 struct messaging_context
*msg
,
124 struct tevent_context
*ev
)
126 struct loadparm_context
*lp_ctx
;
127 struct notify_context
*notify
;
129 notify
= talloc(mem_ctx
, struct notify_context
);
130 if (notify
== NULL
) {
136 lp_ctx
= loadparm_init_s3(notify
, loadparm_s3_helpers());
137 notify
->db_notify
= db_open_tdb(
138 notify
, lp_ctx
, lock_path("notify.tdb"),
139 0, TDB_CLEAR_IF_FIRST
|TDB_INCOMPATIBLE_HASH
,
140 O_RDWR
|O_CREAT
, 0644, DBWRAP_LOCK_ORDER_2
, DBWRAP_FLAG_NONE
);
141 talloc_unlink(notify
, lp_ctx
);
142 if (notify
->db_notify
== NULL
) {
145 notify
->db_index
= db_open(
146 notify
, lock_path("notify_index.tdb"),
147 0, TDB_SEQNUM
|TDB_CLEAR_IF_FIRST
|TDB_INCOMPATIBLE_HASH
,
148 O_RDWR
|O_CREAT
, 0644, DBWRAP_LOCK_ORDER_3
, DBWRAP_FLAG_NONE
);
149 if (notify
->db_index
== NULL
) {
152 if (!lp_clustering()) {
153 notify
->db_index
= db_open_cache(notify
, notify
->db_index
);
154 if (notify
->db_index
== NULL
) {
159 if (notify
->msg
!= NULL
) {
162 status
= messaging_register(notify
->msg
, notify
,
163 MSG_PVFS_NOTIFY
, notify_handler
);
164 if (!NT_STATUS_IS_OK(status
)) {
165 DEBUG(1, ("messaging_register returned %s\n",
171 talloc_set_destructor(notify
, notify_context_destructor
);
179 static int notify_context_destructor(struct notify_context
*notify
)
181 DEBUG(10, ("notify_context_destructor called\n"));
183 if (notify
->msg
!= NULL
) {
184 messaging_deregister(notify
->msg
, MSG_PVFS_NOTIFY
, notify
);
187 while (notify
->list
!= NULL
) {
188 DEBUG(10, ("Removing private_data=%p\n",
189 notify
->list
->private_data
));
190 notify_remove(notify
, notify
->list
->private_data
);
195 NTSTATUS
notify_add(struct notify_context
*notify
,
196 const char *path
, uint32_t filter
, uint32_t subdir_filter
,
197 void (*callback
)(void *, const struct notify_event
*),
200 struct notify_db_entry e
;
201 struct notify_list
*listel
;
202 struct db_record
*notify_rec
, *idx_rec
;
205 TDB_DATA key
, notify_copy
;
207 if (notify
== NULL
) {
208 return NT_STATUS_NOT_IMPLEMENTED
;
211 DEBUG(10, ("notify_add: path=[%s], private_data=%p\n", path
,
214 listel
= talloc(notify
, struct notify_list
);
215 if (listel
== NULL
) {
216 return NT_STATUS_NO_MEMORY
;
218 listel
->callback
= callback
;
219 listel
->private_data
= private_data
;
220 listel
->path
= talloc_strdup(listel
, path
);
221 if (listel
->path
== NULL
) {
223 return NT_STATUS_NO_MEMORY
;
225 DLIST_ADD(notify
->list
, listel
);
229 e
.subdir_filter
= subdir_filter
;
230 e
.server
= messaging_server_id(notify
->msg
);
231 e
.private_data
= private_data
;
233 key
= string_tdb_data(path
);
235 notify_rec
= dbwrap_fetch_locked(notify
->db_notify
,
237 if (notify_rec
== NULL
) {
238 status
= NT_STATUS_INTERNAL_DB_CORRUPTION
;
243 * Make a copy of the notify_rec for easy restore in case
244 * updating the index_rec fails;
246 notify_copy
= dbwrap_record_get_value(notify_rec
);
247 if (notify_copy
.dsize
!= 0) {
248 notify_copy
.dptr
= (uint8_t *)talloc_memdup(
249 notify_rec
, notify_copy
.dptr
,
251 if (notify_copy
.dptr
== NULL
) {
252 TALLOC_FREE(notify_rec
);
253 status
= NT_STATUS_NO_MEMORY
;
258 if (DEBUGLEVEL
>= 10) {
259 NDR_PRINT_DEBUG(notify_db_entry
, &e
);
262 status
= notify_add_entry(notify_rec
, &e
, &add_idx
);
263 if (!NT_STATUS_IS_OK(status
)) {
268 * Someone else has added the idx entry already
270 TALLOC_FREE(notify_rec
);
274 idx_rec
= dbwrap_fetch_locked(notify
->db_index
,
276 if (idx_rec
== NULL
) {
277 status
= NT_STATUS_INTERNAL_DB_CORRUPTION
;
280 status
= notify_add_idx(idx_rec
, get_my_vnn());
281 if (!NT_STATUS_IS_OK(status
)) {
285 TALLOC_FREE(idx_rec
);
286 TALLOC_FREE(notify_rec
);
290 if (notify_copy
.dsize
!= 0) {
291 dbwrap_record_store(notify_rec
, notify_copy
, 0);
293 dbwrap_record_delete(notify_rec
);
295 TALLOC_FREE(notify_rec
);
297 DLIST_REMOVE(notify
->list
, listel
);
302 static NTSTATUS
notify_add_entry(struct db_record
*rec
,
303 const struct notify_db_entry
*e
,
306 TDB_DATA value
= dbwrap_record_get_value(rec
);
307 struct notify_db_entry
*entries
;
312 if (value
.dsize
== sizeof(time_t)) {
313 DEBUG(10, ("Re-using deleted entry\n"));
318 if ((value
.dsize
% sizeof(struct notify_db_entry
)) != 0) {
319 DEBUG(1, ("Invalid value.dsize = %u\n",
320 (unsigned)value
.dsize
));
321 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
323 num_entries
= value
.dsize
/ sizeof(struct notify_db_entry
);
325 if (num_entries
!= 0) {
329 entries
= talloc_array(rec
, struct notify_db_entry
, num_entries
+ 1);
330 if (entries
== NULL
) {
331 return NT_STATUS_NO_MEMORY
;
333 memcpy(entries
, value
.dptr
, value
.dsize
);
335 entries
[num_entries
] = *e
;
336 value
= make_tdb_data((uint8_t *)entries
, talloc_get_size(entries
));
337 status
= dbwrap_record_store(rec
, value
, 0);
338 TALLOC_FREE(entries
);
339 if (!NT_STATUS_IS_OK(status
)) {
342 *p_add_idx
= add_idx
;
346 static NTSTATUS
notify_add_idx(struct db_record
*rec
, uint32_t vnn
)
348 TDB_DATA value
= dbwrap_record_get_value(rec
);
353 if ((value
.dsize
% sizeof(uint32_t)) != 0) {
354 DEBUG(1, ("Invalid value.dsize = %u\n",
355 (unsigned)value
.dsize
));
356 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
358 num_vnns
= value
.dsize
/ sizeof(uint32_t);
359 vnns
= (uint32_t *)value
.dptr
;
361 for (i
=0; i
<num_vnns
; i
++) {
362 if (vnns
[i
] == vnn
) {
370 value
.dptr
= (uint8_t *)talloc_realloc(
371 rec
, value
.dptr
, uint32_t, num_vnns
+ 1);
372 if (value
.dptr
== NULL
) {
373 return NT_STATUS_NO_MEMORY
;
375 value
.dsize
= talloc_get_size(value
.dptr
);
377 vnns
= (uint32_t *)value
.dptr
;
379 memmove(&vnns
[i
+1], &vnns
[i
], sizeof(uint32_t) * (num_vnns
- i
));
382 status
= dbwrap_record_store(rec
, value
, 0);
383 if (!NT_STATUS_IS_OK(status
)) {
389 NTSTATUS
notify_remove(struct notify_context
*notify
, void *private_data
)
391 struct server_id pid
;
392 struct notify_list
*listel
;
393 struct db_record
*notify_rec
;
396 if ((notify
== NULL
) || (notify
->msg
== NULL
)) {
397 return NT_STATUS_NOT_IMPLEMENTED
;
400 DEBUG(10, ("notify_remove: private_data=%p\n", private_data
));
402 pid
= messaging_server_id(notify
->msg
);
404 for (listel
=notify
->list
;listel
;listel
=listel
->next
) {
405 if (listel
->private_data
== private_data
) {
406 DLIST_REMOVE(notify
->list
, listel
);
410 if (listel
== NULL
) {
411 DEBUG(10, ("%p not found\n", private_data
));
412 return NT_STATUS_NOT_FOUND
;
414 notify_rec
= dbwrap_fetch_locked(notify
->db_notify
, talloc_tos(),
415 string_tdb_data(listel
->path
));
417 if (notify_rec
== NULL
) {
418 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
420 status
= notify_del_entry(notify_rec
, &pid
, private_data
);
421 DEBUG(10, ("del_entry returned %s\n", nt_errstr(status
)));
422 TALLOC_FREE(notify_rec
);
426 static NTSTATUS
notify_del_entry(struct db_record
*rec
,
427 const struct server_id
*pid
,
430 TDB_DATA value
= dbwrap_record_get_value(rec
);
431 struct notify_db_entry
*entries
;
432 size_t i
, num_entries
;
435 DEBUG(10, ("del_entry called for %s %p\n", procid_str_static(pid
),
438 if ((value
.dsize
% sizeof(struct notify_db_entry
)) != 0) {
439 DEBUG(1, ("Invalid value.dsize = %u\n",
440 (unsigned)value
.dsize
));
441 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
443 num_entries
= value
.dsize
/ sizeof(struct notify_db_entry
);
444 entries
= (struct notify_db_entry
*)value
.dptr
;
446 for (i
=0; i
<num_entries
; i
++) {
447 struct notify_db_entry
*e
= &entries
[i
];
449 if (DEBUGLEVEL
>= 10) {
450 NDR_PRINT_DEBUG(notify_db_entry
, e
);
453 if (e
->private_data
!= private_data
) {
456 if (serverid_equal(&e
->server
, pid
)) {
460 if (i
== num_entries
) {
461 return NT_STATUS_NOT_FOUND
;
463 entries
[i
] = entries
[num_entries
-1];
464 value
.dsize
-= sizeof(struct notify_db_entry
);
466 if (value
.dsize
== 0) {
468 value
.dptr
= (uint8_t *)&now
;
469 value
.dsize
= sizeof(now
);
471 return dbwrap_record_store(rec
, value
, 0);
474 struct notify_trigger_index_state
{
481 static void notify_trigger_index_parser(TDB_DATA key
, TDB_DATA data
,
484 struct notify_trigger_index_state
*state
=
485 (struct notify_trigger_index_state
*)private_data
;
487 size_t i
, num_vnns
, num_new_vnns
, num_remote_vnns
;
489 if ((data
.dsize
% sizeof(uint32_t)) != 0) {
490 DEBUG(1, ("Invalid record size in notify index db: %u\n",
491 (unsigned)data
.dsize
));
494 new_vnns
= (uint32_t *)data
.dptr
;
495 num_new_vnns
= data
.dsize
/ sizeof(uint32_t);
496 num_remote_vnns
= num_new_vnns
;
498 for (i
=0; i
<num_new_vnns
; i
++) {
499 if (new_vnns
[i
] == state
->my_vnn
) {
500 state
->found_my_vnn
= true;
501 num_remote_vnns
-= 1;
504 if (num_remote_vnns
== 0) {
508 num_vnns
= talloc_array_length(state
->vnns
);
509 state
->vnns
= talloc_realloc(state
->mem_ctx
, state
->vnns
, uint32_t,
510 num_vnns
+ num_remote_vnns
);
511 if (state
->vnns
== NULL
) {
512 DEBUG(1, ("talloc_realloc failed\n"));
516 for (i
=0; i
<num_new_vnns
; i
++) {
517 if (new_vnns
[i
] != state
->my_vnn
) {
518 state
->vnns
[num_vnns
] = new_vnns
[i
];
524 static int vnn_cmp(const void *p1
, const void *p2
)
526 const uint32_t *vnn1
= (const uint32_t *)p1
;
527 const uint32_t *vnn2
= (const uint32_t *)p2
;
532 if (*vnn1
== *vnn2
) {
538 static bool notify_push_remote_blob(TALLOC_CTX
*mem_ctx
, uint32_t action
,
539 uint32_t filter
, const char *path
,
540 uint8_t **pblob
, size_t *pblob_len
)
542 struct notify_remote_event ev
;
544 enum ndr_err_code ndr_err
;
550 if (DEBUGLEVEL
>= 10) {
551 NDR_PRINT_DEBUG(notify_remote_event
, &ev
);
554 ndr_err
= ndr_push_struct_blob(
556 (ndr_push_flags_fn_t
)ndr_push_notify_remote_event
);
557 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
561 *pblob_len
= data
.length
;
565 static bool notify_pull_remote_blob(TALLOC_CTX
*mem_ctx
,
566 const uint8_t *blob
, size_t blob_len
,
567 uint32_t *paction
, uint32_t *pfilter
,
570 struct notify_remote_event
*ev
;
571 enum ndr_err_code ndr_err
;
575 data
.data
= discard_const_p(uint8_t, blob
);
576 data
.length
= blob_len
;
578 ev
= talloc(mem_ctx
, struct notify_remote_event
);
583 ndr_err
= ndr_pull_struct_blob(
585 (ndr_pull_flags_fn_t
)ndr_pull_notify_remote_event
);
586 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
590 if (DEBUGLEVEL
>= 10) {
591 NDR_PRINT_DEBUG(notify_remote_event
, ev
);
593 *paction
= ev
->action
;
594 *pfilter
= ev
->filter
;
595 p
= discard_const_p(char, ev
->path
);
596 *path
= talloc_move(mem_ctx
, &p
);
602 void notify_trigger(struct notify_context
*notify
,
603 uint32_t action
, uint32_t filter
, const char *path
)
605 struct ctdbd_connection
*ctdbd_conn
;
606 struct notify_trigger_index_state idx_state
;
607 const char *p
, *next_p
;
610 uint8_t *remote_blob
= NULL
;
611 size_t remote_blob_len
= 0;
613 DEBUG(10, ("notify_trigger called action=0x%x, filter=0x%x, "
614 "path=%s\n", (unsigned)action
, (unsigned)filter
, path
));
616 /* see if change notify is enabled at all */
617 if (notify
== NULL
) {
621 if (path
[0] != '/') {
623 * The rest of this routine assumes an absolute path.
628 idx_state
.mem_ctx
= talloc_tos();
629 idx_state
.vnns
= NULL
;
630 idx_state
.found_my_vnn
= false;
631 idx_state
.my_vnn
= get_my_vnn();
633 for (p
= strchr(path
+1, '/'); p
!= NULL
; p
= next_p
) {
634 ptrdiff_t path_len
= p
- path
;
637 next_p
= strchr(p
+1, '/');
638 recursive
= (next_p
!= NULL
);
642 make_tdb_data(discard_const_p(uint8_t, path
), path_len
),
643 notify_trigger_index_parser
, &idx_state
);
645 if (idx_state
.found_my_vnn
) {
646 notify_trigger_local(notify
, action
, filter
,
647 path
, path_len
, recursive
);
648 idx_state
.found_my_vnn
= false;
652 if (idx_state
.vnns
== NULL
) {
656 ctdbd_conn
= messaging_ctdbd_connection();
657 if (ctdbd_conn
== NULL
) {
661 num_vnns
= talloc_array_length(idx_state
.vnns
);
662 qsort(idx_state
.vnns
, num_vnns
, sizeof(uint32_t), vnn_cmp
);
664 last_vnn
= 0xffffffff;
666 if (!notify_push_remote_blob(talloc_tos(), action
, filter
, path
,
667 &remote_blob
, &remote_blob_len
)) {
668 DEBUG(1, ("notify_push_remote_blob failed\n"));
672 for (i
=0; i
<num_vnns
; i
++) {
673 uint32_t vnn
= idx_state
.vnns
[i
];
676 if (vnn
== last_vnn
) {
680 status
= ctdbd_messaging_send_blob(
681 ctdbd_conn
, vnn
, CTDB_SRVID_SAMBA_NOTIFY_PROXY
,
682 remote_blob
, remote_blob_len
);
683 if (!NT_STATUS_IS_OK(status
)) {
684 DEBUG(10, ("ctdbd_messaging_send_blob to vnn %d "
685 "returned %s, ignoring\n", (int)vnn
,
693 TALLOC_FREE(remote_blob
);
694 TALLOC_FREE(idx_state
.vnns
);
697 static void notify_trigger_local(struct notify_context
*notify
,
698 uint32_t action
, uint32_t filter
,
699 const char *path
, size_t path_len
,
703 struct notify_db_entry
*entries
;
704 size_t i
, num_entries
;
707 DEBUG(10, ("notify_trigger_local called for %*s, path_len=%d, "
708 "filter=%d\n", (int)path_len
, path
, (int)path_len
,
711 status
= dbwrap_fetch(
712 notify
->db_notify
, talloc_tos(),
713 make_tdb_data(discard_const_p(uint8_t, path
), path_len
), &data
);
714 if (!NT_STATUS_IS_OK(status
)) {
715 DEBUG(10, ("dbwrap_fetch returned %s\n",
719 if (data
.dsize
== sizeof(time_t)) {
720 DEBUG(10, ("Got deleted record\n"));
723 if ((data
.dsize
% sizeof(struct notify_db_entry
)) != 0) {
724 DEBUG(1, ("Invalid data.dsize = %u\n",
725 (unsigned)data
.dsize
));
729 entries
= (struct notify_db_entry
*)data
.dptr
;
730 num_entries
= data
.dsize
/ sizeof(struct notify_db_entry
);
732 DEBUG(10, ("recursive = %s pathlen=%d (%c)\n",
733 recursive
? "true" : "false", (int)path_len
,
736 for (i
=0; i
<num_entries
; i
++) {
737 struct notify_db_entry
*e
= &entries
[i
];
740 if (DEBUGLEVEL
>= 10) {
741 NDR_PRINT_DEBUG(notify_db_entry
, e
);
744 e_filter
= recursive
? e
->subdir_filter
: e
->filter
;
746 if ((filter
& e_filter
) == 0) {
750 if (!procid_is_local(&e
->server
)) {
751 DEBUG(1, ("internal error: Non-local pid %s in "
753 procid_str_static(&e
->server
)));
757 status
= notify_send(notify
, &e
->server
, path
+ path_len
+ 1,
758 action
, e
->private_data
);
759 if (!NT_STATUS_IS_OK(status
)) {
760 DEBUG(10, ("notify_send returned %s\n",
766 TALLOC_FREE(data
.dptr
);
769 static NTSTATUS
notify_send(struct notify_context
*notify
,
770 struct server_id
*pid
,
771 const char *path
, uint32_t action
,
774 struct notify_event ev
;
777 enum ndr_err_code ndr_err
;
781 ev
.private_data
= private_data
;
783 ndr_err
= ndr_push_struct_blob(
784 &data
, talloc_tos(), &ev
,
785 (ndr_push_flags_fn_t
)ndr_push_notify_event
);
786 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
787 return ndr_map_error2ntstatus(ndr_err
);
789 status
= messaging_send(notify
->msg
, *pid
, MSG_PVFS_NOTIFY
,
791 TALLOC_FREE(data
.data
);
795 static void notify_handler(struct messaging_context
*msg_ctx
,
796 void *private_data
, uint32_t msg_type
,
797 struct server_id server_id
, DATA_BLOB
*data
)
799 struct notify_context
*notify
= talloc_get_type_abort(
800 private_data
, struct notify_context
);
801 enum ndr_err_code ndr_err
;
802 struct notify_event
*n
;
803 struct notify_list
*listel
;
805 n
= talloc(talloc_tos(), struct notify_event
);
807 DEBUG(1, ("talloc failed\n"));
811 ndr_err
= ndr_pull_struct_blob(
812 data
, n
, n
, (ndr_pull_flags_fn_t
)ndr_pull_notify_event
);
813 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
817 if (DEBUGLEVEL
>= 10) {
818 NDR_PRINT_DEBUG(notify_event
, n
);
821 for (listel
=notify
->list
;listel
;listel
=listel
->next
) {
822 if (listel
->private_data
== n
->private_data
) {
823 listel
->callback(listel
->private_data
, n
);
830 struct notify_walk_idx_state
{
831 void (*fn
)(const char *path
,
832 uint32_t *vnns
, size_t num_vnns
,
837 static int notify_walk_idx_fn(struct db_record
*rec
, void *private_data
)
839 struct notify_walk_idx_state
*state
=
840 (struct notify_walk_idx_state
*)private_data
;
844 key
= dbwrap_record_get_key(rec
);
845 value
= dbwrap_record_get_value(rec
);
847 if ((value
.dsize
% sizeof(uint32_t)) != 0) {
848 DEBUG(1, ("invalid value size in notify index db: %u\n",
849 (unsigned)(value
.dsize
)));
853 path
= talloc_strndup(talloc_tos(), (char *)key
.dptr
, key
.dsize
);
855 DEBUG(1, ("talloc_strndup failed\n"));
858 state
->fn(path
, (uint32_t *)value
.dptr
, value
.dsize
/sizeof(uint32_t),
859 state
->private_data
);
864 void notify_walk_idx(struct notify_context
*notify
,
865 void (*fn
)(const char *path
,
866 uint32_t *vnns
, size_t num_vnns
,
870 struct notify_walk_idx_state state
;
872 state
.private_data
= private_data
;
873 dbwrap_traverse_read(notify
->db_index
, notify_walk_idx_fn
, &state
,
877 struct notify_walk_state
{
878 void (*fn
)(const char *path
,
879 struct notify_db_entry
*entries
, size_t num_entries
,
880 time_t deleted_time
, void *private_data
);
884 static int notify_walk_fn(struct db_record
*rec
, void *private_data
)
886 struct notify_walk_state
*state
=
887 (struct notify_walk_state
*)private_data
;
889 struct notify_db_entry
*entries
;
894 key
= dbwrap_record_get_key(rec
);
895 value
= dbwrap_record_get_value(rec
);
897 if (value
.dsize
== sizeof(deleted_time
)) {
898 memcpy(&deleted_time
, value
.dptr
, sizeof(deleted_time
));
902 if ((value
.dsize
% sizeof(struct notify_db_entry
)) != 0) {
903 DEBUG(1, ("invalid value size in notify db: %u\n",
904 (unsigned)(value
.dsize
)));
907 entries
= (struct notify_db_entry
*)value
.dptr
;
908 num_entries
= value
.dsize
/ sizeof(struct notify_db_entry
);
912 path
= talloc_strndup(talloc_tos(), (char *)key
.dptr
, key
.dsize
);
914 DEBUG(1, ("talloc_strndup failed\n"));
917 state
->fn(path
, entries
, num_entries
, deleted_time
,
918 state
->private_data
);
923 void notify_walk(struct notify_context
*notify
,
924 void (*fn
)(const char *path
,
925 struct notify_db_entry
*entries
,
927 time_t deleted_time
, void *private_data
),
930 struct notify_walk_state state
;
932 state
.private_data
= private_data
;
933 dbwrap_traverse_read(notify
->db_notify
, notify_walk_fn
, &state
,
937 struct notify_cleanup_state
{
939 time_t delete_before
;
945 static void notify_cleanup_collect(
946 const char *path
, struct notify_db_entry
*entries
, size_t num_entries
,
947 time_t deleted_time
, void *private_data
)
949 struct notify_cleanup_state
*state
=
950 (struct notify_cleanup_state
*)private_data
;
953 if (num_entries
!= 0) {
956 if (deleted_time
>= state
->delete_before
) {
960 p
= talloc_strdup(state
->mem_ctx
, path
);
962 DEBUG(1, ("talloc_strdup failed\n"));
965 add_to_large_array(state
->mem_ctx
, sizeof(p
), (void *)&p
,
966 &state
->paths
, &state
->num_paths
,
968 if (state
->array_size
== -1) {
973 static bool notify_cleanup_path(struct notify_context
*notify
,
974 const char *path
, time_t delete_before
);
976 void notify_cleanup(struct notify_context
*notify
)
978 struct notify_cleanup_state state
;
979 uint32_t failure_pool
;
982 state
.mem_ctx
= talloc_stackframe();
984 state
.delete_before
= time(NULL
)
985 - lp_parm_int(-1, "smbd", "notify cleanup interval", 60);
987 notify_walk(notify
, notify_cleanup_collect
, &state
);
989 failure_pool
= state
.num_paths
;
991 while (state
.num_paths
!= 0) {
995 * This loop is designed to be as kind as possible to
996 * ctdb. ctdb does not like it if many smbds hammer on a
997 * single record. If on many nodes the cleanup process starts
998 * running, it can happen that all of them need to clean up
999 * records in the same order. This would generate a ctdb
1000 * migrate storm on these records. Randomizing the load across
1001 * multiple records reduces the load on the individual record.
1004 generate_random_buffer((uint8_t *)&idx
, sizeof(idx
));
1005 idx
= idx
% state
.num_paths
;
1007 if (!notify_cleanup_path(notify
, state
.paths
[idx
],
1008 state
.delete_before
)) {
1010 * notify_cleanup_path failed, the most likely reason
1011 * is that dbwrap_try_fetch_locked failed due to
1012 * contention. We allow one failed attempt per deleted
1013 * path on average before we give up.
1016 if (failure_pool
== 0) {
1018 * Too many failures. We will come back here,
1019 * maybe next time there is less contention.
1025 TALLOC_FREE(state
.paths
[idx
]);
1026 state
.paths
[idx
] = state
.paths
[state
.num_paths
-1];
1027 state
.num_paths
-= 1;
1029 TALLOC_FREE(state
.mem_ctx
);
1032 static bool notify_cleanup_path(struct notify_context
*notify
,
1033 const char *path
, time_t delete_before
)
1035 struct db_record
*notify_rec
= NULL
;
1036 struct db_record
*idx_rec
= NULL
;
1037 TDB_DATA key
= string_tdb_data(path
);
1042 notify_rec
= dbwrap_fetch_locked(notify
->db_notify
, talloc_tos(), key
);
1043 if (notify_rec
== NULL
) {
1044 DEBUG(10, ("Could not fetch notify_rec\n"));
1047 value
= dbwrap_record_get_value(notify_rec
);
1049 if (value
.dsize
!= sizeof(deleted
)) {
1050 DEBUG(10, ("record %s has been re-used\n", path
));
1053 memcpy(&deleted
, value
.dptr
, sizeof(deleted
));
1055 if (deleted
>= delete_before
) {
1056 DEBUG(10, ("record %s too young\n", path
));
1061 * Be kind to ctdb and only try one dmaster migration at most.
1063 idx_rec
= dbwrap_try_fetch_locked(notify
->db_index
, talloc_tos(), key
);
1064 if (idx_rec
== NULL
) {
1065 DEBUG(10, ("Could not fetch idx_rec\n"));
1069 status
= dbwrap_record_delete(notify_rec
);
1070 if (!NT_STATUS_IS_OK(status
)) {
1071 DEBUG(10, ("Could not delete notify_rec: %s\n",
1072 nt_errstr(status
)));
1075 status
= notify_del_idx(idx_rec
, get_my_vnn());
1076 if (!NT_STATUS_IS_OK(status
)) {
1077 DEBUG(10, ("Could not delete idx_rec: %s\n",
1078 nt_errstr(status
)));
1082 TALLOC_FREE(idx_rec
);
1083 TALLOC_FREE(notify_rec
);
1087 static NTSTATUS
notify_del_idx(struct db_record
*rec
, uint32_t vnn
)
1089 TDB_DATA value
= dbwrap_record_get_value(rec
);
1093 if ((value
.dsize
% sizeof(uint32_t)) != 0) {
1094 DEBUG(1, ("Invalid value.dsize = %u\n",
1095 (unsigned)value
.dsize
));
1096 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
1098 num_vnns
= value
.dsize
/ sizeof(uint32_t);
1099 vnns
= (uint32_t *)value
.dptr
;
1101 for (i
=0; i
<num_vnns
; i
++) {
1102 if (vnns
[i
] == vnn
) {
1107 if (i
== num_vnns
) {
1109 * Not found. Should not happen, but okay...
1111 return NT_STATUS_OK
;
1114 memmove(&vnns
[i
], &vnns
[i
+1], sizeof(uint32_t) * (num_vnns
- i
- 1));
1115 value
.dsize
-= sizeof(uint32_t);
1117 if (value
.dsize
== 0) {
1118 return dbwrap_record_delete(rec
);
1120 return dbwrap_record_store(rec
, value
, 0);
1123 struct notify_cluster_proxy_state
{
1124 struct tevent_context
*ev
;
1125 struct notify_context
*notify
;
1126 struct ctdb_msg_channel
*chan
;
1129 static void notify_cluster_proxy_got_chan(struct tevent_req
*subreq
);
1130 static void notify_cluster_proxy_got_msg(struct tevent_req
*subreq
);
1131 static void notify_cluster_proxy_trigger(struct notify_context
*notify
,
1132 uint32_t action
, uint32_t filter
,
1135 struct tevent_req
*notify_cluster_proxy_send(
1136 TALLOC_CTX
*mem_ctx
, struct tevent_context
*ev
,
1137 struct notify_context
*notify
)
1139 struct tevent_req
*req
, *subreq
;
1140 struct notify_cluster_proxy_state
*state
;
1142 req
= tevent_req_create(mem_ctx
, &state
,
1143 struct notify_cluster_proxy_state
);
1148 state
->notify
= notify
;
1150 subreq
= ctdb_msg_channel_init_send(
1151 state
, state
->ev
, lp_ctdbd_socket(),
1152 CTDB_SRVID_SAMBA_NOTIFY_PROXY
);
1153 if (tevent_req_nomem(subreq
, req
)) {
1154 return tevent_req_post(req
, ev
);
1156 tevent_req_set_callback(subreq
, notify_cluster_proxy_got_chan
, req
);
1160 static void notify_cluster_proxy_got_chan(struct tevent_req
*subreq
)
1162 struct tevent_req
*req
= tevent_req_callback_data(
1163 subreq
, struct tevent_req
);
1164 struct notify_cluster_proxy_state
*state
= tevent_req_data(
1165 req
, struct notify_cluster_proxy_state
);
1168 ret
= ctdb_msg_channel_init_recv(subreq
, state
, &state
->chan
);
1169 TALLOC_FREE(subreq
);
1171 tevent_req_error(req
, ret
);
1174 subreq
= ctdb_msg_read_send(state
, state
->ev
, state
->chan
);
1175 if (tevent_req_nomem(subreq
, req
)) {
1178 tevent_req_set_callback(subreq
, notify_cluster_proxy_got_msg
, req
);
1181 static void notify_cluster_proxy_got_msg(struct tevent_req
*subreq
)
1183 struct tevent_req
*req
= tevent_req_callback_data(
1184 subreq
, struct tevent_req
);
1185 struct notify_cluster_proxy_state
*state
= tevent_req_data(
1186 req
, struct notify_cluster_proxy_state
);
1189 uint32_t action
, filter
;
1194 ret
= ctdb_msg_read_recv(subreq
, talloc_tos(), &msg
, &msg_len
);
1195 TALLOC_FREE(subreq
);
1197 tevent_req_error(req
, ret
);
1201 res
= notify_pull_remote_blob(talloc_tos(), msg
, msg_len
,
1202 &action
, &filter
, &path
);
1205 tevent_req_error(req
, EIO
);
1208 notify_cluster_proxy_trigger(state
->notify
, action
, filter
, path
);
1211 subreq
= ctdb_msg_read_send(state
, state
->ev
, state
->chan
);
1212 if (tevent_req_nomem(subreq
, req
)) {
1215 tevent_req_set_callback(subreq
, notify_cluster_proxy_got_msg
, req
);
1218 static void notify_cluster_proxy_trigger(struct notify_context
*notify
,
1219 uint32_t action
, uint32_t filter
,
1222 const char *p
, *next_p
;
1224 for (p
= path
; p
!= NULL
; p
= next_p
) {
1225 ptrdiff_t path_len
= p
- path
;
1228 next_p
= strchr(p
+1, '/');
1229 recursive
= (next_p
!= NULL
);
1231 notify_trigger_local(notify
, action
, filter
,
1232 path
, path_len
, recursive
);
1236 int notify_cluster_proxy_recv(struct tevent_req
*req
)
1240 if (tevent_req_is_unix_error(req
, &err
)) {