Non Linux 2.6 systems need to specify --disable-locking to configure.
[pwmd.git] / src / cache.h
blob7c50d583210bcc3cc11885757a169c699a8e15ef
1 /* vim:tw=78:ts=8:sw=4:set ft=c: */
2 /*
3 Copyright (C) 2006-2007 Ben Kibbey <bjk@luxsci.net>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 #ifndef CACHE_H
20 #define CACHE_H
22 #ifdef WORKING_PTHREADS
23 #include <pthread.h>
26 * The mutex is stored at the end of the shared memory.
28 #define MUTEX_OFFSET cache_size - sizeof(pthread_mutex_t)
30 #ifdef DEBUG
31 #define MUTEX_LOCK_CPP log_write("LOCK %s", __FUNCTION__);
32 #define MUTEX_UNLOCK_CPP log_write("UNLOCK %s", __FUNCTION__);
33 #else
34 #define MUTEX_LOCK_CPP
35 #define MUTEX_UNLOCK_CPP
36 #endif
38 #define MUTEX_TRYLOCK(ctx) if (pthread_mutex_trylock(cache_mutexp) == EBUSY) { \
39 if (ctx) \
40 assuan_write_status(ctx, "LOCKED", N_("Waiting for lock")); \
41 else \
42 log_write("%s(): cache mutex LOCKED", __FUNCTION__); \
43 pthread_mutex_lock(cache_mutexp); \
46 #define MUTEX_LOCK(ctx) MUTEX_LOCK_CPP MUTEX_TRYLOCK(ctx) \
47 is_locked = TRUE
49 #define MUTEX_UNLOCK if (is_locked == TRUE) { \
50 MUTEX_UNLOCK_CPP \
51 pthread_mutex_unlock(cache_mutexp); \
52 is_locked = FALSE; \
55 pthread_mutex_t cache_mutex;
56 pthread_mutex_t *cache_mutexp;
57 gboolean is_locked;
58 #else
59 #define MUTEX_OFFSET cache_size
60 #endif
62 typedef struct {
63 guchar filename[16]; // MD5
64 guchar key[32]; // SHA256/AES256/gcrykeysize
65 gboolean used;
66 glong timeout;
67 glong reset;
68 } file_cache_t;
70 void *shm_data;
71 glong cache_size;
73 void cache_adjust_timer(void);
74 gboolean cache_set_timeout(const guchar *md5filename, glong timeout);
75 gboolean cache_reset_timeout(const guchar *md5filename, glong timeout);
76 gboolean cache_iscached(const guchar *md5filename);
77 gboolean cache_clear(const guchar *md5filename, gint which);
78 gboolean cache_add_file(const guchar *md5file, const guchar *shakey);
79 gboolean cache_get_key(const guchar *md5file, guchar *shakey);
80 gboolean cache_update_key(const guchar *md5filename, const guchar *shakey);
81 gint cache_file_count(void);
82 gboolean cache_has_file(const guchar *md5file);
84 #endif