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