psycstore: add fragment_limit arg for message_get
[oweals/gnunet.git] / src / psycstore / gnunet-service-psycstore.c
1 /*
2  * This file is part of GNUnet
3  * Copyright (C) 2013 Christian Grothoff (and other contributing authors)
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 psycstore/gnunet-service-psycstore.c
23  * @brief PSYCstore service
24  * @author Gabor X Toth
25  * @author Christian Grothoff
26  */
27
28 #include <inttypes.h>
29
30 #include "platform.h"
31 #include "gnunet_util_lib.h"
32 #include "gnunet_constants.h"
33 #include "gnunet_protocols.h"
34 #include "gnunet_statistics_service.h"
35 #include "gnunet_psyc_util_lib.h"
36 #include "gnunet_psycstore_service.h"
37 #include "gnunet_psycstore_plugin.h"
38 #include "psycstore.h"
39
40
41 /**
42  * Handle to our current configuration.
43  */
44 static const struct GNUNET_CONFIGURATION_Handle *cfg;
45
46 /**
47  * Handle to the statistics service.
48  */
49 static struct GNUNET_STATISTICS_Handle *stats;
50
51 /**
52  * Notification context, simplifies client broadcasts.
53  */
54 static struct GNUNET_SERVER_NotificationContext *nc;
55
56 /**
57  * Database handle
58  */
59 static struct GNUNET_PSYCSTORE_PluginFunctions *db;
60
61 /**
62  * Name of the database plugin
63  */
64 static char *db_lib_name;
65
66
67 /**
68  * Task run during shutdown.
69  *
70  * @param cls unused
71  * @param tc unused
72  */
73 static void
74 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
75 {
76   if (NULL != nc)
77   {
78     GNUNET_SERVER_notification_context_destroy (nc);
79     nc = NULL;
80   }
81   if (NULL != stats)
82   {
83     GNUNET_STATISTICS_destroy (stats, GNUNET_NO);
84     stats = NULL;
85   }
86   GNUNET_break (NULL == GNUNET_PLUGIN_unload (db_lib_name, db));
87   GNUNET_free (db_lib_name);
88   db_lib_name = NULL;
89 }
90
91
92 /**
93  * Send a result code back to the client.
94  *
95  * @param client
96  *        Client that should receive the result code.
97  * @param result_code
98  *        Code to transmit.
99  * @param op_id
100  *        Operation ID in network byte order.
101  * @param err_msg
102  *        Error message to include (or NULL for none).
103  */
104 static void
105 send_result_code (struct GNUNET_SERVER_Client *client, uint64_t op_id,
106                   int64_t result_code, const char *err_msg)
107 {
108   struct OperationResult *res;
109   size_t err_size = 0;
110
111   if (NULL != err_msg)
112     err_size = strnlen (err_msg,
113                         GNUNET_SERVER_MAX_MESSAGE_SIZE - sizeof (*res) - 1) + 1;
114   res = GNUNET_malloc (sizeof (struct OperationResult) + err_size);
115   res->header.type = htons (GNUNET_MESSAGE_TYPE_PSYCSTORE_RESULT_CODE);
116   res->header.size = htons (sizeof (struct OperationResult) + err_size);
117   res->result_code = GNUNET_htonll (result_code - INT64_MIN);
118   res->op_id = op_id;
119   if (0 < err_size)
120   {
121     memcpy (&res[1], err_msg, err_size);
122     ((char *) &res[1])[err_size - 1] = '\0';
123   }
124   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
125               "Sending result to client: %" PRId64 " (%s)\n",
126               result_code, err_msg);
127   GNUNET_SERVER_notification_context_add (nc, client);
128   GNUNET_SERVER_notification_context_unicast (nc, client, &res->header,
129                                               GNUNET_NO);
130   GNUNET_free (res);
131 }
132
133
134 enum
135 {
136   MEMBERSHIP_TEST_NOT_NEEDED = 0,
137   MEMBERSHIP_TEST_NEEDED = 1,
138   MEMBERSHIP_TEST_DONE = 2,
139 } MessageMembershipTest;
140
141
142 struct SendClosure
143 {
144   struct GNUNET_SERVER_Client *client;
145
146   /**
147    * Channel's public key.
148    */
149   struct GNUNET_CRYPTO_EddsaPublicKey channel_key;
150
151   /**
152    * Slave's public key.
153    */
154   struct GNUNET_CRYPTO_EcdsaPublicKey slave_key;
155
156   /**
157    * Operation ID.
158    */
159   uint64_t op_id;
160
161   /**
162    * Membership test result.
163    */
164   int membership_test_result;
165
166   /**
167    * Do membership test with @a slave_key before returning fragment?
168    * @see enum MessageMembershipTest
169    */
170   uint8_t membership_test;
171 };
172
173
174 static int
175 send_fragment (void *cls, struct GNUNET_MULTICAST_MessageHeader *msg,
176                enum GNUNET_PSYCSTORE_MessageFlags flags)
177 {
178   struct SendClosure *sc = cls;
179   struct FragmentResult *res;
180
181   if (MEMBERSHIP_TEST_NEEDED == sc->membership_test)
182   {
183     sc->membership_test = MEMBERSHIP_TEST_DONE;
184     sc->membership_test_result
185       = db->membership_test (db->cls, &sc->channel_key, &sc->slave_key,
186                              GNUNET_ntohll (msg->message_id));
187     switch (sc->membership_test_result)
188     {
189     case GNUNET_YES:
190       break;
191
192     case GNUNET_NO:
193     case GNUNET_SYSERR:
194       return GNUNET_NO;
195     }
196   }
197
198   size_t msg_size = ntohs (msg->header.size);
199
200   res = GNUNET_malloc (sizeof (struct FragmentResult) + msg_size);
201   res->header.type = htons (GNUNET_MESSAGE_TYPE_PSYCSTORE_RESULT_FRAGMENT);
202   res->header.size = htons (sizeof (struct FragmentResult) + msg_size);
203   res->op_id = sc->op_id;
204   res->psycstore_flags = htonl (flags);
205   memcpy (&res[1], msg, msg_size);
206   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
207               "Sending fragment %ld to client\n",
208               GNUNET_ntohll (msg->fragment_id));
209   GNUNET_free (msg);
210   GNUNET_SERVER_notification_context_add (nc, sc->client);
211   GNUNET_SERVER_notification_context_unicast (nc, sc->client, &res->header,
212                                               GNUNET_NO);
213   GNUNET_free (res);
214   return GNUNET_YES;
215 }
216
217
218 static int
219 send_state_var (void *cls, const char *name,
220                 const void *value, uint32_t value_size)
221 {
222   struct SendClosure *sc = cls;
223   struct StateResult *res;
224   size_t name_size = strlen (name) + 1;
225
226   /** @todo FIXME: split up value into 64k chunks */
227
228   res = GNUNET_malloc (sizeof (struct StateResult) + name_size + value_size);
229   res->header.type = htons (GNUNET_MESSAGE_TYPE_PSYCSTORE_RESULT_STATE);
230   res->header.size = htons (sizeof (struct StateResult) + name_size + value_size);
231   res->op_id = sc->op_id;
232   res->name_size = htons (name_size);
233   memcpy (&res[1], name, name_size);
234   memcpy ((char *) &res[1] + name_size, value, value_size);
235   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
236               "Sending state variable %s to client\n", name);
237   GNUNET_SERVER_notification_context_add (nc, sc->client);
238   GNUNET_SERVER_notification_context_unicast (nc, sc->client, &res->header,
239                                               GNUNET_NO);
240   GNUNET_free (res);
241   return GNUNET_OK;
242 }
243
244
245 static void
246 handle_membership_store (void *cls,
247                          struct GNUNET_SERVER_Client *client,
248                          const struct GNUNET_MessageHeader *msg)
249 {
250   const struct MembershipStoreRequest *req =
251     (const struct MembershipStoreRequest *) msg;
252
253   int ret = db->membership_store (db->cls, &req->channel_key, &req->slave_key,
254                                   req->did_join,
255                                   GNUNET_ntohll (req->announced_at),
256                                   GNUNET_ntohll (req->effective_since),
257                                   GNUNET_ntohll (req->group_generation));
258
259   if (ret != GNUNET_OK)
260     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
261                 _("Failed to store membership information!\n"));
262
263   send_result_code (client, req->op_id, ret, NULL);
264   GNUNET_SERVER_receive_done (client, GNUNET_OK);
265 }
266
267
268 static void
269 handle_membership_test (void *cls,
270                         struct GNUNET_SERVER_Client *client,
271                         const struct GNUNET_MessageHeader *msg)
272 {
273   const struct MembershipTestRequest *req =
274     (const struct MembershipTestRequest *) msg;
275
276   int ret = db->membership_test (db->cls, &req->channel_key, &req->slave_key,
277                                  GNUNET_ntohll (req->message_id));
278   switch (ret)
279   {
280   case GNUNET_YES:
281   case GNUNET_NO:
282     break;
283   default:
284     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
285                 _("Failed to test membership!\n"));
286   }
287
288   send_result_code (client, req->op_id, ret, NULL);
289   GNUNET_SERVER_receive_done (client, GNUNET_OK);
290 }
291
292
293 static void
294 handle_fragment_store (void *cls,
295                        struct GNUNET_SERVER_Client *client,
296                        const struct GNUNET_MessageHeader *msg)
297 {
298   const struct FragmentStoreRequest *req =
299     (const struct FragmentStoreRequest *) msg;
300
301   int ret = db->fragment_store (db->cls, &req->channel_key,
302                                 (const struct GNUNET_MULTICAST_MessageHeader *)
303                                 &req[1], ntohl (req->psycstore_flags));
304
305   if (ret != GNUNET_OK)
306     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
307                 _("Failed to store fragment!\n"));
308
309   send_result_code (client, req->op_id, ret, NULL);
310   GNUNET_SERVER_receive_done (client, GNUNET_OK);
311 }
312
313
314 static void
315 handle_fragment_get (void *cls,
316                      struct GNUNET_SERVER_Client *client,
317                      const struct GNUNET_MessageHeader *msg)
318 {
319   const struct FragmentGetRequest *
320     req = (const struct FragmentGetRequest *) msg;
321   struct SendClosure
322     sc = { .op_id = req->op_id,
323            .client = client,
324            .channel_key = req->channel_key,
325            .slave_key = req->slave_key,
326            .membership_test = req->do_membership_test };
327
328   int64_t ret;
329   uint64_t ret_frags = 0;
330   uint64_t first_fragment_id = GNUNET_ntohll (req->first_fragment_id);
331   uint64_t last_fragment_id = GNUNET_ntohll (req->last_fragment_id);
332   uint64_t limit = GNUNET_ntohll (req->fragment_limit);
333
334   if (0 == limit)
335     ret = db->fragment_get (db->cls, &req->channel_key,
336                             first_fragment_id, last_fragment_id,
337                             &ret_frags, send_fragment, &sc);
338   else
339     ret = db->fragment_get_latest (db->cls, &req->channel_key, limit,
340                                    &ret_frags, send_fragment, &sc);
341
342   switch (ret)
343   {
344   case GNUNET_YES:
345   case GNUNET_NO:
346     if (MEMBERSHIP_TEST_DONE == sc.membership_test)
347     {
348       switch (sc.membership_test_result)
349       {
350       case GNUNET_YES:
351         break;
352
353       case GNUNET_NO:
354         ret = GNUNET_PSYCSTORE_MEMBERSHIP_TEST_FAILED;
355         break;
356
357       case GNUNET_SYSERR:
358         ret = GNUNET_SYSERR;
359         break;
360       }
361     }
362     break;
363   default:
364     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
365                 _("Failed to get fragment!\n"));
366   }
367   send_result_code (client, req->op_id, (ret < 0) ? ret : ret_frags, NULL);
368   GNUNET_SERVER_receive_done (client, GNUNET_OK);
369 }
370
371
372 static void
373 handle_message_get (void *cls,
374                     struct GNUNET_SERVER_Client *client,
375                     const struct GNUNET_MessageHeader *msg)
376 {
377   const struct MessageGetRequest *
378     req = (const struct MessageGetRequest *) msg;
379   uint16_t size = ntohs (msg->size);
380   const char *method_prefix = (const char *) &req[1];
381
382   if (size < sizeof (*req) + 1
383       || '\0' != method_prefix[size - sizeof (*req) - 1])
384   {
385     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
386                 "Message get: invalid method prefix. size: %u < %u?\n",
387                 size, sizeof (*req) + 1);
388     GNUNET_break (0);
389     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
390     return;
391   }
392
393   struct SendClosure
394     sc = { .op_id = req->op_id,
395            .client = client,
396            .channel_key = req->channel_key,
397            .slave_key = req->slave_key,
398            .membership_test = req->do_membership_test };
399
400   int64_t ret;
401   uint64_t ret_frags = 0;
402   uint64_t first_message_id = GNUNET_ntohll (req->first_message_id);
403   uint64_t last_message_id = GNUNET_ntohll (req->last_message_id);
404   uint64_t msg_limit = GNUNET_ntohll (req->message_limit);
405   uint64_t frag_limit = GNUNET_ntohll (req->fragment_limit);
406
407   /** @todo method_prefix */
408   if (0 == msg_limit)
409     ret = db->message_get (db->cls, &req->channel_key,
410                            first_message_id, last_message_id, frag_limit,
411                            &ret_frags, send_fragment, &sc);
412   else
413     ret = db->message_get_latest (db->cls, &req->channel_key, msg_limit,
414                                   &ret_frags, send_fragment, &sc);
415
416   switch (ret)
417   {
418   case GNUNET_YES:
419   case GNUNET_NO:
420     break;
421   default:
422     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
423                 _("Failed to get message!\n"));
424   }
425
426   send_result_code (client, req->op_id, (ret < 0) ? ret : ret_frags, NULL);
427   GNUNET_SERVER_receive_done (client, GNUNET_OK);
428 }
429
430
431 static void
432 handle_message_get_fragment (void *cls,
433                              struct GNUNET_SERVER_Client *client,
434                              const struct GNUNET_MessageHeader *msg)
435 {
436   const struct MessageGetFragmentRequest *
437     req = (const struct MessageGetFragmentRequest *) msg;
438   struct SendClosure
439     sc = { .op_id = req->op_id, .client = client,
440            .channel_key = req->channel_key, .slave_key = req->slave_key,
441            .membership_test = req->do_membership_test };
442
443   int ret = db->message_get_fragment (db->cls, &req->channel_key,
444                                       GNUNET_ntohll (req->message_id),
445                                       GNUNET_ntohll (req->fragment_offset),
446                                       &send_fragment, &sc);
447   switch (ret)
448   {
449   case GNUNET_YES:
450   case GNUNET_NO:
451     break;
452   default:
453     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
454                 _("Failed to get message fragment!\n"));
455   }
456
457   send_result_code (client, req->op_id, ret, NULL);
458   GNUNET_SERVER_receive_done (client, GNUNET_OK);
459 }
460
461
462 static void
463 handle_counters_get (void *cls,
464                      struct GNUNET_SERVER_Client *client,
465                      const struct GNUNET_MessageHeader *msg)
466 {
467   const struct OperationRequest *req = (const struct OperationRequest *) msg;
468   struct CountersResult res = { {0} };
469
470   int ret = db->counters_message_get (db->cls, &req->channel_key,
471                                       &res.max_fragment_id, &res.max_message_id,
472                                       &res.max_group_generation);
473   switch (ret)
474   {
475   case GNUNET_OK:
476     ret = db->counters_state_get (db->cls, &req->channel_key,
477                                   &res.max_state_message_id);
478   case GNUNET_NO:
479     break;
480   default:
481     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
482                 _("Failed to get master counters!\n"));
483   }
484
485   res.header.type = htons (GNUNET_MESSAGE_TYPE_PSYCSTORE_RESULT_COUNTERS);
486   res.header.size = htons (sizeof (res));
487   res.result_code = htonl (ret);
488   res.op_id = req->op_id;
489   res.max_fragment_id = GNUNET_htonll (res.max_fragment_id);
490   res.max_message_id = GNUNET_htonll (res.max_message_id);
491   res.max_group_generation = GNUNET_htonll (res.max_group_generation);
492   res.max_state_message_id = GNUNET_htonll (res.max_state_message_id);
493
494   GNUNET_SERVER_notification_context_add (nc, client);
495   GNUNET_SERVER_notification_context_unicast (nc, client, &res.header,
496                                               GNUNET_NO);
497
498   GNUNET_SERVER_receive_done (client, GNUNET_OK);
499 }
500
501
502 struct StateModifyClosure
503 {
504   const struct GNUNET_CRYPTO_EddsaPublicKey channel_key;
505   struct GNUNET_PSYC_ReceiveHandle *recv;
506   enum GNUNET_PSYC_MessageState msg_state;
507   char mod_oper;
508   char *mod_name;
509   char *mod_value;
510   uint32_t mod_value_size;
511   uint32_t mod_value_remaining;
512 };
513
514
515 static void
516 recv_state_message_part (void *cls,
517                          const struct GNUNET_CRYPTO_EcdsaPublicKey *slave_key,
518                          uint64_t message_id, uint32_t flags, uint64_t data_offset,
519                          const struct GNUNET_MessageHeader *msg)
520 {
521   struct StateModifyClosure *scls = cls;
522   uint16_t psize;
523
524   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
525               "recv_state_message_part()  message_id: %" PRIu64
526               ", data_offset: %" PRIu64 ", flags: %u\n",
527               message_id, data_offset, flags);
528
529   if (NULL == msg)
530   {
531     scls->msg_state = GNUNET_PSYC_MESSAGE_STATE_ERROR;
532     return;
533   }
534
535   switch (ntohs (msg->type))
536   {
537   case GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_METHOD:
538   {
539     scls->msg_state = GNUNET_PSYC_MESSAGE_STATE_METHOD;
540     break;
541   }
542
543   case GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_MODIFIER:
544   {
545     struct GNUNET_PSYC_MessageModifier *
546       pmod = (struct GNUNET_PSYC_MessageModifier *) msg;
547     psize = ntohs (pmod->header.size);
548     uint16_t name_size = ntohs (pmod->name_size);
549     uint32_t value_size = ntohl (pmod->value_size);
550
551     const char *name = (const char *) &pmod[1];
552     const void *value = name + name_size;
553
554     if (GNUNET_ENV_OP_SET != pmod->oper)
555     { // Apply non-transient operation.
556       if (psize == sizeof (*pmod) + name_size + value_size)
557       {
558         db->state_modify_op (db->cls, &scls->channel_key,
559                              pmod->oper, name, value, value_size);
560       }
561       else
562       {
563         scls->mod_oper = pmod->oper;
564         scls->mod_name = GNUNET_malloc (name_size);
565         memcpy (scls->mod_name, name, name_size);
566
567         scls->mod_value_size = value_size;
568         scls->mod_value = GNUNET_malloc (scls->mod_value_size);
569         scls->mod_value_remaining
570           = scls->mod_value_size - (psize - sizeof (*pmod) - name_size);
571         memcpy (scls->mod_value, value, value_size - scls->mod_value_remaining);
572       }
573     }
574     scls->msg_state = GNUNET_PSYC_MESSAGE_STATE_MODIFIER;
575     break;
576   }
577
578   case GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_MOD_CONT:
579     if (GNUNET_ENV_OP_SET != scls->mod_oper)
580     {
581       if (scls->mod_value_remaining == 0)
582       {
583         GNUNET_break_op (0);
584         scls->msg_state = GNUNET_PSYC_MESSAGE_STATE_ERROR;
585       }
586       psize = ntohs (msg->size);
587       memcpy (scls->mod_value + (scls->mod_value_size - scls->mod_value_remaining),
588               &msg[1], psize - sizeof (*msg));
589       scls->mod_value_remaining -= psize - sizeof (*msg);
590       if (0 == scls->mod_value_remaining)
591       {
592         db->state_modify_op (db->cls, &scls->channel_key,
593                              scls->mod_oper, scls->mod_name,
594                              scls->mod_value, scls->mod_value_size);
595         GNUNET_free (scls->mod_name);
596         GNUNET_free (scls->mod_value);
597         scls->mod_oper = 0;
598         scls->mod_name = NULL;
599         scls->mod_value = NULL;
600         scls->mod_value_size = 0;
601       }
602     }
603     scls->msg_state = GNUNET_PSYC_MESSAGE_STATE_MOD_CONT;
604     break;
605
606   case GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_DATA:
607     scls->msg_state = GNUNET_PSYC_MESSAGE_STATE_DATA;
608     break;
609
610   case GNUNET_MESSAGE_TYPE_PSYC_MESSAGE_END:
611     scls->msg_state = GNUNET_PSYC_MESSAGE_STATE_END;
612     break;
613
614   default:
615     scls->msg_state = GNUNET_PSYC_MESSAGE_STATE_ERROR;
616   }
617 }
618
619
620 static int
621 recv_state_fragment (void *cls, struct GNUNET_MULTICAST_MessageHeader *msg,
622                      enum GNUNET_PSYCSTORE_MessageFlags flags)
623 {
624   struct StateModifyClosure *scls = cls;
625
626   if (NULL == scls->recv)
627   {
628     scls->recv = GNUNET_PSYC_receive_create (NULL, recv_state_message_part,
629                                              scls);
630   }
631
632   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
633               "recv_state_fragment: %" PRIu64 "\n", GNUNET_ntohll (msg->fragment_id));
634
635   struct GNUNET_PSYC_MessageHeader *
636     pmsg = GNUNET_PSYC_message_header_create (msg, flags);
637   GNUNET_PSYC_receive_message (scls->recv, pmsg);
638   GNUNET_free (pmsg);
639
640   return GNUNET_YES;
641 }
642
643
644 static void
645 handle_state_modify (void *cls,
646                      struct GNUNET_SERVER_Client *client,
647                      const struct GNUNET_MessageHeader *msg)
648 {
649   const struct StateModifyRequest *req
650     = (const struct StateModifyRequest *) msg;
651
652   uint64_t message_id = GNUNET_ntohll (req->message_id);
653   uint64_t state_delta = GNUNET_ntohll (req->state_delta);
654   uint64_t ret_frags = 0;
655   struct StateModifyClosure
656     scls = { .channel_key = req->channel_key };
657
658   int ret = db->state_modify_begin (db->cls, &req->channel_key,
659                                     message_id, state_delta);
660
661   if (GNUNET_OK != ret)
662   {
663     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
664                 _("Failed to begin modifying state: %d\n"), ret);
665   }
666   else
667   {
668     ret = db->message_get (db->cls, &req->channel_key,
669                            message_id, message_id, 0,
670                            &ret_frags, recv_state_fragment, &scls);
671     if (GNUNET_OK != ret)
672     {
673       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
674                   _("Failed to modify state: %d\n"), ret);
675       GNUNET_break (0);
676     }
677     else
678     {
679       if (GNUNET_OK != db->state_modify_end (db->cls, &req->channel_key, message_id))
680       {
681         GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
682                     _("Failed to end modifying state!\n"));
683         GNUNET_break (0);
684       }
685     }
686     if (NULL != scls.recv)
687     {
688       GNUNET_PSYC_receive_destroy (scls.recv);
689     }
690   }
691
692   send_result_code (client, req->op_id, ret, NULL);
693   GNUNET_SERVER_receive_done (client, GNUNET_OK);
694 }
695
696
697 /** @todo FIXME: stop processing further state sync messages after an error */
698 static void
699 handle_state_sync (void *cls,
700                    struct GNUNET_SERVER_Client *client,
701                    const struct GNUNET_MessageHeader *msg)
702 {
703   const struct StateSyncRequest *req
704     = (const struct StateSyncRequest *) msg;
705
706   int ret = GNUNET_SYSERR;
707   const char *name = (const char *) &req[1];
708   uint16_t name_size = ntohs (req->name_size);
709
710   if (name_size <= 2 || '\0' != name[name_size - 1])
711   {
712     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
713                 _("Tried to set invalid state variable name!\n"));
714     GNUNET_break_op (0);
715   }
716   else
717   {
718     ret = GNUNET_OK;
719
720     if (req->flags & STATE_OP_FIRST)
721     {
722       ret = db->state_sync_begin (db->cls, &req->channel_key);
723     }
724     if (ret != GNUNET_OK)
725     {
726       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
727                   _("Failed to begin synchronizing state!\n"));
728     }
729     else
730     {
731       ret = db->state_sync_assign (db->cls, &req->channel_key, name,
732                                    name + ntohs (req->name_size),
733                                    ntohs (req->header.size) - sizeof (*req)
734                                    - ntohs (req->name_size));
735     }
736
737     if (GNUNET_OK == ret && req->flags & STATE_OP_LAST)
738     {
739       ret = db->state_sync_end (db->cls, &req->channel_key,
740                                 GNUNET_ntohll (req->max_state_message_id),
741                                 GNUNET_ntohll (req->state_hash_message_id));
742       if (ret != GNUNET_OK)
743         GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
744                     _("Failed to end synchronizing state!\n"));
745     }
746   }
747   send_result_code (client, req->op_id, ret, NULL);
748   GNUNET_SERVER_receive_done (client, GNUNET_OK);
749 }
750
751
752 static void
753 handle_state_reset (void *cls,
754                     struct GNUNET_SERVER_Client *client,
755                     const struct GNUNET_MessageHeader *msg)
756 {
757   const struct OperationRequest *req =
758     (const struct OperationRequest *) msg;
759
760   int ret = db->state_reset (db->cls, &req->channel_key);
761
762   if (ret != GNUNET_OK)
763     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
764                 _("Failed to reset state!\n"));
765
766   send_result_code (client, req->op_id, ret, NULL);
767   GNUNET_SERVER_receive_done (client, GNUNET_OK);
768 }
769
770
771 static void
772 handle_state_hash_update (void *cls,
773                           struct GNUNET_SERVER_Client *client,
774                           const struct GNUNET_MessageHeader *msg)
775 {
776   const struct OperationRequest *req =
777     (const struct OperationRequest *) msg;
778
779   int ret = db->state_reset (db->cls, &req->channel_key);
780
781   if (ret != GNUNET_OK)
782     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
783                 _("Failed to reset state!\n"));
784
785   send_result_code (client, req->op_id, ret, NULL);
786   GNUNET_SERVER_receive_done (client, GNUNET_OK);
787 }
788
789
790 static void
791 handle_state_get (void *cls,
792                   struct GNUNET_SERVER_Client *client,
793                   const struct GNUNET_MessageHeader *msg)
794 {
795   const struct OperationRequest *req =
796     (const struct OperationRequest *) msg;
797
798   struct SendClosure sc = { .op_id = req->op_id, .client = client };
799   int64_t ret = GNUNET_SYSERR;
800   const char *name = (const char *) &req[1];
801   uint16_t name_size = ntohs (req->header.size) - sizeof (*req);
802
803   if (name_size <= 2 || '\0' != name[name_size - 1])
804   {
805     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
806                 _("Tried to get invalid state variable name!\n"));
807     GNUNET_break (0);
808   }
809   else
810   {
811     ret = db->state_get (db->cls, &req->channel_key, name,
812                          &send_state_var, &sc);
813     if (GNUNET_NO == ret && name_size >= 5) /* min: _a_b\0 */
814     {
815       char *p, *n = GNUNET_malloc (name_size);
816       memcpy (n, name, name_size);
817       while (&n[1] < (p = strrchr (n, '_')) && GNUNET_NO == ret)
818       {
819         *p = '\0';
820         ret = db->state_get (db->cls, &req->channel_key, n,
821                              &send_state_var, &sc);
822       }
823       GNUNET_free (n);
824     }
825   }
826   switch (ret)
827   {
828   case GNUNET_OK:
829   case GNUNET_NO:
830     break;
831   default:
832     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
833                 _("Failed to get state variable!\n"));
834   }
835
836   send_result_code (client, req->op_id, ret, NULL);
837   GNUNET_SERVER_receive_done (client, GNUNET_OK);
838 }
839
840
841 static void
842 handle_state_get_prefix (void *cls,
843                          struct GNUNET_SERVER_Client *client,
844                          const struct GNUNET_MessageHeader *msg)
845 {
846   const struct OperationRequest *req =
847     (const struct OperationRequest *) msg;
848
849   struct SendClosure sc = { .op_id = req->op_id, .client = client };
850   int64_t ret = GNUNET_SYSERR;
851   const char *name = (const char *) &req[1];
852   uint16_t name_size = ntohs (req->header.size) - sizeof (*req);
853
854   if (name_size <= 1 || '\0' != name[name_size - 1])
855   {
856     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
857                 _("Tried to get invalid state variable name!\n"));
858     GNUNET_break (0);
859   }
860   else
861   {
862     ret = db->state_get_prefix (db->cls, &req->channel_key, name,
863                                 &send_state_var, &sc);
864   }
865   switch (ret)
866   {
867   case GNUNET_OK:
868   case GNUNET_NO:
869     break;
870   default:
871     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
872                 _("Failed to get state variable!\n"));
873   }
874
875   send_result_code (client, req->op_id, ret, NULL);
876   GNUNET_SERVER_receive_done (client, GNUNET_OK);
877 }
878
879
880 /**
881  * Initialize the PSYCstore service.
882  *
883  * @param cls Closure.
884  * @param server The initialized server.
885  * @param c Configuration to use.
886  */
887 static void
888 run (void *cls, struct GNUNET_SERVER_Handle *server,
889      const struct GNUNET_CONFIGURATION_Handle *c)
890 {
891   static const struct GNUNET_SERVER_MessageHandler handlers[] = {
892     { &handle_membership_store, NULL,
893       GNUNET_MESSAGE_TYPE_PSYCSTORE_MEMBERSHIP_STORE,
894       sizeof (struct MembershipStoreRequest) },
895
896     { &handle_membership_test, NULL,
897       GNUNET_MESSAGE_TYPE_PSYCSTORE_MEMBERSHIP_TEST,
898       sizeof (struct MembershipTestRequest) },
899
900     { &handle_fragment_store, NULL,
901       GNUNET_MESSAGE_TYPE_PSYCSTORE_FRAGMENT_STORE, 0, },
902
903     { &handle_fragment_get, NULL,
904       GNUNET_MESSAGE_TYPE_PSYCSTORE_FRAGMENT_GET,
905       sizeof (struct FragmentGetRequest) },
906
907     { &handle_message_get, NULL,
908       GNUNET_MESSAGE_TYPE_PSYCSTORE_MESSAGE_GET, 0 },
909
910     { &handle_message_get_fragment, NULL,
911       GNUNET_MESSAGE_TYPE_PSYCSTORE_MESSAGE_GET_FRAGMENT,
912       sizeof (struct MessageGetFragmentRequest) },
913
914     { &handle_counters_get, NULL,
915       GNUNET_MESSAGE_TYPE_PSYCSTORE_COUNTERS_GET,
916       sizeof (struct OperationRequest) },
917
918     { &handle_state_modify, NULL,
919       GNUNET_MESSAGE_TYPE_PSYCSTORE_STATE_MODIFY, 0 },
920
921     { &handle_state_sync, NULL,
922       GNUNET_MESSAGE_TYPE_PSYCSTORE_STATE_SYNC, 0 },
923
924     { &handle_state_reset, NULL,
925       GNUNET_MESSAGE_TYPE_PSYCSTORE_STATE_RESET,
926       sizeof (struct OperationRequest) },
927
928     { &handle_state_hash_update, NULL,
929       GNUNET_MESSAGE_TYPE_PSYCSTORE_STATE_HASH_UPDATE,
930       sizeof (struct StateHashUpdateRequest) },
931
932     { &handle_state_get, NULL,
933       GNUNET_MESSAGE_TYPE_PSYCSTORE_STATE_GET, 0 },
934
935     { &handle_state_get_prefix, NULL,
936       GNUNET_MESSAGE_TYPE_PSYCSTORE_STATE_GET_PREFIX, 0 },
937
938     { NULL, NULL, 0, 0 }
939   };
940
941   cfg = c;
942
943   /* Loading database plugin */
944   char *database;
945   if (GNUNET_OK !=
946       GNUNET_CONFIGURATION_get_value_string (cfg, "psycstore", "database",
947                                              &database))
948   {
949     GNUNET_log (GNUNET_ERROR_TYPE_ERROR, "No database backend configured\n");
950   }
951   else
952   {
953     GNUNET_asprintf (&db_lib_name, "libgnunet_plugin_psycstore_%s", database);
954     db = GNUNET_PLUGIN_load (db_lib_name, (void *) cfg);
955     GNUNET_free (database);
956   }
957   if (NULL == db)
958   {
959     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
960                 "Could not load database backend `%s'\n",
961                 db_lib_name);
962     GNUNET_SCHEDULER_add_now (&shutdown_task, NULL);
963     return;
964   }
965
966   stats = GNUNET_STATISTICS_create ("psycstore", cfg);
967   GNUNET_SERVER_add_handlers (server, handlers);
968   nc = GNUNET_SERVER_notification_context_create (server, 1);
969   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &shutdown_task,
970                                 NULL);
971 }
972
973
974 /**
975  * The main function for the service.
976  *
977  * @param argc number of arguments from the command line
978  * @param argv command line arguments
979  * @return 0 ok, 1 on error
980  */
981 int
982 main (int argc, char *const *argv)
983 {
984   return (GNUNET_OK ==
985           GNUNET_SERVICE_run (argc, argv, "psycstore",
986                               GNUNET_SERVICE_OPTION_NONE,
987                               &run, NULL)) ? 0 : 1;
988 }
989
990
991 /* end of gnunet-service-psycstore.c */