track performance data
[oweals/gnunet.git] / src / fs / gnunet-service-fs_pr.c
1 /*
2      This file is part of GNUnet.
3      (C) 2009, 2010, 2011 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file fs/gnunet-service-fs_pr.c
23  * @brief API to handle pending requests
24  * @author Christian Grothoff
25  */
26 #include "platform.h"
27 #include "gnunet_load_lib.h"
28 #include "gnunet-service-fs.h"
29 #include "gnunet-service-fs_cp.h"
30 #include "gnunet-service-fs_indexing.h"
31 #include "gnunet-service-fs_pe.h"
32 #include "gnunet-service-fs_pr.h"
33
34
35 /**
36  * An active request.
37  */
38 struct GSF_PendingRequest
39 {
40   /**
41    * Public data for the request.
42    */ 
43   struct GSF_PendingRequestData public_data;
44
45   /**
46    * Function to call if we encounter a reply.
47    */
48   GSF_PendingRequestReplyHandler rh;
49
50   /**
51    * Closure for 'rh'
52    */
53   void *rh_cls;
54
55   /**
56    * Array of hash codes of replies we've already seen.
57    */
58   GNUNET_HashCode *replies_seen;
59
60   /**
61    * Bloomfilter masking replies we've already seen.
62    */
63   struct GNUNET_CONTAINER_BloomFilter *bf;
64
65   /**
66    * Entry for this pending request in the expiration heap, or NULL.
67    */
68   struct GNUNET_CONTAINER_HeapNode *hnode;
69
70   /**
71    * Datastore queue entry for this request (or NULL for none).
72    */
73   struct GNUNET_DATASTORE_QueueEntry *qe;
74
75   /**
76    * DHT request handle for this request (or NULL for none).
77    */
78   struct GNUNET_DHT_GetHandle *gh;
79
80   /**
81    * Function to call upon completion of the local get
82    * request, or NULL for none.
83    */
84   GSF_LocalLookupContinuation llc_cont;
85
86   /**
87    * Closure for llc_cont.
88    */
89   void *llc_cont_cls;
90
91   /**
92    * Last result from the local datastore lookup evaluation.
93    */
94   enum GNUNET_BLOCK_EvaluationResult local_result;
95
96   /**
97    * Identity of the peer that we should use for the 'sender'
98    * (recipient of the response) when forwarding (0 for none).
99    */
100   GNUNET_PEER_Id sender_pid;
101
102   /**
103    * Time we started the last datastore lookup.
104    */
105   struct GNUNET_TIME_Absolute qe_start;
106
107   /**
108    * Task that warns us if the local datastore lookup takes too long.
109    */
110   GNUNET_SCHEDULER_TaskIdentifier warn_task;
111
112   /**
113    * Current offset for querying our local datastore for results.
114    * Starts at a random value, incremented until we get the same
115    * UID again (detected using 'first_uid'), which is then used
116    * to termiante the iteration.
117    */
118   uint64_t local_result_offset;
119
120   /**
121    * Unique ID of the first result from the local datastore;
122    * used to detect wrap-around of the offset.
123    */
124   uint64_t first_uid;
125
126   /**
127    * Number of valid entries in the 'replies_seen' array.
128    */
129   unsigned int replies_seen_count;
130
131   /**
132    * Length of the 'replies_seen' array.
133    */
134   unsigned int replies_seen_size;
135
136   /**
137    * Mingle value we currently use for the bf.
138    */
139   uint32_t mingle;
140
141 };
142
143
144 /**
145  * All pending requests, ordered by the query.  Entries
146  * are of type 'struct GSF_PendingRequest*'.
147  */
148 static struct GNUNET_CONTAINER_MultiHashMap *pr_map;
149
150
151 /**
152  * Datastore 'PUT' load tracking.
153  */
154 static struct GNUNET_LOAD_Value *datastore_put_load;
155
156
157 /**
158  * Are we allowed to migrate content to this peer.
159  */
160 static int active_to_migration;
161
162
163 /**
164  * Heap with the request that will expire next at the top.  Contains
165  * pointers of type "struct PendingRequest*"; these will *also* be
166  * aliased from the "requests_by_peer" data structures and the
167  * "requests_by_query" table.  Note that requests from our clients
168  * don't expire and are thus NOT in the "requests_by_expiration"
169  * (or the "requests_by_peer" tables).
170  */
171 static struct GNUNET_CONTAINER_Heap *requests_by_expiration_heap;
172
173
174 /**
175  * Maximum number of requests (from other peers, overall) that we're
176  * willing to have pending at any given point in time.  Can be changed
177  * via the configuration file (32k is just the default).
178  */
179 static unsigned long long max_pending_requests = (32 * 1024);
180
181
182 /**
183  * How many bytes should a bloomfilter be if we have already seen
184  * entry_count responses?  Note that BLOOMFILTER_K gives us the number
185  * of bits set per entry.  Furthermore, we should not re-size the
186  * filter too often (to keep it cheap).
187  *
188  * Since other peers will also add entries but not resize the filter,
189  * we should generally pick a slightly larger size than what the
190  * strict math would suggest.
191  *
192  * @return must be a power of two and smaller or equal to 2^15.
193  */
194 static size_t
195 compute_bloomfilter_size (unsigned int entry_count)
196 {
197   size_t size;
198   unsigned int ideal = (entry_count * BLOOMFILTER_K) / 4;
199   uint16_t max = 1 << 15;
200
201   if (entry_count > max)
202     return max;
203   size = 8;
204   while ((size < max) && (size < ideal))
205     size *= 2;
206   if (size > max)
207     return max;
208   return size;
209 }
210
211
212 /**
213  * Recalculate our bloom filter for filtering replies.  This function
214  * will create a new bloom filter from scratch, so it should only be
215  * called if we have no bloomfilter at all (and hence can create a
216  * fresh one of minimal size without problems) OR if our peer is the
217  * initiator (in which case we may resize to larger than mimimum size).
218  *
219  * @param pr request for which the BF is to be recomputed
220  * @return GNUNET_YES if a refresh actually happened
221  */
222 static int
223 refresh_bloomfilter (struct GSF_PendingRequest *pr)
224 {
225   unsigned int i;
226   size_t nsize;
227   GNUNET_HashCode mhash;
228
229   nsize = compute_bloomfilter_size (pr->replies_seen_count);
230   if ( (pr->bf != NULL) &&
231        (nsize == GNUNET_CONTAINER_bloomfilter_get_size (pr->bf)) )
232     return GNUNET_NO; /* size not changed */
233   if (pr->bf != NULL)
234     GNUNET_CONTAINER_bloomfilter_free (pr->bf);
235   pr->mingle = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 
236                                          UINT32_MAX);
237   pr->bf = GNUNET_CONTAINER_bloomfilter_init (NULL, 
238                                               nsize,
239                                               BLOOMFILTER_K);
240   for (i=0;i<pr->replies_seen_count;i++)
241     {
242       GNUNET_BLOCK_mingle_hash (&pr->replies_seen[i],
243                                 pr->mingle,
244                                 &mhash);
245       GNUNET_CONTAINER_bloomfilter_add (pr->bf, &mhash);
246     }
247   return GNUNET_YES;
248 }
249
250
251 /**
252  * Create a new pending request.  
253  *
254  * @param options request options
255  * @param type type of the block that is being requested
256  * @param query key for the lookup
257  * @param namespace namespace to lookup, NULL for no namespace
258  * @param target preferred target for the request, NULL for none
259  * @param bf_data raw data for bloom filter for known replies, can be NULL
260  * @param bf_size number of bytes in bf_data
261  * @param mingle mingle value for bf
262  * @param anonymity_level desired anonymity level
263  * @param priority maximum outgoing cummulative request priority to use
264  * @param ttl current time-to-live for the request
265  * @param sender_pid peer ID to use for the sender when forwarding, 0 for none
266  * @param replies_seen hash codes of known local replies
267  * @param replies_seen_count size of the 'replies_seen' array
268  * @param rh handle to call when we get a reply
269  * @param rh_cls closure for rh
270  * @return handle for the new pending request
271  */
272 struct GSF_PendingRequest *
273 GSF_pending_request_create_ (enum GSF_PendingRequestOptions options,
274                              enum GNUNET_BLOCK_Type type,
275                              const GNUNET_HashCode *query,
276                              const GNUNET_HashCode *namespace,
277                              const struct GNUNET_PeerIdentity *target,
278                              const char *bf_data,
279                              size_t bf_size,
280                              uint32_t mingle,
281                              uint32_t anonymity_level,
282                              uint32_t priority,
283                              int32_t ttl,
284                              GNUNET_PEER_Id sender_pid,
285                              const GNUNET_HashCode *replies_seen,
286                              unsigned int replies_seen_count,
287                              GSF_PendingRequestReplyHandler rh,
288                              void *rh_cls)
289 {
290   struct GSF_PendingRequest *pr;
291   struct GSF_PendingRequest *dpr;
292   
293 #if DEBUG_FS > 1
294   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
295               "Creating request handle for `%s' of type %d\n",
296               GNUNET_h2s (query),
297               type);
298 #endif 
299   pr = GNUNET_malloc (sizeof (struct GSF_PendingRequest));
300   pr->local_result_offset = GNUNET_CRYPTO_random_u64 (GNUNET_CRYPTO_QUALITY_WEAK,
301                                                       UINT64_MAX);                                                       
302   pr->public_data.query = *query;
303   if (GNUNET_BLOCK_TYPE_FS_SBLOCK == type)
304     {
305       GNUNET_assert (NULL != namespace);
306       pr->public_data.namespace = *namespace;
307     }
308   if (NULL != target)
309     {
310       pr->public_data.target = *target;
311       pr->public_data.has_target = GNUNET_YES;
312     }
313   pr->public_data.anonymity_level = anonymity_level;
314   pr->public_data.priority = priority;
315   pr->public_data.original_priority = priority;
316   pr->public_data.options = options;
317   pr->public_data.type = type;  
318   pr->public_data.start_time = GNUNET_TIME_absolute_get ();
319   pr->sender_pid = sender_pid;
320   pr->rh = rh;
321   pr->rh_cls = rh_cls;
322   if (ttl >= 0)
323     pr->public_data.ttl = GNUNET_TIME_relative_to_absolute (GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS,
324                                                                                            (uint32_t) ttl));
325   else
326     pr->public_data.ttl = GNUNET_TIME_absolute_subtract (pr->public_data.start_time,
327                                                          GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS,
328                                                                                         (uint32_t) (- ttl)));
329   if (replies_seen_count > 0)
330     {
331       pr->replies_seen_size = replies_seen_count;
332       pr->replies_seen = GNUNET_malloc (sizeof (GNUNET_HashCode) * pr->replies_seen_size);
333       memcpy (pr->replies_seen,
334               replies_seen,
335               replies_seen_count * sizeof (GNUNET_HashCode));
336       pr->replies_seen_count = replies_seen_count;
337     }
338   if (NULL != bf_data)    
339     {
340       pr->bf = GNUNET_CONTAINER_bloomfilter_init (bf_data,
341                                                   bf_size,
342                                                   BLOOMFILTER_K);
343       pr->mingle = mingle;
344     }
345   else if ( (replies_seen_count > 0) &&
346             (0 != (options & GSF_PRO_BLOOMFILTER_FULL_REFRESH)) )
347     {
348       GNUNET_assert (GNUNET_YES == refresh_bloomfilter (pr));
349     }
350   GNUNET_CONTAINER_multihashmap_put (pr_map,
351                                      query,
352                                      pr,
353                                      GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
354   if (0 != (options & GSF_PRO_REQUEST_EXPIRES))
355     {
356       pr->hnode = GNUNET_CONTAINER_heap_insert (requests_by_expiration_heap,
357                                                 pr,
358                                                 pr->public_data.ttl.abs_value);
359       /* make sure we don't track too many requests */
360       while (GNUNET_CONTAINER_heap_get_size (requests_by_expiration_heap) > max_pending_requests)
361         {
362           dpr = GNUNET_CONTAINER_heap_peek (requests_by_expiration_heap);
363           GNUNET_assert (dpr != NULL);
364           if (pr == dpr)
365             break; /* let the request live briefly... */
366           dpr->rh (dpr->rh_cls,
367                    GNUNET_BLOCK_EVALUATION_REQUEST_VALID,
368                    dpr,
369                    GNUNET_TIME_UNIT_FOREVER_ABS,
370                    GNUNET_BLOCK_TYPE_ANY,
371                    NULL, 0);
372           GSF_pending_request_cancel_ (dpr);
373         }
374     }
375   return pr;
376 }
377
378
379 /**
380  * Obtain the public data associated with a pending request
381  * 
382  * @param pr pending request
383  * @return associated public data
384  */
385 struct GSF_PendingRequestData *
386 GSF_pending_request_get_data_ (struct GSF_PendingRequest *pr)
387 {
388   return &pr->public_data;
389 }
390
391
392 /**
393  * Update a given pending request with additional replies
394  * that have been seen.
395  *
396  * @param pr request to update
397  * @param replies_seen hash codes of replies that we've seen
398  * @param replies_seen_count size of the replies_seen array
399  */
400 void
401 GSF_pending_request_update_ (struct GSF_PendingRequest *pr,
402                              const GNUNET_HashCode *replies_seen,
403                              unsigned int replies_seen_count)
404 {
405   unsigned int i;
406   GNUNET_HashCode mhash;
407
408   if (replies_seen_count + pr->replies_seen_count < pr->replies_seen_count)
409     return; /* integer overflow */
410   if (0 != (pr->public_data.options & GSF_PRO_BLOOMFILTER_FULL_REFRESH))
411     {
412       /* we're responsible for the BF, full refresh */
413       if (replies_seen_count + pr->replies_seen_count > pr->replies_seen_size)
414         GNUNET_array_grow (pr->replies_seen,
415                            pr->replies_seen_size,
416                            replies_seen_count + pr->replies_seen_count);
417       memcpy (&pr->replies_seen[pr->replies_seen_count],
418               replies_seen,
419               sizeof (GNUNET_HashCode) * replies_seen_count);
420       pr->replies_seen_count += replies_seen_count;
421       if (GNUNET_NO == refresh_bloomfilter (pr))
422         {
423           /* bf not recalculated, simply extend it with new bits */
424           for (i=0;i<pr->replies_seen_count;i++)
425             {
426               GNUNET_BLOCK_mingle_hash (&replies_seen[i],
427                                         pr->mingle,
428                                         &mhash);
429               GNUNET_CONTAINER_bloomfilter_add (pr->bf, &mhash);
430             }
431         }
432     }
433   else
434     {
435       if (NULL == pr->bf)
436         {
437           /* we're not the initiator, but the initiator did not give us
438              any bloom-filter, so we need to create one on-the-fly */
439           pr->mingle = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 
440                                                  UINT32_MAX);
441           pr->bf = GNUNET_CONTAINER_bloomfilter_init (NULL,
442                                                       compute_bloomfilter_size (replies_seen_count),
443                                                       BLOOMFILTER_K);
444         }
445       for (i=0;i<pr->replies_seen_count;i++)
446         {
447           GNUNET_BLOCK_mingle_hash (&replies_seen[i],
448                                     pr->mingle,
449                                     &mhash);
450           GNUNET_CONTAINER_bloomfilter_add (pr->bf, &mhash);
451         }
452     }
453 }
454
455
456 /**
457  * Generate the message corresponding to the given pending request for
458  * transmission to other peers (or at least determine its size).
459  *
460  * @param pr request to generate the message for
461  * @param buf_size number of bytes available in buf
462  * @param buf where to copy the message (can be NULL)
463  * @return number of bytes needed (if > buf_size) or used
464  */
465 size_t
466 GSF_pending_request_get_message_ (struct GSF_PendingRequest *pr,
467                                   size_t buf_size,
468                                   void *buf)
469 {
470   char lbuf[GNUNET_SERVER_MAX_MESSAGE_SIZE];
471   struct GetMessage *gm;
472   GNUNET_HashCode *ext;
473   size_t msize;
474   unsigned int k;
475   uint32_t bm;
476   uint32_t prio;
477   size_t bf_size;
478   struct GNUNET_TIME_Absolute now;
479   int64_t ttl;
480   int do_route;
481
482 #if DEBUG_FS
483   if (buf_size > 0)
484     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
485                 "Building request message for `%s' of type %d\n",
486                 GNUNET_h2s (&pr->public_data.query),
487                 pr->public_data.type);
488 #endif 
489   k = 0;
490   bm = 0;
491   do_route = (0 == (pr->public_data.options & GSF_PRO_FORWARD_ONLY));
492   if (! do_route)
493     {
494       bm |= GET_MESSAGE_BIT_RETURN_TO;
495       k++;      
496     }
497   if (GNUNET_BLOCK_TYPE_FS_SBLOCK == pr->public_data.type)
498     {
499       bm |= GET_MESSAGE_BIT_SKS_NAMESPACE;
500       k++;
501     }
502   if (GNUNET_YES == pr->public_data.has_target)
503     {
504       bm |= GET_MESSAGE_BIT_TRANSMIT_TO;
505       k++;
506     }
507   bf_size = GNUNET_CONTAINER_bloomfilter_get_size (pr->bf);
508   msize = sizeof (struct GetMessage) + bf_size + k * sizeof(GNUNET_HashCode);
509   GNUNET_assert (msize < GNUNET_SERVER_MAX_MESSAGE_SIZE);
510   if (buf_size < msize)
511     return msize;  
512   gm = (struct GetMessage*) lbuf;
513   gm->header.type = htons (GNUNET_MESSAGE_TYPE_FS_GET);
514   gm->header.size = htons (msize);
515   gm->type = htonl (pr->public_data.type);
516   if (do_route)
517     prio = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK,
518                                      pr->public_data.priority + 1);
519   else
520     prio = 0;
521   pr->public_data.priority -= prio;
522   gm->priority = htonl (prio);
523   now = GNUNET_TIME_absolute_get ();
524   ttl = (int64_t) (pr->public_data.ttl.abs_value - now.abs_value);
525   gm->ttl = htonl (ttl / 1000);
526   gm->filter_mutator = htonl(pr->mingle); 
527   gm->hash_bitmap = htonl (bm);
528   gm->query = pr->public_data.query;
529   ext = (GNUNET_HashCode*) &gm[1];
530   k = 0;  
531   if (! do_route)
532     GNUNET_PEER_resolve (pr->sender_pid, 
533                          (struct GNUNET_PeerIdentity*) &ext[k++]);
534   if (GNUNET_BLOCK_TYPE_FS_SBLOCK == pr->public_data.type)
535     memcpy (&ext[k++], 
536             &pr->public_data.namespace, 
537             sizeof (GNUNET_HashCode));
538   if (GNUNET_YES == pr->public_data.has_target)
539     GNUNET_PEER_resolve (pr->sender_pid, 
540                          (struct GNUNET_PeerIdentity*) &ext[k++]);
541   if (pr->bf != NULL)
542     GNUNET_CONTAINER_bloomfilter_get_raw_data (pr->bf,
543                                                (char*) &ext[k],
544                                                bf_size);
545   memcpy (buf, gm, msize);
546   return msize;
547 }
548
549
550 /**
551  * Iterator to free pending requests.
552  *
553  * @param cls closure, unused
554  * @param key current key code
555  * @param value value in the hash map (pending request)
556  * @return GNUNET_YES (we should continue to iterate)
557  */
558 static int 
559 clean_request (void *cls,
560                const GNUNET_HashCode * key,
561                void *value)
562 {
563   struct GSF_PendingRequest *pr = value;
564   GSF_LocalLookupContinuation cont;
565
566 #if DEBUG_FS
567   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
568               "Cleaning up pending request for `%s'.\n",
569               GNUNET_h2s (key));
570 #endif  
571   if (NULL != (cont = pr->llc_cont))
572     {
573       pr->llc_cont = NULL;
574       cont (pr->llc_cont_cls,
575             pr,
576             pr->local_result);
577     } 
578   GSF_plan_notify_request_done_ (pr);
579   GNUNET_free_non_null (pr->replies_seen);
580   if (NULL != pr->bf)
581     {
582       GNUNET_CONTAINER_bloomfilter_free (pr->bf);
583       pr->bf = NULL;
584     }
585   GNUNET_PEER_change_rc (pr->sender_pid, -1);
586   if (NULL != pr->hnode)
587     {
588       GNUNET_CONTAINER_heap_remove_node (pr->hnode);
589       pr->hnode = NULL;
590     }
591   if (NULL != pr->qe)
592     {
593       GNUNET_DATASTORE_cancel (pr->qe);
594       pr->qe = NULL;
595     }
596   if (NULL != pr->gh)
597     {
598       GNUNET_DHT_get_stop (pr->gh);
599       pr->gh = NULL;
600     }
601   if (GNUNET_SCHEDULER_NO_TASK != pr->warn_task)
602     {
603       GNUNET_SCHEDULER_cancel (pr->warn_task);
604       pr->warn_task = GNUNET_SCHEDULER_NO_TASK;
605     }
606   GNUNET_free (pr);
607   return GNUNET_YES;
608 }
609
610
611 /**
612  * Explicitly cancel a pending request.
613  *
614  * @param pr request to cancel
615  */
616 void
617 GSF_pending_request_cancel_ (struct GSF_PendingRequest *pr)
618 {
619   if (NULL == pr_map) 
620     return; /* already cleaned up! */
621   GNUNET_assert (GNUNET_OK ==
622                  GNUNET_CONTAINER_multihashmap_remove (pr_map,
623                                                        &pr->public_data.query,
624                                                        pr));
625   GNUNET_assert (GNUNET_YES ==
626                  clean_request (NULL, &pr->public_data.query, pr));  
627 }
628
629
630 /**
631  * Iterate over all pending requests.
632  *
633  * @param it function to call for each request
634  * @param cls closure for it
635  */
636 void
637 GSF_iterate_pending_requests_ (GSF_PendingRequestIterator it,
638                                void *cls)
639 {
640   GNUNET_CONTAINER_multihashmap_iterate (pr_map,
641                                          (GNUNET_CONTAINER_HashMapIterator) it,
642                                          cls);
643 }
644
645
646
647
648 /**
649  * Closure for "process_reply" function.
650  */
651 struct ProcessReplyClosure
652 {
653   /**
654    * The data for the reply.
655    */
656   const void *data;
657
658   /**
659    * Who gave us this reply? NULL for local host (or DHT)
660    */
661   struct GSF_ConnectedPeer *sender;
662
663   /**
664    * When the reply expires.
665    */
666   struct GNUNET_TIME_Absolute expiration;
667
668   /**
669    * Size of data.
670    */
671   size_t size;
672
673   /**
674    * Type of the block.
675    */
676   enum GNUNET_BLOCK_Type type;
677
678   /**
679    * How much was this reply worth to us?
680    */
681   uint32_t priority;
682
683   /**
684    * Anonymity requirements for this reply.
685    */
686   uint32_t anonymity_level;
687
688   /**
689    * Evaluation result (returned).
690    */
691   enum GNUNET_BLOCK_EvaluationResult eval;
692
693   /**
694    * Did we find a matching request?
695    */
696   int request_found;
697 };
698
699
700 /**
701  * Update the performance data for the sender (if any) since
702  * the sender successfully answered one of our queries.
703  *
704  * @param prq information about the sender
705  * @param pr request that was satisfied
706  */
707 static void
708 update_request_performance_data (struct ProcessReplyClosure *prq,
709                                  struct GSF_PendingRequest *pr)
710 {
711   if (prq->sender == NULL)
712     return;      
713   GSF_peer_update_performance_ (prq->sender,
714                                 pr->public_data.start_time,
715                                 prq->priority);
716 }
717                                 
718
719 /**
720  * We have received a reply; handle it!
721  *
722  * @param cls response (struct ProcessReplyClosure)
723  * @param key our query
724  * @param value value in the hash map (info about the query)
725  * @return GNUNET_YES (we should continue to iterate)
726  */
727 static int
728 process_reply (void *cls,
729                const GNUNET_HashCode * key,
730                void *value)
731 {
732   struct ProcessReplyClosure *prq = cls;
733   struct GSF_PendingRequest *pr = value;
734   GNUNET_HashCode chash;
735
736 #if DEBUG_FS
737   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
738               "Matched result (type %u) for query `%s' with pending request\n",
739               (unsigned int) prq->type,
740               GNUNET_h2s (key));
741 #endif  
742   GNUNET_STATISTICS_update (GSF_stats,
743                             gettext_noop ("# replies received and matched"),
744                             1,
745                             GNUNET_NO);
746   prq->eval = GNUNET_BLOCK_evaluate (GSF_block_ctx,
747                                      prq->type,
748                                      key,
749                                      &pr->bf,
750                                      pr->mingle,
751                                      &pr->public_data.namespace, 
752                                      (prq->type == GNUNET_BLOCK_TYPE_FS_SBLOCK) ? sizeof (GNUNET_HashCode) : 0,
753                                      prq->data,
754                                      prq->size);
755   switch (prq->eval)
756     {
757     case GNUNET_BLOCK_EVALUATION_OK_MORE:
758       update_request_performance_data (prq, pr);
759       break;
760     case GNUNET_BLOCK_EVALUATION_OK_LAST:
761       /* short cut: stop processing early, no BF-update, etc. */
762       update_request_performance_data (prq, pr);
763       GNUNET_LOAD_update (GSF_rt_entry_lifetime,
764                           GNUNET_TIME_absolute_get_duration (pr->public_data.start_time).rel_value);
765       /* pass on to other peers / local clients */
766       pr->rh (pr->rh_cls,             
767               prq->eval,
768               pr,
769               prq->expiration,
770               prq->type,
771               prq->data, prq->size);
772       return GNUNET_YES;
773     case GNUNET_BLOCK_EVALUATION_OK_DUPLICATE:
774       GNUNET_STATISTICS_update (GSF_stats,
775                                 gettext_noop ("# duplicate replies discarded (bloomfilter)"),
776                                 1,
777                                 GNUNET_NO);
778 #if DEBUG_FS && 0
779       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
780                   "Duplicate response `%s', discarding.\n",
781                   GNUNET_h2s (&mhash));
782 #endif
783       return GNUNET_YES; /* duplicate */
784     case GNUNET_BLOCK_EVALUATION_RESULT_INVALID:
785       return GNUNET_YES; /* wrong namespace */  
786     case GNUNET_BLOCK_EVALUATION_REQUEST_VALID:
787       GNUNET_break (0);
788       return GNUNET_YES;
789     case GNUNET_BLOCK_EVALUATION_REQUEST_INVALID:
790       GNUNET_break (0);
791       return GNUNET_YES;
792     case GNUNET_BLOCK_EVALUATION_TYPE_NOT_SUPPORTED:
793       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
794                   _("Unsupported block type %u\n"),
795                   prq->type);
796       return GNUNET_NO;
797     }
798   /* update bloomfilter */
799   GNUNET_CRYPTO_hash (prq->data,
800                       prq->size,
801                       &chash);
802   GSF_pending_request_update_ (pr, &chash, 1);
803   if (NULL == prq->sender)
804     {
805 #if DEBUG_FS
806       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
807                   "Found result for query `%s' in local datastore\n",
808                   GNUNET_h2s (key));
809 #endif
810       GNUNET_STATISTICS_update (GSF_stats,
811                                 gettext_noop ("# results found locally"),
812                                 1,
813                                 GNUNET_NO);      
814     }
815   else
816     {     
817       GSF_dht_lookup_ (pr);
818     }
819   prq->priority += pr->public_data.original_priority;
820   pr->public_data.priority = 0;
821   pr->public_data.original_priority = 0;
822   pr->public_data.results_found++;
823   prq->request_found = GNUNET_YES;
824   /* finally, pass on to other peer / local client */
825   pr->rh (pr->rh_cls,
826           prq->eval,
827           pr, 
828           prq->expiration,
829           prq->type,
830           prq->data, prq->size);
831   return GNUNET_YES;
832 }
833
834
835 /**
836  * Context for the 'put_migration_continuation'.
837  */
838 struct PutMigrationContext
839 {
840
841   /**
842    * Start time for the operation.
843    */
844   struct GNUNET_TIME_Absolute start;
845
846   /**
847    * Request origin.
848    */
849   struct GNUNET_PeerIdentity origin;
850
851   /**
852    * GNUNET_YES if we had a matching request for this block,
853    * GNUNET_NO if not.
854    */
855   int requested;
856 };
857
858
859 /**
860  * Continuation called to notify client about result of the
861  * operation.
862  *
863  * @param cls closure
864  * @param success GNUNET_SYSERR on failure
865  * @param msg NULL on success, otherwise an error message
866  */
867 static void 
868 put_migration_continuation (void *cls,
869                             int success,
870                             const char *msg)
871 {
872   struct PutMigrationContext *pmc = cls;
873   struct GNUNET_TIME_Relative delay;
874   struct GNUNET_TIME_Relative block_time;  
875   struct GSF_ConnectedPeer *cp;
876   struct GSF_PeerPerformanceData *ppd;
877                          
878   delay = GNUNET_TIME_absolute_get_duration (pmc->start);
879   cp = GSF_peer_get_ (&pmc->origin);
880   if ( (GNUNET_OK != success) &&
881        (GNUNET_NO == pmc->requested) )
882     {
883       /* block migration for a bit... */
884       if (NULL != cp)
885         {
886           ppd = GSF_get_peer_performance_data_ (cp);
887           ppd->migration_duplication++;
888           block_time = GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS,
889                                                       5 * ppd->migration_duplication + 
890                                                       GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 5));
891           GSF_block_peer_migration_ (cp, block_time);
892         }
893     }
894   else
895     {
896       if (NULL != cp)
897         {
898           ppd = GSF_get_peer_performance_data_ (cp);
899           ppd->migration_duplication = 0; /* reset counter */
900         }
901     }
902   GNUNET_free (pmc);
903   /* FIXME: should we really update the load value on failure? */
904   GNUNET_LOAD_update (datastore_put_load,
905                       delay.rel_value);
906   if (GNUNET_OK == success)
907     return;
908   GNUNET_STATISTICS_update (GSF_stats,
909                             gettext_noop ("# datastore 'put' failures"),
910                             1,
911                             GNUNET_NO);
912 }
913
914
915 /**
916  * Test if the DATABASE (PUT) load on this peer is too high
917  * to even consider processing the query at
918  * all.  
919  * 
920  * @return GNUNET_YES if the load is too high to do anything (load high)
921  *         GNUNET_NO to process normally (load normal or low)
922  */
923 static int
924 test_put_load_too_high (uint32_t priority)
925 {
926   double ld;
927
928   if (GNUNET_LOAD_get_average (datastore_put_load) < 50)
929     return GNUNET_NO; /* very fast */
930   ld = GNUNET_LOAD_get_load (datastore_put_load);
931   if (ld < 2.0 * (1 + priority))
932     return GNUNET_NO;
933   GNUNET_STATISTICS_update (GSF_stats,
934                             gettext_noop ("# storage requests dropped due to high load"),
935                             1,
936                             GNUNET_NO);
937   return GNUNET_YES;
938 }
939
940
941 /**
942  * Iterator called on each result obtained for a DHT
943  * operation that expects a reply
944  *
945  * @param cls closure
946  * @param exp when will this value expire
947  * @param key key of the result
948  * @param get_path NULL-terminated array of pointers
949  *                 to the peers on reverse GET path (or NULL if not recorded)
950  * @param put_path NULL-terminated array of pointers
951  *                 to the peers on the PUT path (or NULL if not recorded)
952  * @param type type of the result
953  * @param size number of bytes in data
954  * @param data pointer to the result data
955  */
956 static void
957 handle_dht_reply (void *cls,
958                   struct GNUNET_TIME_Absolute exp,
959                   const GNUNET_HashCode *key,
960                   const struct GNUNET_PeerIdentity * const *get_path,
961                   const struct GNUNET_PeerIdentity * const *put_path,
962                   enum GNUNET_BLOCK_Type type,
963                   size_t size,
964                   const void *data)
965 {
966   struct GSF_PendingRequest *pr = cls;
967   struct ProcessReplyClosure prq;
968   struct PutMigrationContext *pmc;
969
970   memset (&prq, 0, sizeof (prq));
971   prq.data = data;
972   prq.expiration = exp;
973   prq.size = size;  
974   prq.type = type;
975   process_reply (&prq, key, pr);
976   if ( (GNUNET_YES == active_to_migration) &&
977        (GNUNET_NO == test_put_load_too_high (prq.priority)) )
978     {      
979 #if DEBUG_FS
980       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
981                   "Replicating result for query `%s' with priority %u\n",
982                   GNUNET_h2s (key),
983                   prq.priority);
984 #endif
985       pmc = GNUNET_malloc (sizeof (struct PutMigrationContext));
986       pmc->start = GNUNET_TIME_absolute_get ();
987       pmc->requested = GNUNET_YES;
988       if (NULL == 
989           GNUNET_DATASTORE_put (GSF_dsh,
990                                 0, key, size, data,
991                                 type, prq.priority, 1 /* anonymity */, 
992                                 0 /* replication */,
993                                 exp, 
994                                 1 + prq.priority, MAX_DATASTORE_QUEUE,
995                                 GNUNET_CONSTANTS_SERVICE_TIMEOUT,
996                                 &put_migration_continuation, 
997                                 pmc))
998         {
999           put_migration_continuation (pmc, GNUNET_NO, NULL);    
1000         }
1001     }
1002 }
1003
1004
1005 /**
1006  * Consider looking up the data in the DHT (anonymity-level permitting).
1007  *
1008  * @param pr the pending request to process
1009  */
1010 void
1011 GSF_dht_lookup_ (struct GSF_PendingRequest *pr)
1012 {
1013   const void *xquery;
1014   size_t xquery_size;
1015   struct GNUNET_PeerIdentity pi;
1016   char buf[sizeof (GNUNET_HashCode) * 2];
1017
1018   if (0 != pr->public_data.anonymity_level)
1019     return;
1020   if (NULL != pr->gh)
1021     {
1022       GNUNET_DHT_get_stop (pr->gh);
1023       pr->gh = NULL;
1024     }
1025   xquery = NULL;
1026   xquery_size = 0;
1027   if (GNUNET_BLOCK_TYPE_FS_SBLOCK == pr->public_data.type)
1028     {
1029       xquery = buf;
1030       memcpy (buf, &pr->public_data.namespace, sizeof (GNUNET_HashCode));
1031       xquery_size = sizeof (GNUNET_HashCode);
1032     }
1033   if (0 != (pr->public_data.options & GSF_PRO_FORWARD_ONLY))
1034     {
1035       GNUNET_PEER_resolve (pr->sender_pid,
1036                            &pi);
1037       memcpy (&buf[xquery_size], &pi, sizeof (struct GNUNET_PeerIdentity));
1038       xquery_size += sizeof (struct GNUNET_PeerIdentity);
1039     }
1040   pr->gh = GNUNET_DHT_get_start (GSF_dht,
1041                                  GNUNET_TIME_UNIT_FOREVER_REL,
1042                                  pr->public_data.type,
1043                                  &pr->public_data.query,
1044                                  DEFAULT_GET_REPLICATION,
1045                                  GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE,
1046                                  pr->bf,
1047                                  pr->mingle,
1048                                  xquery,
1049                                  xquery_size,
1050                                  &handle_dht_reply,
1051                                  pr);
1052 }
1053
1054
1055 /**
1056  * Task that issues a warning if the datastore lookup takes too long.
1057  * 
1058  * @param cls the 'struct GSF_PendingRequest'
1059  * @param tc task context
1060  */
1061 static void
1062 warn_delay_task (void *cls,
1063                  const struct GNUNET_SCHEDULER_TaskContext *tc)
1064 {
1065   struct GSF_PendingRequest *pr = cls;
1066
1067   GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1068               _("Datastore lookup already took %llu ms!\n"),
1069               (unsigned long long) GNUNET_TIME_absolute_get_duration (pr->qe_start).rel_value);
1070   pr->warn_task = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_MINUTES,
1071                                                 &warn_delay_task,
1072                                                 pr);
1073 }
1074
1075
1076 /**
1077  * Task that issues a warning if the datastore lookup takes too long.
1078  * 
1079  * @param cls the 'struct GSF_PendingRequest'
1080  * @param tc task context
1081  */
1082 static void
1083 odc_warn_delay_task (void *cls,
1084                      const struct GNUNET_SCHEDULER_TaskContext *tc)
1085 {
1086   struct GSF_PendingRequest *pr = cls;
1087
1088   GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
1089               _("On-demand lookup already took %llu ms!\n"),
1090               (unsigned long long) GNUNET_TIME_absolute_get_duration (pr->qe_start).rel_value);
1091   pr->warn_task = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_MINUTES,
1092                                                 &odc_warn_delay_task,
1093                                                 pr);
1094 }
1095
1096
1097 /**
1098  * We're processing (local) results for a search request
1099  * from another peer.  Pass applicable results to the
1100  * peer and if we are done either clean up (operation
1101  * complete) or forward to other peers (more results possible).
1102  *
1103  * @param cls our closure (struct PendingRequest)
1104  * @param key key for the content
1105  * @param size number of bytes in data
1106  * @param data content stored
1107  * @param type type of the content
1108  * @param priority priority of the content
1109  * @param anonymity anonymity-level for the content
1110  * @param expiration expiration time for the content
1111  * @param uid unique identifier for the datum;
1112  *        maybe 0 if no unique identifier is available
1113  */
1114 static void
1115 process_local_reply (void *cls,
1116                      const GNUNET_HashCode *key,
1117                      size_t size,
1118                      const void *data,
1119                      enum GNUNET_BLOCK_Type type,
1120                      uint32_t priority,
1121                      uint32_t anonymity,
1122                      struct GNUNET_TIME_Absolute expiration, 
1123                      uint64_t uid)
1124 {
1125   struct GSF_PendingRequest *pr = cls;
1126   GSF_LocalLookupContinuation cont;
1127   struct ProcessReplyClosure prq;
1128   GNUNET_HashCode query;
1129   unsigned int old_rf;
1130   
1131   pr->qe = NULL;
1132   GNUNET_SCHEDULER_cancel (pr->warn_task);
1133   pr->warn_task = GNUNET_SCHEDULER_NO_TASK;
1134   if (0 == pr->replies_seen_count)
1135     {
1136       pr->first_uid = uid;
1137     }
1138   else
1139     {
1140       if (uid == pr->first_uid)
1141         key = NULL; /* all replies seen! */
1142     }
1143   if (NULL == key)
1144     {
1145 #if DEBUG_FS > 1
1146       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1147                   "No further local responses available.\n");
1148 #endif
1149       if ( (pr->public_data.type == GNUNET_BLOCK_TYPE_FS_DBLOCK) ||
1150            (pr->public_data.type == GNUNET_BLOCK_TYPE_FS_IBLOCK) )
1151         GNUNET_STATISTICS_update (GSF_stats,
1152                                   gettext_noop ("# requested DBLOCK or IBLOCK not found"),
1153                                   1,
1154                                   GNUNET_NO);
1155       goto check_error_and_continue;
1156     }
1157 #if DEBUG_FS
1158   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1159               "Received reply for `%s' of type %d with UID %llu from datastore.\n",
1160               GNUNET_h2s (key),
1161               type,
1162               (unsigned long long) uid);
1163 #endif
1164   if (type == GNUNET_BLOCK_TYPE_FS_ONDEMAND)
1165     {
1166 #if DEBUG_FS > 1
1167       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1168                   "Found ONDEMAND block, performing on-demand encoding\n");
1169 #endif
1170       GNUNET_STATISTICS_update (GSF_stats,
1171                                 gettext_noop ("# on-demand blocks matched requests"),
1172                                 1,
1173                                 GNUNET_NO);
1174       pr->qe_start = GNUNET_TIME_absolute_get ();
1175       pr->warn_task = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_MINUTES,
1176                                                     &odc_warn_delay_task,
1177                                                     pr);
1178       if (GNUNET_OK == 
1179           GNUNET_FS_handle_on_demand_block (key, size, data, type, priority, 
1180                                             anonymity, expiration, uid, 
1181                                             &process_local_reply,
1182                                             pr))
1183         {
1184           GNUNET_STATISTICS_update (GSF_stats,
1185                                     gettext_noop ("# on-demand lookups performed successfully"),
1186                                     1,
1187                                     GNUNET_NO);
1188           return; /* we're done */
1189         }
1190       GNUNET_STATISTICS_update (GSF_stats,
1191                                 gettext_noop ("# on-demand lookups failed"),
1192                                 1,
1193                                 GNUNET_NO);
1194       GNUNET_SCHEDULER_cancel (pr->warn_task);
1195       pr->warn_task = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_MINUTES,
1196                                                     &warn_delay_task,
1197                                                     pr);        
1198       pr->qe = GNUNET_DATASTORE_get_key (GSF_dsh,
1199                                          pr->local_result_offset - 1,
1200                                          &pr->public_data.query,
1201                                          pr->public_data.type == GNUNET_BLOCK_TYPE_FS_DBLOCK 
1202                                          ? GNUNET_BLOCK_TYPE_ANY 
1203                                          : pr->public_data.type, 
1204                                          (0 != (GSF_PRO_PRIORITY_UNLIMITED & pr->public_data.options))
1205                                          ? UINT_MAX
1206                                          : 1 /* queue priority */,
1207                                          (0 != (GSF_PRO_PRIORITY_UNLIMITED & pr->public_data.options))
1208                                          ? UINT_MAX
1209                                          : 1 /* max queue size */,
1210                                          GNUNET_TIME_UNIT_FOREVER_REL,
1211                                          &process_local_reply,
1212                                          pr);
1213       if (NULL != pr->qe)
1214         return; /* we're done */        
1215       goto check_error_and_continue;
1216     }
1217   old_rf = pr->public_data.results_found;
1218   memset (&prq, 0, sizeof (prq));
1219   prq.data = data;
1220   prq.expiration = expiration;
1221   prq.size = size;  
1222   if (GNUNET_OK != 
1223       GNUNET_BLOCK_get_key (GSF_block_ctx,
1224                             type,
1225                             data,
1226                             size,
1227                             &query))
1228     {
1229       GNUNET_break (0);
1230       GNUNET_DATASTORE_remove (GSF_dsh,
1231                                key,
1232                                size, data,
1233                                -1, -1, 
1234                                GNUNET_TIME_UNIT_FOREVER_REL,
1235                                NULL, NULL);
1236       pr->qe_start = GNUNET_TIME_absolute_get ();
1237       pr->warn_task = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_MINUTES,
1238                                                     &warn_delay_task,
1239                                                     pr);
1240       pr->qe = GNUNET_DATASTORE_get_key (GSF_dsh,
1241                                          pr->local_result_offset - 1,
1242                                          &pr->public_data.query,
1243                                          pr->public_data.type == GNUNET_BLOCK_TYPE_FS_DBLOCK 
1244                                          ? GNUNET_BLOCK_TYPE_ANY 
1245                                          : pr->public_data.type, 
1246                                          (0 != (GSF_PRO_PRIORITY_UNLIMITED & pr->public_data.options))
1247                                          ? UINT_MAX
1248                                          : 1 /* queue priority */,
1249                                          (0 != (GSF_PRO_PRIORITY_UNLIMITED & pr->public_data.options))
1250                                          ? UINT_MAX
1251                                          : 1 /* max queue size */,
1252                                          GNUNET_TIME_UNIT_FOREVER_REL,
1253                                          &process_local_reply,
1254                                          pr);
1255       if (pr->qe == NULL)       
1256         goto check_error_and_continue;  
1257       return;
1258     }
1259   prq.type = type;
1260   prq.priority = priority;  
1261   prq.request_found = GNUNET_NO;
1262   prq.anonymity_level = anonymity;
1263   if ( (old_rf == 0) &&
1264        (pr->public_data.results_found == 0) )
1265     GSF_update_datastore_delay_ (pr->public_data.start_time);
1266   process_reply (&prq, key, pr);
1267   pr->local_result = prq.eval;
1268   if (prq.eval == GNUNET_BLOCK_EVALUATION_OK_LAST)
1269     goto check_error_and_continue;
1270   if ( (0 == (GSF_PRO_PRIORITY_UNLIMITED & pr->public_data.options)) &&
1271        ( (GNUNET_YES == GSF_test_get_load_too_high_ (0)) ||
1272          (pr->public_data.results_found > 5 + 2 * pr->public_data.priority) ) )
1273     {
1274 #if DEBUG_FS > 2
1275       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1276                   "Load too high, done with request\n");
1277 #endif
1278       GNUNET_STATISTICS_update (GSF_stats,
1279                                 gettext_noop ("# processing result set cut short due to load"),
1280                                 1,
1281                                 GNUNET_NO);
1282       goto check_error_and_continue;
1283     }
1284   pr->qe_start = GNUNET_TIME_absolute_get ();
1285   pr->warn_task = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_MINUTES,
1286                                                 &warn_delay_task,
1287                                                 pr);
1288   pr->qe = GNUNET_DATASTORE_get_key (GSF_dsh,
1289                                      pr->local_result_offset++,
1290                                      &pr->public_data.query,
1291                                      pr->public_data.type == GNUNET_BLOCK_TYPE_FS_DBLOCK 
1292                                      ? GNUNET_BLOCK_TYPE_ANY 
1293                                      : pr->public_data.type, 
1294                                      (0 != (GSF_PRO_PRIORITY_UNLIMITED & pr->public_data.options))
1295                                      ? UINT_MAX
1296                                      : 1 /* queue priority */,
1297                                      (0 != (GSF_PRO_PRIORITY_UNLIMITED & pr->public_data.options))
1298                                      ? UINT_MAX
1299                                      : 1 /* max queue size */,
1300                                      GNUNET_TIME_UNIT_FOREVER_REL,
1301                                      &process_local_reply,
1302                                      pr);
1303   /* check if we successfully queued another datastore request;
1304      if so, return, otherwise call our continuation (if we have
1305      any) */
1306  check_error_and_continue:
1307   if (NULL != pr->qe)
1308     return;
1309   if (GNUNET_SCHEDULER_NO_TASK != pr->warn_task)
1310     {
1311       GNUNET_SCHEDULER_cancel (pr->warn_task);
1312       pr->warn_task = GNUNET_SCHEDULER_NO_TASK;
1313     }
1314   if (NULL == (cont = pr->llc_cont))
1315     return; /* no continuation */      
1316   pr->llc_cont = NULL;
1317   cont (pr->llc_cont_cls,
1318         pr,
1319         pr->local_result);
1320 }
1321
1322
1323 /**
1324  * Look up the request in the local datastore.
1325  *
1326  * @param pr the pending request to process
1327  * @param cont function to call at the end
1328  * @param cont_cls closure for cont
1329  */
1330 void
1331 GSF_local_lookup_ (struct GSF_PendingRequest *pr,
1332                    GSF_LocalLookupContinuation cont,
1333                    void *cont_cls)
1334 {
1335   GNUNET_assert (NULL == pr->gh);
1336   GNUNET_assert (NULL == pr->llc_cont);
1337   pr->llc_cont = cont;
1338   pr->llc_cont_cls = cont_cls;
1339   pr->qe_start = GNUNET_TIME_absolute_get ();
1340   pr->warn_task = GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_MINUTES,
1341                                                 &warn_delay_task,
1342                                                 pr);
1343   pr->qe = GNUNET_DATASTORE_get_key (GSF_dsh,
1344                                      pr->local_result_offset++,
1345                                      &pr->public_data.query,
1346                                      pr->public_data.type == GNUNET_BLOCK_TYPE_FS_DBLOCK 
1347                                      ? GNUNET_BLOCK_TYPE_ANY 
1348                                      : pr->public_data.type, 
1349                                      (0 != (GSF_PRO_PRIORITY_UNLIMITED & pr->public_data.options))
1350                                      ? UINT_MAX
1351                                      : 1 /* queue priority */,
1352                                      (0 != (GSF_PRO_PRIORITY_UNLIMITED & pr->public_data.options))
1353                                      ? UINT_MAX
1354                                      : 1 /* max queue size */,
1355                                      GNUNET_TIME_UNIT_FOREVER_REL,
1356                                      &process_local_reply,
1357                                      pr);
1358   if (NULL != pr->qe)
1359     return;
1360   GNUNET_SCHEDULER_cancel (pr->warn_task);
1361   pr->warn_task = GNUNET_SCHEDULER_NO_TASK;
1362   pr->llc_cont = NULL;
1363   if (NULL != cont)
1364     cont (cont_cls, pr, pr->local_result);      
1365 }
1366
1367
1368
1369 /**
1370  * Handle P2P "CONTENT" message.  Checks that the message is
1371  * well-formed and then checks if there are any pending requests for
1372  * this content and possibly passes it on (to local clients or other
1373  * peers).  Does NOT perform migration (content caching at this peer).
1374  *
1375  * @param cp the other peer involved (sender or receiver, NULL
1376  *        for loopback messages where we are both sender and receiver)
1377  * @param message the actual message
1378  * @return GNUNET_OK if the message was well-formed,
1379  *         GNUNET_SYSERR if the message was malformed (close connection,
1380  *         do not cache under any circumstances)
1381  */
1382 int
1383 GSF_handle_p2p_content_ (struct GSF_ConnectedPeer *cp,
1384                          const struct GNUNET_MessageHeader *message)
1385 {
1386   const struct PutMessage *put;
1387   uint16_t msize;
1388   size_t dsize;
1389   enum GNUNET_BLOCK_Type type;
1390   struct GNUNET_TIME_Absolute expiration;
1391   GNUNET_HashCode query;
1392   struct ProcessReplyClosure prq;
1393   struct GNUNET_TIME_Relative block_time;  
1394   double putl;
1395   struct PutMigrationContext *pmc;
1396
1397   msize = ntohs (message->size);
1398   if (msize < sizeof (struct PutMessage))
1399     {
1400       GNUNET_break_op(0);
1401       return GNUNET_SYSERR;
1402     }
1403   put = (const struct PutMessage*) message;
1404   dsize = msize - sizeof (struct PutMessage);
1405   type = ntohl (put->type);
1406   expiration = GNUNET_TIME_absolute_ntoh (put->expiration);
1407   if (type == GNUNET_BLOCK_TYPE_FS_ONDEMAND)
1408     return GNUNET_SYSERR;
1409   if (GNUNET_OK !=
1410       GNUNET_BLOCK_get_key (GSF_block_ctx,
1411                             type,
1412                             &put[1],
1413                             dsize,
1414                             &query))
1415     {
1416       GNUNET_break_op (0);
1417       return GNUNET_SYSERR;
1418     }
1419   /* now, lookup 'query' */
1420   prq.data = (const void*) &put[1];
1421   if (NULL != cp)
1422     prq.sender = cp;
1423   else
1424     prq.sender = NULL;
1425   prq.size = dsize;
1426   prq.type = type;
1427   prq.expiration = expiration;
1428   prq.priority = 0;
1429   prq.anonymity_level = 1;
1430   prq.request_found = GNUNET_NO;
1431   GNUNET_CONTAINER_multihashmap_get_multiple (pr_map,
1432                                               &query,
1433                                               &process_reply,
1434                                               &prq);
1435   if (NULL != cp)
1436     {
1437       GSF_connected_peer_change_preference_ (cp, CONTENT_BANDWIDTH_VALUE + 1000 * prq.priority);
1438       GSF_get_peer_performance_data_ (cp)->trust += prq.priority;
1439     }
1440   if ( (GNUNET_YES == active_to_migration) &&
1441        (GNUNET_NO == test_put_load_too_high (prq.priority)) )
1442     {      
1443 #if DEBUG_FS
1444       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1445                   "Replicating result for query `%s' with priority %u\n",
1446                   GNUNET_h2s (&query),
1447                   prq.priority);
1448 #endif
1449       pmc = GNUNET_malloc (sizeof (struct PutMigrationContext));
1450       pmc->start = GNUNET_TIME_absolute_get ();
1451       pmc->requested = prq.request_found;
1452       GNUNET_PEER_resolve (GSF_get_peer_performance_data_ (cp)->pid,
1453                            &pmc->origin);
1454       if (NULL ==
1455           GNUNET_DATASTORE_put (GSF_dsh,
1456                                 0, &query, dsize, &put[1],
1457                                 type, prq.priority, 1 /* anonymity */, 
1458                                 0 /* replication */,
1459                                 expiration, 
1460                                 1 + prq.priority, MAX_DATASTORE_QUEUE,
1461                                 GNUNET_CONSTANTS_SERVICE_TIMEOUT,
1462                                 &put_migration_continuation, 
1463                                 pmc))
1464         {
1465           put_migration_continuation (pmc, GNUNET_NO, NULL);      
1466         }
1467     }
1468   else
1469     {
1470 #if DEBUG_FS
1471       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1472                   "Choosing not to keep content `%s' (%d/%d)\n",
1473                   GNUNET_h2s (&query),
1474                   active_to_migration,
1475                   test_put_load_too_high (prq.priority));
1476 #endif
1477     }
1478   putl = GNUNET_LOAD_get_load (datastore_put_load);
1479   if ( (NULL != (cp = prq.sender)) &&
1480        (GNUNET_NO == prq.request_found) &&
1481        ( (GNUNET_YES != active_to_migration) ||
1482          (putl > 2.5 * (1 + prq.priority)) ) ) 
1483     {
1484       if (GNUNET_YES != active_to_migration) 
1485         putl = 1.0 + GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 5);
1486       block_time = GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MILLISECONDS,
1487                                                   5000 + GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK,
1488                                                                                    (unsigned int) (60000 * putl * putl)));
1489       GSF_block_peer_migration_ (cp, block_time);
1490     }  
1491   return GNUNET_OK;
1492 }
1493
1494
1495 /**
1496  * Setup the subsystem.
1497  */
1498 void
1499 GSF_pending_request_init_ ()
1500 {
1501   if (GNUNET_OK !=
1502       GNUNET_CONFIGURATION_get_value_number (GSF_cfg,
1503                                              "fs",
1504                                              "MAX_PENDING_REQUESTS",
1505                                              &max_pending_requests))
1506     {
1507       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1508                   _("Configuration fails to specify `%s', assuming default value."),
1509                   "MAX_PENDING_REQUESTS");
1510     }
1511   active_to_migration = GNUNET_CONFIGURATION_get_value_yesno (GSF_cfg,
1512                                                               "FS",
1513                                                               "CONTENT_CACHING");
1514   datastore_put_load = GNUNET_LOAD_value_init (DATASTORE_LOAD_AUTODECLINE);
1515   pr_map = GNUNET_CONTAINER_multihashmap_create (32 * 1024);
1516   requests_by_expiration_heap = GNUNET_CONTAINER_heap_create (GNUNET_CONTAINER_HEAP_ORDER_MIN); 
1517 }
1518
1519
1520 /**
1521  * Shutdown the subsystem.
1522  */
1523 void
1524 GSF_pending_request_done_ ()
1525 {
1526   GNUNET_CONTAINER_multihashmap_iterate (pr_map,
1527                                          &clean_request,
1528                                          NULL);
1529   GNUNET_CONTAINER_multihashmap_destroy (pr_map);
1530   pr_map = NULL;
1531   GNUNET_CONTAINER_heap_destroy (requests_by_expiration_heap);
1532   requests_by_expiration_heap = NULL;
1533   GNUNET_LOAD_value_free (datastore_put_load);
1534   datastore_put_load = NULL;
1535 }
1536
1537
1538 /* end of gnunet-service-fs_pr.c */