aboutsummaryrefslogtreecommitdiff
path: root/src/datacache/plugin_datacache_sqlite.c
blob: 63f8cbd6744eb366378f0436e63f785eb74d3004 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
/*
     This file is part of GNUnet
     (C) 2006, 2009 Christian Grothoff (and other contributing authors)

     GNUnet is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published
     by the Free Software Foundation; either version 2, or (at your
     option) any later version.

     GNUnet is distributed in the hope that it will be useful, but
     WITHOUT ANY WARRANTY; without even the implied warranty of
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     General Public License for more details.

     You should have received a copy of the GNU General Public License
     along with GNUnet; see the file COPYING.  If not, write to the
     Free Software Foundation, Inc., 59 Temple Place - Suite 330,
     Boston, MA 02111-1307, USA.
*/

/**
 * @file datacache/plugin_datacache_sqlite.c
 * @brief sqlite for an implementation of a database backend for the datacache
 * @author Christian Grothoff
 */
#include "platform.h"
#include "gnunet_util_lib.h"
#include "plugin_datacache.h"
#include <sqlite3.h>

#define DEBUG_DATACACHE_SQLITE GNUNET_NO

/**
 * How much overhead do we assume per entry in the
 * datacache?
 */
#define OVERHEAD (sizeof(GNUNET_HashCode) + 32)

/**
 * Context for all functions in this plugin.
 */
struct Plugin 
{
  /**
   * Our execution environment.
   */
  struct GNUNET_DATACACHE_PluginEnvironment *env;

  /**
   * Handle to the sqlite database.
   */
  sqlite3 *dbh;

  /**
   * Filename used for the DB.
   */ 
  char *fn;
};


/**
 * Log an error message at log-level 'level' that indicates
 * a failure of the command 'cmd' on file 'filename'
 * with the message given by strerror(errno).
 */
#define LOG_SQLITE(db, level, cmd) do { GNUNET_log(level, _("`%s' failed at %s:%d with error: %s\n"), cmd, __FILE__, __LINE__, sqlite3_errmsg(db)); } while(0)


#define SQLITE3_EXEC(db, cmd) do { emsg = NULL; if (SQLITE_OK != sqlite3_exec(db, cmd, NULL, NULL, &emsg)) { GNUNET_log(GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK, _("`%s' failed at %s:%d with error: %s\n"), "sqlite3_exec", __FILE__, __LINE__, emsg); sqlite3_free(emsg); } } while(0)


/**
 * @brief Prepare a SQL statement
 */
static int
sq_prepare (sqlite3 * dbh, const char *zSql,    /* SQL statement, UTF-8 encoded */
            sqlite3_stmt ** ppStmt)
{                               /* OUT: Statement handle */
  char *dummy;
  return sqlite3_prepare (dbh,
                          zSql,
                          strlen (zSql), ppStmt, (const char **) &dummy);
}


/**
 * Store an item in the datastore.
 *
 * @param key key to store data under
 * @param size number of bytes in data
 * @param data data to store
 * @param type type of the value
 * @param discard_time when to discard the value in any case
 * @return 0 on error, number of bytes used otherwise
 */
static uint32_t 
sqlite_plugin_put (void *cls,
		   const GNUNET_HashCode * key,
		   uint32_t size,
		   const char *data,
		   uint32_t type,
		   struct GNUNET_TIME_Absolute discard_time)
{
  struct Plugin *plugin = cls;
  sqlite3_stmt *stmt;

#if DEBUG_DATACACHE_SQLITE
  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
	      "Processing `%s' of %u bytes with key `%4s' and expiration %llums\n",
	      "PUT",
	      (unsigned int) size,
	      GNUNET_h2s (key),
	      (unsigned long long) GNUNET_TIME_absolute_get_remaining (discard_time).value);
#endif
  if (sq_prepare (plugin->dbh,
                  "INSERT INTO ds090 "
                  "(type, expire, key, value) "
                  "VALUES (?, ?, ?, ?)", &stmt) != SQLITE_OK)
    {
      GNUNET_log (GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK,
		  _("`%s' failed at %s:%d with error: %s\n"),
		  "sq_prepare", __FILE__, __LINE__, 
		  sqlite3_errmsg (plugin->dbh));
      return 0;
    }
  if ( (SQLITE_OK != sqlite3_bind_int (stmt, 1, type)) ||
       (SQLITE_OK != sqlite3_bind_int64 (stmt, 2, discard_time.value)) ||
       (SQLITE_OK != sqlite3_bind_blob (stmt, 3, key, sizeof (GNUNET_HashCode),
					SQLITE_TRANSIENT)) ||
       (SQLITE_OK != sqlite3_bind_blob (stmt, 4, data, size, SQLITE_TRANSIENT)))
    {
      LOG_SQLITE (plugin->dbh,
                  GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK, 
		  "sqlite3_bind_xxx");
      sqlite3_finalize (stmt);
      return 0;
    }
  if (SQLITE_DONE != sqlite3_step (stmt))
    {
      LOG_SQLITE (plugin->dbh,
		  GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK, 
		  "sqlite3_step");
      sqlite3_finalize (stmt);
      return 0;
    }
  if (SQLITE_OK != sqlite3_finalize (stmt))
    LOG_SQLITE (plugin->dbh,
		GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK, 
		"sqlite3_finalize");
  return size + OVERHEAD;
}


