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
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 #include "lib/tdb/include/tdbutil.h"
26 #include "system/time.h"
27 #include "system/filesys.h"
31 #define DBGC_CLASS DBGC_TDB
33 #define TIMEOUT_LEN 12
34 #define CACHE_DATA_FMT "%12u/%s"
36 static struct tdb_wrap
*cache
;
40 * @brief Generic, persistent and shared between processes cache mechanism
41 * for use by various parts of the Samba code
47 * Cache initialisation function. Opens cache tdb file or creates
48 * it if does not exist.
50 * @return true on successful initialisation of the cache or
54 BOOL
gencache_init(void)
56 char* cache_fname
= NULL
;
58 /* skip file open if it's already opened */
59 if (cache
) return True
;
61 asprintf(&cache_fname
, "%s/%s", lp_lockdir(), "gencache.tdb");
63 DEBUG(5, ("Opening cache file at %s\n", cache_fname
));
65 DEBUG(0, ("Filename allocation failed.\n"));
69 cache
= tdb_wrap_open(NULL
, cache_fname
, 0, TDB_DEFAULT
,
70 O_RDWR
|O_CREAT
, 0644);
72 SAFE_FREE(cache_fname
);
74 DEBUG(5, ("Attempt to open gencache.tdb has failed.\n"));
82 * Cache shutdown function. Closes opened cache tdb file.
84 * @return true on successful closing the cache or
85 * false on failure during cache shutdown
88 BOOL
gencache_shutdown(void)
90 if (!cache
) return False
;
91 DEBUG(5, ("Closing cache file\n"));
98 * Set an entry in the cache file. If there's no such
101 * @param keystr string that represents a key of this entry
102 * @param value text representation value being cached
103 * @param timeout time when the value is expired
105 * @retval true when entry is successfuly stored
106 * @retval false on failure
109 BOOL
gencache_set(const char *keystr
, const char *value
, time_t timeout
)
112 TDB_DATA keybuf
, databuf
;
115 /* fail completely if get null pointers passed */
116 SMB_ASSERT(keystr
&& value
);
118 if (!gencache_init()) return False
;
120 asprintf(&valstr
, CACHE_DATA_FMT
, (int)timeout
, value
);
124 keybuf
.dptr
= strdup(keystr
);
125 keybuf
.dsize
= strlen(keystr
)+1;
126 databuf
.dptr
= strdup(valstr
);
127 databuf
.dsize
= strlen(valstr
)+1;
128 DEBUG(10, ("Adding cache entry with key = %s; value = %s and timeout \
129 = %s (%d seconds %s)\n", keybuf
.dptr
, value
, ctime(&timeout
),
130 (int)(timeout
- time(NULL
)), timeout
> time(NULL
) ? "ahead" : "in the past"));
132 ret
= tdb_store(cache
->tdb
, keybuf
, databuf
, 0);
134 SAFE_FREE(keybuf
.dptr
);
135 SAFE_FREE(databuf
.dptr
);
142 * Set existing entry to the cache file.
144 * @param keystr string that represents a key of this entry
145 * @param valstr text representation value being cached
146 * @param timeout time when the value is expired
148 * @retval true when entry is successfuly set
149 * @retval false on failure
152 BOOL
gencache_set_only(const char *keystr
, const char *valstr
, time_t timeout
)
155 TDB_DATA keybuf
, databuf
;
156 char *old_valstr
, *datastr
;
159 /* fail completely if get null pointers passed */
160 SMB_ASSERT(keystr
&& valstr
);
162 if (!gencache_init()) return False
;
165 * Check whether entry exists in the cache
166 * Don't verify gencache_get exit code, since the entry may be expired
168 gencache_get(keystr
, &old_valstr
, &old_timeout
);
170 if (!(old_valstr
&& old_timeout
)) return False
;
172 DEBUG(10, ("Setting cache entry with key = %s; old value = %s and old timeout \
173 = %s\n", keystr
, old_valstr
, ctime(&old_timeout
)));
175 asprintf(&datastr
, CACHE_DATA_FMT
, (int)timeout
, valstr
);
176 keybuf
.dptr
= strdup(keystr
);
177 keybuf
.dsize
= strlen(keystr
)+1;
178 databuf
.dptr
= strdup(datastr
);
179 databuf
.dsize
= strlen(datastr
)+1;
180 DEBUGADD(10, ("New value = %s, new timeout = %s (%d seconds %s)", valstr
,
181 ctime(&timeout
), (int)(timeout
- time(NULL
)),
182 timeout
> time(NULL
) ? "ahead" : "in the past"));
185 ret
= tdb_store(cache
->tdb
, keybuf
, databuf
, TDB_REPLACE
);
188 SAFE_FREE(old_valstr
);
189 SAFE_FREE(keybuf
.dptr
);
190 SAFE_FREE(databuf
.dptr
);
197 * Delete one entry from the cache file.
199 * @param keystr string that represents a key of this entry
201 * @retval true upon successful deletion
202 * @retval false in case of failure
205 BOOL
gencache_del(const char *keystr
)
210 /* fail completely if get null pointers passed */
213 if (!gencache_init()) return False
;
215 keybuf
.dptr
= strdup(keystr
);
216 keybuf
.dsize
= strlen(keystr
)+1;
217 DEBUG(10, ("Deleting cache entry (key = %s)\n", keystr
));
218 ret
= tdb_delete(cache
->tdb
, keybuf
);
220 SAFE_FREE(keybuf
.dptr
);
226 * Get existing entry from the cache file.
228 * @param keystr string that represents a key of this entry
229 * @param valstr buffer that is allocated and filled with the entry value
230 * buffer's disposing must be done outside
231 * @param timeout pointer to a time_t that is filled with entry's
234 * @retval true when entry is successfuly fetched
235 * @retval False for failure
238 BOOL
gencache_get(const char *keystr
, char **valstr
, time_t *timeout
)
240 TDB_DATA keybuf
, databuf
;
242 /* fail completely if get null pointers passed */
245 if (!gencache_init())
248 keybuf
.dptr
= strdup(keystr
);
249 keybuf
.dsize
= strlen(keystr
)+1;
250 databuf
= tdb_fetch(cache
->tdb
, keybuf
);
251 SAFE_FREE(keybuf
.dptr
);
253 if (databuf
.dptr
&& databuf
.dsize
> TIMEOUT_LEN
) {
254 char* entry_buf
= strndup(databuf
.dptr
, databuf
.dsize
);
259 v
= malloc_array_p(char, databuf
.dsize
- TIMEOUT_LEN
);
261 SAFE_FREE(databuf
.dptr
);
262 sscanf(entry_buf
, CACHE_DATA_FMT
, (int*)&i
, v
);
263 SAFE_FREE(entry_buf
);
266 DEBUG(10, ("Returning %s cache entry: key = %s, value = %s, "
267 "timeout = %s\n", t
> time(NULL
) ? "valid" :
268 "expired", keystr
, v
, ctime(&t
)));
278 return t
> time(NULL
);
281 SAFE_FREE(databuf
.dptr
);
289 DEBUG(10, ("Cache entry with key = %s couldn't be found\n",
298 * Iterate through all entries which key matches to specified pattern
300 * @param fn pointer to the function that will be supplied with each single
301 * matching cache entry (key, value and timeout) as an arguments
302 * @param data void pointer to an arbitrary data that is passed directly to the fn
303 * function on each call
304 * @param keystr_pattern pattern the existing entries' keys are matched to
308 void gencache_iterate(void (*fn
)(const char* key
, const char *value
, time_t timeout
, void* dptr
),
309 void* data
, const char* keystr_pattern
)
311 TDB_LIST_NODE
*node
, *first_node
;
313 char *keystr
= NULL
, *valstr
= NULL
, *entry
= NULL
;
317 /* fail completely if get null pointers passed */
318 SMB_ASSERT(fn
&& keystr_pattern
);
320 if (!gencache_init()) return;
322 DEBUG(5, ("Searching cache keys with pattern %s\n", keystr_pattern
));
323 node
= tdb_search_keys(cache
->tdb
, keystr_pattern
);
327 /* ensure null termination of the key string */
328 keystr
= strndup(node
->node_key
.dptr
, node
->node_key
.dsize
);
331 * We don't use gencache_get function, because we need to iterate through
332 * all of the entries. Validity verification is up to fn routine.
334 databuf
= tdb_fetch(cache
->tdb
, node
->node_key
);
335 if (!databuf
.dptr
|| databuf
.dsize
<= TIMEOUT_LEN
) {
336 SAFE_FREE(databuf
.dptr
);
341 entry
= strndup(databuf
.dptr
, databuf
.dsize
);
342 SAFE_FREE(databuf
.dptr
);
343 valstr
= malloc_array_p(char, databuf
.dsize
- TIMEOUT_LEN
);
344 sscanf(entry
, CACHE_DATA_FMT
, (int*)(&i
), valstr
);
347 DEBUG(10, ("Calling function with arguments (key = %s, value = %s, timeout = %s)\n",
348 keystr
, valstr
, ctime(&timeout
)));
349 fn(keystr
, valstr
, timeout
, data
);
357 tdb_search_list_free(first_node
);
360 /********************************************************************
362 ********************************************************************/
364 int gencache_lock_entry( const char *key
)
366 return tdb_lock_bystring(cache
->tdb
, key
);
369 /********************************************************************
371 ********************************************************************/
373 void gencache_unlock_entry( const char *key
)
375 tdb_unlock_bystring(cache
->tdb
, key
);