2 Unix SMB/CIFS implementation.
4 Generic, persistent and shared between processes cache mechanism for use
5 by various parts of the Samba code
7 Copyright (C) Rafal Szczesniak 2002
8 Copyright (C) Volker Lendecke 2009
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>.
25 #include "system/filesys.h"
26 #include "system/glob.h"
28 #include "tdb_wrap/tdb_wrap.h"
29 #include "../lib/util/memcache.h"
32 #define DBGC_CLASS DBGC_TDB
34 #define TIMEOUT_LEN 12
35 #define CACHE_DATA_FMT "%12u/"
36 #define READ_CACHE_DATA_FMT_TEMPLATE "%%12u/%%%us"
37 #define BLOB_TYPE "DATA_BLOB"
38 #define BLOB_TYPE_LEN 9
40 static struct tdb_wrap
*cache
;
41 static struct tdb_wrap
*cache_notrans
;
42 static int cache_notrans_seqnum
;
46 * @brief Generic, persistent and shared between processes cache mechanism
47 * for use by various parts of the Samba code
53 * Cache initialisation function. Opens cache tdb file or creates
54 * it if does not exist.
56 * @return true on successful initialisation of the cache or
60 static bool gencache_init(void)
62 char* cache_fname
= NULL
;
63 int open_flags
= O_RDWR
|O_CREAT
;
65 /* skip file open if it's already opened */
66 if (cache
) return True
;
68 cache_fname
= cache_path("gencache.tdb");
69 if (cache_fname
== NULL
) {
73 DEBUG(5, ("Opening cache file at %s\n", cache_fname
));
75 cache
= tdb_wrap_open(NULL
, cache_fname
, 0,
76 TDB_DEFAULT
|TDB_INCOMPATIBLE_HASH
,
80 ret
= tdb_check(cache
->tdb
, NULL
, NULL
);
85 * Retry with CLEAR_IF_FIRST.
87 * Warning: Converting this to dbwrap won't work
88 * directly. gencache.c does transactions on this tdb,
89 * and dbwrap forbids this for CLEAR_IF_FIRST
90 * databases. tdb does allow transactions on
91 * CLEAR_IF_FIRST databases, so lets use it here to
92 * clean up a broken database.
94 cache
= tdb_wrap_open(NULL
, cache_fname
, 0,
96 TDB_INCOMPATIBLE_HASH
|
102 if (!cache
&& (errno
== EACCES
)) {
103 open_flags
= O_RDONLY
;
104 cache
= tdb_wrap_open(NULL
, cache_fname
, 0,
105 TDB_DEFAULT
|TDB_INCOMPATIBLE_HASH
,
108 DEBUG(5, ("gencache_init: Opening cache file %s read-only.\n", cache_fname
));
111 TALLOC_FREE(cache_fname
);
114 DEBUG(5, ("Attempt to open gencache.tdb has failed.\n"));
118 cache_fname
= lock_path("gencache_notrans.tdb");
119 if (cache_fname
== NULL
) {
124 DEBUG(5, ("Opening cache file at %s\n", cache_fname
));
126 cache_notrans
= tdb_wrap_open(NULL
, cache_fname
, 0,
128 TDB_INCOMPATIBLE_HASH
|
133 if (cache_notrans
== NULL
) {
134 DEBUG(5, ("Opening %s failed: %s\n", cache_fname
,
136 TALLOC_FREE(cache_fname
);
140 TALLOC_FREE(cache_fname
);
145 static TDB_DATA
last_stabilize_key(void)
148 result
.dptr
= discard_const_p(uint8_t, "@LAST_STABILIZED");
153 struct gencache_have_val_state
{
155 const DATA_BLOB
*data
;
159 static void gencache_have_val_parser(time_t old_timeout
, DATA_BLOB data
,
162 struct gencache_have_val_state
*state
=
163 (struct gencache_have_val_state
*)private_data
;
164 time_t now
= time(NULL
);
165 int cache_time_left
, new_time_left
, additional_time
;
168 * Excuse the many variables, but these time calculations are
169 * confusing to me. We do not want to write to gencache with a
170 * possibly expensive transaction if we are about to write the same
171 * value, just extending the remaining timeout by less than 10%.
174 cache_time_left
= old_timeout
- now
;
175 if (cache_time_left
<= 0) {
177 * timed out, write new value
182 new_time_left
= state
->new_timeout
- now
;
183 if (new_time_left
<= 0) {
185 * Huh -- no new timeout?? Write it.
190 if (new_time_left
< cache_time_left
) {
192 * Someone wants to shorten the timeout. Let it happen.
198 * By how much does the new timeout extend the remaining cache time?
200 additional_time
= new_time_left
- cache_time_left
;
202 if (additional_time
* 10 < 0) {
204 * Integer overflow. We extend by so much that we have to write it.
210 * The comparison below is essentially equivalent to
212 * new_time_left > cache_time_left * 1.10
214 * but without floating point calculations.
217 if (additional_time
* 10 > cache_time_left
) {
219 * We extend the cache timeout by more than 10%. Do it.
225 * Now the more expensive data compare.
227 if (data_blob_cmp(state
->data
, &data
) != 0) {
229 * Write a new value. Certainly do it.
235 * Extending the timeout by less than 10% for the same cache value is
236 * not worth the trouble writing a value into gencache under a
237 * possibly expensive transaction.
242 static bool gencache_have_val(const char *keystr
, const DATA_BLOB
*data
,
245 struct gencache_have_val_state state
;
247 state
.new_timeout
= timeout
;
251 if (!gencache_parse(keystr
, gencache_have_val_parser
, &state
)) {
257 static int last_stabilize_parser(TDB_DATA key
, TDB_DATA data
,
260 time_t *last_stabilize
= private_data
;
262 if ((data
.dsize
!= 0) && (data
.dptr
[data
.dsize
-1] == '\0')) {
263 *last_stabilize
= atoi((char *)data
.dptr
);
269 * Set an entry in the cache file. If there's no such
272 * @param keystr string that represents a key of this entry
273 * @param blob DATA_BLOB value being cached
274 * @param timeout time when the value is expired
276 * @retval true when entry is successfuly stored
277 * @retval false on failure
280 bool gencache_set_data_blob(const char *keystr
, const DATA_BLOB
*blob
,
285 time_t last_stabilize
;
286 static int writecount
;
288 if (tdb_data_cmp(string_term_tdb_data(keystr
),
289 last_stabilize_key()) == 0) {
290 DEBUG(10, ("Can't store %s as a key\n", keystr
));
294 if ((keystr
== NULL
) || (blob
== NULL
)) {
298 if (!gencache_init()) return False
;
300 if (gencache_have_val(keystr
, blob
, timeout
)) {
301 DEBUG(10, ("Did not store value for %s, we already got it\n",
306 val
= talloc_asprintf(talloc_tos(), CACHE_DATA_FMT
, (int)timeout
);
310 val
= talloc_realloc(NULL
, val
, char, talloc_array_length(val
)-1);
314 val
= (char *)talloc_append_blob(NULL
, val
, *blob
);
319 DEBUG(10, ("Adding cache entry with key=[%s] and timeout="
320 "[%s] (%d seconds %s)\n", keystr
,
321 timestring(talloc_tos(), timeout
),
322 (int)(timeout
- time(NULL
)),
323 timeout
> time(NULL
) ? "ahead" : "in the past"));
325 ret
= tdb_store_bystring(
326 cache_notrans
->tdb
, keystr
,
327 make_tdb_data((uint8_t *)val
, talloc_array_length(val
)),
336 * Every 100 writes within a single process, stabilize the cache with
337 * a transaction. This is done to prevent a single transaction to
338 * become huge and chew lots of memory.
341 if (writecount
> lp_parm_int(-1, "gencache", "stabilize_count", 100)) {
342 gencache_stabilize();
348 * Every 5 minutes, call gencache_stabilize() to not let grow
349 * gencache_notrans.tdb too large.
354 tdb_parse_record(cache_notrans
->tdb
, last_stabilize_key(),
355 last_stabilize_parser
, &last_stabilize
);
358 + lp_parm_int(-1, "gencache", "stabilize_interval", 300))
360 gencache_stabilize();
368 * Delete one entry from the cache file.
370 * @param keystr string that represents a key of this entry
372 * @retval true upon successful deletion
373 * @retval false in case of failure
376 bool gencache_del(const char *keystr
)
378 bool exists
, was_expired
;
382 if (keystr
== NULL
) {
386 if (!gencache_init()) return False
;
388 DEBUG(10, ("Deleting cache entry (key=[%s])\n", keystr
));
391 * We delete an element by setting its timeout to 0. This way we don't
392 * have to do a transaction on gencache.tdb every time we delete an
396 exists
= gencache_get_data_blob(keystr
, NULL
, &value
, NULL
,
399 if (!exists
&& was_expired
) {
401 * gencache_get_data_blob has implicitly deleted this
402 * entry, so we have to return success here.
408 data_blob_free(&value
);
409 ret
= gencache_set(keystr
, "", 0);
414 static bool gencache_pull_timeout(char *val
, time_t *pres
, char **pendptr
)
423 res
= strtol(val
, &endptr
, 10);
425 if ((endptr
== NULL
) || (*endptr
!= '/')) {
426 DEBUG(2, ("Invalid gencache data format: %s\n", val
));
432 if (pendptr
!= NULL
) {
438 struct gencache_parse_state
{
439 void (*parser
)(time_t timeout
, DATA_BLOB blob
, void *private_data
);
444 static int gencache_parse_fn(TDB_DATA key
, TDB_DATA data
, void *private_data
)
446 struct gencache_parse_state
*state
;
452 if (data
.dptr
== NULL
) {
455 ret
= gencache_pull_timeout((char *)data
.dptr
, &t
, &endptr
);
459 state
= (struct gencache_parse_state
*)private_data
;
460 blob
= data_blob_const(
461 endptr
+1, data
.dsize
- PTR_DIFF(endptr
+1, data
.dptr
));
462 state
->parser(t
, blob
, state
->private_data
);
464 if (!state
->is_memcache
) {
465 memcache_add(NULL
, GENCACHE_RAM
,
466 data_blob_const(key
.dptr
, key
.dsize
),
467 data_blob_const(data
.dptr
, data
.dsize
));
473 bool gencache_parse(const char *keystr
,
474 void (*parser
)(time_t timeout
, DATA_BLOB blob
,
478 struct gencache_parse_state state
;
479 TDB_DATA key
= string_term_tdb_data(keystr
);
480 DATA_BLOB memcache_val
;
483 if (keystr
== NULL
) {
486 if (tdb_data_cmp(key
, last_stabilize_key()) == 0) {
489 if (!gencache_init()) {
493 state
.parser
= parser
;
494 state
.private_data
= private_data
;
496 if (memcache_lookup(NULL
, GENCACHE_RAM
,
497 data_blob_const(key
.dptr
, key
.dsize
),
500 * Make sure that nobody has changed the gencache behind our
503 int current_seqnum
= tdb_get_seqnum(cache_notrans
->tdb
);
504 if (current_seqnum
== cache_notrans_seqnum
) {
506 * Ok, our memcache is still current, use it without
507 * going to the tdb files.
509 state
.is_memcache
= true;
510 gencache_parse_fn(key
, make_tdb_data(memcache_val
.data
,
511 memcache_val
.length
),
515 memcache_flush(NULL
, GENCACHE_RAM
);
516 cache_notrans_seqnum
= current_seqnum
;
519 state
.is_memcache
= false;
521 ret
= tdb_parse_record(cache_notrans
->tdb
, key
,
522 gencache_parse_fn
, &state
);
526 ret
= tdb_parse_record(cache
->tdb
, key
, gencache_parse_fn
, &state
);
530 struct gencache_get_data_blob_state
{
537 static void gencache_get_data_blob_parser(time_t timeout
, DATA_BLOB blob
,
540 struct gencache_get_data_blob_state
*state
=
541 (struct gencache_get_data_blob_state
*)private_data
;
544 state
->result
= false;
547 state
->timeout
= timeout
;
549 if (state
->blob
== NULL
) {
550 state
->result
= true;
554 *state
->blob
= data_blob_talloc(state
->mem_ctx
, blob
.data
,
556 if (state
->blob
->data
== NULL
) {
557 state
->result
= false;
560 state
->result
= true;
564 * Get existing entry from the cache file.
566 * @param keystr string that represents a key of this entry
567 * @param blob DATA_BLOB that is filled with entry's blob
568 * @param timeout pointer to a time_t that is filled with entry's
571 * @retval true when entry is successfuly fetched
572 * @retval False for failure
575 bool gencache_get_data_blob(const char *keystr
, TALLOC_CTX
*mem_ctx
,
577 time_t *timeout
, bool *was_expired
)
579 struct gencache_get_data_blob_state state
;
580 bool expired
= false;
582 state
.result
= false;
583 state
.mem_ctx
= mem_ctx
;
586 if (!gencache_parse(keystr
, gencache_get_data_blob_parser
, &state
)) {
592 if (state
.timeout
<= time(NULL
)) {
594 * We're expired, delete the entry. We can't use gencache_del
595 * here, because that uses gencache_get_data_blob for checking
596 * the existence of a record. We know the thing exists and
597 * directly store an empty value with 0 timeout.
599 gencache_set(keystr
, "", 0);
604 *timeout
= state
.timeout
;
610 if (was_expired
!= NULL
) {
611 *was_expired
= expired
;
613 if (state
.result
&& state
.blob
) {
614 data_blob_free(state
.blob
);
619 struct stabilize_state
{
622 static int stabilize_fn(struct tdb_context
*tdb
, TDB_DATA key
, TDB_DATA val
,
625 static int wipe_fn(struct tdb_context
*tdb
, TDB_DATA key
, TDB_DATA val
,
631 * Migrate the clear-if-first gencache data to the stable,
632 * transaction-based gencache.tdb
635 bool gencache_stabilize(void)
637 struct stabilize_state state
;
641 if (!gencache_init()) {
645 res
= tdb_transaction_start_nonblock(cache
->tdb
);
647 if (tdb_error(cache
->tdb
) == TDB_ERR_NOLOCK
)
650 * Someone else already does the stabilize,
651 * this does not have to be done twice
656 DEBUG(10, ("Could not start transaction on gencache.tdb: "
657 "%s\n", tdb_errorstr_compat(cache
->tdb
)));
661 res
= tdb_lockall(cache_notrans
->tdb
);
663 tdb_transaction_cancel(cache
->tdb
);
664 DEBUG(10, ("Could not get allrecord lock on "
665 "gencache_notrans.tdb: %s\n",
666 tdb_errorstr_compat(cache_notrans
->tdb
)));
670 state
.written
= false;
672 res
= tdb_traverse(cache_notrans
->tdb
, stabilize_fn
, &state
);
674 tdb_unlockall(cache_notrans
->tdb
);
675 tdb_transaction_cancel(cache
->tdb
);
679 if (!state
.written
) {
680 tdb_unlockall(cache_notrans
->tdb
);
681 tdb_transaction_cancel(cache
->tdb
);
685 res
= tdb_transaction_commit(cache
->tdb
);
687 DEBUG(10, ("tdb_transaction_commit on gencache.tdb failed: "
688 "%s\n", tdb_errorstr_compat(cache
->tdb
)));
689 tdb_unlockall(cache_notrans
->tdb
);
693 res
= tdb_traverse(cache_notrans
->tdb
, wipe_fn
, NULL
);
695 DEBUG(10, ("tdb_traverse with wipe_fn on gencache_notrans.tdb "
697 tdb_errorstr_compat(cache_notrans
->tdb
)));
698 tdb_unlockall(cache_notrans
->tdb
);
702 res
= tdb_unlockall(cache_notrans
->tdb
);
704 DEBUG(10, ("tdb_unlockall on gencache.tdb failed: "
705 "%s\n", tdb_errorstr_compat(cache
->tdb
)));
709 now
= talloc_asprintf(talloc_tos(), "%d", (int)time(NULL
));
711 tdb_store(cache_notrans
->tdb
, last_stabilize_key(),
712 string_term_tdb_data(now
), 0);
719 static int stabilize_fn(struct tdb_context
*tdb
, TDB_DATA key
, TDB_DATA val
,
722 struct stabilize_state
*state
= (struct stabilize_state
*)priv
;
726 if (tdb_data_cmp(key
, last_stabilize_key()) == 0) {
730 if (!gencache_pull_timeout((char *)val
.dptr
, &timeout
, NULL
)) {
731 DEBUG(10, ("Ignoring invalid entry\n"));
734 if ((timeout
< time(NULL
)) || (val
.dsize
== 0)) {
735 res
= tdb_delete(cache
->tdb
, key
);
737 state
->written
= true;
738 } else if (tdb_error(cache
->tdb
) == TDB_ERR_NOEXIST
) {
742 res
= tdb_store(cache
->tdb
, key
, val
, 0);
744 state
->written
= true;
749 DEBUG(10, ("Transfer to gencache.tdb failed: %s\n",
750 tdb_errorstr_compat(cache
->tdb
)));
757 static int wipe_fn(struct tdb_context
*tdb
, TDB_DATA key
, TDB_DATA val
,
764 res
= tdb_data_cmp(key
, last_stabilize_key());
769 ok
= gencache_pull_timeout((char *)val
.dptr
, &timeout
, NULL
);
771 DEBUG(10, ("Ignoring invalid entry\n"));
775 res
= tdb_delete(tdb
, key
);
777 DEBUG(10, ("tdb_delete from gencache_notrans.tdb failed: "
778 "%s\n", tdb_errorstr_compat(cache_notrans
->tdb
)));
787 * Get existing entry from the cache file.
789 * @param keystr string that represents a key of this entry
790 * @param valstr buffer that is allocated and filled with the entry value
791 * buffer's disposing must be done outside
792 * @param timeout pointer to a time_t that is filled with entry's
795 * @retval true when entry is successfuly fetched
796 * @retval False for failure
799 bool gencache_get(const char *keystr
, TALLOC_CTX
*mem_ctx
, char **value
,
805 ret
= gencache_get_data_blob(keystr
, mem_ctx
, &blob
, ptimeout
, NULL
);
809 if ((blob
.data
== NULL
) || (blob
.length
== 0)) {
810 data_blob_free(&blob
);
813 if (blob
.data
[blob
.length
-1] != '\0') {
814 /* Not NULL terminated, can't be a string */
815 data_blob_free(&blob
);
820 * talloc_move generates a type-punned warning here. As we
821 * leave the function immediately, do a simple talloc_steal.
823 *value
= (char *)talloc_steal(mem_ctx
, blob
.data
);
826 data_blob_free(&blob
);
831 * Set an entry in the cache file. If there's no such
834 * @param keystr string that represents a key of this entry
835 * @param value text representation value being cached
836 * @param timeout time when the value is expired
838 * @retval true when entry is successfuly stored
839 * @retval false on failure
842 bool gencache_set(const char *keystr
, const char *value
, time_t timeout
)
844 DATA_BLOB blob
= data_blob_const(value
, strlen(value
)+1);
845 return gencache_set_data_blob(keystr
, &blob
, timeout
);
848 struct gencache_iterate_blobs_state
{
849 void (*fn
)(const char *key
, DATA_BLOB value
,
850 time_t timeout
, void *private_data
);
856 static int gencache_iterate_blobs_fn(struct tdb_context
*tdb
, TDB_DATA key
,
857 TDB_DATA data
, void *priv
)
859 struct gencache_iterate_blobs_state
*state
=
860 (struct gencache_iterate_blobs_state
*)priv
;
862 char *free_key
= NULL
;
866 if (tdb_data_cmp(key
, last_stabilize_key()) == 0) {
869 if (state
->in_persistent
&& tdb_exists(cache_notrans
->tdb
, key
)) {
873 if (key
.dptr
[key
.dsize
-1] == '\0') {
874 keystr
= (char *)key
.dptr
;
876 /* ensure 0-termination */
877 keystr
= talloc_strndup(talloc_tos(), (char *)key
.dptr
, key
.dsize
);
879 if (keystr
== NULL
) {
884 if (!gencache_pull_timeout((char *)data
.dptr
, &timeout
, &endptr
)) {
889 if (fnmatch(state
->pattern
, keystr
, 0) != 0) {
893 DEBUG(10, ("Calling function with arguments "
894 "(key=[%s], timeout=[%s])\n",
895 keystr
, timestring(talloc_tos(), timeout
)));
898 data_blob_const(endptr
,
899 data
.dsize
- PTR_DIFF(endptr
, data
.dptr
)),
900 timeout
, state
->private_data
);
903 TALLOC_FREE(free_key
);
907 void gencache_iterate_blobs(void (*fn
)(const char *key
, DATA_BLOB value
,
908 time_t timeout
, void *private_data
),
909 void *private_data
, const char *pattern
)
911 struct gencache_iterate_blobs_state state
;
913 if ((fn
== NULL
) || (pattern
== NULL
) || !gencache_init()) {
917 DEBUG(5, ("Searching cache keys with pattern %s\n", pattern
));
920 state
.pattern
= pattern
;
921 state
.private_data
= private_data
;
923 state
.in_persistent
= false;
924 tdb_traverse(cache_notrans
->tdb
, gencache_iterate_blobs_fn
, &state
);
926 state
.in_persistent
= true;
927 tdb_traverse(cache
->tdb
, gencache_iterate_blobs_fn
, &state
);
931 * Iterate through all entries which key matches to specified pattern
933 * @param fn pointer to the function that will be supplied with each single
934 * matching cache entry (key, value and timeout) as an arguments
935 * @param data void pointer to an arbitrary data that is passed directly to the fn
936 * function on each call
937 * @param keystr_pattern pattern the existing entries' keys are matched to
941 struct gencache_iterate_state
{
942 void (*fn
)(const char *key
, const char *value
, time_t timeout
,
947 static void gencache_iterate_fn(const char *key
, DATA_BLOB value
,
948 time_t timeout
, void *private_data
)
950 struct gencache_iterate_state
*state
=
951 (struct gencache_iterate_state
*)private_data
;
953 char *free_val
= NULL
;
955 if (value
.data
[value
.length
-1] == '\0') {
956 valstr
= (char *)value
.data
;
958 /* ensure 0-termination */
959 valstr
= talloc_strndup(talloc_tos(), (char *)value
.data
, value
.length
);
961 if (valstr
== NULL
) {
966 DEBUG(10, ("Calling function with arguments "
967 "(key=[%s], value=[%s], timeout=[%s])\n",
968 key
, valstr
, timestring(talloc_tos(), timeout
)));
970 state
->fn(key
, valstr
, timeout
, state
->private_data
);
974 TALLOC_FREE(free_val
);
977 void gencache_iterate(void (*fn
)(const char *key
, const char *value
,
978 time_t timeout
, void *dptr
),
979 void *private_data
, const char *pattern
)
981 struct gencache_iterate_state state
;
987 state
.private_data
= private_data
;
988 gencache_iterate_blobs(gencache_iterate_fn
, &state
, pattern
);