more work on gnunet-zoneimport, some bugfix in flat namestore, misc. style fixes
[oweals/gnunet.git] / src / namestore / plugin_namestore_sqlite.c
1  /*
2   * This file is part of GNUnet
3   * Copyright (C) 2009-2017 GNUnet e.V.
4   *
5   * GNUnet is free software; you can redistribute it and/or modify
6   * it under the terms of the GNU General Public License as published
7   * by the Free Software Foundation; either version 3, or (at your
8   * option) any later version.
9   *
10   * GNUnet is distributed in the hope that it will be useful, but
11   * WITHOUT ANY WARRANTY; without even the implied warranty of
12   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13   * General Public License for more details.
14   *
15   * You should have received a copy of the GNU General Public License
16   * along with GNUnet; see the file COPYING.  If not, write to the
17   * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18   * Boston, MA 02110-1301, USA.
19   */
20
21 /**
22  * @file namestore/plugin_namestore_sqlite.c
23  * @brief sqlite-based namestore backend
24  * @author Christian Grothoff
25  */
26
27 #include "platform.h"
28 #include "gnunet_namestore_plugin.h"
29 #include "gnunet_namestore_service.h"
30 #include "gnunet_gnsrecord_lib.h"
31 #include "gnunet_sq_lib.h"
32 #include "namestore.h"
33 #include <sqlite3.h>
34
35 /**
36  * After how many ms "busy" should a DB operation fail for good?  A
37  * low value makes sure that we are more responsive to requests
38  * (especially PUTs).  A high value guarantees a higher success rate
39  * (SELECTs in iterate can take several seconds despite LIMIT=1).
40  *
41  * The default value of 1s should ensure that users do not experience
42  * huge latencies while at the same time allowing operations to
43  * succeed with reasonable probability.
44  */
45 #define BUSY_TIMEOUT_MS 1000
46
47
48 /**
49  * Log an error message at log-level 'level' that indicates
50  * a failure of the command 'cmd' on file 'filename'
51  * with the message given by strerror(errno).
52  */
53 #define LOG_SQLITE(db, level, cmd) do { GNUNET_log_from (level, "namestore-sqlite", _("`%s' failed at %s:%d with error: %s\n"), cmd, __FILE__, __LINE__, sqlite3_errmsg(db->dbh)); } while(0)
54
55 #define LOG(kind,...) GNUNET_log_from (kind, "namestore-sqlite", __VA_ARGS__)
56
57
58 /**
59  * Context for all functions in this plugin.
60  */
61 struct Plugin
62 {
63
64   const struct GNUNET_CONFIGURATION_Handle *cfg;
65
66   /**
67    * Database filename.
68    */
69   char *fn;
70
71   /**
72    * Native SQLite database handle.
73    */
74   sqlite3 *dbh;
75
76   /**
77    * Precompiled SQL to store records.
78    */
79   sqlite3_stmt *store_records;
80
81   /**
82    * Precompiled SQL to deltete existing records.
83    */
84   sqlite3_stmt *delete_records;
85
86   /**
87    * Precompiled SQL for iterate records within a zone.
88    */
89   sqlite3_stmt *iterate_zone;
90
91   /**
92    * Precompiled SQL for iterate all records within all zones.
93    */
94   sqlite3_stmt *iterate_all_zones;
95
96   /**
97    * Precompiled SQL to for reverse lookup based on PKEY.
98    */
99   sqlite3_stmt *zone_to_name;
100
101   /**
102    * Precompiled SQL to lookup records based on label.
103    */
104   sqlite3_stmt *lookup_label;
105 };
106
107
108 /**
109  * @brief Prepare a SQL statement
110  *
111  * @param dbh handle to the database
112  * @param zSql SQL statement, UTF-8 encoded
113  * @param ppStmt set to the prepared statement
114  * @return 0 on success
115  */
116 static int
117 sq_prepare (sqlite3 *dbh,
118             const char *zSql,
119             sqlite3_stmt **ppStmt)
120 {
121   char *dummy;
122   int result;
123
124   result =
125       sqlite3_prepare_v2 (dbh,
126                           zSql,
127                           strlen (zSql),
128                           ppStmt,
129                           (const char **) &dummy);
130   LOG (GNUNET_ERROR_TYPE_DEBUG,
131        "Prepared `%s' / %p: %d\n",
132        zSql,
133        *ppStmt,
134        result);
135   return result;
136 }
137
138
139 /**
140  * Create our database indices.
141  *
142  * @param dbh handle to the database
143  */
144 static void
145 create_indices (sqlite3 * dbh)
146 {
147   /* create indices */
148   if ( (SQLITE_OK !=
149         sqlite3_exec (dbh,
150                       "CREATE INDEX IF NOT EXISTS ir_pkey_reverse ON ns097records (zone_private_key,pkey)",
151                       NULL, NULL, NULL)) ||
152        (SQLITE_OK !=
153         sqlite3_exec (dbh,
154                       "CREATE INDEX IF NOT EXISTS ir_pkey_iter ON ns097records (zone_private_key,rvalue)",
155                       NULL, NULL, NULL)) ||
156        (SQLITE_OK !=
157         sqlite3_exec (dbh,
158                       "CREATE INDEX IF NOT EXISTS it_iter ON ns097records (rvalue)",
159                       NULL, NULL, NULL)) )
160     LOG (GNUNET_ERROR_TYPE_ERROR,
161          "Failed to create indices: %s\n",
162          sqlite3_errmsg (dbh));
163 }
164
165
166 #if 0
167 #define CHECK(a) GNUNET_break(a)
168 #define ENULL NULL
169 #else
170 #define ENULL &e
171 #define ENULL_DEFINED 1
172 #define CHECK(a) if (! (a)) { GNUNET_log(GNUNET_ERROR_TYPE_ERROR, "%s\n", e); sqlite3_free(e); }
173 #endif
174
175
176 /**
177  * Initialize the database connections and associated
178  * data structures (create tables and indices
179  * as needed as well).
180  *
181  * @param plugin the plugin context (state for this module)
182  * @return #GNUNET_OK on success
183  */
184 static int
185 database_setup (struct Plugin *plugin)
186 {
187   sqlite3_stmt *stmt;
188   char *afsdir;
189 #if ENULL_DEFINED
190   char *e;
191 #endif
192
193   if (GNUNET_OK !=
194       GNUNET_CONFIGURATION_get_value_filename (plugin->cfg,
195                                                "namestore-sqlite",
196                                                "FILENAME",
197                                                &afsdir))
198   {
199     GNUNET_log_config_missing (GNUNET_ERROR_TYPE_ERROR,
200                                "namestore-sqlite",
201                                "FILENAME");
202     return GNUNET_SYSERR;
203   }
204   if (GNUNET_OK !=
205       GNUNET_DISK_file_test (afsdir))
206   {
207     if (GNUNET_OK !=
208         GNUNET_DISK_directory_create_for_file (afsdir))
209     {
210       GNUNET_break (0);
211       GNUNET_free (afsdir);
212       return GNUNET_SYSERR;
213     }
214   }
215   /* afsdir should be UTF-8-encoded. If it isn't, it's a bug */
216   plugin->fn = afsdir;
217
218   /* Open database and precompile statements */
219   if (sqlite3_open (plugin->fn, &plugin->dbh) != SQLITE_OK)
220   {
221     LOG (GNUNET_ERROR_TYPE_ERROR,
222          _("Unable to initialize SQLite: %s.\n"),
223          sqlite3_errmsg (plugin->dbh));
224     return GNUNET_SYSERR;
225   }
226   CHECK (SQLITE_OK ==
227          sqlite3_exec (plugin->dbh,
228                        "PRAGMA temp_store=MEMORY", NULL, NULL,
229                        ENULL));
230   CHECK (SQLITE_OK ==
231          sqlite3_exec (plugin->dbh,
232                        "PRAGMA synchronous=NORMAL", NULL, NULL,
233                        ENULL));
234   CHECK (SQLITE_OK ==
235          sqlite3_exec (plugin->dbh,
236                        "PRAGMA legacy_file_format=OFF", NULL, NULL,
237                        ENULL));
238   CHECK (SQLITE_OK ==
239          sqlite3_exec (plugin->dbh,
240                        "PRAGMA auto_vacuum=INCREMENTAL", NULL,
241                        NULL, ENULL));
242   CHECK (SQLITE_OK ==
243          sqlite3_exec (plugin->dbh,
244                        "PRAGMA encoding=\"UTF-8\"", NULL,
245                        NULL, ENULL));
246   CHECK (SQLITE_OK ==
247          sqlite3_exec (plugin->dbh,
248                        "PRAGMA locking_mode=EXCLUSIVE", NULL, NULL,
249                        ENULL));
250   CHECK (SQLITE_OK ==
251          sqlite3_exec (plugin->dbh,
252                        "PRAGMA page_size=4092", NULL, NULL,
253                        ENULL));
254
255   CHECK (SQLITE_OK ==
256          sqlite3_busy_timeout (plugin->dbh,
257                                BUSY_TIMEOUT_MS));
258
259
260   /* Create table */
261   CHECK (SQLITE_OK ==
262          sq_prepare (plugin->dbh,
263                      "SELECT 1 FROM sqlite_master WHERE tbl_name = 'ns097records'",
264                      &stmt));
265   if ((sqlite3_step (stmt) == SQLITE_DONE) &&
266       (sqlite3_exec
267        (plugin->dbh,
268         "CREATE TABLE ns097records ("
269         " zone_private_key BLOB NOT NULL,"
270         " pkey BLOB,"
271         " rvalue INT8 NOT NULL,"
272         " record_count INT NOT NULL,"
273         " record_data BLOB NOT NULL,"
274         " label TEXT NOT NULL"
275         ")",
276         NULL, NULL, NULL) != SQLITE_OK))
277   {
278     LOG_SQLITE (plugin, GNUNET_ERROR_TYPE_ERROR,
279                 "sqlite3_exec");
280     sqlite3_finalize (stmt);
281     return GNUNET_SYSERR;
282   }
283   sqlite3_finalize (stmt);
284
285   create_indices (plugin->dbh);
286
287   if ( (SQLITE_OK !=
288         sq_prepare (plugin->dbh,
289                     "INSERT INTO ns097records (zone_private_key, pkey, rvalue, record_count, record_data, label)"
290                     " VALUES (?, ?, ?, ?, ?, ?)",
291                     &plugin->store_records)) ||
292        (SQLITE_OK !=
293         sq_prepare (plugin->dbh,
294                     "DELETE FROM ns097records WHERE zone_private_key=? AND label=?",
295                     &plugin->delete_records)) ||
296        (SQLITE_OK !=
297         sq_prepare (plugin->dbh,
298                     "SELECT record_count,record_data,label"
299                     " FROM ns097records WHERE zone_private_key=? AND pkey=?",
300                     &plugin->zone_to_name)) ||
301        (SQLITE_OK !=
302         sq_prepare (plugin->dbh,
303                     "SELECT record_count,record_data,label"
304                     " FROM ns097records WHERE zone_private_key=?"
305                     " ORDER BY rvalue LIMIT 1 OFFSET ?",
306                     &plugin->iterate_zone)) ||
307        (SQLITE_OK !=
308         sq_prepare (plugin->dbh,
309                     "SELECT record_count,record_data,label,zone_private_key"
310                     " FROM ns097records ORDER BY rvalue LIMIT 1 OFFSET ?",
311                     &plugin->iterate_all_zones))  ||
312        (SQLITE_OK !=
313         sq_prepare (plugin->dbh,
314                     "SELECT record_count,record_data,label,zone_private_key"
315                     " FROM ns097records WHERE zone_private_key=? AND label=?",
316                     &plugin->lookup_label))
317        )
318   {
319     LOG_SQLITE (plugin,
320                 GNUNET_ERROR_TYPE_ERROR,
321                 "precompiling");
322     return GNUNET_SYSERR;
323   }
324   return GNUNET_OK;
325 }
326
327
328 /**
329  * Shutdown database connection and associate data
330  * structures.
331  * @param plugin the plugin context (state for this module)
332  */
333 static void
334 database_shutdown (struct Plugin *plugin)
335 {
336   int result;
337   sqlite3_stmt *stmt;
338
339   if (NULL != plugin->store_records)
340     sqlite3_finalize (plugin->store_records);
341   if (NULL != plugin->delete_records)
342     sqlite3_finalize (plugin->delete_records);
343   if (NULL != plugin->iterate_zone)
344     sqlite3_finalize (plugin->iterate_zone);
345   if (NULL != plugin->iterate_all_zones)
346     sqlite3_finalize (plugin->iterate_all_zones);
347   if (NULL != plugin->zone_to_name)
348     sqlite3_finalize (plugin->zone_to_name);
349   if (NULL != plugin->lookup_label)
350     sqlite3_finalize (plugin->lookup_label);
351   result = sqlite3_close (plugin->dbh);
352   if (result == SQLITE_BUSY)
353   {
354     LOG (GNUNET_ERROR_TYPE_WARNING,
355          _("Tried to close sqlite without finalizing all prepared statements.\n"));
356     stmt = sqlite3_next_stmt (plugin->dbh,
357                               NULL);
358     while (NULL != stmt)
359     {
360       GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
361                        "sqlite",
362                        "Closing statement %p\n",
363                        stmt);
364       result = sqlite3_finalize (stmt);
365       if (result != SQLITE_OK)
366         GNUNET_log_from (GNUNET_ERROR_TYPE_WARNING,
367                          "sqlite",
368                          "Failed to close statement %p: %d\n",
369                          stmt,
370                          result);
371       stmt = sqlite3_next_stmt (plugin->dbh,
372                                 NULL);
373     }
374     result = sqlite3_close (plugin->dbh);
375   }
376   if (SQLITE_OK != result)
377     LOG_SQLITE (plugin,
378                 GNUNET_ERROR_TYPE_ERROR,
379                 "sqlite3_close");
380
381   GNUNET_free_non_null (plugin->fn);
382 }
383
384
385 /**
386  * Store a record in the datastore.  Removes any existing record in the
387  * same zone with the same name.
388  *
389  * @param cls closure (internal context for the plugin)
390  * @param zone_key private key of the zone
391  * @param label name that is being mapped (at most 255 characters long)
392  * @param rd_count number of entries in @a rd array
393  * @param rd array of records with data to store
394  * @return #GNUNET_OK on success, else #GNUNET_SYSERR
395  */
396 static int
397 namestore_sqlite_store_records (void *cls,
398                                 const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone_key,
399                                 const char *label,
400                                 unsigned int rd_count,
401                                 const struct GNUNET_GNSRECORD_Data *rd)
402 {
403   struct Plugin *plugin = cls;
404   int n;
405   struct GNUNET_CRYPTO_EcdsaPublicKey pkey;
406   uint64_t rvalue;
407   size_t data_size;
408   unsigned int i;
409
410   memset (&pkey, 0, sizeof (pkey));
411   for (i=0;i<rd_count;i++)
412     if (GNUNET_GNSRECORD_TYPE_PKEY == rd[i].record_type)
413     {
414       GNUNET_break (sizeof (struct GNUNET_CRYPTO_EcdsaPublicKey) ==
415                     rd[i].data_size);
416       GNUNET_memcpy (&pkey,
417                      rd[i].data,
418                      rd[i].data_size);
419       break;
420     }
421   rvalue = GNUNET_CRYPTO_random_u64 (GNUNET_CRYPTO_QUALITY_WEAK,
422                                      UINT64_MAX);
423   data_size = GNUNET_GNSRECORD_records_get_size (rd_count,
424                                                  rd);
425   if (data_size > 64 * 65536)
426   {
427     GNUNET_break (0);
428     return GNUNET_SYSERR;
429   }
430   {
431     /* First delete 'old' records */
432     char data[data_size];
433     struct GNUNET_SQ_QueryParam dparams[] = {
434       GNUNET_SQ_query_param_auto_from_type (zone_key),
435       GNUNET_SQ_query_param_string (label),
436       GNUNET_SQ_query_param_end
437     };
438     ssize_t ret;
439
440     ret = GNUNET_GNSRECORD_records_serialize (rd_count,
441                                               rd,
442                                               data_size,
443                                               data);
444     if ( (ret < 0) ||
445          (data_size != (size_t) ret) )
446     {
447       GNUNET_break (0);
448       return GNUNET_SYSERR;
449     }
450     if (GNUNET_OK !=
451         GNUNET_SQ_bind (plugin->delete_records,
452                         dparams))
453     {
454       LOG_SQLITE (plugin,
455                   GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK,
456                   "sqlite3_bind_XXXX");
457       GNUNET_SQ_reset (plugin->dbh,
458                        plugin->delete_records);
459       return GNUNET_SYSERR;
460
461     }
462     n = sqlite3_step (plugin->delete_records);
463     GNUNET_SQ_reset (plugin->dbh,
464                      plugin->delete_records);
465
466     if (0 != rd_count)
467     {
468       uint32_t rd_count32 = (uint32_t) rd_count;
469       struct GNUNET_SQ_QueryParam sparams[] = {
470         GNUNET_SQ_query_param_auto_from_type (zone_key),
471         GNUNET_SQ_query_param_auto_from_type (&pkey),
472         GNUNET_SQ_query_param_uint64 (&rvalue),
473         GNUNET_SQ_query_param_uint32 (&rd_count32),
474         GNUNET_SQ_query_param_fixed_size (data, data_size),
475         GNUNET_SQ_query_param_string (label),
476         GNUNET_SQ_query_param_end
477       };
478
479       if (GNUNET_OK !=
480           GNUNET_SQ_bind (plugin->store_records,
481                           sparams))
482       {
483         LOG_SQLITE (plugin,
484                     GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK,
485                     "sqlite3_bind_XXXX");
486         GNUNET_SQ_reset (plugin->dbh,
487                          plugin->store_records);
488         return GNUNET_SYSERR;
489       }
490       n = sqlite3_step (plugin->store_records);
491       GNUNET_SQ_reset (plugin->dbh,
492                        plugin->store_records);
493     }
494   }
495   switch (n)
496   {
497   case SQLITE_DONE:
498     if (0 != rd_count)
499       GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
500                        "sqlite",
501                        "Record stored\n");
502     else
503       GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG,
504                        "sqlite",
505                        "Record deleted\n");
506     return GNUNET_OK;
507   case SQLITE_BUSY:
508     LOG_SQLITE (plugin,
509                 GNUNET_ERROR_TYPE_WARNING | GNUNET_ERROR_TYPE_BULK,
510                 "sqlite3_step");
511     return GNUNET_NO;
512   default:
513     LOG_SQLITE (plugin,
514                 GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK,
515                 "sqlite3_step");
516     return GNUNET_SYSERR;
517   }
518 }
519
520
521 /**
522  * The given 'sqlite' statement has been prepared to be run.
523  * It will return a record which should be given to the iterator.
524  * Runs the statement and parses the returned record.
525  *
526  * @param plugin plugin context
527  * @param stmt to run (and then clean up)
528  * @param zone_key private key of the zone
529  * @param iter iterator to call with the result
530  * @param iter_cls closure for @a iter
531  * @return #GNUNET_OK on success, #GNUNET_NO if there were no results, #GNUNET_SYSERR on error
532  */
533 static int
534 get_record_and_call_iterator (struct Plugin *plugin,
535                               sqlite3_stmt *stmt,
536                               const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone_key,
537                               GNUNET_NAMESTORE_RecordIterator iter,
538                               void *iter_cls)
539 {
540   uint32_t record_count;
541   size_t data_size;
542   void *data;
543   char *label;
544   struct GNUNET_CRYPTO_EcdsaPrivateKey zk;
545   int ret;
546   int sret;
547
548   ret = GNUNET_NO;
549   if (SQLITE_ROW == (sret = sqlite3_step (stmt)))
550   {
551     struct GNUNET_SQ_ResultSpec rs[] = {
552       GNUNET_SQ_result_spec_uint32 (&record_count),
553       GNUNET_SQ_result_spec_variable_size (&data, &data_size),
554       GNUNET_SQ_result_spec_string (&label),
555       GNUNET_SQ_result_spec_end
556     };
557     struct GNUNET_SQ_ResultSpec rsx[] = {
558       GNUNET_SQ_result_spec_uint32 (&record_count),
559       GNUNET_SQ_result_spec_variable_size (&data, &data_size),
560       GNUNET_SQ_result_spec_string (&label),
561       GNUNET_SQ_result_spec_auto_from_type (&zk),
562       GNUNET_SQ_result_spec_end
563     };
564
565     if (NULL == zone_key)
566     {
567       zone_key = &zk;
568       ret = GNUNET_SQ_extract_result (stmt,
569                                       rsx);
570     }
571     else
572     {
573       ret = GNUNET_SQ_extract_result (stmt,
574                                       rs);
575     }
576     if ( (GNUNET_OK != ret) ||
577          (record_count > 64 * 1024) )
578     {
579       /* sanity check, don't stack allocate far too much just
580          because database might contain a large value here */
581       GNUNET_break (0);
582       ret = GNUNET_SYSERR;
583     }
584     else
585     {
586       struct GNUNET_GNSRECORD_Data rd[record_count];
587
588       if (GNUNET_OK !=
589           GNUNET_GNSRECORD_records_deserialize (data_size,
590                                                 data,
591                                                 record_count,
592                                                 rd))
593       {
594         GNUNET_break (0);
595         ret = GNUNET_SYSERR;
596       }
597       else
598       {
599         if (NULL != iter)
600           iter (iter_cls,
601                 zone_key,
602                 label,
603                 record_count,
604                 rd);
605         ret = GNUNET_YES;
606       }
607     }
608     GNUNET_SQ_cleanup_result (rs);
609   }
610   else
611   {
612     if (SQLITE_DONE != sret)
613       LOG_SQLITE (plugin,
614                   GNUNET_ERROR_TYPE_ERROR,
615                   "sqlite_step");
616   }
617   GNUNET_SQ_reset (plugin->dbh,
618                    stmt);
619   return ret;
620 }
621
622
623 /**
624  * Lookup records in the datastore for which we are the authority.
625  *
626  * @param cls closure (internal context for the plugin)
627  * @param zone private key of the zone
628  * @param label name of the record in the zone
629  * @param iter function to call with the result
630  * @param iter_cls closure for @a iter
631  * @return #GNUNET_OK on success, else #GNUNET_SYSERR
632  */
633 static int
634 namestore_sqlite_lookup_records (void *cls,
635                                  const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone,
636                                  const char *label,
637                                  GNUNET_NAMESTORE_RecordIterator iter,
638                                  void *iter_cls)
639 {
640   struct Plugin *plugin = cls;
641   struct GNUNET_SQ_QueryParam params[] = {
642     GNUNET_SQ_query_param_auto_from_type (zone),
643     GNUNET_SQ_query_param_string (label),
644     GNUNET_SQ_query_param_end
645   };
646
647   if (NULL == zone)
648     return GNUNET_SYSERR;
649   if (GNUNET_OK !=
650       GNUNET_SQ_bind (plugin->lookup_label,
651                       params))
652   {
653     LOG_SQLITE (plugin, GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK,
654                 "sqlite3_bind_XXXX");
655     GNUNET_SQ_reset (plugin->dbh,
656                      plugin->lookup_label);
657     return GNUNET_SYSERR;
658   }
659   return get_record_and_call_iterator (plugin,
660                                        plugin->lookup_label,
661                                        zone,
662                                        iter,
663                                        iter_cls);
664 }
665
666
667 /**
668  * Iterate over the results for a particular key and zone in the
669  * datastore.  Will return at most one result to the iterator.
670  *
671  * @param cls closure (internal context for the plugin)
672  * @param zone hash of public key of the zone, NULL to iterate over all zones
673  * @param offset offset in the list of all matching records
674  * @param iter function to call with the result
675  * @param iter_cls closure for @a iter
676  * @return #GNUNET_OK on success, #GNUNET_NO if there were no results, #GNUNET_SYSERR on error
677  */
678 static int
679 namestore_sqlite_iterate_records (void *cls,
680                                   const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone,
681                                   uint64_t offset,
682                                   GNUNET_NAMESTORE_RecordIterator iter,
683                                   void *iter_cls)
684 {
685   struct Plugin *plugin = cls;
686   sqlite3_stmt *stmt;
687   int err;
688
689   if (NULL == zone)
690   {
691     struct GNUNET_SQ_QueryParam params[] = {
692       GNUNET_SQ_query_param_uint64 (&offset),
693       GNUNET_SQ_query_param_end
694     };
695
696     stmt = plugin->iterate_all_zones;
697     err = GNUNET_SQ_bind (stmt,
698                           params);
699   }
700   else
701   {
702     struct GNUNET_SQ_QueryParam params[] = {
703       GNUNET_SQ_query_param_auto_from_type (zone),
704       GNUNET_SQ_query_param_uint64 (&offset),
705       GNUNET_SQ_query_param_end
706     };
707
708     stmt = plugin->iterate_zone;
709     err = GNUNET_SQ_bind (stmt,
710                           params);
711   }
712   if (GNUNET_OK != err)
713   {
714     LOG_SQLITE (plugin,
715                 GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK,
716                 "sqlite3_bind_XXXX");
717     GNUNET_SQ_reset (plugin->dbh,
718                      stmt);
719     return GNUNET_SYSERR;
720   }
721   return get_record_and_call_iterator (plugin,
722                                        stmt,
723                                        zone,
724                                        iter,
725                                        iter_cls);
726 }
727
728
729 /**
730  * Look for an existing PKEY delegation record for a given public key.
731  * Returns at most one result to the iterator.
732  *
733  * @param cls closure (internal context for the plugin)
734  * @param zone private key of the zone to look up in, never NULL
735  * @param value_zone public key of the target zone (value), never NULL
736  * @param iter function to call with the result
737  * @param iter_cls closure for @a iter
738  * @return #GNUNET_OK on success, #GNUNET_NO if there were no results, #GNUNET_SYSERR on error
739  */
740 static int
741 namestore_sqlite_zone_to_name (void *cls,
742                                const struct GNUNET_CRYPTO_EcdsaPrivateKey *zone,
743                                const struct GNUNET_CRYPTO_EcdsaPublicKey *value_zone,
744                                GNUNET_NAMESTORE_RecordIterator iter, void *iter_cls)
745 {
746   struct Plugin *plugin = cls;
747   struct GNUNET_SQ_QueryParam params[] = {
748     GNUNET_SQ_query_param_auto_from_type (zone),
749     GNUNET_SQ_query_param_auto_from_type (value_zone),
750     GNUNET_SQ_query_param_end
751   };
752
753   if (GNUNET_OK !=
754       GNUNET_SQ_bind (plugin->zone_to_name,
755                       params))
756   {
757     LOG_SQLITE (plugin,
758                 GNUNET_ERROR_TYPE_ERROR | GNUNET_ERROR_TYPE_BULK,
759                 "sqlite3_bind_XXXX");
760     GNUNET_SQ_reset (plugin->dbh,
761                      plugin->zone_to_name);
762     return GNUNET_SYSERR;
763   }
764   LOG (GNUNET_ERROR_TYPE_DEBUG,
765        "Performing reverse lookup for `%s'\n",
766        GNUNET_GNSRECORD_z2s (value_zone));
767   return get_record_and_call_iterator (plugin,
768                                        plugin->zone_to_name,
769                                        zone,
770                                        iter,
771                                        iter_cls);
772 }
773
774
775 /**
776  * Entry point for the plugin.
777  *
778  * @param cls the "struct GNUNET_NAMESTORE_PluginEnvironment*"
779  * @return NULL on error, otherwise the plugin context
780  */
781 void *
782 libgnunet_plugin_namestore_sqlite_init (void *cls)
783 {
784   static struct Plugin plugin;
785   const struct GNUNET_CONFIGURATION_Handle *cfg = cls;
786   struct GNUNET_NAMESTORE_PluginFunctions *api;
787
788   if (NULL != plugin.cfg)
789     return NULL;                /* can only initialize once! */
790   memset (&plugin, 0, sizeof (struct Plugin));
791   plugin.cfg = cfg;
792   if (GNUNET_OK != database_setup (&plugin))
793   {
794     database_shutdown (&plugin);
795     return NULL;
796   }
797   api = GNUNET_new (struct GNUNET_NAMESTORE_PluginFunctions);
798   api->cls = &plugin;
799   api->store_records = &namestore_sqlite_store_records;
800   api->iterate_records = &namestore_sqlite_iterate_records;
801   api->zone_to_name = &namestore_sqlite_zone_to_name;
802   api->lookup_records = &namestore_sqlite_lookup_records;
803   LOG (GNUNET_ERROR_TYPE_INFO,
804        _("Sqlite database running\n"));
805   return api;
806 }
807
808
809 /**
810  * Exit point from the plugin.
811  *
812  * @param cls the plugin context (as returned by "init")
813  * @return always NULL
814  */
815 void *
816 libgnunet_plugin_namestore_sqlite_done (void *cls)
817 {
818   struct GNUNET_NAMESTORE_PluginFunctions *api = cls;
819   struct Plugin *plugin = api->cls;
820
821   database_shutdown (plugin);
822   plugin->cfg = NULL;
823   GNUNET_free (api);
824   LOG (GNUNET_ERROR_TYPE_DEBUG,
825        "sqlite plugin is finished\n");
826   return NULL;
827 }
828
829 /* end of plugin_namestore_sqlite.c */