fixing shutdown timeout issue
[oweals/gnunet.git] / src / fs / gnunet-service-fs.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009, 2010 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 2, 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 fs/gnunet-service-fs.c
23  * @brief gnunet anonymity protocol implementation
24  * @author Christian Grothoff
25  *
26  * TODO:
27  * - have non-zero preference / priority for requests we initiate!
28  * - track stats for hot-path routing
29  * - implement hot-path routing decision procedure
30  * - implement: bound_priority, test_load_too_high, validate_skblock
31  * - add content migration support (store locally)
32  * - statistics
33  */
34 #include "platform.h"
35 #include <float.h>
36 #include "gnunet_constants.h"
37 #include "gnunet_core_service.h"
38 #include "gnunet_datastore_service.h"
39 #include "gnunet_peer_lib.h"
40 #include "gnunet_protocols.h"
41 #include "gnunet_signatures.h"
42 #include "gnunet_statistics_service.h"
43 #include "gnunet_util_lib.h"
44 #include "gnunet-service-fs_drq.h"
45 #include "gnunet-service-fs_indexing.h"
46 #include "fs.h"
47
48 #define DEBUG_FS GNUNET_NO
49
50 /**
51  * Maximum number of outgoing messages we queue per peer.
52  * FIXME: set to a tiny value for testing; make configurable.
53  */
54 #define MAX_QUEUE_PER_PEER 2
55
56
57 /**
58  * What is the maximum delay for a P2P FS message (in our interaction
59  * with core)?  FS-internal delays are another story.  The value is
60  * chosen based on the 32k block size.  Given that peers typcially
61  * have at least 1 kb/s bandwidth, 45s waits give us a chance to
62  * transmit one message even to the lowest-bandwidth peers.
63  */
64 #define MAX_TRANSMIT_DELAY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 45)
65
66
67
68 /**
69  * Maximum number of requests (from other peers) that we're
70  * willing to have pending at any given point in time.
71  * FIXME: set from configuration (and 32 is a tiny value for testing only).
72  */
73 static uint64_t max_pending_requests = 32;
74
75
76 /**
77  * Information we keep for each pending reply.  The
78  * actual message follows at the end of this struct.
79  */
80 struct PendingMessage;
81
82
83 /**
84  * Function called upon completion of a transmission.
85  *
86  * @param cls closure
87  * @param pid ID of receiving peer, 0 on transmission error
88  */
89 typedef void (*TransmissionContinuation)(void * cls, 
90                                          GNUNET_PEER_Id tpid);
91
92
93 /**
94  * Information we keep for each pending message (GET/PUT).  The
95  * actual message follows at the end of this struct.
96  */
97 struct PendingMessage
98 {
99   /**
100    * This is a doubly-linked list of messages to the same peer.
101    */
102   struct PendingMessage *next;
103
104   /**
105    * This is a doubly-linked list of messages to the same peer.
106    */
107   struct PendingMessage *prev;
108
109   /**
110    * Entry in pending message list for this pending message.
111    */ 
112   struct PendingMessageList *pml;  
113
114   /**
115    * Function to call immediately once we have transmitted this
116    * message.
117    */
118   TransmissionContinuation cont;
119
120   /**
121    * Closure for cont.
122    */
123   void *cont_cls;
124
125   /**
126    * Size of the reply; actual reply message follows
127    * at the end of this struct.
128    */
129   size_t msize;
130   
131   /**
132    * How important is this message for us?
133    */
134   uint32_t priority;
135  
136 };
137
138
139 /**
140  * Information about a peer that we are connected to.
141  * We track data that is useful for determining which
142  * peers should receive our requests.  We also keep
143  * a list of messages to transmit to this peer.
144  */
145 struct ConnectedPeer
146 {
147
148   /**
149    * List of the last clients for which this peer successfully
150    * answered a query.
151    */
152   struct GNUNET_SERVER_Client *last_client_replies[CS2P_SUCCESS_LIST_SIZE];
153
154   /**
155    * List of the last PIDs for which
156    * this peer successfully answered a query;
157    * We use 0 to indicate no successful reply.
158    */
159   GNUNET_PEER_Id last_p2p_replies[P2P_SUCCESS_LIST_SIZE];
160
161   /**
162    * Average delay between sending the peer a request and
163    * getting a reply (only calculated over the requests for
164    * which we actually got a reply).   Calculated
165    * as a moving average: new_delay = ((n-1)*last_delay+curr_delay) / n
166    */ 
167   struct GNUNET_TIME_Relative avg_delay;
168
169   /**
170    * Handle for an active request for transmission to this
171    * peer, or NULL.
172    */
173   struct GNUNET_CORE_TransmitHandle *cth;
174
175   /**
176    * Messages (replies, queries, content migration) we would like to
177    * send to this peer in the near future.  Sorted by priority, head.
178    */
179   struct PendingMessage *pending_messages_head;
180
181   /**
182    * Messages (replies, queries, content migration) we would like to
183    * send to this peer in the near future.  Sorted by priority, tail.
184    */
185   struct PendingMessage *pending_messages_tail;
186
187   /**
188    * Average priority of successful replies.  Calculated
189    * as a moving average: new_avg = ((n-1)*last_avg+curr_prio) / n
190    */
191   double avg_priority;
192
193   /**
194    * Increase in traffic preference still to be submitted
195    * to the core service for this peer. FIXME: double or 'uint64_t'?
196    */
197   double inc_preference;
198
199   /**
200    * The peer's identity.
201    */
202   GNUNET_PEER_Id pid;  
203
204   /**
205    * Size of the linked list of 'pending_messages'.
206    */
207   unsigned int pending_requests;
208
209   /**
210    * Which offset in "last_p2p_replies" will be updated next?
211    * (we go round-robin).
212    */
213   unsigned int last_p2p_replies_woff;
214
215   /**
216    * Which offset in "last_client_replies" will be updated next?
217    * (we go round-robin).
218    */
219   unsigned int last_client_replies_woff;
220
221 };
222
223
224 /**
225  * Information we keep for each pending request.  We should try to
226  * keep this struct as small as possible since its memory consumption
227  * is key to how many requests we can have pending at once.
228  */
229 struct PendingRequest;
230
231
232 /**
233  * Doubly-linked list of requests we are performing
234  * on behalf of the same client.
235  */
236 struct ClientRequestList
237 {
238
239   /**
240    * This is a doubly-linked list.
241    */
242   struct ClientRequestList *next;
243
244   /**
245    * This is a doubly-linked list.
246    */
247   struct ClientRequestList *prev;
248
249   /**
250    * Request this entry represents.
251    */
252   struct PendingRequest *req;
253
254   /**
255    * Client list this request belongs to.
256    */
257   struct ClientList *client_list;
258
259 };
260
261
262 /**
263  * Replies to be transmitted to the client.  The actual
264  * response message is allocated after this struct.
265  */
266 struct ClientResponseMessage
267 {
268   /**
269    * This is a doubly-linked list.
270    */
271   struct ClientResponseMessage *next;
272
273   /**
274    * This is a doubly-linked list.
275    */
276   struct ClientResponseMessage *prev;
277
278   /**
279    * Client list entry this response belongs to.
280    */
281   struct ClientList *client_list;
282
283   /**
284    * Number of bytes in the response.
285    */
286   size_t msize;
287 };
288
289
290 /**
291  * Linked list of clients we are performing requests
292  * for right now.
293  */
294 struct ClientList
295 {
296   /**
297    * This is a linked list.
298    */
299   struct ClientList *next;
300
301   /**
302    * ID of a client making a request, NULL if this entry is for a
303    * peer.
304    */
305   struct GNUNET_SERVER_Client *client;
306
307   /**
308    * Head of list of requests performed on behalf
309    * of this client right now.
310    */
311   struct ClientRequestList *rl_head;
312
313   /**
314    * Tail of list of requests performed on behalf
315    * of this client right now.
316    */
317   struct ClientRequestList *rl_tail;
318
319   /**
320    * Head of linked list of responses.
321    */
322   struct ClientResponseMessage *res_head;
323
324   /**
325    * Tail of linked list of responses.
326    */
327   struct ClientResponseMessage *res_tail;
328
329   /**
330    * Context for sending replies.
331    */
332   struct GNUNET_CONNECTION_TransmitHandle *th;
333
334 };
335
336
337 /**
338  * Doubly-linked list of messages we are performing
339  * due to a pending request.
340  */
341 struct PendingMessageList
342 {
343
344   /**
345    * This is a doubly-linked list of messages on behalf of the same request.
346    */
347   struct PendingMessageList *next;
348
349   /**
350    * This is a doubly-linked list of messages on behalf of the same request.
351    */
352   struct PendingMessageList *prev;
353
354   /**
355    * Message this entry represents.
356    */
357   struct PendingMessage *pm;
358
359   /**
360    * Request this entry belongs to.
361    */
362   struct PendingRequest *req;
363
364   /**
365    * Peer this message is targeted for.
366    */
367   struct ConnectedPeer *target;
368
369 };
370
371
372 /**
373  * Information we keep for each pending request.  We should try to
374  * keep this struct as small as possible since its memory consumption
375  * is key to how many requests we can have pending at once.
376  */
377 struct PendingRequest
378 {
379
380   /**
381    * If this request was made by a client, this is our entry in the
382    * client request list; otherwise NULL.
383    */
384   struct ClientRequestList *client_request_list;
385
386   /**
387    * Entry of peer responsible for this entry (if this request
388    * was made by a peer).
389    */
390   struct ConnectedPeer *cp;
391
392   /**
393    * If this is a namespace query, pointer to the hash of the public
394    * key of the namespace; otherwise NULL.  Pointer will be to the 
395    * end of this struct (so no need to free it).
396    */
397   const GNUNET_HashCode *namespace;
398
399   /**
400    * Bloomfilter we use to filter out replies that we don't care about
401    * (anymore).  NULL as long as we are interested in all replies.
402    */
403   struct GNUNET_CONTAINER_BloomFilter *bf;
404
405   /**
406    * Context of our GNUNET_CORE_peer_change_preference call.
407    */
408   struct GNUNET_CORE_InformationRequestContext *irc;
409
410   /**
411    * Hash code of all replies that we have seen so far (only valid
412    * if client is not NULL since we only track replies like this for
413    * our own clients).
414    */
415   GNUNET_HashCode *replies_seen;
416
417   /**
418    * Node in the heap representing this entry; NULL
419    * if we have no heap node.
420    */
421   struct GNUNET_CONTAINER_HeapNode *hnode;
422
423   /**
424    * Head of list of messages being performed on behalf of this
425    * request.
426    */
427   struct PendingMessageList *pending_head;
428
429   /**
430    * Tail of list of messages being performed on behalf of this
431    * request.
432    */
433   struct PendingMessageList *pending_tail;
434
435   /**
436    * When did we first see this request (form this peer), or, if our
437    * client is initiating, when did we last initiate a search?
438    */
439   struct GNUNET_TIME_Absolute start_time;
440
441   /**
442    * The query that this request is for.
443    */
444   GNUNET_HashCode query;
445
446   /**
447    * The task responsible for transmitting queries
448    * for this request.
449    */
450   GNUNET_SCHEDULER_TaskIdentifier task;
451
452   /**
453    * (Interned) Peer identifier that identifies a preferred target
454    * for requests.
455    */
456   GNUNET_PEER_Id target_pid;
457
458   /**
459    * (Interned) Peer identifiers of peers that have already
460    * received our query for this content.
461    */
462   GNUNET_PEER_Id *used_pids;
463   
464   /**
465    * Our entry in the DRQ (non-NULL while we wait for our
466    * turn to interact with the local database).
467    */
468   struct DatastoreRequestQueue *drq;
469
470   /**
471    * Size of the 'bf' (in bytes).
472    */
473   size_t bf_size;
474
475   /**
476    * Desired anonymity level; only valid for requests from a local client.
477    */
478   uint32_t anonymity_level;
479
480   /**
481    * How many entries in "used_pids" are actually valid?
482    */
483   unsigned int used_pids_off;
484
485   /**
486    * How long is the "used_pids" array?
487    */
488   unsigned int used_pids_size;
489
490   /**
491    * Number of results found for this request.
492    */
493   unsigned int results_found;
494
495   /**
496    * How many entries in "replies_seen" are actually valid?
497    */
498   unsigned int replies_seen_off;
499
500   /**
501    * How long is the "replies_seen" array?
502    */
503   unsigned int replies_seen_size;
504   
505   /**
506    * Priority with which this request was made.  If one of our clients
507    * made the request, then this is the current priority that we are
508    * using when initiating the request.  This value is used when
509    * we decide to reward other peers with trust for providing a reply.
510    */
511   uint32_t priority;
512
513   /**
514    * Priority points left for us to spend when forwarding this request
515    * to other peers.
516    */
517   uint32_t remaining_priority;
518
519   /**
520    * Number to mingle hashes for bloom-filter tests with.
521    */
522   int32_t mingle;
523
524   /**
525    * TTL with which we saw this request (or, if we initiated, TTL that
526    * we used for the request).
527    */
528   int32_t ttl;
529   
530   /**
531    * Type of the content that this request is for.
532    */
533   uint32_t type;
534
535 };
536
537
538 /**
539  * Our scheduler.
540  */
541 static struct GNUNET_SCHEDULER_Handle *sched;
542
543 /**
544  * Our configuration.
545  */
546 static const struct GNUNET_CONFIGURATION_Handle *cfg;
547
548 /**
549  * Map of peer identifiers to "struct ConnectedPeer" (for that peer).
550  */
551 static struct GNUNET_CONTAINER_MultiHashMap *connected_peers;
552
553 /**
554  * Map of peer identifiers to "struct PendingRequest" (for that peer).
555  */
556 static struct GNUNET_CONTAINER_MultiHashMap *peer_request_map;
557
558 /**
559  * Map of query identifiers to "struct PendingRequest" (for that query).
560  */
561 static struct GNUNET_CONTAINER_MultiHashMap *query_request_map;
562
563 /**
564  * Heap with the request that will expire next at the top.  Contains
565  * pointers of type "struct PendingRequest*"; these will *also* be
566  * aliased from the "requests_by_peer" data structures and the
567  * "requests_by_query" table.  Note that requests from our clients
568  * don't expire and are thus NOT in the "requests_by_expiration"
569  * (or the "requests_by_peer" tables).
570  */
571 static struct GNUNET_CONTAINER_Heap *requests_by_expiration_heap;
572
573 /**
574  * Handle for reporting statistics.
575  */
576 static struct GNUNET_STATISTICS_Handle *stats;
577
578 /**
579  * Linked list of clients we are currently processing requests for.
580  */
581 static struct ClientList *client_list;
582
583 /**
584  * Pointer to handle to the core service (points to NULL until we've
585  * connected to it).
586  */
587 static struct GNUNET_CORE_Handle *core;
588
589
590 /* ******************* clean up functions ************************ */
591
592
593 /**
594  * We're done with a particular message list entry.
595  * Free all associated resources.
596  * 
597  * @param pml entry to destroy
598  */
599 static void
600 destroy_pending_message_list_entry (struct PendingMessageList *pml)
601 {
602   GNUNET_CONTAINER_DLL_remove (pml->req->pending_head,
603                                pml->req->pending_tail,
604                                pml);
605   GNUNET_CONTAINER_DLL_remove (pml->target->pending_messages_head,
606                                pml->target->pending_messages_tail,
607                                pml->pm);
608   pml->target->pending_requests--;
609   GNUNET_free (pml->pm);
610   GNUNET_free (pml);
611 }
612
613
614 /**
615  * Destroy the given pending message (and call the respective
616  * continuation).
617  *
618  * @param pm message to destroy
619  * @param tpid id of peer that the message was delivered to, or 0 for none
620  */
621 static void
622 destroy_pending_message (struct PendingMessage *pm,
623                          GNUNET_PEER_Id tpid)
624 {
625   struct PendingMessageList *pml = pm->pml;
626   TransmissionContinuation cont;
627   void *cont_cls;
628
629   GNUNET_assert (pml->pm == pm);
630   GNUNET_assert ( (tpid == 0) || (tpid == pml->target->pid) );
631   cont = pm->cont;
632   cont_cls = pm->cont_cls;
633   destroy_pending_message_list_entry (pml);
634   cont (cont_cls, 0);  
635 }
636
637
638 /**
639  * We're done processing a particular request.
640  * Free all associated resources.
641  *
642  * @param pr request to destroy
643  */
644 static void
645 destroy_pending_request (struct PendingRequest *pr)
646 {
647   struct GNUNET_PeerIdentity pid;
648
649   if (pr->hnode != NULL)
650     {
651       GNUNET_CONTAINER_heap_remove_node (requests_by_expiration_heap,
652                                          pr->hnode);
653       pr->hnode = NULL;
654       GNUNET_STATISTICS_update (stats,
655                                 gettext_noop ("# P2P searches active"),
656                                 -1,
657                                 GNUNET_NO);
658     }
659   else
660     {
661       GNUNET_STATISTICS_update (stats,
662                                 gettext_noop ("# client searches active"),
663                                 -1,
664                                 GNUNET_NO);
665     }
666   /* might have already been removed from map in 'process_reply' (if
667      there was a unique reply) or never inserted if it was a
668      duplicate; hence ignore the return value here */
669   (void) GNUNET_CONTAINER_multihashmap_remove (query_request_map,
670                                                &pr->query,
671                                                pr);
672   if (pr->drq != NULL)
673     {
674       GNUNET_FS_drq_get_cancel (pr->drq);
675       pr->drq = NULL;
676     }
677   if (pr->client_request_list != NULL)
678     {
679       GNUNET_CONTAINER_DLL_remove (pr->client_request_list->client_list->rl_head,
680                                    pr->client_request_list->client_list->rl_tail,
681                                    pr->client_request_list);
682       GNUNET_free (pr->client_request_list);
683       pr->client_request_list = NULL;
684     }
685   if (pr->cp != NULL)
686     {
687       GNUNET_PEER_resolve (pr->cp->pid,
688                            &pid);
689       (void) GNUNET_CONTAINER_multihashmap_remove (peer_request_map,
690                                                    &pid.hashPubKey,
691                                                    pr);
692       pr->cp = NULL;
693     }
694   if (pr->bf != NULL)
695     {
696       GNUNET_CONTAINER_bloomfilter_free (pr->bf);                                        
697       pr->bf = NULL;
698     }
699   if (pr->irc != NULL)
700     {
701       GNUNET_CORE_peer_change_preference_cancel (pr->irc);
702       pr->irc = NULL;
703     }
704   if (pr->replies_seen != NULL)
705     {
706       GNUNET_free (pr->replies_seen);
707       pr->replies_seen = NULL;
708     }
709   if (pr->task != GNUNET_SCHEDULER_NO_TASK)
710     {
711       GNUNET_SCHEDULER_cancel (sched,
712                                pr->task);
713       pr->task = GNUNET_SCHEDULER_NO_TASK;
714     }
715   while (NULL != pr->pending_head)    
716     destroy_pending_message_list_entry (pr->pending_head);
717   GNUNET_PEER_change_rc (pr->target_pid, -1);
718   if (pr->used_pids != NULL)
719     {
720       GNUNET_PEER_decrement_rcs (pr->used_pids, pr->used_pids_off);
721       GNUNET_free (pr->used_pids);
722       pr->used_pids_off = 0;
723       pr->used_pids_size = 0;
724       pr->used_pids = NULL;
725     }
726   GNUNET_free (pr);
727 }
728
729
730 /**
731  * Method called whenever a given peer connects.
732  *
733  * @param cls closure, not used
734  * @param peer peer identity this notification is about
735  * @param latency reported latency of the connection with 'other'
736  * @param distance reported distance (DV) to 'other' 
737  */
738 static void 
739 peer_connect_handler (void *cls,
740                       const struct
741                       GNUNET_PeerIdentity * peer,
742                       struct GNUNET_TIME_Relative latency,
743                       uint32_t distance)
744 {
745   struct ConnectedPeer *cp;
746
747   cp = GNUNET_malloc (sizeof (struct ConnectedPeer));
748   cp->pid = GNUNET_PEER_intern (peer);
749   GNUNET_CONTAINER_multihashmap_put (connected_peers,
750                                      &peer->hashPubKey,
751                                      cp,
752                                      GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY);
753 }
754
755
756 /**
757  * Free (each) request made by the peer.
758  *
759  * @param cls closure, points to peer that the request belongs to
760  * @param key current key code
761  * @param value value in the hash map
762  * @return GNUNET_YES (we should continue to iterate)
763  */
764 static int
765 destroy_request (void *cls,
766                  const GNUNET_HashCode * key,
767                  void *value)
768 {
769   const struct GNUNET_PeerIdentity * peer = cls;
770   struct PendingRequest *pr = value;
771   
772   GNUNET_CONTAINER_multihashmap_remove (peer_request_map,
773                                         &peer->hashPubKey,
774                                         pr);
775   destroy_pending_request (pr);
776   return GNUNET_YES;
777 }
778
779
780 /**
781  * Method called whenever a peer disconnects.
782  *
783  * @param cls closure, not used
784  * @param peer peer identity this notification is about
785  */
786 static void
787 peer_disconnect_handler (void *cls,
788                          const struct
789                          GNUNET_PeerIdentity * peer)
790 {
791   struct ConnectedPeer *cp;
792   struct PendingMessage *pm;
793   unsigned int i;
794
795   GNUNET_CONTAINER_multihashmap_get_multiple (peer_request_map,
796                                               &peer->hashPubKey,
797                                               &destroy_request,
798                                               (void*) peer);
799   cp = GNUNET_CONTAINER_multihashmap_get (connected_peers,
800                                           &peer->hashPubKey);
801   if (cp == NULL)
802     return;
803   for (i=0;i<CS2P_SUCCESS_LIST_SIZE;i++)
804     {
805       if (NULL != cp->last_client_replies[i])
806         {
807           GNUNET_SERVER_client_drop (cp->last_client_replies[i]);
808           cp->last_client_replies[i] = NULL;
809         }
810     }
811   GNUNET_CONTAINER_multihashmap_remove (connected_peers,
812                                         &peer->hashPubKey,
813                                         cp);
814   GNUNET_PEER_change_rc (cp->pid, -1);
815   GNUNET_PEER_decrement_rcs (cp->last_p2p_replies, P2P_SUCCESS_LIST_SIZE);
816   if (NULL != cp->cth)
817     GNUNET_CORE_notify_transmit_ready_cancel (cp->cth);
818   while (NULL != (pm = cp->pending_messages_head))
819     destroy_pending_message (pm, 0 /* delivery failed */);
820   GNUNET_break (0 == cp->pending_requests);
821   GNUNET_free (cp);
822 }
823
824
825 /**
826  * Iterator over hash map entries that removes all occurences
827  * of the given 'client' from the 'last_client_replies' of the
828  * given connected peer.
829  *
830  * @param cls closure, the 'struct GNUNET_SERVER_Client*' to remove
831  * @param key current key code (unused)
832  * @param value value in the hash map (the 'struct ConnectedPeer*' to change)
833  * @return GNUNET_YES (we should continue to iterate)
834  */
835 static int
836 remove_client_from_last_client_replies (void *cls,
837                                         const GNUNET_HashCode * key,
838                                         void *value)
839 {
840   struct GNUNET_SERVER_Client *client = cls;
841   struct ConnectedPeer *cp = value;
842   unsigned int i;
843
844   for (i=0;i<CS2P_SUCCESS_LIST_SIZE;i++)
845     {
846       if (cp->last_client_replies[i] == client)
847         {
848           GNUNET_SERVER_client_drop (cp->last_client_replies[i]);
849           cp->last_client_replies[i] = NULL;
850         }
851     }  
852   return GNUNET_YES;
853 }
854
855
856 /**
857  * A client disconnected.  Remove all of its pending queries.
858  *
859  * @param cls closure, NULL
860  * @param client identification of the client
861  */
862 static void
863 handle_client_disconnect (void *cls,
864                           struct GNUNET_SERVER_Client
865                           * client)
866 {
867   struct ClientList *pos;
868   struct ClientList *prev;
869   struct ClientRequestList *rcl;
870   struct ClientResponseMessage *creply;
871
872   if (client == NULL)
873     return;
874   prev = NULL;
875   pos = client_list;
876   while ( (NULL != pos) &&
877           (pos->client != client) )
878     {
879       prev = pos;
880       pos = pos->next;
881     }
882   if (pos == NULL)
883     return; /* no requests pending for this client */
884   while (NULL != (rcl = pos->rl_head))
885     destroy_pending_request (rcl->req);
886   if (prev == NULL)
887     client_list = pos->next;
888   else
889     prev->next = pos->next;
890   if (pos->th != NULL)
891     {
892       GNUNET_CONNECTION_notify_transmit_ready_cancel (pos->th);
893       pos->th = NULL;
894     }
895   while (NULL != (creply = pos->res_head))
896     {
897       GNUNET_CONTAINER_DLL_remove (pos->res_head,
898                                    pos->res_tail,
899                                    creply);
900       GNUNET_free (creply);
901     }    
902   GNUNET_SERVER_client_drop (pos->client);
903   GNUNET_free (pos);
904   GNUNET_CONTAINER_multihashmap_iterate (connected_peers,
905                                          &remove_client_from_last_client_replies,
906                                          client);
907 }
908
909
910 /**
911  * Iterator to free peer entries.
912  *
913  * @param cls closure, unused
914  * @param key current key code
915  * @param value value in the hash map (peer entry)
916  * @return GNUNET_YES (we should continue to iterate)
917  */
918 static int 
919 clean_peer (void *cls,
920             const GNUNET_HashCode * key,
921             void *value)
922 {
923   peer_disconnect_handler (NULL, (const struct GNUNET_PeerIdentity*) key);
924   return GNUNET_YES;
925 }
926
927
928 /**
929  * Task run during shutdown.
930  *
931  * @param cls unused
932  * @param tc unused
933  */
934 static void
935 shutdown_task (void *cls,
936                const struct GNUNET_SCHEDULER_TaskContext *tc)
937 {
938   while (client_list != NULL)
939     handle_client_disconnect (NULL,
940                               client_list->client);
941   GNUNET_CONTAINER_multihashmap_iterate (connected_peers,
942                                          &clean_peer,
943                                          NULL);
944   GNUNET_break (0 == GNUNET_CONTAINER_heap_get_size (requests_by_expiration_heap));
945   GNUNET_CONTAINER_heap_destroy (requests_by_expiration_heap);
946   requests_by_expiration_heap = 0;
947   GNUNET_CONTAINER_multihashmap_destroy (connected_peers);
948   connected_peers = NULL;
949   GNUNET_break (0 == GNUNET_CONTAINER_multihashmap_size (query_request_map));
950   GNUNET_CONTAINER_multihashmap_destroy (query_request_map);
951   query_request_map = NULL;
952   GNUNET_break (0 == GNUNET_CONTAINER_multihashmap_size (peer_request_map));
953   GNUNET_CONTAINER_multihashmap_destroy (peer_request_map);
954   peer_request_map = NULL;
955   GNUNET_assert (NULL != core);
956   GNUNET_CORE_disconnect (core);
957   core = NULL;
958   if (stats != NULL)
959     {
960       GNUNET_STATISTICS_destroy (stats, GNUNET_NO);
961       stats = NULL;
962     }
963   sched = NULL;
964   cfg = NULL;  
965 }
966
967
968 /* ******************* Utility functions  ******************** */
969
970
971 /**
972  * Transmit the given message by copying it to the target buffer
973  * "buf".  "buf" will be NULL and "size" zero if the socket was closed
974  * for writing in the meantime.  In that case, do nothing
975  * (the disconnect or shutdown handler will take care of the rest).
976  * If we were able to transmit messages and there are still more
977  * pending, ask core again for further calls to this function.
978  *
979  * @param cls closure, pointer to the 'struct ConnectedPeer*'
980  * @param size number of bytes available in buf
981  * @param buf where the callee should write the message
982  * @return number of bytes written to buf
983  */
984 static size_t
985 transmit_to_peer (void *cls,
986                   size_t size, void *buf)
987 {
988   struct ConnectedPeer *cp = cls;
989   char *cbuf = buf;
990   struct GNUNET_PeerIdentity pid;
991   struct PendingMessage *pm;
992   size_t msize;
993   
994   cp->cth = NULL;
995   if (NULL == buf)
996     {
997 #if DEBUG_FS
998       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
999                   "Dropping message, core too busy.\n");
1000 #endif
1001       return 0;
1002     }
1003   msize = 0;
1004   while ( (NULL != (pm = cp->pending_messages_head) ) &&
1005           (pm->msize <= size) )
1006     {
1007       memcpy (&cbuf[msize], &pm[1], pm->msize);
1008       msize += pm->msize;
1009       size -= pm->msize;
1010       destroy_pending_message (pm, cp->pid);
1011     }
1012   if (NULL != pm)
1013     {
1014       GNUNET_PEER_resolve (cp->pid,
1015                            &pid);
1016       cp->cth = GNUNET_CORE_notify_transmit_ready (core,
1017                                                    pm->priority,
1018                                                    GNUNET_CONSTANTS_SERVICE_TIMEOUT,
1019                                                    &pid,
1020                                                    pm->msize,
1021                                                    &transmit_to_peer,
1022                                                    pm);
1023     }
1024 #if DEBUG_FS > 2
1025   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1026               "Transmitting %u bytes to peer %u.\n",
1027               msize,
1028               cp->pid);
1029 #endif
1030   return msize;
1031 }
1032
1033
1034 /**
1035  * Add a message to the set of pending messages for the given peer.
1036  *
1037  * @param cp peer to send message to
1038  * @param pm message to queue
1039  * @param pr request on which behalf this message is being queued
1040  */
1041 static void
1042 add_to_pending_messages_for_peer (struct ConnectedPeer *cp,
1043                                   struct PendingMessage *pm,
1044                                   struct PendingRequest *pr)
1045 {
1046   struct PendingMessage *pos;
1047   struct PendingMessageList *pml;
1048   struct GNUNET_PeerIdentity pid;
1049
1050   GNUNET_assert (pm->next == NULL);
1051   GNUNET_assert (pm->pml == NULL);    
1052   pml = GNUNET_malloc (sizeof (struct PendingMessageList));
1053   pml->req = pr;
1054   pml->target = cp;
1055   pml->pm = pm;
1056   pm->pml = pml;  
1057   GNUNET_CONTAINER_DLL_insert (pr->pending_head,
1058                                pr->pending_tail,
1059                                pml);
1060   pos = cp->pending_messages_head;
1061   while ( (pos != NULL) &&
1062           (pm->priority < pos->priority) )
1063     pos = pos->next;    
1064   GNUNET_CONTAINER_DLL_insert_after (cp->pending_messages_head,
1065                                      cp->pending_messages_tail,
1066                                      pos,
1067                                      pm);
1068   cp->pending_requests++;
1069   if (cp->pending_requests > MAX_QUEUE_PER_PEER)
1070     destroy_pending_message (cp->pending_messages_tail, 0);  
1071   if (cp->cth == NULL)
1072     {
1073       /* need to schedule transmission */
1074       GNUNET_PEER_resolve (cp->pid, &pid);
1075       cp->cth = GNUNET_CORE_notify_transmit_ready (core,
1076                                                    cp->pending_messages_head->priority,
1077                                                    MAX_TRANSMIT_DELAY,
1078                                                    &pid,
1079                                                    cp->pending_messages_head->msize,
1080                                                    &transmit_to_peer,
1081                                                    cp);
1082     }
1083   if (cp->cth == NULL)
1084     {
1085 #if DEBUG_FS
1086       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1087                   "Failed to schedule transmission with core!\n");
1088 #endif
1089       /* FIXME: call stats (rare, bad case) */
1090     }
1091 }
1092
1093
1094 /**
1095  * Mingle hash with the mingle_number to produce different bits.
1096  */
1097 static void
1098 mingle_hash (const GNUNET_HashCode * in,
1099              int32_t mingle_number, 
1100              GNUNET_HashCode * hc)
1101 {
1102   GNUNET_HashCode m;
1103
1104   GNUNET_CRYPTO_hash (&mingle_number, 
1105                       sizeof (int32_t), 
1106                       &m);
1107   GNUNET_CRYPTO_hash_xor (&m, in, hc);
1108 }
1109
1110
1111 /**
1112  * Test if the load on this peer is too high
1113  * to even consider processing the query at
1114  * all.
1115  * 
1116  * @return GNUNET_YES if the load is too high, GNUNET_NO otherwise
1117  */
1118 static int
1119 test_load_too_high ()
1120 {
1121   return GNUNET_NO; // FIXME
1122 }
1123
1124
1125 /* ******************* Pending Request Refresh Task ******************** */
1126
1127
1128
1129 /**
1130  * We use a random delay to make the timing of requests less
1131  * predictable.  This function returns such a random delay.
1132  *
1133  * FIXME: make schedule dependent on the specifics of the request?
1134  * Or bandwidth and number of connected peers and load?
1135  *
1136  * @return random delay to use for some request, between 0 and TTL_DECREMENT ms
1137  */
1138 static struct GNUNET_TIME_Relative
1139 get_processing_delay ()
1140 {
1141   return GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MILLISECONDS,
1142                                         GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK,
1143                                                                   TTL_DECREMENT));
1144 }
1145
1146
1147 /**
1148  * We're processing a GET request from another peer and have decided
1149  * to forward it to other peers.  This function is called periodically
1150  * and should forward the request to other peers until we have all
1151  * possible replies.  If we have transmitted the *only* reply to
1152  * the initiator we should destroy the pending request.  If we have
1153  * many replies in the queue to the initiator, we should delay sending
1154  * out more queries until the reply queue has shrunk some.
1155  *
1156  * @param cls our "struct ProcessGetContext *"
1157  * @param tc unused
1158  */
1159 static void
1160 forward_request_task (void *cls,
1161                       const struct GNUNET_SCHEDULER_TaskContext *tc);
1162
1163
1164 /**
1165  * Function called after we either failed or succeeded
1166  * at transmitting a query to a peer.  
1167  *
1168  * @param cls the requests "struct PendingRequest*"
1169  * @param tpid ID of receiving peer, 0 on transmission error
1170  */
1171 static void
1172 transmit_query_continuation (void *cls,
1173                              GNUNET_PEER_Id tpid)
1174 {
1175   struct PendingRequest *pr = cls;
1176
1177   if (tpid == 0)   
1178     {
1179       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1180                   "Transmission of request failed, will try again later.\n");
1181       pr->task = GNUNET_SCHEDULER_add_delayed (sched,
1182                                                get_processing_delay (),
1183                                                &forward_request_task,
1184                                                pr); 
1185       return;    
1186     }
1187   GNUNET_STATISTICS_update (stats,
1188                             gettext_noop ("# queries forwarded"),
1189                             1,
1190                             GNUNET_NO);
1191   GNUNET_PEER_change_rc (tpid, 1);
1192   if (pr->used_pids_off == pr->used_pids_size)
1193     GNUNET_array_grow (pr->used_pids,
1194                        pr->used_pids_size,
1195                        pr->used_pids_size * 2 + 2);
1196   pr->used_pids[pr->used_pids_off++] = tpid;
1197   pr->task = GNUNET_SCHEDULER_add_delayed (sched,
1198                                            get_processing_delay (),
1199                                            &forward_request_task,
1200                                            pr);
1201 }
1202
1203
1204 /**
1205  * How many bytes should a bloomfilter be if we have already seen
1206  * entry_count responses?  Note that BLOOMFILTER_K gives us the number
1207  * of bits set per entry.  Furthermore, we should not re-size the
1208  * filter too often (to keep it cheap).
1209  *
1210  * Since other peers will also add entries but not resize the filter,
1211  * we should generally pick a slightly larger size than what the
1212  * strict math would suggest.
1213  *
1214  * @return must be a power of two and smaller or equal to 2^15.
1215  */
1216 static size_t
1217 compute_bloomfilter_size (unsigned int entry_count)
1218 {
1219   size_t size;
1220   unsigned int ideal = (entry_count * BLOOMFILTER_K) / 4;
1221   uint16_t max = 1 << 15;
1222
1223   if (entry_count > max)
1224     return max;
1225   size = 8;
1226   while ((size < max) && (size < ideal))
1227     size *= 2;
1228   if (size > max)
1229     return max;
1230   return size;
1231 }
1232
1233
1234 /**
1235  * Recalculate our bloom filter for filtering replies.
1236  *
1237  * @param count number of entries we are filtering right now
1238  * @param mingle set to our new mingling value
1239  * @param bf_size set to the size of the bloomfilter
1240  * @param entries the entries to filter
1241  * @return updated bloomfilter, NULL for none
1242  */
1243 static struct GNUNET_CONTAINER_BloomFilter *
1244 refresh_bloomfilter (unsigned int count,
1245                      int32_t * mingle,
1246                      size_t *bf_size,
1247                      const GNUNET_HashCode *entries)
1248 {
1249   struct GNUNET_CONTAINER_BloomFilter *bf;
1250   size_t nsize;
1251   unsigned int i;
1252   GNUNET_HashCode mhash;
1253
1254   if (0 == count)
1255     return NULL;
1256   nsize = compute_bloomfilter_size (count);
1257   *mingle = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, -1);
1258   *bf_size = nsize;
1259   bf = GNUNET_CONTAINER_bloomfilter_init (NULL, 
1260                                           nsize,
1261                                           BLOOMFILTER_K);
1262   for (i=0;i<count;i++)
1263     {
1264       mingle_hash (&entries[i], *mingle, &mhash);
1265       GNUNET_CONTAINER_bloomfilter_add (bf, &mhash);
1266     }
1267   return bf;
1268 }
1269
1270
1271 /**
1272  * Function called after we've tried to reserve a certain amount of
1273  * bandwidth for a reply.  Check if we succeeded and if so send our
1274  * query.
1275  *
1276  * @param cls the requests "struct PendingRequest*"
1277  * @param peer identifies the peer
1278  * @param bpm_in set to the current bandwidth limit (receiving) for this peer
1279  * @param bpm_out set to the current bandwidth limit (sending) for this peer
1280  * @param amount set to the amount that was actually reserved or unreserved
1281  * @param preference current traffic preference for the given peer
1282  */
1283 static void
1284 target_reservation_cb (void *cls,
1285                        const struct
1286                        GNUNET_PeerIdentity * peer,
1287                        struct GNUNET_BANDWIDTH_Value32NBO bpm_in,
1288                        struct GNUNET_BANDWIDTH_Value32NBO bpm_out,
1289                        int amount,
1290                        uint64_t preference)
1291 {
1292   struct PendingRequest *pr = cls;
1293   struct ConnectedPeer *cp;
1294   struct PendingMessage *pm;
1295   struct GetMessage *gm;
1296   GNUNET_HashCode *ext;
1297   char *bfdata;
1298   size_t msize;
1299   unsigned int k;
1300   int no_route;
1301   uint32_t bm;
1302
1303   pr->irc = NULL;
1304   GNUNET_assert (peer != NULL);
1305   // (3) transmit, update ttl/priority
1306   cp = GNUNET_CONTAINER_multihashmap_get (connected_peers,
1307                                           &peer->hashPubKey);
1308   if (cp == NULL)
1309     {
1310       /* Peer must have just left */
1311 #if DEBUG_FS
1312       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1313                   "Selected peer disconnected!\n");
1314 #endif
1315       pr->task = GNUNET_SCHEDULER_add_delayed (sched,
1316                                                get_processing_delay (),
1317                                                &forward_request_task,
1318                                                pr);
1319       return;
1320     }
1321   no_route = GNUNET_NO;
1322   /* FIXME: check against DBLOCK_SIZE and possibly return
1323      amount to reserve; however, this also needs to work
1324      with testcases which currently start out with a far
1325      too low per-peer bw limit, so they would never send
1326      anything.  Big issue. */
1327   if (amount == 0)
1328     {
1329       if (pr->cp == NULL)
1330         {
1331 #if DEBUG_FS > 1
1332           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1333                       "Failed to reserve bandwidth for reply (got %d/%u bytes only)!\n",
1334                       amount,
1335                       DBLOCK_SIZE);
1336 #endif
1337           GNUNET_STATISTICS_update (stats,
1338                                     gettext_noop ("# reply bandwidth reservation requests failed"),
1339                                     1,
1340                                     GNUNET_NO);
1341           pr->task = GNUNET_SCHEDULER_add_delayed (sched,
1342                                                    get_processing_delay (),
1343                                                    &forward_request_task,
1344                                                    pr);
1345           return;  /* this target round failed */
1346         }
1347       /* FIXME: if we are "quite" busy, we may still want to skip
1348          this round; need more load detection code! */
1349       no_route = GNUNET_YES;
1350     }
1351   
1352   GNUNET_STATISTICS_update (stats,
1353                             gettext_noop ("# requests forwarded"),
1354                             1,
1355                             GNUNET_NO);
1356   /* build message and insert message into priority queue */
1357 #if DEBUG_FS
1358   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1359               "Forwarding request `%s' to `%4s'!\n",
1360               GNUNET_h2s (&pr->query),
1361               GNUNET_i2s (peer));
1362 #endif
1363   k = 0;
1364   bm = 0;
1365   if (GNUNET_YES == no_route)
1366     {
1367       bm |= GET_MESSAGE_BIT_RETURN_TO;
1368       k++;      
1369     }
1370   if (pr->namespace != NULL)
1371     {
1372       bm |= GET_MESSAGE_BIT_SKS_NAMESPACE;
1373       k++;
1374     }
1375   if (pr->target_pid != 0)
1376     {
1377       bm |= GET_MESSAGE_BIT_TRANSMIT_TO;
1378       k++;
1379     }
1380   msize = sizeof (struct GetMessage) + pr->bf_size + k * sizeof(GNUNET_HashCode);
1381   GNUNET_assert (msize < GNUNET_SERVER_MAX_MESSAGE_SIZE);
1382   pm = GNUNET_malloc (sizeof (struct PendingMessage) + msize);
1383   pm->msize = msize;
1384   gm = (struct GetMessage*) &pm[1];
1385   gm->header.type = htons (GNUNET_MESSAGE_TYPE_FS_GET);
1386   gm->header.size = htons (msize);
1387   gm->type = htonl (pr->type);
1388   pr->remaining_priority /= 2;
1389   gm->priority = htonl (pr->remaining_priority);
1390   gm->ttl = htonl (pr->ttl);
1391   gm->filter_mutator = htonl(pr->mingle); 
1392   gm->hash_bitmap = htonl (bm);
1393   gm->query = pr->query;
1394   ext = (GNUNET_HashCode*) &gm[1];
1395   k = 0;
1396   if (GNUNET_YES == no_route)
1397     GNUNET_PEER_resolve (pr->cp->pid, (struct GNUNET_PeerIdentity*) &ext[k++]);
1398   if (pr->namespace != NULL)
1399     memcpy (&ext[k++], pr->namespace, sizeof (GNUNET_HashCode));
1400   if (pr->target_pid != 0)
1401     GNUNET_PEER_resolve (pr->target_pid, (struct GNUNET_PeerIdentity*) &ext[k++]);
1402   bfdata = (char *) &ext[k];
1403   if (pr->bf != NULL)
1404     GNUNET_CONTAINER_bloomfilter_get_raw_data (pr->bf,
1405                                                bfdata,
1406                                                pr->bf_size);
1407   pm->cont = &transmit_query_continuation;
1408   pm->cont_cls = pr;
1409   add_to_pending_messages_for_peer (cp, pm, pr);
1410 }
1411
1412
1413 /**
1414  * Closure used for "target_peer_select_cb".
1415  */
1416 struct PeerSelectionContext 
1417 {
1418   /**
1419    * The request for which we are selecting
1420    * peers.
1421    */
1422   struct PendingRequest *pr;
1423
1424   /**
1425    * Current "prime" target.
1426    */
1427   struct GNUNET_PeerIdentity target;
1428
1429   /**
1430    * How much do we like this target?
1431    */
1432   double target_score;
1433
1434 };
1435
1436
1437 /**
1438  * Function called for each connected peer to determine
1439  * which one(s) would make good targets for forwarding.
1440  *
1441  * @param cls closure (struct PeerSelectionContext)
1442  * @param key current key code (peer identity)
1443  * @param value value in the hash map (struct ConnectedPeer)
1444  * @return GNUNET_YES if we should continue to
1445  *         iterate,
1446  *         GNUNET_NO if not.
1447  */
1448 static int
1449 target_peer_select_cb (void *cls,
1450                        const GNUNET_HashCode * key,
1451                        void *value)
1452 {
1453   struct PeerSelectionContext *psc = cls;
1454   struct ConnectedPeer *cp = value;
1455   struct PendingRequest *pr = psc->pr;
1456   double score;
1457   unsigned int i;
1458   
1459   /* 1) check if we have already (recently) forwarded to this peer */
1460   for (i=0;i<pr->used_pids_off;i++)
1461     if (pr->used_pids[i] == cp->pid)
1462       return GNUNET_YES; /* skip */
1463   // 2) calculate how much we'd like to forward to this peer
1464   score = 42; // FIXME!
1465   // FIXME: also need API to gather data on responsiveness
1466   // of this peer (we have fields for that in 'cp', but
1467   // they are never set!)
1468   
1469   /* store best-fit in closure */
1470   if (score > psc->target_score)
1471     {
1472       psc->target_score = score;
1473       psc->target.hashPubKey = *key; 
1474     }
1475   return GNUNET_YES;
1476 }
1477   
1478
1479 /**
1480  * We're processing a GET request from another peer and have decided
1481  * to forward it to other peers.  This function is called periodically
1482  * and should forward the request to other peers until we have all
1483  * possible replies.  If we have transmitted the *only* reply to
1484  * the initiator we should destroy the pending request.  If we have
1485  * many replies in the queue to the initiator, we should delay sending
1486  * out more queries until the reply queue has shrunk some.
1487  *
1488  * @param cls our "struct ProcessGetContext *"
1489  * @param tc unused
1490  */
1491 static void
1492 forward_request_task (void *cls,
1493                      const struct GNUNET_SCHEDULER_TaskContext *tc)
1494 {
1495   struct PendingRequest *pr = cls;
1496   struct PeerSelectionContext psc;
1497   struct ConnectedPeer *cp; 
1498
1499   pr->task = GNUNET_SCHEDULER_NO_TASK;
1500   GNUNET_assert (pr->irc == NULL);
1501   /* (1) select target */
1502   psc.pr = pr;
1503   psc.target_score = DBL_MIN;
1504   GNUNET_CONTAINER_multihashmap_iterate (connected_peers,
1505                                          &target_peer_select_cb,
1506                                          &psc);  
1507   if (psc.target_score == DBL_MIN)
1508     {
1509 #if DEBUG_FS
1510       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1511                   "No peer selected for forwarding!\n");
1512 #endif
1513       pr->task = GNUNET_SCHEDULER_add_delayed (sched,
1514                                                get_processing_delay (),
1515                                                &forward_request_task,
1516                                                pr);
1517       return; /* nobody selected */
1518     }
1519
1520   /* (2) reserve reply bandwidth */
1521   cp = GNUNET_CONTAINER_multihashmap_get (connected_peers,
1522                                           &psc.target.hashPubKey);
1523   pr->irc = GNUNET_CORE_peer_change_preference (sched, cfg,
1524                                                 &psc.target,
1525                                                 GNUNET_CONSTANTS_SERVICE_TIMEOUT, 
1526                                                 GNUNET_BANDWIDTH_value_init ((uint32_t) -1 /* no limit */), 
1527                                                 DBLOCK_SIZE, 
1528                                                 (uint64_t) cp->inc_preference,
1529                                                 &target_reservation_cb,
1530                                                 pr);
1531   cp->inc_preference = 0.0;
1532 }
1533
1534
1535 /* **************************** P2P PUT Handling ************************ */
1536
1537
1538 /**
1539  * Function called after we either failed or succeeded
1540  * at transmitting a reply to a peer.  
1541  *
1542  * @param cls the requests "struct PendingRequest*"
1543  * @param tpid ID of receiving peer, 0 on transmission error
1544  */
1545 static void
1546 transmit_reply_continuation (void *cls,
1547                              GNUNET_PEER_Id tpid)
1548 {
1549   struct PendingRequest *pr = cls;
1550   
1551   switch (pr->type)
1552     {
1553     case GNUNET_DATASTORE_BLOCKTYPE_DBLOCK:
1554     case GNUNET_DATASTORE_BLOCKTYPE_IBLOCK:
1555       /* only one reply expected, done with the request! */
1556       destroy_pending_request (pr);
1557       break;
1558     case GNUNET_DATASTORE_BLOCKTYPE_KBLOCK:
1559     case GNUNET_DATASTORE_BLOCKTYPE_SBLOCK:
1560       break;
1561     default:
1562       GNUNET_break (0);
1563       break;
1564     }
1565 }
1566
1567
1568 /**
1569  * Check if the given KBlock is well-formed.
1570  *
1571  * @param kb the kblock data (or at least "dsize" bytes claiming to be one)
1572  * @param dsize size of "kb" in bytes; check for < sizeof(struct KBlock)!
1573  * @param query where to store the query that this block answers
1574  * @return GNUNET_OK if this is actually a well-formed KBlock
1575  */
1576 static int
1577 check_kblock (const struct KBlock *kb,
1578               size_t dsize,
1579               GNUNET_HashCode *query)
1580 {
1581   if (dsize < sizeof (struct KBlock))
1582     {
1583       GNUNET_break_op (0);
1584       return GNUNET_SYSERR;
1585     }
1586   if (dsize - sizeof (struct KBlock) !=
1587       ntohs (kb->purpose.size) 
1588       - sizeof (struct GNUNET_CRYPTO_RsaSignaturePurpose) 
1589       - sizeof(struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded) ) 
1590     {
1591       GNUNET_break_op (0);
1592       return GNUNET_SYSERR;
1593     }
1594   if (GNUNET_OK !=
1595       GNUNET_CRYPTO_rsa_verify (GNUNET_SIGNATURE_PURPOSE_FS_KBLOCK,
1596                                 &kb->purpose,
1597                                 &kb->signature,
1598                                 &kb->keyspace)) 
1599     {
1600       GNUNET_break_op (0);
1601       return GNUNET_SYSERR;
1602     }
1603   if (query != NULL)
1604     GNUNET_CRYPTO_hash (&kb->keyspace,
1605                         sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded),
1606                         query);
1607   return GNUNET_OK;
1608 }
1609
1610
1611 /**
1612  * Check if the given SBlock is well-formed.
1613  *
1614  * @param sb the sblock data (or at least "dsize" bytes claiming to be one)
1615  * @param dsize size of "kb" in bytes; check for < sizeof(struct SBlock)!
1616  * @param query where to store the query that this block answers
1617  * @param namespace where to store the namespace that this block belongs to
1618  * @return GNUNET_OK if this is actually a well-formed SBlock
1619  */
1620 static int
1621 check_sblock (const struct SBlock *sb,
1622               size_t dsize,
1623               GNUNET_HashCode *query,   
1624               GNUNET_HashCode *namespace)
1625 {
1626   if (dsize < sizeof (struct SBlock))
1627     {
1628       GNUNET_break_op (0);
1629       return GNUNET_SYSERR;
1630     }
1631   if (dsize !=
1632       ntohs (sb->purpose.size) + sizeof (struct GNUNET_CRYPTO_RsaSignature))
1633     {
1634       GNUNET_break_op (0);
1635       return GNUNET_SYSERR;
1636     }
1637   if (GNUNET_OK !=
1638       GNUNET_CRYPTO_rsa_verify (GNUNET_SIGNATURE_PURPOSE_FS_SBLOCK,
1639                                 &sb->purpose,
1640                                 &sb->signature,
1641                                 &sb->subspace)) 
1642     {
1643       GNUNET_break_op (0);
1644       return GNUNET_SYSERR;
1645     }
1646   if (query != NULL)
1647     *query = sb->identifier;
1648   if (namespace != NULL)
1649     GNUNET_CRYPTO_hash (&sb->subspace,
1650                         sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded),
1651                         namespace);
1652   return GNUNET_OK;
1653 }
1654
1655
1656 /**
1657  * Transmit the given message by copying it to the target buffer
1658  * "buf".  "buf" will be NULL and "size" zero if the socket was closed
1659  * for writing in the meantime.  In that case, do nothing
1660  * (the disconnect or shutdown handler will take care of the rest).
1661  * If we were able to transmit messages and there are still more
1662  * pending, ask core again for further calls to this function.
1663  *
1664  * @param cls closure, pointer to the 'struct ClientList*'
1665  * @param size number of bytes available in buf
1666  * @param buf where the callee should write the message
1667  * @return number of bytes written to buf
1668  */
1669 static size_t
1670 transmit_to_client (void *cls,
1671                   size_t size, void *buf)
1672 {
1673   struct ClientList *cl = cls;
1674   char *cbuf = buf;
1675   struct ClientResponseMessage *creply;
1676   size_t msize;
1677   
1678   cl->th = NULL;
1679   if (NULL == buf)
1680     {
1681 #if DEBUG_FS
1682       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1683                   "Not sending reply, client communication problem.\n");
1684 #endif
1685       return 0;
1686     }
1687   msize = 0;
1688   while ( (NULL != (creply = cl->res_head) ) &&
1689           (creply->msize <= size) )
1690     {
1691       memcpy (&cbuf[msize], &creply[1], creply->msize);
1692       msize += creply->msize;
1693       size -= creply->msize;
1694       GNUNET_CONTAINER_DLL_remove (cl->res_head,
1695                                    cl->res_tail,
1696                                    creply);
1697       GNUNET_free (creply);
1698     }
1699   if (NULL != creply)
1700     cl->th = GNUNET_SERVER_notify_transmit_ready (cl->client,
1701                                                   creply->msize,
1702                                                   GNUNET_TIME_UNIT_FOREVER_REL,
1703                                                   &transmit_to_client,
1704                                                   cl);
1705 #if DEBUG_FS
1706   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1707               "Transmitted %u bytes to client\n",
1708               (unsigned int) msize);
1709 #endif
1710   return msize;
1711 }
1712
1713
1714 /**
1715  * Closure for "process_reply" function.
1716  */
1717 struct ProcessReplyClosure
1718 {
1719   /**
1720    * The data for the reply.
1721    */
1722   const void *data;
1723
1724   // FIXME: add 'struct ConnectedPeer' to track 'last_xxx_replies' here!
1725
1726   /**
1727    * When the reply expires.
1728    */
1729   struct GNUNET_TIME_Absolute expiration;
1730
1731   /**
1732    * Size of data.
1733    */
1734   size_t size;
1735
1736   /**
1737    * Namespace that this reply belongs to
1738    * (if it is of type SBLOCK).
1739    */
1740   GNUNET_HashCode namespace;
1741
1742   /**
1743    * Type of the block.
1744    */
1745   uint32_t type;
1746
1747   /**
1748    * How much was this reply worth to us?
1749    */
1750   uint32_t priority;
1751 };
1752
1753
1754 /**
1755  * We have received a reply; handle it!
1756  *
1757  * @param cls response (struct ProcessReplyClosure)
1758  * @param key our query
1759  * @param value value in the hash map (info about the query)
1760  * @return GNUNET_YES (we should continue to iterate)
1761  */
1762 static int
1763 process_reply (void *cls,
1764                const GNUNET_HashCode * key,
1765                void *value)
1766 {
1767   struct ProcessReplyClosure *prq = cls;
1768   struct PendingRequest *pr = value;
1769   struct PendingMessage *reply;
1770   struct ClientResponseMessage *creply;
1771   struct ClientList *cl;
1772   struct PutMessage *pm;
1773   struct ConnectedPeer *cp;
1774   GNUNET_HashCode chash;
1775   GNUNET_HashCode mhash;
1776   size_t msize;
1777   int do_remove;
1778
1779 #if DEBUG_FS
1780   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1781               "Matched result (type %u) for query `%s' with pending request\n",
1782               (unsigned int) prq->type,
1783               GNUNET_h2s (key));
1784 #endif  
1785   GNUNET_STATISTICS_update (stats,
1786                             gettext_noop ("# replies received and matched"),
1787                             1,
1788                             GNUNET_NO);
1789   do_remove = GNUNET_NO;
1790   GNUNET_CRYPTO_hash (prq->data,
1791                       prq->size,
1792                       &chash);
1793   switch (prq->type)
1794     {
1795     case GNUNET_DATASTORE_BLOCKTYPE_DBLOCK:
1796     case GNUNET_DATASTORE_BLOCKTYPE_IBLOCK:
1797       /* only possible reply, stop requesting! */
1798       while (NULL != pr->pending_head)
1799         destroy_pending_message_list_entry (pr->pending_head);
1800       if (pr->drq != NULL)
1801         {
1802           if (pr->client_request_list != NULL)
1803             GNUNET_SERVER_receive_done (pr->client_request_list->client_list->client, 
1804                                         GNUNET_YES);
1805           GNUNET_FS_drq_get_cancel (pr->drq);
1806           pr->drq = NULL;
1807         }
1808       do_remove = GNUNET_YES;
1809       break;
1810     case GNUNET_DATASTORE_BLOCKTYPE_SBLOCK:
1811       if (0 != memcmp (pr->namespace,
1812                        &prq->namespace,
1813                        sizeof (GNUNET_HashCode)))
1814         return GNUNET_YES; /* wrong namespace */        
1815       /* then: fall-through! */
1816     case GNUNET_DATASTORE_BLOCKTYPE_KBLOCK:
1817       if (pr->bf != NULL) 
1818         {
1819           mingle_hash (&chash, pr->mingle, &mhash);
1820           if (GNUNET_YES == GNUNET_CONTAINER_bloomfilter_test (pr->bf,
1821                                                                &mhash))
1822             return GNUNET_YES; /* duplicate */
1823           GNUNET_CONTAINER_bloomfilter_add (pr->bf,
1824                                             &mhash);
1825         }
1826       if (pr->client_request_list != NULL)
1827         {
1828           if (pr->replies_seen_size == pr->replies_seen_off)
1829             {
1830               GNUNET_array_grow (pr->replies_seen,
1831                                  pr->replies_seen_size,
1832                                  pr->replies_seen_size * 2 + 4);
1833               if (pr->bf != NULL)
1834                 GNUNET_CONTAINER_bloomfilter_free (pr->bf);
1835               pr->bf = refresh_bloomfilter (pr->replies_seen_off,
1836                                             &pr->mingle,
1837                                             &pr->bf_size,
1838                                             pr->replies_seen);
1839             }
1840             pr->replies_seen[pr->replies_seen_off++] = chash;
1841               
1842         }
1843       break;
1844     case GNUNET_DATASTORE_BLOCKTYPE_SKBLOCK:
1845       // FIXME: any checks against duplicates for SKBlocks?
1846       break;
1847     default:
1848       GNUNET_break (0);
1849       return GNUNET_YES;
1850     }
1851   prq->priority += pr->remaining_priority;
1852   pr->remaining_priority = 0;
1853   if (pr->client_request_list != NULL)
1854     {
1855 #if DEBUG_FS
1856       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1857                   "Transmitting result for query `%s' to local client\n",
1858                   GNUNET_h2s (key));
1859 #endif  
1860       GNUNET_STATISTICS_update (stats,
1861                                 gettext_noop ("# replies received for local clients"),
1862                                 1,
1863                                 GNUNET_NO);
1864       cl = pr->client_request_list->client_list;
1865       msize = sizeof (struct PutMessage) + prq->size;
1866       creply = GNUNET_malloc (msize + sizeof (struct ClientResponseMessage));
1867       creply->msize = msize;
1868       creply->client_list = cl;
1869       GNUNET_CONTAINER_DLL_insert_after (cl->res_head,
1870                                          cl->res_tail,
1871                                          cl->res_tail,
1872                                          creply);      
1873       pm = (struct PutMessage*) &creply[1];
1874       pm->header.type = htons (GNUNET_MESSAGE_TYPE_FS_PUT);
1875       pm->header.size = htons (msize);
1876       pm->type = htonl (prq->type);
1877       pm->expiration = GNUNET_TIME_absolute_hton (prq->expiration);
1878       memcpy (&pm[1], prq->data, prq->size);      
1879       if (NULL == cl->th)
1880         cl->th = GNUNET_SERVER_notify_transmit_ready (cl->client,
1881                                                       msize,
1882                                                       GNUNET_TIME_UNIT_FOREVER_REL,
1883                                                       &transmit_to_client,
1884                                                       cl);
1885       GNUNET_break (cl->th != NULL);
1886     }
1887   else
1888     {
1889       cp = pr->cp;
1890 #if DEBUG_FS
1891       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1892                   "Transmitting result for query `%s' to other peer (PID=%u)\n",
1893                   GNUNET_h2s (key),
1894                   (unsigned int) cp->pid);
1895 #endif  
1896       GNUNET_STATISTICS_update (stats,
1897                                 gettext_noop ("# replies received for other peers"),
1898                                 1,
1899                                 GNUNET_NO);
1900       msize = sizeof (struct PutMessage) + prq->size;
1901       reply = GNUNET_malloc (msize + sizeof (struct PendingMessage));
1902       reply->cont = &transmit_reply_continuation;
1903       reply->cont_cls = pr;
1904       reply->msize = msize;
1905       reply->priority = (uint32_t) -1; /* send replies first! */
1906       pm = (struct PutMessage*) &reply[1];
1907       pm->header.type = htons (GNUNET_MESSAGE_TYPE_FS_PUT);
1908       pm->header.size = htons (msize);
1909       pm->type = htonl (prq->type);
1910       pm->expiration = GNUNET_TIME_absolute_hton (prq->expiration);
1911       memcpy (&pm[1], prq->data, prq->size);
1912       add_to_pending_messages_for_peer (cp, reply, pr);
1913     }
1914   if (GNUNET_YES == do_remove)
1915     {
1916       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1917                   "Removing request `%s' from request map (has been satisfied)\n",
1918                   GNUNET_h2s (key));
1919       GNUNET_break (GNUNET_YES ==
1920                     GNUNET_CONTAINER_multihashmap_remove (query_request_map,
1921                                                           key,
1922                                                           pr));
1923       // FIXME: request somehow does not fully
1924       // disappear; how to fix? 
1925       // destroy_pending_request (pr); (not like this!)
1926     }
1927
1928   // FIXME: implement hot-path routing statistics keeping!
1929   return GNUNET_YES;
1930 }
1931
1932
1933 /**
1934  * Handle P2P "PUT" message.
1935  *
1936  * @param cls closure, always NULL
1937  * @param other the other peer involved (sender or receiver, NULL
1938  *        for loopback messages where we are both sender and receiver)
1939  * @param message the actual message
1940  * @param latency reported latency of the connection with 'other'
1941  * @param distance reported distance (DV) to 'other' 
1942  * @return GNUNET_OK to keep the connection open,
1943  *         GNUNET_SYSERR to close it (signal serious error)
1944  */
1945 static int
1946 handle_p2p_put (void *cls,
1947                 const struct GNUNET_PeerIdentity *other,
1948                 const struct GNUNET_MessageHeader *message,
1949                 struct GNUNET_TIME_Relative latency,
1950                 uint32_t distance)
1951 {
1952   const struct PutMessage *put;
1953   uint16_t msize;
1954   size_t dsize;
1955   uint32_t type;
1956   struct GNUNET_TIME_Absolute expiration;
1957   GNUNET_HashCode query;
1958   struct ProcessReplyClosure prq;
1959
1960   msize = ntohs (message->size);
1961   if (msize < sizeof (struct PutMessage))
1962     {
1963       GNUNET_break_op(0);
1964       return GNUNET_SYSERR;
1965     }
1966   put = (const struct PutMessage*) message;
1967   dsize = msize - sizeof (struct PutMessage);
1968   type = ntohl (put->type);
1969   expiration = GNUNET_TIME_absolute_ntoh (put->expiration);
1970
1971   /* first, validate! */
1972   switch (type)
1973     {
1974     case GNUNET_DATASTORE_BLOCKTYPE_DBLOCK:
1975     case GNUNET_DATASTORE_BLOCKTYPE_IBLOCK:
1976       GNUNET_CRYPTO_hash (&put[1], dsize, &query);
1977       break;
1978     case GNUNET_DATASTORE_BLOCKTYPE_KBLOCK:
1979       if (GNUNET_OK !=
1980           check_kblock ((const struct KBlock*) &put[1],
1981                         dsize,
1982                         &query))
1983         return GNUNET_SYSERR;
1984       break;
1985     case GNUNET_DATASTORE_BLOCKTYPE_SBLOCK:
1986       if (GNUNET_OK !=
1987           check_sblock ((const struct SBlock*) &put[1],
1988                         dsize,
1989                         &query,
1990                         &prq.namespace))
1991         return GNUNET_SYSERR;
1992       break;
1993     case GNUNET_DATASTORE_BLOCKTYPE_SKBLOCK:
1994       // FIXME -- validate SKBLOCK!
1995       GNUNET_break (0);
1996       return GNUNET_OK;
1997     default:
1998       /* unknown block type */
1999       GNUNET_break_op (0);
2000       return GNUNET_SYSERR;
2001     }
2002
2003 #if DEBUG_FS
2004   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2005               "Received result for query `%s' from peer `%4s'\n",
2006               GNUNET_h2s (&query),
2007               GNUNET_i2s (other));
2008 #endif
2009   GNUNET_STATISTICS_update (stats,
2010                             gettext_noop ("# replies received (overall)"),
2011                             1,
2012                             GNUNET_NO);
2013   /* now, lookup 'query' */
2014   prq.data = (const void*) &put[1];
2015   prq.size = dsize;
2016   prq.type = type;
2017   prq.expiration = expiration;
2018   prq.priority = 0;
2019   GNUNET_CONTAINER_multihashmap_get_multiple (query_request_map,
2020                                               &query,
2021                                               &process_reply,
2022                                               &prq);
2023   // FIXME: if migration is on and load is low,
2024   // queue to store data in datastore;
2025   // use "prq.priority" for that!
2026   return GNUNET_OK;
2027 }
2028
2029
2030 /* **************************** P2P GET Handling ************************ */
2031
2032
2033 /**
2034  * Closure for 'check_duplicate_request_{peer,client}'.
2035  */
2036 struct CheckDuplicateRequestClosure
2037 {
2038   /**
2039    * The new request we should check if it already exists.
2040    */
2041   const struct PendingRequest *pr;
2042
2043   /**
2044    * Existing request found by the checker, NULL if none.
2045    */
2046   struct PendingRequest *have;
2047 };
2048
2049
2050 /**
2051  * Iterator over entries in the 'query_request_map' that
2052  * tries to see if we have the same request pending from
2053  * the same client already.
2054  *
2055  * @param cls closure (our 'struct CheckDuplicateRequestClosure')
2056  * @param key current key code (query, ignored, must match)
2057  * @param value value in the hash map (a 'struct PendingRequest' 
2058  *              that already exists)
2059  * @return GNUNET_YES if we should continue to
2060  *         iterate (no match yet)
2061  *         GNUNET_NO if not (match found).
2062  */
2063 static int
2064 check_duplicate_request_client (void *cls,
2065                                 const GNUNET_HashCode * key,
2066                                 void *value)
2067 {
2068   struct CheckDuplicateRequestClosure *cdc = cls;
2069   struct PendingRequest *have = value;
2070
2071   if (have->client_request_list == NULL)
2072     return GNUNET_YES;
2073   if ( (cdc->pr->client_request_list->client_list->client == have->client_request_list->client_list->client) &&
2074        (cdc->pr != have) )
2075     {
2076       cdc->have = have;
2077       return GNUNET_NO;
2078     }
2079   return GNUNET_YES;
2080 }
2081
2082
2083 /**
2084  * We're processing (local) results for a search request
2085  * from another peer.  Pass applicable results to the
2086  * peer and if we are done either clean up (operation
2087  * complete) or forward to other peers (more results possible).
2088  *
2089  * @param cls our closure (struct LocalGetContext)
2090  * @param key key for the content
2091  * @param size number of bytes in data
2092  * @param data content stored
2093  * @param type type of the content
2094  * @param priority priority of the content
2095  * @param anonymity anonymity-level for the content
2096  * @param expiration expiration time for the content
2097  * @param uid unique identifier for the datum;
2098  *        maybe 0 if no unique identifier is available
2099  */
2100 static void
2101 process_local_reply (void *cls,
2102                      const GNUNET_HashCode * key,
2103                      uint32_t size,
2104                      const void *data,
2105                      uint32_t type,
2106                      uint32_t priority,
2107                      uint32_t anonymity,
2108                      struct GNUNET_TIME_Absolute
2109                      expiration, 
2110                      uint64_t uid)
2111 {
2112   struct PendingRequest *pr = cls;
2113   struct ProcessReplyClosure prq;
2114   struct CheckDuplicateRequestClosure cdrc;
2115   GNUNET_HashCode dhash;
2116   GNUNET_HashCode mhash;
2117   GNUNET_HashCode query;
2118   
2119   if (NULL == key)
2120     {
2121 #if DEBUG_FS > 1
2122       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2123                   "Done processing local replies, forwarding request to other peers.\n");
2124 #endif
2125       pr->drq = NULL;
2126       if (pr->client_request_list != NULL)
2127         {
2128           GNUNET_SERVER_receive_done (pr->client_request_list->client_list->client, 
2129                                       GNUNET_YES);
2130           /* Figure out if this is a duplicate request and possibly
2131              merge 'struct PendingRequest' entries */
2132           cdrc.have = NULL;
2133           cdrc.pr = pr;
2134           GNUNET_CONTAINER_multihashmap_get_multiple (query_request_map,
2135                                                       &pr->query,
2136                                                       &check_duplicate_request_client,
2137                                                       &cdrc);
2138           if (cdrc.have != NULL)
2139             {
2140 #if DEBUG_FS
2141               GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2142                           "Received request for block `%s' twice from client, will only request once.\n",
2143                           GNUNET_h2s (&pr->query));
2144 #endif
2145               
2146               destroy_pending_request (pr);
2147               return;
2148             }
2149         }
2150
2151       /* no more results */
2152       if (pr->task == GNUNET_SCHEDULER_NO_TASK)
2153         pr->task = GNUNET_SCHEDULER_add_now (sched,
2154                                              &forward_request_task,
2155                                              pr);      
2156       return;
2157     }
2158   if (type == GNUNET_DATASTORE_BLOCKTYPE_ONDEMAND)
2159     {
2160 #if DEBUG_FS
2161       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2162                   "Found ONDEMAND block, performing on-demand encoding\n");
2163 #endif
2164       GNUNET_STATISTICS_update (stats,
2165                                 gettext_noop ("# on-demand blocks matched requests"),
2166                                 1,
2167                                 GNUNET_NO);
2168       if (GNUNET_OK != 
2169           GNUNET_FS_handle_on_demand_block (key, size, data, type, priority, 
2170                                             anonymity, expiration, uid, 
2171                                             &process_local_reply,
2172                                             pr))
2173         GNUNET_FS_drq_get_next (GNUNET_YES);
2174       return;
2175     }
2176   /* check for duplicates */
2177   GNUNET_CRYPTO_hash (data, size, &dhash);
2178   mingle_hash (&dhash, 
2179                pr->mingle,
2180                &mhash);
2181   if ( (pr->bf != NULL) &&
2182        (GNUNET_YES ==
2183         GNUNET_CONTAINER_bloomfilter_test (pr->bf,
2184                                            &mhash)) )
2185     {      
2186 #if DEBUG_FS
2187       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2188                   "Result from datastore filtered by bloomfilter (duplicate).\n");
2189 #endif
2190       GNUNET_STATISTICS_update (stats,
2191                                 gettext_noop ("# results filtered by query bloomfilter"),
2192                                 1,
2193                                 GNUNET_NO);
2194       GNUNET_FS_drq_get_next (GNUNET_YES);
2195       return;
2196     }
2197 #if DEBUG_FS
2198   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2199               "Found result for query `%s' in local datastore\n",
2200               GNUNET_h2s (key));
2201 #endif
2202   GNUNET_STATISTICS_update (stats,
2203                             gettext_noop ("# results found locally"),
2204                             1,
2205                             GNUNET_NO);
2206   pr->results_found++;
2207   if ( (pr->type == GNUNET_DATASTORE_BLOCKTYPE_KBLOCK) ||
2208        (pr->type == GNUNET_DATASTORE_BLOCKTYPE_SBLOCK) ||
2209        (pr->type == GNUNET_DATASTORE_BLOCKTYPE_SKBLOCK) )
2210     {
2211       if (pr->bf == NULL)
2212         {
2213           pr->bf_size = 32;
2214           pr->bf = GNUNET_CONTAINER_bloomfilter_init (NULL,
2215                                                       pr->bf_size, 
2216                                                       BLOOMFILTER_K);
2217         }
2218       GNUNET_CONTAINER_bloomfilter_add (pr->bf, 
2219                                         &mhash);
2220     }
2221   memset (&prq, 0, sizeof (prq));
2222   prq.data = data;
2223   prq.expiration = expiration;
2224   prq.size = size;  
2225   if ( (type == GNUNET_DATASTORE_BLOCKTYPE_SBLOCK) &&
2226        (GNUNET_OK != check_sblock ((const struct SBlock*) data,
2227                                    size,
2228                                    &query,
2229                                    &prq.namespace)) )
2230     {
2231       GNUNET_break (0);
2232       /* FIXME: consider removing the block? */
2233       GNUNET_FS_drq_get_next (GNUNET_YES);
2234       return;
2235     }
2236   prq.type = type;
2237   prq.priority = priority;  
2238   process_reply (&prq, key, pr);
2239   
2240   if ( ( (pr->client_request_list == NULL) &&
2241          ( (GNUNET_YES == test_load_too_high()) ||
2242            (pr->results_found > 5 + 2 * pr->priority) ) ) ||
2243        (type == GNUNET_DATASTORE_BLOCKTYPE_DBLOCK) ) 
2244     {
2245 #if DEBUG_FS > 2
2246       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2247                   "Unique reply found or load too high, done with request\n");
2248 #endif
2249       if (type != GNUNET_DATASTORE_BLOCKTYPE_DBLOCK)
2250         GNUNET_STATISTICS_update (stats,
2251                                   gettext_noop ("# processing result set cut short due to load"),
2252                                   1,
2253                                   GNUNET_NO);
2254       GNUNET_FS_drq_get_next (GNUNET_NO);
2255       return;
2256     }
2257   GNUNET_FS_drq_get_next (GNUNET_YES);
2258 }
2259
2260
2261 /**
2262  * The priority level imposes a bound on the maximum
2263  * value for the ttl that can be requested.
2264  *
2265  * @param ttl_in requested ttl
2266  * @param prio given priority
2267  * @return ttl_in if ttl_in is below the limit,
2268  *         otherwise the ttl-limit for the given priority
2269  */
2270 static int32_t
2271 bound_ttl (int32_t ttl_in, uint32_t prio)
2272 {
2273   unsigned long long allowed;
2274
2275   if (ttl_in <= 0)
2276     return ttl_in;
2277   allowed = ((unsigned long long) prio) * TTL_DECREMENT / 1000; 
2278   if (ttl_in > allowed)      
2279     {
2280       if (allowed >= (1 << 30))
2281         return 1 << 30;
2282       return allowed;
2283     }
2284   return ttl_in;
2285 }
2286
2287
2288 /**
2289  * We've received a request with the specified priority.  Bound it
2290  * according to how much we trust the given peer.
2291  * 
2292  * @param prio_in requested priority
2293  * @param cp the peer making the request
2294  * @return effective priority
2295  */
2296 static uint32_t
2297 bound_priority (uint32_t prio_in,
2298                 struct ConnectedPeer *cp)
2299 {
2300   return 0; // FIXME!
2301 }
2302
2303
2304 /**
2305  * Iterator over entries in the 'query_request_map' that
2306  * tries to see if we have the same request pending from
2307  * the same peer already.
2308  *
2309  * @param cls closure (our 'struct CheckDuplicateRequestClosure')
2310  * @param key current key code (query, ignored, must match)
2311  * @param value value in the hash map (a 'struct PendingRequest' 
2312  *              that already exists)
2313  * @return GNUNET_YES if we should continue to
2314  *         iterate (no match yet)
2315  *         GNUNET_NO if not (match found).
2316  */
2317 static int
2318 check_duplicate_request_peer (void *cls,
2319                               const GNUNET_HashCode * key,
2320                               void *value)
2321 {
2322   struct CheckDuplicateRequestClosure *cdc = cls;
2323   struct PendingRequest *have = value;
2324
2325   if (cdc->pr->target_pid == have->target_pid)
2326     {
2327       cdc->have = have;
2328       return GNUNET_NO;
2329     }
2330   return GNUNET_YES;
2331 }
2332
2333
2334 /**
2335  * Handle P2P "GET" request.
2336  *
2337  * @param cls closure, always NULL
2338  * @param other the other peer involved (sender or receiver, NULL
2339  *        for loopback messages where we are both sender and receiver)
2340  * @param message the actual message
2341  * @param latency reported latency of the connection with 'other'
2342  * @param distance reported distance (DV) to 'other' 
2343  * @return GNUNET_OK to keep the connection open,
2344  *         GNUNET_SYSERR to close it (signal serious error)
2345  */
2346 static int
2347 handle_p2p_get (void *cls,
2348                 const struct GNUNET_PeerIdentity *other,
2349                 const struct GNUNET_MessageHeader *message,
2350                 struct GNUNET_TIME_Relative latency,
2351                 uint32_t distance)
2352 {
2353   struct PendingRequest *pr;
2354   struct ConnectedPeer *cp;
2355   struct ConnectedPeer *cps;
2356   struct CheckDuplicateRequestClosure cdc;
2357   struct GNUNET_TIME_Relative timeout;
2358   uint16_t msize;
2359   const struct GetMessage *gm;
2360   unsigned int bits;
2361   const GNUNET_HashCode *opt;
2362   uint32_t bm;
2363   size_t bfsize;
2364   uint32_t ttl_decrement;
2365   uint32_t type;
2366   double preference;
2367   int have_ns;
2368
2369   msize = ntohs(message->size);
2370   if (msize < sizeof (struct GetMessage))
2371     {
2372       GNUNET_break_op (0);
2373       return GNUNET_SYSERR;
2374     }
2375   gm = (const struct GetMessage*) message;
2376   type = ntohl (gm->type);
2377   switch (type)
2378     {
2379     case GNUNET_DATASTORE_BLOCKTYPE_DBLOCK:
2380     case GNUNET_DATASTORE_BLOCKTYPE_IBLOCK:
2381     case GNUNET_DATASTORE_BLOCKTYPE_KBLOCK:
2382     case GNUNET_DATASTORE_BLOCKTYPE_SBLOCK:
2383       break;
2384     default:
2385       GNUNET_break_op (0);
2386       return GNUNET_SYSERR;
2387     }
2388   bm = ntohl (gm->hash_bitmap);
2389   bits = 0;
2390   while (bm > 0)
2391     {
2392       if (1 == (bm & 1))
2393         bits++;
2394       bm >>= 1;
2395     }
2396   if (msize < sizeof (struct GetMessage) + bits * sizeof (GNUNET_HashCode))
2397     {
2398       GNUNET_break_op (0);
2399       return GNUNET_SYSERR;
2400     }  
2401   opt = (const GNUNET_HashCode*) &gm[1];
2402   bfsize = msize - sizeof (struct GetMessage) + bits * sizeof (GNUNET_HashCode);
2403   bm = ntohl (gm->hash_bitmap);
2404   if ( (0 != (bm & GET_MESSAGE_BIT_SKS_NAMESPACE)) &&
2405        (ntohl (gm->type) == GNUNET_DATASTORE_BLOCKTYPE_SBLOCK) )
2406     {
2407       GNUNET_break_op (0);
2408       return GNUNET_SYSERR;      
2409     }
2410   bits = 0;
2411   cps = GNUNET_CONTAINER_multihashmap_get (connected_peers,
2412                                            &other->hashPubKey);
2413   GNUNET_assert (NULL != cps);
2414   if (0 != (bm & GET_MESSAGE_BIT_RETURN_TO))
2415     cp = GNUNET_CONTAINER_multihashmap_get (connected_peers,
2416                                             &opt[bits++]);
2417   else
2418     cp = cps;
2419   if (cp == NULL)
2420     {
2421 #if DEBUG_FS
2422       if (0 != (bm & GET_MESSAGE_BIT_RETURN_TO))
2423         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2424                     "Failed to find RETURN-TO peer `%4s' in connection set. Dropping query.\n",
2425                     GNUNET_i2s ((const struct GNUNET_PeerIdentity*) &opt[bits-1]));
2426       
2427       else
2428         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2429                     "Failed to find peer `%4s' in connection set. Dropping query.\n",
2430                     GNUNET_i2s (other));
2431 #endif
2432       GNUNET_STATISTICS_update (stats,
2433                                 gettext_noop ("# requests dropped due to missing reverse route"),
2434                                 1,
2435                                 GNUNET_NO);
2436      /* FIXME: try connect? */
2437       return GNUNET_OK;
2438     }
2439   /* note that we can really only check load here since otherwise
2440      peers could find out that we are overloaded by not being
2441      disconnected after sending us a malformed query... */
2442   if (GNUNET_YES == test_load_too_high ())
2443     {
2444 #if DEBUG_FS
2445       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2446                   "Dropping query from `%s', this peer is too busy.\n",
2447                   GNUNET_i2s (other));
2448 #endif
2449       GNUNET_STATISTICS_update (stats,
2450                                 gettext_noop ("# requests dropped due to high load"),
2451                                 1,
2452                                 GNUNET_NO);
2453       return GNUNET_OK;
2454     }
2455
2456 #if DEBUG_FS
2457   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2458               "Received request for `%s' of type %u from peer `%4s'\n",
2459               GNUNET_h2s (&gm->query),
2460               (unsigned int) ntohl (gm->type),
2461               GNUNET_i2s (other));
2462 #endif
2463   have_ns = (0 != (bm & GET_MESSAGE_BIT_SKS_NAMESPACE));
2464   pr = GNUNET_malloc (sizeof (struct PendingRequest) + 
2465                       (have_ns ? sizeof(GNUNET_HashCode) : 0));
2466   if (have_ns)
2467     pr->namespace = (GNUNET_HashCode*) &pr[1];
2468   pr->type = type;
2469   pr->mingle = ntohl (gm->filter_mutator);
2470   if (0 != (bm & GET_MESSAGE_BIT_SKS_NAMESPACE))
2471     {
2472       memcpy (&pr[1], &opt[bits++], sizeof (GNUNET_HashCode));
2473     }
2474   else if (pr->type == GNUNET_DATASTORE_BLOCKTYPE_SBLOCK)
2475     {
2476       GNUNET_break_op (0);
2477       GNUNET_free (pr);
2478       return GNUNET_SYSERR;
2479     }
2480   if (0 != (bm & GET_MESSAGE_BIT_TRANSMIT_TO))
2481     pr->target_pid = GNUNET_PEER_intern ((const struct GNUNET_PeerIdentity*) &opt[bits++]);
2482
2483   pr->anonymity_level = 1;
2484   pr->priority = bound_priority (ntohl (gm->priority), cps);
2485   pr->ttl = bound_ttl (ntohl (gm->ttl), pr->priority);
2486   pr->query = gm->query;
2487   /* decrement ttl (always) */
2488   ttl_decrement = 2 * TTL_DECREMENT +
2489     GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK,
2490                               TTL_DECREMENT);
2491   if ( (pr->ttl < 0) &&
2492        (pr->ttl - ttl_decrement > 0) )
2493     {
2494 #if DEBUG_FS
2495       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2496                   "Dropping query from `%s' due to TTL underflow.\n",
2497                   GNUNET_i2s (other));
2498 #endif
2499       GNUNET_STATISTICS_update (stats,
2500                                 gettext_noop ("# requests dropped due TTL underflow"),
2501                                 1,
2502                                 GNUNET_NO);
2503       /* integer underflow => drop (should be very rare)! */
2504       GNUNET_free (pr);
2505       return GNUNET_OK;
2506     } 
2507   pr->ttl -= ttl_decrement;
2508   pr->start_time = GNUNET_TIME_absolute_get ();
2509
2510   /* get bloom filter */
2511   if (bfsize > 0)
2512     {
2513       pr->bf = GNUNET_CONTAINER_bloomfilter_init ((const char*) &opt[bits],
2514                                                   bfsize,
2515                                                   BLOOMFILTER_K);
2516       pr->bf_size = bfsize;
2517     }
2518
2519   cdc.have = NULL;
2520   cdc.pr = pr;
2521   GNUNET_CONTAINER_multihashmap_get_multiple (query_request_map,
2522                                               &gm->query,
2523                                               &check_duplicate_request_peer,
2524                                               &cdc);
2525   if (cdc.have != NULL)
2526     {
2527       if (cdc.have->start_time.value + cdc.have->ttl >=
2528           pr->start_time.value + pr->ttl)
2529         {
2530           /* existing request has higher TTL, drop new one! */
2531           cdc.have->priority += pr->priority;
2532           destroy_pending_request (pr);
2533 #if DEBUG_FS
2534           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2535                       "Have existing request with higher TTL, dropping new request.\n",
2536                       GNUNET_i2s (other));
2537 #endif
2538           GNUNET_STATISTICS_update (stats,
2539                                     gettext_noop ("# requests dropped due to existing request with higher TTL"),
2540                                     1,
2541                                     GNUNET_NO);
2542           return GNUNET_OK;
2543         }
2544       else
2545         {
2546           /* existing request has lower TTL, drop old one! */
2547           pr->priority += cdc.have->priority;
2548           /* Possible optimization: if we have applicable pending
2549              replies in 'cdc.have', we might want to move those over
2550              (this is a really rare special-case, so it is not clear
2551              that this would be worth it) */
2552           destroy_pending_request (cdc.have);
2553           /* keep processing 'pr'! */
2554         }
2555     }
2556
2557   pr->cp = cp;
2558   GNUNET_CONTAINER_multihashmap_put (query_request_map,
2559                                      &gm->query,
2560                                      pr,
2561                                      GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
2562   GNUNET_CONTAINER_multihashmap_put (peer_request_map,
2563                                      &other->hashPubKey,
2564                                      pr,
2565                                      GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
2566   
2567   pr->hnode = GNUNET_CONTAINER_heap_insert (requests_by_expiration_heap,
2568                                             pr,
2569                                             pr->start_time.value + pr->ttl);
2570
2571   GNUNET_STATISTICS_update (stats,
2572                             gettext_noop ("# P2P searches active"),
2573                             1,
2574                             GNUNET_NO);
2575
2576   /* calculate change in traffic preference */
2577   preference = (double) pr->priority;
2578   if (preference < QUERY_BANDWIDTH_VALUE)
2579     preference = QUERY_BANDWIDTH_VALUE;
2580   cps->inc_preference += preference;
2581
2582   /* process locally */
2583   if (type == GNUNET_DATASTORE_BLOCKTYPE_DBLOCK)
2584     type = GNUNET_DATASTORE_BLOCKTYPE_ANY; /* to get on-demand as well */
2585   timeout = GNUNET_TIME_relative_multiply (BASIC_DATASTORE_REQUEST_DELAY,
2586                                            (pr->priority + 1)); 
2587   pr->drq = GNUNET_FS_drq_get (&gm->query,
2588                                type,                           
2589                                &process_local_reply,
2590                                pr,
2591                                timeout,
2592                                GNUNET_NO);
2593
2594   /* Are multiple results possible?  If so, start processing remotely now! */
2595   switch (pr->type)
2596     {
2597     case GNUNET_DATASTORE_BLOCKTYPE_DBLOCK:
2598     case GNUNET_DATASTORE_BLOCKTYPE_IBLOCK:
2599       /* only one result, wait for datastore */
2600       break;
2601     default:
2602       pr->task = GNUNET_SCHEDULER_add_now (sched,
2603                                            &forward_request_task,
2604                                            pr);
2605     }
2606
2607   /* make sure we don't track too many requests */
2608   if (GNUNET_CONTAINER_heap_get_size (requests_by_expiration_heap) > max_pending_requests)
2609     {
2610       pr = GNUNET_CONTAINER_heap_peek (requests_by_expiration_heap);
2611       destroy_pending_request (pr);
2612     }
2613   return GNUNET_OK;
2614 }
2615
2616
2617 /* **************************** CS GET Handling ************************ */
2618
2619
2620 /**
2621  * Handle START_SEARCH-message (search request from client).
2622  *
2623  * @param cls closure
2624  * @param client identification of the client
2625  * @param message the actual message
2626  */
2627 static void
2628 handle_start_search (void *cls,
2629                      struct GNUNET_SERVER_Client *client,
2630                      const struct GNUNET_MessageHeader *message)
2631 {
2632   static GNUNET_HashCode all_zeros;
2633   const struct SearchMessage *sm;
2634   struct ClientList *cl;
2635   struct ClientRequestList *crl;
2636   struct PendingRequest *pr;
2637   uint16_t msize;
2638   unsigned int sc;
2639   uint32_t type;
2640
2641   msize = ntohs (message->size);
2642   if ( (msize < sizeof (struct SearchMessage)) ||
2643        (0 != (msize - sizeof (struct SearchMessage)) % sizeof (GNUNET_HashCode)) )
2644     {
2645       GNUNET_break (0);
2646       GNUNET_SERVER_receive_done (client,
2647                                   GNUNET_SYSERR);
2648       return;
2649     }
2650   sc = (msize - sizeof (struct SearchMessage)) / sizeof (GNUNET_HashCode);
2651   sm = (const struct SearchMessage*) message;
2652
2653   cl = client_list;
2654   while ( (cl != NULL) &&
2655           (cl->client != client) )
2656     cl = cl->next;
2657   if (cl == NULL)
2658     {
2659       cl = GNUNET_malloc (sizeof (struct ClientList));
2660       cl->client = client;
2661       GNUNET_SERVER_client_keep (client);
2662       cl->next = client_list;
2663       client_list = cl;
2664     }
2665   type = ntohl (sm->type);
2666   switch (type)
2667     {
2668     case GNUNET_DATASTORE_BLOCKTYPE_ANY:
2669     case GNUNET_DATASTORE_BLOCKTYPE_DBLOCK:
2670     case GNUNET_DATASTORE_BLOCKTYPE_IBLOCK:
2671     case GNUNET_DATASTORE_BLOCKTYPE_KBLOCK:
2672     case GNUNET_DATASTORE_BLOCKTYPE_SBLOCK:
2673       break;
2674     default:
2675       GNUNET_break (0);
2676       GNUNET_SERVER_receive_done (client,
2677                                   GNUNET_SYSERR);
2678       return;
2679     }  
2680 #if DEBUG_FS
2681   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2682               "Received request for `%s' of type %u from local client\n",
2683               GNUNET_h2s (&sm->query),
2684               (unsigned int) type);
2685 #endif
2686
2687   /* detect duplicate KBLOCK requests */
2688   if (type == GNUNET_DATASTORE_BLOCKTYPE_KBLOCK)
2689     {
2690       crl = cl->rl_head;
2691       while ( (crl != NULL) &&
2692               ( (0 != memcmp (&crl->req->query,
2693                               &sm->query,
2694                               sizeof (GNUNET_HashCode))) ||
2695                 (crl->req->type != type) ) )
2696         crl = crl->next;
2697       if (crl != NULL)  
2698         { 
2699 #if DEBUG_FS
2700           GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
2701                       "Have existing request, merging content-seen lists.\n");
2702 #endif
2703           pr = crl->req;
2704           /* Duplicate request (used to send long list of
2705              known/blocked results); merge 'pr->replies_seen'
2706              and update bloom filter */
2707           GNUNET_array_grow (pr->replies_seen,
2708                              pr->replies_seen_size,
2709                              pr->replies_seen_off + sc);
2710           memcpy (&pr->replies_seen[pr->replies_seen_off],
2711                   &sm[1],
2712                   sc * sizeof (GNUNET_HashCode));
2713           pr->replies_seen_off += sc;
2714           if (pr->bf != NULL)
2715             GNUNET_CONTAINER_bloomfilter_free (pr->bf);
2716           pr->bf = refresh_bloomfilter (pr->replies_seen_off,
2717                                         &pr->mingle,
2718                                         &pr->bf_size,
2719                                         pr->replies_seen);
2720           GNUNET_STATISTICS_update (stats,
2721                                     gettext_noop ("# client searches updated (merged content seen list)"),
2722                                     1,
2723                                     GNUNET_NO);
2724           GNUNET_SERVER_receive_done (client,
2725                                       GNUNET_OK);
2726           return;
2727         }
2728     }
2729   GNUNET_STATISTICS_update (stats,
2730                             gettext_noop ("# client searches active"),
2731                             1,
2732                             GNUNET_NO);
2733   pr = GNUNET_malloc (sizeof (struct PendingRequest) + 
2734                       ((type == GNUNET_DATASTORE_BLOCKTYPE_SBLOCK)?sizeof(GNUNET_HashCode):0));
2735   crl = GNUNET_malloc (sizeof (struct ClientRequestList));
2736   memset (crl, 0, sizeof (struct ClientRequestList));
2737   crl->client_list = cl;
2738   GNUNET_CONTAINER_DLL_insert (cl->rl_head,
2739                                cl->rl_tail,
2740                                crl);  
2741   crl->req = pr;
2742   pr->type = type;
2743   pr->client_request_list = crl;
2744   GNUNET_array_grow (pr->replies_seen,
2745                      pr->replies_seen_size,
2746                      sc);
2747   memcpy (pr->replies_seen,
2748           &sm[1],
2749           sc * sizeof (GNUNET_HashCode));
2750   pr->replies_seen_off = sc;
2751   pr->anonymity_level = ntohl (sm->anonymity_level); 
2752   pr->bf = refresh_bloomfilter (pr->replies_seen_off,
2753                                 &pr->mingle,
2754                                 &pr->bf_size,
2755                                 pr->replies_seen);
2756  pr->query = sm->query;
2757   switch (type)
2758     {
2759     case GNUNET_DATASTORE_BLOCKTYPE_DBLOCK:
2760     case GNUNET_DATASTORE_BLOCKTYPE_IBLOCK:
2761       if (0 != memcmp (&sm->target,
2762                        &all_zeros,
2763                        sizeof (GNUNET_HashCode)))
2764         pr->target_pid = GNUNET_PEER_intern ((const struct GNUNET_PeerIdentity*) &sm->target);
2765       break;
2766     case GNUNET_DATASTORE_BLOCKTYPE_SBLOCK:
2767       pr->namespace = (GNUNET_HashCode*) &pr[1];
2768       memcpy (&pr[1], &sm->target, sizeof (GNUNET_HashCode));
2769       break;
2770     default:
2771       break;
2772     }
2773   GNUNET_CONTAINER_multihashmap_put (query_request_map,
2774                                      &sm->query,
2775                                      pr,
2776                                      GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
2777   if (type == GNUNET_DATASTORE_BLOCKTYPE_DBLOCK)
2778     type = GNUNET_DATASTORE_BLOCKTYPE_ANY; /* get on-demand blocks too! */
2779   pr->drq = GNUNET_FS_drq_get (&sm->query,
2780                                type,                           
2781                                &process_local_reply,
2782                                pr,
2783                                GNUNET_TIME_UNIT_FOREVER_REL,
2784                                GNUNET_YES);
2785 }
2786
2787
2788 /* **************************** Startup ************************ */
2789
2790
2791 /**
2792  * List of handlers for P2P messages
2793  * that we care about.
2794  */
2795 static struct GNUNET_CORE_MessageHandler p2p_handlers[] =
2796   {
2797     { &handle_p2p_get, 
2798       GNUNET_MESSAGE_TYPE_FS_GET, 0 },
2799     { &handle_p2p_put, 
2800       GNUNET_MESSAGE_TYPE_FS_PUT, 0 },
2801     { NULL, 0, 0 }
2802   };
2803
2804
2805 /**
2806  * List of handlers for the messages understood by this
2807  * service.
2808  */
2809 static struct GNUNET_SERVER_MessageHandler handlers[] = {
2810   {&GNUNET_FS_handle_index_start, NULL, 
2811    GNUNET_MESSAGE_TYPE_FS_INDEX_START, 0},
2812   {&GNUNET_FS_handle_index_list_get, NULL, 
2813    GNUNET_MESSAGE_TYPE_FS_INDEX_LIST_GET, sizeof(struct GNUNET_MessageHeader) },
2814   {&GNUNET_FS_handle_unindex, NULL, GNUNET_MESSAGE_TYPE_FS_UNINDEX, 
2815    sizeof (struct UnindexMessage) },
2816   {&handle_start_search, NULL, GNUNET_MESSAGE_TYPE_FS_START_SEARCH, 
2817    0 },
2818   {NULL, NULL, 0, 0}
2819 };
2820
2821
2822 /**
2823  * Process fs requests.
2824  *
2825  * @param s scheduler to use
2826  * @param server the initialized server
2827  * @param c configuration to use
2828  */
2829 static int
2830 main_init (struct GNUNET_SCHEDULER_Handle *s,
2831            struct GNUNET_SERVER_Handle *server,
2832            const struct GNUNET_CONFIGURATION_Handle *c)
2833 {
2834   sched = s;
2835   cfg = c;
2836   stats = GNUNET_STATISTICS_create (sched, "fs", cfg);
2837   connected_peers = GNUNET_CONTAINER_multihashmap_create (128); // FIXME: get size from config
2838   query_request_map = GNUNET_CONTAINER_multihashmap_create (128); // FIXME: get size from config
2839   peer_request_map = GNUNET_CONTAINER_multihashmap_create (128); // FIXME: get size from config
2840   requests_by_expiration_heap = GNUNET_CONTAINER_heap_create (GNUNET_CONTAINER_HEAP_ORDER_MIN); 
2841   core = GNUNET_CORE_connect (sched,
2842                               cfg,
2843                               GNUNET_TIME_UNIT_FOREVER_REL,
2844                               NULL,
2845                               NULL,
2846                               NULL,
2847                               &peer_connect_handler,
2848                               &peer_disconnect_handler,
2849                               NULL, GNUNET_NO,
2850                               NULL, GNUNET_NO,
2851                               p2p_handlers);
2852   if (NULL == core)
2853     {
2854       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
2855                   _("Failed to connect to `%s' service.\n"),
2856                   "core");
2857       GNUNET_CONTAINER_multihashmap_destroy (connected_peers);
2858       connected_peers = NULL;
2859       GNUNET_CONTAINER_multihashmap_destroy (query_request_map);
2860       query_request_map = NULL;
2861       GNUNET_CONTAINER_heap_destroy (requests_by_expiration_heap);
2862       requests_by_expiration_heap = NULL;
2863       GNUNET_CONTAINER_multihashmap_destroy (peer_request_map);
2864       peer_request_map = NULL;
2865
2866       return GNUNET_SYSERR;
2867     }  
2868   GNUNET_SERVER_disconnect_notify (server, 
2869                                    &handle_client_disconnect,
2870                                    NULL);
2871   GNUNET_SERVER_add_handlers (server, handlers);
2872   GNUNET_SCHEDULER_add_delayed (sched,
2873                                 GNUNET_TIME_UNIT_FOREVER_REL,
2874                                 &shutdown_task,
2875                                 NULL);
2876   return GNUNET_OK;
2877 }
2878
2879
2880 /**
2881  * Process fs requests.
2882  *
2883  * @param cls closure
2884  * @param sched scheduler to use
2885  * @param server the initialized server
2886  * @param cfg configuration to use
2887  */
2888 static void
2889 run (void *cls,
2890      struct GNUNET_SCHEDULER_Handle *sched,
2891      struct GNUNET_SERVER_Handle *server,
2892      const struct GNUNET_CONFIGURATION_Handle *cfg)
2893 {
2894   if ( (GNUNET_OK != GNUNET_FS_drq_init (sched, cfg)) ||
2895        (GNUNET_OK != GNUNET_FS_indexing_init (sched, cfg)) ||
2896        (GNUNET_OK != main_init (sched, server, cfg)) )
2897     {    
2898       GNUNET_SCHEDULER_shutdown (sched);
2899       return;   
2900     }
2901 }
2902
2903
2904 /**
2905  * The main function for the fs service.
2906  *
2907  * @param argc number of arguments from the command line
2908  * @param argv command line arguments
2909  * @return 0 ok, 1 on error
2910  */
2911 int
2912 main (int argc, char *const *argv)
2913 {
2914   return (GNUNET_OK ==
2915           GNUNET_SERVICE_run (argc,
2916                               argv,
2917                               "fs",
2918                               GNUNET_SERVICE_OPTION_NONE,
2919                               &run, NULL)) ? 0 : 1;
2920 }
2921
2922 /* end of gnunet-service-fs.c */