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