Removing routing table entries corresponding to disconnected peer
[oweals/gnunet.git] / src / dht / gnunet-service-xdht_clients.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009, 2010, 2011 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., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file dht/gnunet-service-dht_clients.c
23  * @brief GNUnet DHT service's client management code
24  * @author Christian Grothoff
25  * @author Nathan Evans
26  */
27
28 #include "platform.h"
29 #include "gnunet_constants.h"
30 #include "gnunet_protocols.h"
31 #include "gnunet_statistics_service.h"
32 #include "gnunet-service-xdht.h"
33 #include "gnunet-service-xdht_clients.h"
34 #include "gnunet-service-xdht_datacache.h"
35 #include "gnunet-service-xdht_neighbours.h"
36 #include "dht.h"
37
38
39 /**
40  * Should routing details be logged to stderr (for debugging)?
41  */
42 #define LOG_TRAFFIC(kind,...) GNUNET_log_from (kind, "dht-traffic",__VA_ARGS__)
43
44 #define LOG(kind,...) GNUNET_log_from (kind, "dht-clients",__VA_ARGS__)
45
46 /**
47  * Linked list of messages to send to clients.
48  */
49 struct PendingMessage
50 {
51   /**
52    * Pointer to next item in the list
53    */
54   struct PendingMessage *next;
55
56   /**
57    * Pointer to previous item in the list
58    */
59   struct PendingMessage *prev;
60
61   /**
62    * Actual message to be sent, allocated at the end of the struct:
63    * // msg = (cast) &pm[1];
64    * // memcpy (&pm[1], data, len);
65    */
66   const struct GNUNET_MessageHeader *msg;
67
68 };
69
70
71 /**
72  * Struct containing information about a client,
73  * handle to connect to it, and any pending messages
74  * that need to be sent to it.
75  */
76 struct ClientList
77 {
78   /**
79    * Linked list of active clients
80    */
81   struct ClientList *next;
82
83   /**
84    * Linked list of active clients
85    */
86   struct ClientList *prev;
87
88   /**
89    * The handle to this client
90    */
91   struct GNUNET_SERVER_Client *client_handle;
92
93   /**
94    * Handle to the current transmission request, NULL
95    * if none pending.
96    */
97   struct GNUNET_SERVER_TransmitHandle *transmit_handle;
98
99   /**
100    * Linked list of pending messages for this client
101    */
102   struct PendingMessage *pending_head;
103
104   /**
105    * Tail of linked list of pending messages for this client
106    */
107   struct PendingMessage *pending_tail;
108
109 };
110
111
112 /**
113  * Entry in the local forwarding map for a client's GET request.
114  */
115 struct ClientQueryRecord
116 {
117
118   /**
119    * The key this request was about
120    */
121   struct GNUNET_HashCode key;
122
123   /**
124    * Client responsible for the request.
125    */
126   struct ClientList *client;
127
128   /**
129    * Extended query (see gnunet_block_lib.h), allocated at the end of this struct.
130    */
131   const void *xquery;
132
133   /**
134    * Replies we have already seen for this request.
135    */
136   struct GNUNET_HashCode *seen_replies;
137
138   /**
139    * Pointer to this nodes heap location in the retry-heap (for fast removal)
140    */
141   struct GNUNET_CONTAINER_HeapNode *hnode;
142
143   /**
144    * What's the delay between re-try operations that we currently use for this
145    * request?
146    */
147   struct GNUNET_TIME_Relative retry_frequency;
148
149   /**
150    * What's the next time we should re-try this request?
151    */
152   struct GNUNET_TIME_Absolute retry_time;
153
154   /**
155    * The unique identifier of this request
156    */
157   uint64_t unique_id;
158
159   /**
160    * Number of bytes in xquery.
161    */
162   size_t xquery_size;
163
164   /**
165    * Number of entries in 'seen_replies'.
166    */
167   unsigned int seen_replies_count;
168
169   /**
170    * Desired replication level
171    */
172   uint32_t replication;
173
174   /**
175    * Any message options for this request
176    */
177   uint32_t msg_options;
178
179   /**
180    * The type for the data for the GET request.
181    */
182   enum GNUNET_BLOCK_Type type;
183
184 };
185
186
187 /**
188  * Struct containing paremeters of monitoring requests.
189  */
190 struct ClientMonitorRecord
191 {
192
193   /**
194    * Next element in DLL.
195    */
196   struct ClientMonitorRecord    *next;
197
198   /**
199    * Previous element in DLL.
200    */
201   struct ClientMonitorRecord    *prev;
202
203   /**
204    * Type of blocks that are of interest
205    */
206   enum GNUNET_BLOCK_Type        type;
207
208   /**
209    * Key of data of interest, NULL for all.
210    */
211   struct GNUNET_HashCode         *key;
212
213   /**
214    * Flag whether to notify about GET messages.
215    */
216   int16_t get;
217
218   /**
219    * Flag whether to notify about GET_REPONSE messages.
220    */
221   int16_t get_resp;
222
223   /**
224    * Flag whether to notify about PUT messages.
225    */
226   uint16_t put;
227
228   /**
229    * Client to notify of these requests.
230    */
231   struct ClientList             *client;
232 };
233
234
235 /**
236  * List of active clients.
237  */
238 static struct ClientList *client_head;
239
240 /**
241  * List of active clients.
242  */
243 static struct ClientList *client_tail;
244
245 /**
246  * List of active monitoring requests.
247  */
248 static struct ClientMonitorRecord *monitor_head;
249
250 /**
251  * List of active monitoring requests.
252  */
253 static struct ClientMonitorRecord *monitor_tail;
254
255 /**
256  * Hashmap for fast key based lookup, maps keys to `struct ClientQueryRecord` entries.
257  */
258 static struct GNUNET_CONTAINER_MultiHashMap *forward_map;
259
260 /**
261  * Heap with all of our client's request, sorted by retry time (earliest on top).
262  */
263 static struct GNUNET_CONTAINER_Heap *retry_heap;
264
265 /**
266  * Task that re-transmits requests (using retry_heap).
267  */
268 static GNUNET_SCHEDULER_TaskIdentifier retry_task;
269
270
271 /**
272  * Task run to check for messages that need to be sent to a client.
273  *
274  * @param client a ClientList, containing the client and any messages to be sent to it
275  */
276 static void
277 process_pending_messages (struct ClientList *client);
278
279
280 /**
281  * Callback called as a result of issuing a GNUNET_SERVER_notify_transmit_ready
282  * request.  A ClientList is passed as closure, take the head of the list
283  * and copy it into buf, which has the result of sending the message to the
284  * client.
285  *
286  * @param cls closure to this call
287  * @param size maximum number of bytes available to send
288  * @param buf where to copy the actual message to
289  *
290  * @return the number of bytes actually copied, 0 indicates failure
291  */
292 static size_t
293 send_reply_to_client (void *cls, size_t size, void *buf)
294 {
295   struct ClientList *client = cls;
296   char *cbuf = buf;
297   struct PendingMessage *reply;
298   size_t off;
299   size_t msize;
300
301   client->transmit_handle = NULL;
302   if (buf == NULL)
303   {
304     /* client disconnected */
305     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
306                 "Client %p disconnected, pending messages will be discarded\n",
307                 client->client_handle);
308     return 0;
309   }
310   off = 0;
311   while ((NULL != (reply = client->pending_head)) &&
312          (size >= off + (msize = ntohs (reply->msg->size))))
313   {
314     GNUNET_CONTAINER_DLL_remove (client->pending_head, client->pending_tail,
315                                  reply);
316     memcpy (&cbuf[off], reply->msg, msize);
317     GNUNET_free (reply);
318     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Transmitting %u bytes to client %p\n",
319                 msize, client->client_handle);
320     off += msize;
321   }
322   process_pending_messages (client);
323   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Transmitted %u/%u bytes to client %p\n",
324               (unsigned int) off, (unsigned int) size, client->client_handle);
325   return off;
326 }
327
328
329 /**
330  * Task run to check for messages that need to be sent to a client.
331  *
332  * @param client a ClientList, containing the client and any messages to be sent to it
333  */
334 static void
335 process_pending_messages (struct ClientList *client)
336 {
337   if ((client->pending_head == NULL) || (client->transmit_handle != NULL))
338   {
339     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
340                 "Not asking for transmission to %p now: %s\n",
341                 client->client_handle,
342                 client->pending_head ==
343                 NULL ? "no more messages" : "request already pending");
344     return;
345   }
346   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
347               "Asking for transmission of %u bytes to client %p\n",
348               ntohs (client->pending_head->msg->size), client->client_handle);
349   client->transmit_handle =
350       GNUNET_SERVER_notify_transmit_ready (client->client_handle,
351                                            ntohs (client->pending_head->
352                                                   msg->size),
353                                            GNUNET_TIME_UNIT_FOREVER_REL,
354                                            &send_reply_to_client, client);
355 }
356
357
358 /**
359  * Add a PendingMessage to the clients list of messages to be sent
360  *
361  * @param client the active client to send the message to
362  * @param pending_message the actual message to send
363  */
364 static void
365 add_pending_message (struct ClientList *client,
366                      struct PendingMessage *pending_message)
367 {
368   GNUNET_CONTAINER_DLL_insert_tail (client->pending_head, client->pending_tail,
369                                     pending_message);
370   process_pending_messages (client);
371 }
372
373
374 /**
375  * Closure for 'forward_reply'
376  */
377 struct ForwardReplyContext
378 {
379
380   /**
381    * Actual message to send to matching clients.
382    */
383   struct PendingMessage *pm;
384
385   /**
386    * Embedded payload.
387    */
388   const void *data;
389
390   /**
391    * Type of the data.
392    */
393   enum GNUNET_BLOCK_Type type;
394
395   /**
396    * Number of bytes in data.
397    */
398   size_t data_size;
399
400   /**
401    * Do we need to copy 'pm' because it was already used?
402    */
403   int do_copy;
404
405 };
406
407
408 /**
409  * Find a client if it exists, add it otherwise.
410  *
411  * @param client the server handle to the client
412  *
413  * @return the client if found, a new client otherwise
414  */
415 static struct ClientList *
416 find_active_client (struct GNUNET_SERVER_Client *client)
417 {
418   struct ClientList *pos = client_head;
419   struct ClientList *ret;
420
421   while (pos != NULL)
422   {
423     if (pos->client_handle == client)
424       return pos;
425     pos = pos->next;
426   }
427   ret = GNUNET_new (struct ClientList);
428   ret->client_handle = client;
429   GNUNET_CONTAINER_DLL_insert (client_head, client_tail, ret);
430   return ret;
431 }
432
433
434 /**
435  * Iterator over hash map entries that frees all entries
436  * associated with the given client.
437  *
438  * @param cls client to search for in source routes
439  * @param key current key code (ignored)
440  * @param value value in the hash map, a ClientQueryRecord
441  * @return #GNUNET_YES (we should continue to iterate)
442  */
443 static int
444 remove_client_records (void *cls, const struct GNUNET_HashCode * key, void *value)
445 {
446   struct ClientList *client = cls;
447   struct ClientQueryRecord *record = value;
448
449   if (record->client != client)
450     return GNUNET_YES;
451   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
452               "Removing client %p's record for key %s\n", client,
453               GNUNET_h2s (key));
454   GNUNET_assert (GNUNET_YES ==
455                  GNUNET_CONTAINER_multihashmap_remove (forward_map, key,
456                                                        record));
457   if (NULL != record->hnode)
458     GNUNET_CONTAINER_heap_remove_node (record->hnode);
459   GNUNET_array_grow (record->seen_replies, record->seen_replies_count, 0);
460   GNUNET_free (record);
461   return GNUNET_YES;
462 }
463
464
465 /**
466  * Iterator over hash map entries that send a given reply to
467  * each of the matching clients.  With some tricky recycling
468  * of the buffer.
469  *
470  * @param cls the 'struct ForwardReplyContext'
471  * @param key current key
472  * @param value value in the hash map, a ClientQueryRecord
473  * @return GNUNET_YES (we should continue to iterate),
474  *         if the result is mal-formed, GNUNET_NO
475  */
476 static int
477 forward_reply (void *cls, const struct GNUNET_HashCode * key, void *value)
478 {
479   struct ForwardReplyContext *frc = cls;
480   struct ClientQueryRecord *record = value;
481   struct PendingMessage *pm;
482   struct GNUNET_DHT_ClientResultMessage *reply;
483   enum GNUNET_BLOCK_EvaluationResult eval;
484   int do_free;
485   struct GNUNET_HashCode ch;
486   unsigned int i;
487
488   LOG_TRAFFIC (GNUNET_ERROR_TYPE_DEBUG,
489                "R5N CLIENT-RESULT %s\n",
490                GNUNET_h2s_full (key));
491   if ((record->type != GNUNET_BLOCK_TYPE_ANY) && (record->type != frc->type))
492   {
493     LOG (GNUNET_ERROR_TYPE_DEBUG,
494          "Record type missmatch, not passing request for key %s to local client\n",
495          GNUNET_h2s (key));
496     GNUNET_STATISTICS_update (GDS_stats,
497                               gettext_noop
498                               ("# Key match, type mismatches in REPLY to CLIENT"),
499                               1, GNUNET_NO);
500     return GNUNET_YES;          /* type mismatch */
501   }
502   GNUNET_CRYPTO_hash (frc->data, frc->data_size, &ch);
503   for (i = 0; i < record->seen_replies_count; i++)
504     if (0 == memcmp (&record->seen_replies[i], &ch, sizeof (struct GNUNET_HashCode)))
505     {
506       LOG (GNUNET_ERROR_TYPE_DEBUG,
507            "Duplicate reply, not passing request for key %s to local client\n",
508            GNUNET_h2s (key));
509       GNUNET_STATISTICS_update (GDS_stats,
510                                 gettext_noop
511                                 ("# Duplicate REPLIES to CLIENT request dropped"),
512                                 1, GNUNET_NO);
513       return GNUNET_YES;        /* duplicate */
514     }
515   eval =
516       GNUNET_BLOCK_evaluate (GDS_block_context, record->type, key, NULL, 0,
517                              record->xquery, record->xquery_size, frc->data,
518                              frc->data_size);
519   LOG (GNUNET_ERROR_TYPE_DEBUG,
520        "Evaluation result is %d for key %s for local client's query\n",
521        (int) eval, GNUNET_h2s (key));
522   switch (eval)
523   {
524   case GNUNET_BLOCK_EVALUATION_OK_LAST:
525     do_free = GNUNET_YES;
526     break;
527   case GNUNET_BLOCK_EVALUATION_OK_MORE:
528     GNUNET_array_append (record->seen_replies, record->seen_replies_count, ch);
529     do_free = GNUNET_NO;
530     break;
531   case GNUNET_BLOCK_EVALUATION_OK_DUPLICATE:
532     /* should be impossible to encounter here */
533     GNUNET_break (0);
534     return GNUNET_YES;
535   case GNUNET_BLOCK_EVALUATION_RESULT_INVALID:
536     GNUNET_break_op (0);
537     return GNUNET_NO;
538   case GNUNET_BLOCK_EVALUATION_REQUEST_VALID:
539     GNUNET_break (0);
540     return GNUNET_NO;
541   case GNUNET_BLOCK_EVALUATION_REQUEST_INVALID:
542     GNUNET_break (0);
543     return GNUNET_NO;
544   case GNUNET_BLOCK_EVALUATION_RESULT_IRRELEVANT:
545     return GNUNET_YES;
546   case GNUNET_BLOCK_EVALUATION_TYPE_NOT_SUPPORTED:
547     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
548                 _("Unsupported block type (%u) in request!\n"), record->type);
549     return GNUNET_NO;
550   default:
551     GNUNET_break (0);
552     return GNUNET_NO;
553   }
554   if (GNUNET_NO == frc->do_copy)
555   {
556     /* first time, we can use the original data */
557     pm = frc->pm;
558     frc->do_copy = GNUNET_YES;
559   }
560   else
561   {
562     /* two clients waiting for same reply, must copy for queueing */
563     pm = GNUNET_malloc (sizeof (struct PendingMessage) +
564                         ntohs (frc->pm->msg->size));
565     memcpy (pm, frc->pm,
566             sizeof (struct PendingMessage) + ntohs (frc->pm->msg->size));
567     pm->next = pm->prev = NULL;
568     pm->msg = (struct GNUNET_MessageHeader *) &pm[1];
569   }
570   GNUNET_STATISTICS_update (GDS_stats,
571                             gettext_noop ("# RESULTS queued for clients"), 1,
572                             GNUNET_NO);
573   reply = (struct GNUNET_DHT_ClientResultMessage *) &pm[1];
574   reply->unique_id = record->unique_id;
575   LOG (GNUNET_ERROR_TYPE_DEBUG,
576        "Queueing reply to query %s for client %p\n",
577        GNUNET_h2s (key),
578        record->client->client_handle);
579   add_pending_message (record->client, pm);
580   if (GNUNET_YES == do_free)
581     remove_client_records (record->client, key, record);
582   return GNUNET_YES;
583 }
584
585
586 /**
587  * Handle a reply we've received from another peer.  If the reply
588  * matches any of our pending queries, forward it to the respective
589  * client(s).
590  *
591  * @param expiration when will the reply expire
592  * @param key the query this reply is for
593  * @param get_path_length number of peers in @a get_path
594  * @param get_path path the reply took on get
595  * @param put_path_length number of peers in @a put_path
596  * @param put_path path the reply took on put
597  * @param type type of the reply
598  * @param data_size number of bytes in @a data
599  * @param data application payload data
600  */
601 void
602 GDS_CLIENTS_handle_reply (struct GNUNET_TIME_Absolute expiration,
603                           const struct GNUNET_HashCode *key,
604                           unsigned int get_path_length,
605                           const struct GNUNET_PeerIdentity *get_path,
606                           unsigned int put_path_length,
607                           const struct GNUNET_PeerIdentity *put_path,
608                           enum GNUNET_BLOCK_Type type, size_t data_size,
609                           const void *data)
610 {
611   struct ForwardReplyContext frc;
612   struct PendingMessage *pm;
613   struct GNUNET_DHT_ClientResultMessage *reply;
614   struct GNUNET_PeerIdentity *paths;
615   size_t msize;
616
617   LOG (GNUNET_ERROR_TYPE_DEBUG,
618        "reply for key %s\n",
619        GNUNET_h2s (key));
620
621   if (NULL == GNUNET_CONTAINER_multihashmap_get (forward_map, key))
622   {
623     GNUNET_STATISTICS_update (GDS_stats,
624                               gettext_noop
625                               ("# REPLIES ignored for CLIENTS (no match)"), 1,
626                               GNUNET_NO);
627     return;                     /* no matching request, fast exit! */
628   }
629   msize =
630       sizeof (struct GNUNET_DHT_ClientResultMessage) + data_size +
631       (get_path_length + put_path_length) * sizeof (struct GNUNET_PeerIdentity);
632   if (msize >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
633   {
634     GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
635                 _("Could not pass reply to client, message too big!\n"));
636     return;
637   }
638   pm = GNUNET_malloc (msize + sizeof (struct PendingMessage));
639   reply = (struct GNUNET_DHT_ClientResultMessage *) &pm[1];
640   pm->msg = &reply->header;
641   reply->header.size = htons ((uint16_t) msize);
642   reply->header.type = htons (GNUNET_MESSAGE_TYPE_DHT_CLIENT_RESULT);
643   reply->type = htonl (type);
644   reply->get_path_length = htonl (get_path_length);
645   reply->put_path_length = htonl (put_path_length);
646   reply->unique_id = 0;         /* filled in later */
647   reply->expiration = GNUNET_TIME_absolute_hton (expiration);
648   reply->key = *key;
649   paths = (struct GNUNET_PeerIdentity *) &reply[1];
650   memcpy (paths, put_path,
651           sizeof (struct GNUNET_PeerIdentity) * put_path_length);
652   memcpy (&paths[put_path_length], get_path,
653           sizeof (struct GNUNET_PeerIdentity) * get_path_length);
654   memcpy (&paths[get_path_length + put_path_length], data, data_size);
655   frc.do_copy = GNUNET_NO;
656   frc.pm = pm;
657   frc.data = data;
658   frc.data_size = data_size;
659   frc.type = type;
660   GNUNET_CONTAINER_multihashmap_get_multiple (forward_map, key, &forward_reply,
661                                               &frc);
662
663   if (GNUNET_NO == frc.do_copy)
664   {
665     /* did not match any of the requests, free! */
666     GNUNET_STATISTICS_update (GDS_stats,
667                               gettext_noop
668                               ("# REPLIES ignored for CLIENTS (no match)"), 1,
669                               GNUNET_NO);
670     GNUNET_free (pm);
671   }
672 }
673
674 /**
675  * Check if some client is monitoring GET messages and notify
676  * them in that case.
677  *
678  * @param options Options, for instance RecordRoute, DemultiplexEverywhere.
679  * @param type The type of data in the request.
680  * @param hop_count Hop count so far.
681  * @param path_length number of entries in path (or 0 if not recorded).
682  * @param path peers on the GET path (or NULL if not recorded).
683  * @param desired_replication_level Desired replication level.
684  * @param key Key of the requested data.
685  */
686 void
687 GDS_CLIENTS_process_get (uint32_t options,
688                          enum GNUNET_BLOCK_Type type,
689                          uint32_t hop_count,
690                          uint32_t desired_replication_level,
691                          unsigned int path_length,
692                          const struct GNUNET_PeerIdentity *path,
693                          const struct GNUNET_HashCode * key)
694 {
695   struct ClientMonitorRecord *m;
696   struct ClientList **cl;
697   unsigned int cl_size;
698
699   cl = NULL;
700   cl_size = 0;
701   for (m = monitor_head; NULL != m; m = m->next)
702   {
703     if ((GNUNET_BLOCK_TYPE_ANY == m->type || m->type == type) &&
704         (NULL == m->key ||
705          memcmp (key, m->key, sizeof(struct GNUNET_HashCode)) == 0))
706     {
707       struct PendingMessage *pm;
708       struct GNUNET_DHT_MonitorGetMessage *mmsg;
709       struct GNUNET_PeerIdentity *msg_path;
710       size_t msize;
711       unsigned int i;
712
713       /* Don't send duplicates */
714       for (i = 0; i < cl_size; i++)
715         if (cl[i] == m->client)
716           break;
717       if (i < cl_size)
718         continue;
719       GNUNET_array_append (cl, cl_size, m->client);
720
721       msize = path_length * sizeof (struct GNUNET_PeerIdentity);
722       msize += sizeof (struct GNUNET_DHT_MonitorGetMessage);
723       msize += sizeof (struct PendingMessage);
724       pm = GNUNET_malloc (msize);
725       mmsg = (struct GNUNET_DHT_MonitorGetMessage *) &pm[1];
726       pm->msg = &mmsg->header;
727       mmsg->header.size = htons (msize - sizeof (struct PendingMessage));
728       mmsg->header.type = htons (GNUNET_MESSAGE_TYPE_DHT_MONITOR_GET);
729       mmsg->options = htonl(options);
730       mmsg->type = htonl(type);
731       mmsg->hop_count = htonl(hop_count);
732       mmsg->desired_replication_level = htonl(desired_replication_level);
733       mmsg->get_path_length = htonl(path_length);
734       memcpy (&mmsg->key, key, sizeof (struct GNUNET_HashCode));
735       msg_path = (struct GNUNET_PeerIdentity *) &mmsg[1];
736       if (path_length > 0)
737         memcpy (msg_path, path,
738                 path_length * sizeof (struct GNUNET_PeerIdentity));
739       add_pending_message (m->client, pm);
740     }
741   }
742   GNUNET_free_non_null (cl);
743 }
744
745
746 /**
747  * Check if some client is monitoring PUT messages and notify
748  * them in that case.
749  *
750  * @param options Options, for instance RecordRoute, DemultiplexEverywhere.
751  * @param type The type of data in the request.
752  * @param hop_count Hop count so far.
753  * @param path_length number of entries in path (or 0 if not recorded).
754  * @param path peers on the PUT path (or NULL if not recorded).
755  * @param desired_replication_level Desired replication level.
756  * @param exp Expiration time of the data.
757  * @param key Key under which data is to be stored.
758  * @param data Pointer to the data carried.
759  * @param size Number of bytes in data.
760  */
761 void
762 GDS_CLIENTS_process_put (uint32_t options,
763                          enum GNUNET_BLOCK_Type type,
764                          uint32_t hop_count,
765                          uint32_t desired_replication_level,
766                          unsigned int path_length,
767                          const struct GNUNET_PeerIdentity *path,
768                          struct GNUNET_TIME_Absolute exp,
769                          const struct GNUNET_HashCode * key,
770                          const void *data,
771                          size_t size)
772 {
773   struct ClientMonitorRecord *m;
774   struct ClientList **cl;
775   unsigned int cl_size;
776
777   cl = NULL;
778   cl_size = 0;
779   for (m = monitor_head; NULL != m; m = m->next)
780   {
781     if ((GNUNET_BLOCK_TYPE_ANY == m->type || m->type == type) &&
782         (NULL == m->key ||
783          memcmp (key, m->key, sizeof(struct GNUNET_HashCode)) == 0))
784     {
785       struct PendingMessage *pm;
786       struct GNUNET_DHT_MonitorPutMessage *mmsg;
787       struct GNUNET_PeerIdentity *msg_path;
788       size_t msize;
789       unsigned int i;
790
791       /* Don't send duplicates */
792       for (i = 0; i < cl_size; i++)
793         if (cl[i] == m->client)
794           break;
795       if (i < cl_size)
796         continue;
797       GNUNET_array_append (cl, cl_size, m->client);
798
799       msize = size;
800       msize += path_length * sizeof (struct GNUNET_PeerIdentity);
801       msize += sizeof (struct GNUNET_DHT_MonitorPutMessage);
802       msize += sizeof (struct PendingMessage);
803       pm = GNUNET_malloc (msize);
804       mmsg = (struct GNUNET_DHT_MonitorPutMessage *) &pm[1];
805       pm->msg = (struct GNUNET_MessageHeader *) mmsg;
806       mmsg->header.size = htons (msize - sizeof (struct PendingMessage));
807       mmsg->header.type = htons (GNUNET_MESSAGE_TYPE_DHT_MONITOR_PUT);
808       mmsg->options = htonl(options);
809       mmsg->type = htonl(type);
810       mmsg->hop_count = htonl(hop_count);
811       mmsg->desired_replication_level = htonl(desired_replication_level);
812       mmsg->put_path_length = htonl(path_length);
813       msg_path = (struct GNUNET_PeerIdentity *) &mmsg[1];
814       if (path_length > 0)
815       {
816         memcpy (msg_path, path,
817                 path_length * sizeof (struct GNUNET_PeerIdentity));
818       }
819       mmsg->expiration_time = GNUNET_TIME_absolute_hton(exp);
820       memcpy (&mmsg->key, key, sizeof (struct GNUNET_HashCode));
821       if (size > 0)
822         memcpy (&msg_path[path_length], data, size);
823       add_pending_message (m->client, pm);
824     }
825   }
826   GNUNET_free_non_null (cl);
827 }
828
829
830 /**
831  * Route the given request via the DHT.  
832  */
833 static void
834 transmit_request (struct ClientQueryRecord *cqr)
835 {
836   GNUNET_STATISTICS_update (GDS_stats,
837                             gettext_noop
838                             ("# GET requests from clients injected"), 1,
839                             GNUNET_NO);
840   
841   LOG (GNUNET_ERROR_TYPE_DEBUG,
842        "Initiating GET for %s, replication %u, already have %u replies\n",
843        GNUNET_h2s (&cqr->key),
844        cqr->replication,
845        cqr->seen_replies_count);
846
847   /* FIXME: Is it correct to pass your identity as default current_destination
848    * and current_source. also is it correct to copy your identity into a new
849    * address and then pass this address. address at which your identity is 
850    * stored should be const or else you may overwrite it and you lose your
851    * identity value.  */ 
852   
853   const struct GNUNET_PeerIdentity *my_identity;
854   struct GNUNET_PeerIdentity copy_my_identity;
855   my_identity = GDS_NEIGHBOURS_get_my_id ();
856   memcpy (&copy_my_identity, my_identity, sizeof(struct GNUNET_PeerIdentity));
857   GDS_NEIGHBOURS_send_get (&cqr->key, cqr->type, cqr->msg_options, 
858                            cqr->replication, &copy_my_identity, &copy_my_identity, NULL,
859                            0, 0, NULL);
860   
861   /* exponential back-off for retries.
862    * max GNUNET_TIME_STD_EXPONENTIAL_BACKOFF_THRESHOLD (15 min) */
863   cqr->retry_frequency = GNUNET_TIME_STD_BACKOFF (cqr->retry_frequency);
864   cqr->retry_time = GNUNET_TIME_relative_to_absolute (cqr->retry_frequency);
865 }
866
867
868 /**
869  * Task that looks at the 'retry_heap' and transmits all of the requests
870  * on the heap that are ready for transmission.  Then re-schedules
871  * itself (unless the heap is empty).
872  *
873  * @param cls unused
874  * @param tc scheduler context
875  */
876 static void
877 transmit_next_request_task (void *cls,
878                             const struct GNUNET_SCHEDULER_TaskContext *tc)
879 {
880   struct ClientQueryRecord *cqr;
881   struct GNUNET_TIME_Relative delay;
882
883   retry_task = GNUNET_SCHEDULER_NO_TASK;
884   if (0 != (tc->reason & GNUNET_SCHEDULER_REASON_SHUTDOWN))
885     return;
886   while (NULL != (cqr = GNUNET_CONTAINER_heap_remove_root (retry_heap)))
887   {
888     cqr->hnode = NULL;
889     delay = GNUNET_TIME_absolute_get_remaining (cqr->retry_time);
890     if (delay.rel_value_us > 0)
891     {
892       cqr->hnode =
893           GNUNET_CONTAINER_heap_insert (retry_heap, cqr,
894                                         cqr->retry_time.abs_value_us);
895       retry_task =
896           GNUNET_SCHEDULER_add_delayed (delay, &transmit_next_request_task,
897                                         NULL);
898       return;
899     }
900     transmit_request (cqr);
901     cqr->hnode =
902         GNUNET_CONTAINER_heap_insert (retry_heap, cqr,
903                                       cqr->retry_time.abs_value_us);
904   }
905 }
906
907
908 /**
909  * Handler for PUT messages.
910  *
911  * @param cls closure for the service
912  * @param client the client we received this message from
913  * @param message the actual message received
914  */
915 static void
916 handle_dht_local_put (void *cls, struct GNUNET_SERVER_Client *client,
917                       const struct GNUNET_MessageHeader *message)
918 {
919   const struct GNUNET_DHT_ClientPutMessage *put_msg;
920   struct PendingMessage *pm;
921   struct GNUNET_DHT_ClientPutConfirmationMessage *conf;
922   uint16_t size;
923   FPRINTF (stderr,_("\nSUPU %s, %s, %d"),__FILE__, __func__,__LINE__);
924   size = ntohs (message->size);
925   if (size < sizeof (struct GNUNET_DHT_ClientPutMessage))
926   {
927     GNUNET_break (0);
928     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
929     return;
930   }
931   GNUNET_STATISTICS_update (GDS_stats,
932                             gettext_noop
933                             ("# PUT requests received from clients"), 1,
934                             GNUNET_NO);
935   put_msg = (const struct GNUNET_DHT_ClientPutMessage *) message;
936   LOG_TRAFFIC (GNUNET_ERROR_TYPE_DEBUG, "R5N CLIENT-PUT %s\n",
937                GNUNET_h2s_full (&put_msg->key));
938   /* give to local clients */
939   LOG (GNUNET_ERROR_TYPE_DEBUG,
940        "Handling local PUT of %u-bytes for query %s\n",
941        size - sizeof (struct GNUNET_DHT_ClientPutMessage),
942        GNUNET_h2s (&put_msg->key));
943   
944   GDS_CLIENTS_handle_reply (GNUNET_TIME_absolute_ntoh (put_msg->expiration),
945                             &put_msg->key, 0, NULL, 0, NULL,
946                             ntohl (put_msg->type),
947                             size - sizeof (struct GNUNET_DHT_ClientPutMessage),
948                             &put_msg[1]);
949   /* FIXME: Should we store locally? */
950   GDS_DATACACHE_handle_put (GNUNET_TIME_absolute_ntoh (put_msg->expiration),
951                             &put_msg->key, 0, NULL, ntohl (put_msg->type),
952                             size - sizeof (struct GNUNET_DHT_ClientPutMessage),
953                             &put_msg[1]);
954   
955   /* FIXME: Is it correct to pass your identity as default current_destination
956    * and current_source. also is it correct to copy your identity into a new
957    * address and then pass this address. address at which your identity is 
958    * stored should be const or else you may overwrite it and you lose your
959    * identity value.  */
960   const struct GNUNET_PeerIdentity *my_identity;
961   struct GNUNET_PeerIdentity copy_my_identity;
962   my_identity = GDS_NEIGHBOURS_get_my_id();
963   memcpy (&copy_my_identity, my_identity, sizeof(struct GNUNET_PeerIdentity));
964   GDS_NEIGHBOURS_send_put (&put_msg->key, &put_msg[1],
965                            size - sizeof (struct GNUNET_DHT_ClientPutMessage),
966                            ntohl (put_msg->type), ntohl (put_msg->options),
967                            ntohl (put_msg->desired_replication_level),
968                            GNUNET_TIME_absolute_ntoh (put_msg->expiration),
969                            &copy_my_identity, &copy_my_identity, NULL, 0, 0, NULL);
970                            
971   
972   GDS_CLIENTS_process_put (ntohl (put_msg->options),
973                            ntohl (put_msg->type),
974                            0,
975                            ntohl (put_msg->desired_replication_level),
976                            1,
977                            GDS_NEIGHBOURS_get_my_id(),
978                            GNUNET_TIME_absolute_ntoh (put_msg->expiration),
979                            &put_msg->key,
980                            &put_msg[1],
981                            size - sizeof (struct GNUNET_DHT_ClientPutMessage));
982   
983   pm = GNUNET_malloc (sizeof (struct PendingMessage) +
984                       sizeof (struct GNUNET_DHT_ClientPutConfirmationMessage));
985   conf = (struct GNUNET_DHT_ClientPutConfirmationMessage *) &pm[1];
986   conf->header.size = htons (sizeof (struct GNUNET_DHT_ClientPutConfirmationMessage));
987   conf->header.type = htons (GNUNET_MESSAGE_TYPE_DHT_CLIENT_PUT_OK);
988   conf->reserved = htonl (0);
989   conf->unique_id = put_msg->unique_id;
990   pm->msg = &conf->header;
991   add_pending_message (find_active_client (client), pm);
992   GNUNET_SERVER_receive_done (client, GNUNET_OK);
993 }
994
995
996 /**
997  * Handler for DHT GET messages from the client.
998  *
999  * @param cls closure for the service
1000  * @param client the client we received this message from
1001  * @param message the actual message received
1002  */
1003 static void
1004 handle_dht_local_get (void *cls, struct GNUNET_SERVER_Client *client,
1005                       const struct GNUNET_MessageHeader *message)
1006 {
1007   const struct GNUNET_DHT_ClientGetMessage *get;
1008   struct ClientQueryRecord *cqr;
1009   size_t xquery_size;
1010   const char *xquery;
1011   uint16_t size;
1012
1013   size = ntohs (message->size);
1014   if (size < sizeof (struct GNUNET_DHT_ClientGetMessage))
1015   {
1016     GNUNET_break (0);
1017     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1018     return;
1019   }
1020   xquery_size = size - sizeof (struct GNUNET_DHT_ClientGetMessage);
1021   get = (const struct GNUNET_DHT_ClientGetMessage *) message;
1022   xquery = (const char *) &get[1];
1023   GNUNET_STATISTICS_update (GDS_stats,
1024                             gettext_noop
1025                             ("# GET requests received from clients"), 1,
1026                             GNUNET_NO);
1027   LOG (GNUNET_ERROR_TYPE_DEBUG,
1028        "Received GET request for %s from local client %p, xq: %.*s\n",
1029        GNUNET_h2s (&get->key), client, xquery_size, xquery);
1030
1031   LOG_TRAFFIC (GNUNET_ERROR_TYPE_DEBUG, "R5N CLIENT-GET %s\n",
1032                GNUNET_h2s_full (&get->key));
1033
1034
1035   cqr = GNUNET_malloc (sizeof (struct ClientQueryRecord) + xquery_size);
1036   cqr->key = get->key;
1037   cqr->client = find_active_client (client);
1038   cqr->xquery = (void *) &cqr[1];
1039   memcpy (&cqr[1], xquery, xquery_size);
1040   cqr->hnode = GNUNET_CONTAINER_heap_insert (retry_heap, cqr, 0);
1041   cqr->retry_frequency = GNUNET_TIME_UNIT_SECONDS;
1042   cqr->retry_time = GNUNET_TIME_absolute_get ();
1043   cqr->unique_id = get->unique_id;
1044   cqr->xquery_size = xquery_size;
1045   cqr->replication = ntohl (get->desired_replication_level);
1046   cqr->msg_options = ntohl (get->options);
1047   cqr->type = ntohl (get->type);
1048   // FIXME use cqr->key, set multihashmap create to GNUNET_YES
1049   GNUNET_CONTAINER_multihashmap_put (forward_map, &get->key, cqr,
1050                                      GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
1051   GDS_CLIENTS_process_get (ntohl (get->options),
1052                            ntohl (get->type),
1053                            0,
1054                            ntohl (get->desired_replication_level),
1055                            1,
1056                            GDS_NEIGHBOURS_get_my_id(),
1057                            &get->key);
1058   /* start remote requests */
1059   if (GNUNET_SCHEDULER_NO_TASK != retry_task)
1060     GNUNET_SCHEDULER_cancel (retry_task);
1061   retry_task = GNUNET_SCHEDULER_add_now (&transmit_next_request_task, NULL);
1062   /* perform local lookup 
1063    * FIXME: Should we call it here or in neighbours file. And how to handle
1064    * this case where we may get the data locally. You really need to rethink
1065    * this design again. 
1066   GDS_DATACACHE_handle_get (&get->key, cqr->type, cqr->xquery, xquery_size,
1067                             NULL, 0); */
1068   GNUNET_SERVER_receive_done (client, GNUNET_OK);
1069 }
1070
1071
1072 /**
1073  * Closure for 'find_by_unique_id'.
1074  */
1075 struct FindByUniqueIdContext
1076 {
1077   /**
1078    * Where to store the result, if found.
1079    */
1080   struct ClientQueryRecord *cqr;
1081
1082   uint64_t unique_id;
1083 };
1084
1085
1086 /**
1087  * Function called for each existing DHT record for the given
1088  * query.  Checks if it matches the UID given in the closure
1089  * and if so returns the entry as a result.
1090  *
1091  * @param cls the search context
1092  * @param key query for the lookup (not used)
1093  * @param value the 'struct ClientQueryRecord'
1094  * @return GNUNET_YES to continue iteration (result not yet found)
1095  */
1096 static int
1097 find_by_unique_id (void *cls,
1098                    const struct GNUNET_HashCode *key,
1099                    void *value)
1100 {
1101   struct FindByUniqueIdContext *fui_ctx = cls;
1102   struct ClientQueryRecord *cqr = value;
1103
1104   if (cqr->unique_id != fui_ctx->unique_id)
1105     return GNUNET_YES;
1106   fui_ctx->cqr = cqr;
1107   return GNUNET_NO;
1108 }
1109
1110
1111 /**
1112  * Handler for "GET result seen" messages from the client.
1113  *
1114  * @param cls closure for the service
1115  * @param client the client we received this message from
1116  * @param message the actual message received
1117  */
1118 static void
1119 handle_dht_local_get_result_seen (void *cls, struct GNUNET_SERVER_Client *client,
1120                                   const struct GNUNET_MessageHeader *message)
1121 {
1122   const struct GNUNET_DHT_ClientGetResultSeenMessage *seen;
1123   uint16_t size;
1124   unsigned int hash_count;
1125   unsigned int old_count;
1126   const struct GNUNET_HashCode *hc;
1127   struct FindByUniqueIdContext fui_ctx;
1128   struct ClientQueryRecord *cqr;
1129
1130   size = ntohs (message->size);
1131   if (size < sizeof (struct GNUNET_DHT_ClientGetResultSeenMessage))
1132   {
1133     GNUNET_break (0);
1134     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1135     return;
1136   }
1137   seen = (const struct GNUNET_DHT_ClientGetResultSeenMessage *) message;
1138   hash_count = (size - sizeof (struct GNUNET_DHT_ClientGetResultSeenMessage)) / sizeof (struct GNUNET_HashCode);
1139   if (size != sizeof (struct GNUNET_DHT_ClientGetResultSeenMessage) + hash_count * sizeof (struct GNUNET_HashCode))
1140   {
1141     GNUNET_break (0);
1142     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1143     return;
1144   }
1145   hc = (const struct GNUNET_HashCode*) &seen[1];
1146   fui_ctx.unique_id = seen->unique_id;
1147   fui_ctx.cqr = NULL;
1148   GNUNET_CONTAINER_multihashmap_get_multiple (forward_map,
1149                                               &seen->key,
1150                                               &find_by_unique_id,
1151                                               &fui_ctx);
1152   if (NULL == (cqr = fui_ctx.cqr))
1153   {
1154     GNUNET_break (0);
1155     GNUNET_SERVER_receive_done (client, GNUNET_SYSERR);
1156     return;
1157   }
1158   /* finally, update 'seen' list */
1159   old_count = cqr->seen_replies_count;
1160   GNUNET_array_grow (cqr->seen_replies,
1161                      cqr->seen_replies_count,
1162                      cqr->seen_replies_count + hash_count);
1163   memcpy (&cqr->seen_replies[old_count],
1164           hc,
1165           sizeof (struct GNUNET_HashCode) * hash_count);
1166 }
1167
1168
1169 /**
1170  * Closure for 'remove_by_unique_id'.
1171  */
1172 struct RemoveByUniqueIdContext
1173 {
1174   /**
1175    * Client that issued the removal request.
1176    */
1177   struct ClientList *client;
1178
1179   /**
1180    * Unique ID of the request.
1181    */
1182   uint64_t unique_id;
1183 };
1184
1185
1186 /**
1187  * Iterator over hash map entries that frees all entries
1188  * that match the given client and unique ID.
1189  *
1190  * @param cls unique ID and client to search for in source routes
1191  * @param key current key code
1192  * @param value value in the hash map, a ClientQueryRecord
1193  * @return GNUNET_YES (we should continue to iterate)
1194  */
1195 static int
1196 remove_by_unique_id (void *cls, const struct GNUNET_HashCode * key, void *value)
1197 {
1198   const struct RemoveByUniqueIdContext *ctx = cls;
1199   struct ClientQueryRecord *record = value;
1200
1201   if (record->unique_id != ctx->unique_id)
1202     return GNUNET_YES;
1203   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1204               "Removing client %p's record for key %s (by unique id)\n",
1205               ctx->client->client_handle, GNUNET_h2s (key));
1206   return remove_client_records (ctx->client, key, record);
1207 }
1208
1209
1210 /**
1211  * Handler for any generic DHT stop messages, calls the appropriate handler
1212  * depending on message type (if processed locally)
1213  *
1214  * @param cls closure for the service
1215  * @param client the client we received this message from
1216  * @param message the actual message received
1217  *
1218  */
1219 static void
1220 handle_dht_local_get_stop (void *cls, struct GNUNET_SERVER_Client *client,
1221                            const struct GNUNET_MessageHeader *message)
1222 {
1223   const struct GNUNET_DHT_ClientGetStopMessage *dht_stop_msg =
1224       (const struct GNUNET_DHT_ClientGetStopMessage *) message;
1225   struct RemoveByUniqueIdContext ctx;
1226
1227   GNUNET_STATISTICS_update (GDS_stats,
1228                             gettext_noop
1229                             ("# GET STOP requests received from clients"), 1,
1230                             GNUNET_NO);
1231   LOG (GNUNET_ERROR_TYPE_DEBUG,
1232        "Received GET STOP request for %s from local client %p\n",
1233        client, GNUNET_h2s (&dht_stop_msg->key));
1234   ctx.client = find_active_client (client);
1235   ctx.unique_id = dht_stop_msg->unique_id;
1236   GNUNET_CONTAINER_multihashmap_get_multiple (forward_map, &dht_stop_msg->key,
1237                                               &remove_by_unique_id, &ctx);
1238   GNUNET_SERVER_receive_done (client, GNUNET_OK);
1239 }
1240
1241
1242 /**
1243  * Handler for monitor start messages
1244  *
1245  * @param cls closure for the service
1246  * @param client the client we received this message from
1247  * @param message the actual message received
1248  *
1249  */
1250 static void
1251 handle_dht_local_monitor (void *cls, struct GNUNET_SERVER_Client *client,
1252                           const struct GNUNET_MessageHeader *message)
1253 {
1254   struct ClientMonitorRecord *r;
1255   const struct GNUNET_DHT_MonitorStartStopMessage *msg;
1256
1257   msg = (struct GNUNET_DHT_MonitorStartStopMessage *) message;
1258   r = GNUNET_new (struct ClientMonitorRecord);
1259
1260   r->client = find_active_client(client);
1261   r->type = ntohl(msg->type);
1262   r->get = ntohs(msg->get);
1263   r->get_resp = ntohs(msg->get_resp);
1264   r->put = ntohs(msg->put);
1265   if (0 == ntohs(msg->filter_key))
1266       r->key = NULL;
1267   else
1268   {
1269     r->key = GNUNET_new (struct GNUNET_HashCode);
1270     memcpy (r->key, &msg->key, sizeof (struct GNUNET_HashCode));
1271   }
1272   GNUNET_CONTAINER_DLL_insert (monitor_head, monitor_tail, r);
1273   GNUNET_SERVER_receive_done (client, GNUNET_OK);
1274 }
1275
1276
1277 /**
1278  * Handler for monitor stop messages
1279  *
1280  * @param cls closure for the service
1281  * @param client the client we received this message from
1282  * @param message the actual message received
1283  *
1284  */
1285 static void
1286 handle_dht_local_monitor_stop (void *cls, struct GNUNET_SERVER_Client *client,
1287                                const struct GNUNET_MessageHeader *message)
1288 {
1289   struct ClientMonitorRecord *r;
1290   const struct GNUNET_DHT_MonitorStartStopMessage *msg;
1291   int keys_match;
1292
1293   msg = (struct GNUNET_DHT_MonitorStartStopMessage *) message;
1294   r = monitor_head;
1295
1296   while (NULL != r)
1297   {
1298     if (NULL == r->key)
1299         keys_match = (0 == ntohs(msg->filter_key));
1300     else
1301     {
1302         keys_match = (0 != ntohs(msg->filter_key)
1303                       && !memcmp(r->key, &msg->key, sizeof(struct GNUNET_HashCode)));
1304     }
1305     if (find_active_client(client) == r->client
1306         && ntohl(msg->type) == r->type
1307         && r->get == msg->get
1308         && r->get_resp == msg->get_resp
1309         && r->put == msg->put
1310         && keys_match
1311         )
1312     {
1313         GNUNET_CONTAINER_DLL_remove (monitor_head, monitor_tail, r);
1314         GNUNET_free_non_null (r->key);
1315         GNUNET_free (r);
1316         GNUNET_SERVER_receive_done (client, GNUNET_OK);
1317         return; /* Delete only ONE entry */
1318     }
1319     r = r->next;
1320   }
1321
1322   GNUNET_SERVER_receive_done (client, GNUNET_OK);
1323 }
1324
1325
1326 /**
1327  * Functions with this signature are called whenever a client
1328  * is disconnected on the network level.
1329  *
1330  * @param cls closure (NULL for dht)
1331  * @param client identification of the client; NULL
1332  *        for the last call when the server is destroyed
1333  */
1334 static void
1335 handle_client_disconnect (void *cls,
1336                           struct GNUNET_SERVER_Client *client)
1337 {
1338   struct ClientList *pos;
1339   struct PendingMessage *reply;
1340   struct ClientMonitorRecord *monitor;
1341
1342   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1343               "Local client %p disconnects\n",
1344               client);
1345   pos = find_active_client (client);
1346   GNUNET_CONTAINER_DLL_remove (client_head, client_tail, pos);
1347   if (pos->transmit_handle != NULL)
1348     GNUNET_SERVER_notify_transmit_ready_cancel (pos->transmit_handle);
1349   while (NULL != (reply = pos->pending_head))
1350   {
1351     GNUNET_CONTAINER_DLL_remove (pos->pending_head, pos->pending_tail, reply);
1352     GNUNET_free (reply);
1353   }
1354   monitor = monitor_head;
1355   while (NULL != monitor)
1356   {
1357     if (monitor->client == pos)
1358     {
1359       struct ClientMonitorRecord *next;
1360
1361       GNUNET_free_non_null (monitor->key);
1362       next = monitor->next;
1363       GNUNET_CONTAINER_DLL_remove (monitor_head, monitor_tail, monitor);
1364       GNUNET_free (monitor);
1365       monitor = next;
1366     }
1367     else
1368       monitor = monitor->next;
1369   }
1370   GNUNET_CONTAINER_multihashmap_iterate (forward_map, &remove_client_records,
1371                                          pos);
1372   GNUNET_free (pos);
1373 }
1374
1375
1376
1377 /**
1378  * Initialize client subsystem.
1379  *
1380  * @param server the initialized server
1381  */
1382 void
1383 GDS_CLIENTS_init (struct GNUNET_SERVER_Handle *server)
1384 {
1385   static struct GNUNET_SERVER_MessageHandler plugin_handlers[] = {
1386     {&handle_dht_local_put, NULL,
1387      GNUNET_MESSAGE_TYPE_DHT_CLIENT_PUT, 0},
1388     {&handle_dht_local_get, NULL,
1389      GNUNET_MESSAGE_TYPE_DHT_CLIENT_GET, 0},
1390     {&handle_dht_local_get_stop, NULL,
1391      GNUNET_MESSAGE_TYPE_DHT_CLIENT_GET_STOP,
1392      sizeof (struct GNUNET_DHT_ClientGetStopMessage)},
1393     {&handle_dht_local_monitor, NULL,
1394      GNUNET_MESSAGE_TYPE_DHT_MONITOR_START,
1395      sizeof (struct GNUNET_DHT_MonitorStartStopMessage)},
1396     {&handle_dht_local_monitor_stop, NULL,
1397      GNUNET_MESSAGE_TYPE_DHT_MONITOR_STOP,
1398      sizeof (struct GNUNET_DHT_MonitorStartStopMessage)},
1399     {&handle_dht_local_get_result_seen, NULL,
1400      GNUNET_MESSAGE_TYPE_DHT_CLIENT_GET_RESULTS_KNOWN, 0},
1401     {NULL, NULL, 0, 0}
1402   };
1403   forward_map = GNUNET_CONTAINER_multihashmap_create (1024, GNUNET_NO);
1404   retry_heap = GNUNET_CONTAINER_heap_create (GNUNET_CONTAINER_HEAP_ORDER_MIN);
1405   GNUNET_SERVER_add_handlers (server, plugin_handlers);
1406   GNUNET_SERVER_disconnect_notify (server, &handle_client_disconnect, NULL);
1407 }
1408
1409
1410 /**
1411  * Shutdown client subsystem.
1412  */
1413 void
1414 GDS_CLIENTS_done ()
1415 {
1416   GNUNET_assert (client_head == NULL);
1417   GNUNET_assert (client_tail == NULL);
1418   if (GNUNET_SCHEDULER_NO_TASK != retry_task)
1419   {
1420     GNUNET_SCHEDULER_cancel (retry_task);
1421     retry_task = GNUNET_SCHEDULER_NO_TASK;
1422   }
1423   if (NULL != retry_heap)
1424   {
1425     GNUNET_assert (0 == GNUNET_CONTAINER_heap_get_size (retry_heap));
1426     GNUNET_CONTAINER_heap_destroy (retry_heap);
1427     retry_heap = NULL;
1428   }
1429   if (NULL != forward_map)
1430   {
1431     GNUNET_assert (0 == GNUNET_CONTAINER_multihashmap_size (forward_map));
1432     GNUNET_CONTAINER_multihashmap_destroy (forward_map);
1433     forward_map = NULL;
1434   }
1435 }
1436
1437 /* end of gnunet-service-dht_clients.c */