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