/**
 * Iterate over the results for a particular key
 * in the datastore.
 *
 * @param key
 * @param type entries of which type are relevant?
 * @param iter maybe NULL (to just count)
 * @return the number of results found
 */
static unsigned int 
sqlite_plugin_get (void *cls,
		   const GNUNET_HashCode * key,
		   uint32_t type,
		   GNUNET_DATACACHE_Iterator iter,
		   void *iter_cls)
{
  struct Plugin *plugin = cls;
  sqlite3_stmt *stmt;
  struct GNUNET_TIME_Absolute now;
  struct GNUNET_TIME_Absolute exp;
  unsigned int size;
  const char *dat;
  unsigned int cnt;
  unsigned int off;
  unsigned int total;
  char scratch[256];

  now = GNUNET_TIME_absolute_get ();
#if DEBUG_DATACACHE_SQLITE
  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
	      "Processing `%s' for key `%4s'\n",
	      "GET",
	      GNUNET_h2s (key));
#endif
  if (sq_prepare (plugin->dbh,
                  "SELECT count(*) FROM ds090 WHERE key=? AND type=? AND expire >= ?",
                  &stmt) != SQLITE_OK)
    {
      GNUNET_log (GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK,
		  _("`%s' failed at %s:%d with error: %s\n"),
		  "sq_prepare", __FILE__, __LINE__, 
		  sqlite3_errmsg (plugin->dbh));
      return 0;
    }
  sqlite3_bind_blob (stmt, 1, key, sizeof (GNUNET_HashCode),
                     SQLITE_TRANSIENT);
  sqlite3_bind_int (stmt, 2, type);
  sqlite3_bind_int64 (stmt, 3, now.value);
  if (SQLITE_ROW != sqlite3_step (stmt))
    {
      LOG_SQLITE (plugin->dbh,
                  GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK, 
		  "sqlite_step");
      sqlite3_finalize (stmt);
      return 0;
    }
  total = sqlite3_column_int (stmt, 0);
  sqlite3_finalize (stmt);
  if ( (total == 0) || (iter == NULL) )
    return total;    

  cnt = 0;
  off = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, total);
  while (cnt < total)
    {
      off = (off + 1) % total;
      GNUNET_snprintf (scratch, 
		       sizeof(scratch),
                       "SELECT value,expire FROM ds090 WHERE key=? AND type=? AND expire >= ? LIMIT 1 OFFSET %u",
                       off);
      if (sq_prepare (plugin->dbh, scratch, &stmt) != SQLITE_OK)
        {
          GNUNET_log (GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK,
		      _("`%s' failed at %s:%d with error: %s\n"),
		      "sq_prepare", __FILE__, __LINE__,
		      sqlite3_errmsg (plugin->dbh));
          return cnt;
        }
      sqlite3_bind_blob (stmt, 1, key, sizeof (GNUNET_HashCode),
                         SQLITE_TRANSIENT);
      sqlite3_bind_int (stmt, 2, type);
      sqlite3_bind_int64 (stmt, 3, now.value);
      if (sqlite3_step (stmt) != SQLITE_ROW)
        break;
      size = sqlite3_column_bytes (stmt, 0);
      dat = sqlite3_column_blob (stmt, 0);
      exp.value = sqlite3_column_int64 (stmt, 1);
      cnt++;
      if (GNUNET_OK != iter (iter_cls,
			     exp,
			     key, 
			     size,
			     dat,
			     type))
        {
          sqlite3_finalize (stmt);
          break;
        }
      sqlite3_finalize (stmt);
    }
  return cnt;
}


/**
 * Delete the entry with the lowest expiration value
 * from the datacache right now.
 * 
 * @return GNUNET_OK on success, GNUNET_SYSERR on error
 */ 
static int 
sqlite_plugin_del (void *cls)
{
  struct Plugin *plugin = cls;
  unsigned int dsize;
  unsigned int dtype;
  sqlite3_stmt *stmt;
  sqlite3_stmt *dstmt;

#if DEBUG_DATACACHE_SQLITE
  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
	      "Processing `%s'\n",
	      "DEL");
#endif
  stmt = NULL;
  dstmt = NULL;
  if ((sq_prepare (plugin->dbh,
                   "SELECT type, key, value FROM ds090 ORDER BY expire ASC LIMIT 1",
                   &stmt) != SQLITE_OK) ||
      (sq_prepare (plugin->dbh,
                   "DELETE FROM ds090 "
                   "WHERE key=? AND value=? AND type=?",
                   &dstmt) != SQLITE_OK))
    {
      GNUNET_log (GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK,
		  _("`%s' failed at %s:%d with error: %s\n"),
		  "sq_prepare", __FILE__, __LINE__, sqlite3_errmsg (plugin->dbh));
      if (dstmt != NULL)
        sqlite3_finalize (dstmt);
      if (stmt != NULL)
        sqlite3_finalize (stmt);
      return GNUNET_SYSERR;
    }
  if (SQLITE_ROW != sqlite3_step (stmt))
    {
      GNUNET_log (GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK,
		  _("`%s' failed at %s:%d with error: %s\n"),
		  "sqlite3_step", __FILE__, __LINE__,
		  sqlite3_errmsg (plugin->dbh));
      sqlite3_finalize (dstmt);
      sqlite3_finalize (stmt);
      return GNUNET_SYSERR;
    }
  dtype = sqlite3_column_int (stmt, 0);
  GNUNET_break (sqlite3_column_bytes (stmt, 1) == sizeof (GNUNET_HashCode));
  dsize = sqlite3_column_bytes (stmt, 2);
  sqlite3_bind_blob (dstmt,
		     1, sqlite3_column_blob (stmt, 1),
		     sizeof (GNUNET_HashCode),
		     SQLITE_TRANSIENT);
  sqlite3_bind_blob (dstmt,
		     2, sqlite3_column_blob (stmt, 2),
		     dsize,
		     SQLITE_TRANSIENT);
  sqlite3_bind_int (dstmt, 3, dtype);
  if (sqlite3_step (dstmt) != SQLITE_DONE)
    {
      GNUNET_log (GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK,
		  _("`%s' failed at %s:%d with error: %s\n"),
		  "sqlite3_step", __FILE__, __LINE__,
		  sqlite3_errmsg (plugin->dbh));    
      sqlite3_finalize (dstmt);
      sqlite3_finalize (stmt);
      return GNUNET_SYSERR;
    }
  plugin->env->delete_notify (plugin->env->cls,
			      sqlite3_column_blob (stmt, 1),
			      dsize + OVERHEAD);
  sqlite3_finalize (dstmt);
  sqlite3_finalize (stmt);
  return GNUNET_OK;
}


/**
 * Entry point for the plugin.
 */
void *
libgnunet_plugin_datacache_sqlite_init (void *cls)
{
  struct GNUNET_DATACACHE_PluginEnvironment *env = cls;
  struct GNUNET_DATACACHE_PluginFunctions *api;
  struct Plugin *plugin;
  char *fn;
  char *fn_utf8;
  sqlite3 *dbh;
  char *emsg;

  fn = GNUNET_DISK_mktemp ("gnunet-datacache");
  if (fn == NULL)
    {
      GNUNET_break (0);
      return NULL;
    }
  fn_utf8 = GNUNET_STRINGS_to_utf8 (fn, strlen (fn),
#ifdef ENABLE_NLS
				    nl_langinfo (CODESET)
#else
				    "UTF-8"      /* good luck */
#endif
    );
  if (SQLITE_OK != sqlite3_open (fn_utf8, &dbh))
    {
      GNUNET_free (fn);
      GNUNET_free (fn_utf8);
      return NULL;
    }
  GNUNET_free (fn);

  SQLITE3_EXEC (dbh, "PRAGMA temp_store=MEMORY");
  SQLITE3_EXEC (dbh, "PRAGMA synchronous=OFF");
  SQLITE3_EXEC (dbh, "PRAGMA count_changes=OFF");
  SQLITE3_EXEC (dbh, "PRAGMA page_size=4092");
  SQLITE3_EXEC (dbh,
                "CREATE TABLE ds090 ("
                "  type INTEGER NOT NULL DEFAULT 0,"
                "  expire INTEGER NOT NULL DEFAULT 0,"
                "  key BLOB NOT NULL DEFAULT '',"
                "  value BLOB NOT NULL DEFAULT '')");
  SQLITE3_EXEC (dbh, "CREATE INDEX idx_hashidx ON ds090 (key,type,expire)");
  plugin = GNUNET_malloc (sizeof (struct Plugin));
  plugin->env = env;
  plugin->dbh = dbh;
  plugin->fn = fn_utf8;
  api = GNUNET_malloc (sizeof (struct GNUNET_DATACACHE_PluginFunctions));
  api->cls = plugin;
  api->get = &sqlite_plugin_get;
  api->put = &sqlite_plugin_put;
  api->del = &sqlite_plugin_del;
  GNUNET_log_from (GNUNET_ERROR_TYPE_INFO,
                   "sqlite", _("Sqlite datacache running\n"));
  return api;
}


/**
 * Exit point from the plugin.
 */
void *
libgnunet_plugin_datacache_sqlite_done (void *cls)
{
  struct GNUNET_DATACACHE_PluginFunctions *api = cls;
  struct Plugin *plugin = api->cls;

  UNLINK (plugin->fn);
  GNUNET_free (plugin->fn);
  sqlite3_close (plugin->dbh);
  GNUNET_free (plugin);
  GNUNET_free (api);
  return NULL;
}



/* end of plugin_datacache_sqlite.c */