fixes
[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_pr.h"
32
33
34 /**
35  * An active request.
36  */
37 struct GSF_PendingRequest
38 {
39   /**
40    * Public data for the request.
41    */ 
42   struct GSF_PendingRequestData public_data;
43
44   /**
45    * Function to call if we encounter a reply.
46    */
47   GSF_PendingRequestReplyHandler rh;
48
49   /**
50    * Closure for 'rh'
51    */
52   void *rh_cls;
53
54   /**
55    * Array of hash codes of replies we've already seen.
56    */
57   GNUNET_HashCode *replies_seen;
58
59   /**
60    * Bloomfilter masking replies we've already seen.
61    */
62   struct GNUNET_CONTAINER_BloomFilter *bf;
63
64   /**
65    * Entry for this pending request in the expiration heap, or NULL.
66    */
67   struct GNUNET_CONTAINER_HeapNode *hnode;
68
69   /**
70    * Datastore queue entry for this request (or NULL for none).
71    */
72   struct GNUNET_DATASTORE_QueueEntry *qe;
73
74   /**
75    * DHT request handle for this request (or NULL for none).
76    */
77   struct GNUNET_DHT_GetHandle *gh;
78
79   /**
80    * Function to call upon completion of the local get
81    * request, or NULL for none.
82    */
83   GSF_LocalLookupContinuation llc_cont;
84
85   /**
86    * Closure for llc_cont.
87    */
88   void *llc_cont_cls;
89
90   /**
91    * Last result from the local datastore lookup evaluation.
92    */
93   enum GNUNET_BLOCK_EvaluationResult local_result;
94
95   /**
96    * Identity of the peer that we should use for the 'sender'
97    * (recipient of the response) when forwarding (0 for none).
98    */
99   GNUNET_PEER_Id sender_pid;
100
101   /**
102    * Number of valid entries in the 'replies_seen' array.
103    */
104   unsigned int replies_seen_count;
105
106   /**
107    * Length of the 'replies_seen' array.
108    */
109   unsigned int replies_seen_size;
110
111   /**
112    * Mingle value we currently use for the bf.
113    */
114   uint32_t mingle;
115                             
116 };
117
118
119 /**
120  * All pending requests, ordered by the query.  Entries
121  * are of type 'struct GSF_PendingRequest*'.
122  */
123 static struct GNUNET_CONTAINER_MultiHashMap *pr_map;
124
125
126 /**
127  * Datastore 'PUT' load tracking.
128  */
129 static struct GNUNET_LOAD_Value *datastore_put_load;
130
131
132 /**
133  * Are we allowed to migrate content to this peer.
134  */
135 static int active_to_migration;
136
137
138 /**
139  * Heap with the request that will expire next at the top.  Contains
140  * pointers of type "struct PendingRequest*"; these will *also* be
141  * aliased from the "requests_by_peer" data structures and the
142  * "requests_by_query" table.  Note that requests from our clients
143  * don't expire and are thus NOT in the "requests_by_expiration"
144  * (or the "requests_by_peer" tables).
145  */
146 static struct GNUNET_CONTAINER_Heap *requests_by_expiration_heap;
147
148
149 /**
150  * Maximum number of requests (from other peers, overall) that we're
151  * willing to have pending at any given point in time.  Can be changed
152  * via the configuration file (32k is just the default).
153  */
154 static unsigned long long max_pending_requests = (32 * 1024);
155
156
157 /**
158  * How many bytes should a bloomfilter be if we have already seen
159  * entry_count responses?  Note that BLOOMFILTER_K gives us the number
160  * of bits set per entry.  Furthermore, we should not re-size the
161  * filter too often (to keep it cheap).
162  *
163  * Since other peers will also add entries but not resize the filter,
164  * we should generally pick a slightly larger size than what the
165  * strict math would suggest.
166  *
167  * @return must be a power of two and smaller or equal to 2^15.
168  */
169 static size_t
170 compute_bloomfilter_size (unsigned int entry_count)
171 {
172   size_t size;
173   unsigned int ideal = (entry_count * BLOOMFILTER_K) / 4;
174   uint16_t max = 1 << 15;
175
176   if (entry_count > max)
177     return max;
178   size = 8;
179   while ((size < max) && (size < ideal))
180     size *= 2;
181   if (size > max)
182     return max;
183   return size;
184 }
185
186
187 /**
188  * Recalculate our bloom filter for filtering replies.  This function
189  * will create a new bloom filter from scratch, so it should only be
190  * called if we have no bloomfilter at all (and hence can create a
191  * fresh one of minimal size without problems) OR if our peer is the
192  * initiator (in which case we may resize to larger than mimimum size).
193  *
194  * @param pr request for which the BF is to be recomputed
195  * @return GNUNET_YES if a refresh actually happened
196  */
197 static int
198 refresh_bloomfilter (struct GSF_PendingRequest *pr)
199 {
200   unsigned int i;
201   size_t nsize;
202   GNUNET_HashCode mhash;
203
204   nsize = compute_bloomfilter_size (pr->replies_seen_count);
205   if ( (pr->bf != NULL) &&
206        (nsize == GNUNET_CONTAINER_bloomfilter_get_size (pr->bf)) )
207     return GNUNET_NO; /* size not changed */
208   if (pr->bf != NULL)
209     GNUNET_CONTAINER_bloomfilter_free (pr->bf);
210   pr->mingle = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 
211                                          UINT32_MAX);
212   pr->bf = GNUNET_CONTAINER_bloomfilter_init (NULL, 
213                                               nsize,
214                                               BLOOMFILTER_K);
215   for (i=0;i<pr->replies_seen_count;i++)
216     {
217       GNUNET_BLOCK_mingle_hash (&pr->replies_seen[i],
218                                 pr->mingle,
219                                 &mhash);
220       GNUNET_CONTAINER_bloomfilter_add (pr->bf, &mhash);
221     }
222   return GNUNET_YES;
223 }
224
225
226 /**
227  * Create a new pending request.  
228  *
229  * @param options request options
230  * @param type type of the block that is being requested
231  * @param query key for the lookup
232  * @param namespace namespace to lookup, NULL for no namespace
233  * @param target preferred target for the request, NULL for none
234  * @param bf_data raw data for bloom filter for known replies, can be NULL
235  * @param bf_size number of bytes in bf_data
236  * @param mingle mingle value for bf
237  * @param anonymity_level desired anonymity level
238  * @param priority maximum outgoing cummulative request priority to use
239  * @param ttl current time-to-live for the request
240  * @param sender_pid peer ID to use for the sender when forwarding, 0 for none
241  * @param replies_seen hash codes of known local replies
242  * @param replies_seen_count size of the 'replies_seen' array
243  * @param rh handle to call when we get a reply
244  * @param rh_cls closure for rh
245  * @return handle for the new pending request
246  */
247 struct GSF_PendingRequest *
248 GSF_pending_request_create_ (enum GSF_PendingRequestOptions options,
249                              enum GNUNET_BLOCK_Type type,
250                              const GNUNET_HashCode *query,
251                              const GNUNET_HashCode *namespace,
252                              const struct GNUNET_PeerIdentity *target,
253                              const char *bf_data,
254                              size_t bf_size,
255                              uint32_t mingle,
256                              uint32_t anonymity_level,
257                              uint32_t priority,
258                              int32_t ttl,
259                              GNUNET_PEER_Id sender_pid,
260                              const GNUNET_HashCode *replies_seen,
261                              unsigned int replies_seen_count,
262                              GSF_PendingRequestReplyHandler rh,
263                              void *rh_cls)
264 {
265   struct GSF_PendingRequest *pr;
266   struct GSF_PendingRequest *dpr;
267   
268   pr = GNUNET_malloc (sizeof (struct GSF_PendingRequest));
269   pr->public_data.query = *query;
270   if (GNUNET_BLOCK_TYPE_FS_SBLOCK == type)
271     {
272       GNUNET_assert (NULL != namespace);
273       pr->public_data.namespace = *namespace;
274     }
275   if (NULL != target)
276     {
277       pr->public_data.target = *target;
278       pr->public_data.has_target = GNUNET_YES;
279     }
280   pr->public_data.anonymity_level = anonymity_level;
281   pr->public_data.priority = priority;
282   pr->public_data.original_priority = priority;
283   pr->public_data.options = options;
284   pr->public_data.type = type;  
285   pr->public_data.start_time = GNUNET_TIME_absolute_get ();
286   pr->sender_pid = sender_pid;
287   pr->rh = rh;
288   pr->rh_cls = rh_cls;
289   if (ttl >= 0)
290     pr->public_data.ttl = GNUNET_TIME_relative_to_absolute (GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS,
291                                                                                            (uint32_t) ttl));
292   else
293     pr->public_data.ttl = GNUNET_TIME_absolute_subtract (pr->public_data.start_time,
294                                                          GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS,
295                                                                                         (uint32_t) (- ttl)));
296   if (replies_seen_count > 0)
297     {
298       pr->replies_seen_size = replies_seen_count;
299       pr->replies_seen = GNUNET_malloc (sizeof (GNUNET_HashCode) * pr->replies_seen_size);
300       memcpy (pr->replies_seen,
301               replies_seen,
302               replies_seen_count * sizeof (GNUNET_HashCode));
303       pr->replies_seen_count = replies_seen_count;
304     }
305   if (NULL != bf_data)    
306     {
307       pr->bf = GNUNET_CONTAINER_bloomfilter_init (bf_data,
308                                                   bf_size,
309                                                   BLOOMFILTER_K);
310       pr->mingle = mingle;
311     }
312   else if ( (replies_seen_count > 0) &&
313             (0 != (options & GSF_PRO_BLOOMFILTER_FULL_REFRESH)) )
314     {
315       GNUNET_assert (GNUNET_YES == refresh_bloomfilter (pr));
316     }
317   GNUNET_CONTAINER_multihashmap_put (pr_map,
318                                      query,
319                                      pr,
320                                      GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE);
321   if (0 != (options & GSF_PRO_REQUEST_EXPIRES))
322     {
323       pr->hnode = GNUNET_CONTAINER_heap_insert (requests_by_expiration_heap,
324                                                 pr,
325                                                 pr->public_data.ttl.abs_value);
326       /* make sure we don't track too many requests */
327       while (GNUNET_CONTAINER_heap_get_size (requests_by_expiration_heap) > max_pending_requests)
328         {
329           dpr = GNUNET_CONTAINER_heap_peek (requests_by_expiration_heap);
330           GNUNET_assert (dpr != NULL);
331           if (pr == dpr)
332             break; /* let the request live briefly... */
333           dpr->rh (dpr->rh_cls,
334                    dpr,
335                    GNUNET_TIME_UNIT_FOREVER_ABS,
336                    NULL, 0,
337                    GNUNET_SYSERR);
338           GSF_pending_request_cancel_ (dpr);
339         }
340     }
341   return pr;
342 }
343
344
345 /**
346  * Obtain the public data associated with a pending request
347  * 
348  * @param pr pending request
349  * @return associated public data
350  */
351 struct GSF_PendingRequestData *
352 GSF_pending_request_get_data_ (struct GSF_PendingRequest *pr)
353 {
354   return &pr->public_data;
355 }
356
357
358 /**
359  * Update a given pending request with additional replies
360  * that have been seen.
361  *
362  * @param pr request to update
363  * @param replies_seen hash codes of replies that we've seen
364  * @param replies_seen_count size of the replies_seen array
365  */
366 void
367 GSF_pending_request_update_ (struct GSF_PendingRequest *pr,
368                              const GNUNET_HashCode *replies_seen,
369                              unsigned int replies_seen_count)
370 {
371   unsigned int i;
372   GNUNET_HashCode mhash;
373
374   if (replies_seen_count + pr->replies_seen_count < pr->replies_seen_count)
375     return; /* integer overflow */
376   if (0 != (pr->public_data.options & GSF_PRO_BLOOMFILTER_FULL_REFRESH))
377     {
378       /* we're responsible for the BF, full refresh */
379       if (replies_seen_count + pr->replies_seen_count > pr->replies_seen_size)
380         GNUNET_array_grow (pr->replies_seen,
381                            pr->replies_seen_size,
382                            replies_seen_count + pr->replies_seen_count);
383       memcpy (&pr->replies_seen[pr->replies_seen_count],
384               replies_seen,
385               sizeof (GNUNET_HashCode) * replies_seen_count);
386       pr->replies_seen_count += replies_seen_count;
387       if (GNUNET_NO == refresh_bloomfilter (pr))
388         {
389           /* bf not recalculated, simply extend it with new bits */
390           for (i=0;i<pr->replies_seen_count;i++)
391             {
392               GNUNET_BLOCK_mingle_hash (&replies_seen[i],
393                                         pr->mingle,
394                                         &mhash);
395               GNUNET_CONTAINER_bloomfilter_add (pr->bf, &mhash);
396             }
397         }
398     }
399   else
400     {
401       if (NULL == pr->bf)
402         {
403           /* we're not the initiator, but the initiator did not give us
404              any bloom-filter, so we need to create one on-the-fly */
405           pr->mingle = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 
406                                                  UINT32_MAX);
407           pr->bf = GNUNET_CONTAINER_bloomfilter_init (NULL,
408                                                       compute_bloomfilter_size (replies_seen_count),
409                                                       BLOOMFILTER_K);
410         }
411       for (i=0;i<pr->replies_seen_count;i++)
412         {
413           GNUNET_BLOCK_mingle_hash (&replies_seen[i],
414                                     pr->mingle,
415                                     &mhash);
416           GNUNET_CONTAINER_bloomfilter_add (pr->bf, &mhash);
417         }
418     }
419 }
420
421
422 /**
423  * Generate the message corresponding to the given pending request for
424  * transmission to other peers (or at least determine its size).
425  *
426  * @param pr request to generate the message for
427  * @param buf_size number of bytes available in buf
428  * @param buf where to copy the message (can be NULL)
429  * @return number of bytes needed (if > buf_size) or used
430  */
431 size_t
432 GSF_pending_request_get_message_ (struct GSF_PendingRequest *pr,
433                                   size_t buf_size,
434                                   void *buf)
435 {
436   char lbuf[GNUNET_SERVER_MAX_MESSAGE_SIZE];
437   struct GetMessage *gm;
438   GNUNET_HashCode *ext;
439   size_t msize;
440   unsigned int k;
441   uint32_t bm;
442   uint32_t prio;
443   size_t bf_size;
444   struct GNUNET_TIME_Absolute now;
445   int64_t ttl;
446   int do_route;
447
448
449   k = 0;
450   bm = 0;
451   do_route = (0 == (pr->public_data.options & GSF_PRO_FORWARD_ONLY));
452   if (! do_route)
453     {
454       bm |= GET_MESSAGE_BIT_RETURN_TO;
455       k++;      
456     }
457   if (GNUNET_BLOCK_TYPE_FS_SBLOCK == pr->public_data.type)
458     {
459       bm |= GET_MESSAGE_BIT_SKS_NAMESPACE;
460       k++;
461     }
462   if (GNUNET_YES == pr->public_data.has_target)
463     {
464       bm |= GET_MESSAGE_BIT_TRANSMIT_TO;
465       k++;
466     }
467   bf_size = GNUNET_CONTAINER_bloomfilter_get_size (pr->bf);
468   msize = sizeof (struct GetMessage) + bf_size + k * sizeof(GNUNET_HashCode);
469   GNUNET_assert (msize < GNUNET_SERVER_MAX_MESSAGE_SIZE);
470   if (buf_size < msize)
471     return msize;  
472   gm = (struct GetMessage*) lbuf;
473   gm->header.type = htons (GNUNET_MESSAGE_TYPE_FS_GET);
474   gm->header.size = htons (msize);
475   gm->type = htonl (pr->public_data.type);
476   if (do_route)
477     prio = GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK,
478                                      pr->public_data.priority + 1);
479   else
480     prio = 0;
481   pr->public_data.priority -= prio;
482   gm->priority = htonl (prio);
483   now = GNUNET_TIME_absolute_get ();
484   ttl = (int64_t) (pr->public_data.ttl.abs_value - now.abs_value);
485   gm->ttl = htonl (ttl / 1000);
486   gm->filter_mutator = htonl(pr->mingle); 
487   gm->hash_bitmap = htonl (bm);
488   gm->query = pr->public_data.query;
489   ext = (GNUNET_HashCode*) &gm[1];
490   k = 0;  
491   if (! do_route)
492     GNUNET_PEER_resolve (pr->sender_pid, 
493                          (struct GNUNET_PeerIdentity*) &ext[k++]);
494   if (GNUNET_BLOCK_TYPE_FS_SBLOCK == pr->public_data.type)
495     memcpy (&ext[k++], 
496             &pr->public_data.namespace, 
497             sizeof (GNUNET_HashCode));
498   if (GNUNET_YES == pr->public_data.has_target)
499     GNUNET_PEER_resolve (pr->sender_pid, 
500                          (struct GNUNET_PeerIdentity*) &ext[k++]);
501   if (pr->bf != NULL)
502     GNUNET_CONTAINER_bloomfilter_get_raw_data (pr->bf,
503                                                (char*) &ext[k],
504                                                bf_size);
505   memcpy (buf, gm, msize);
506   return msize;
507 }
508
509
510 /**
511  * Iterator to free pending requests.
512  *
513  * @param cls closure, unused
514  * @param key current key code
515  * @param value value in the hash map (pending request)
516  * @return GNUNET_YES (we should continue to iterate)
517  */
518 static int 
519 clean_request (void *cls,
520                const GNUNET_HashCode * key,
521                void *value)
522 {
523   struct GSF_PendingRequest *pr = value;
524   
525   GNUNET_free_non_null (pr->replies_seen);
526   if (NULL != pr->bf)
527     GNUNET_CONTAINER_bloomfilter_free (pr->bf);
528   GNUNET_PEER_change_rc (pr->sender_pid, -1);
529   if (NULL != pr->hnode)
530     GNUNET_CONTAINER_heap_remove_node (pr->hnode);
531   if (NULL != pr->qe)
532     GNUNET_DATASTORE_cancel (pr->qe);
533   if (NULL != pr->gh)
534     GNUNET_DHT_get_stop (pr->gh);
535   GNUNET_free (pr);
536   return GNUNET_YES;
537 }
538
539
540 /**
541  * Explicitly cancel a pending request.
542  *
543  * @param pr request to cancel
544  */
545 void
546 GSF_pending_request_cancel_ (struct GSF_PendingRequest *pr)
547 {
548   GNUNET_assert (GNUNET_OK ==
549                  GNUNET_CONTAINER_multihashmap_remove (pr_map,
550                                                        &pr->public_data.query,
551                                                        pr));
552   GNUNET_assert (GNUNET_YES ==
553                  clean_request (NULL, &pr->public_data.query, pr));  
554 }
555
556
557 /**
558  * Iterate over all pending requests.
559  *
560  * @param it function to call for each request
561  * @param cls closure for it
562  */
563 void
564 GSF_iterate_pending_requests_ (GSF_PendingRequestIterator it,
565                                void *cls)
566 {
567   GNUNET_CONTAINER_multihashmap_iterate (pr_map,
568                                          (GNUNET_CONTAINER_HashMapIterator) it,
569                                          cls);
570 }
571
572
573
574
575 /**
576  * Closure for "process_reply" function.
577  */
578 struct ProcessReplyClosure
579 {
580   /**
581    * The data for the reply.
582    */
583   const void *data;
584
585   /**
586    * Who gave us this reply? NULL for local host (or DHT)
587    */
588   struct GSF_ConnectedPeer *sender;
589
590   /**
591    * When the reply expires.
592    */
593   struct GNUNET_TIME_Absolute expiration;
594
595   /**
596    * Size of data.
597    */
598   size_t size;
599
600   /**
601    * Type of the block.
602    */
603   enum GNUNET_BLOCK_Type type;
604
605   /**
606    * How much was this reply worth to us?
607    */
608   uint32_t priority;
609
610   /**
611    * Anonymity requirements for this reply.
612    */
613   uint32_t anonymity_level;
614
615   /**
616    * Evaluation result (returned).
617    */
618   enum GNUNET_BLOCK_EvaluationResult eval;
619
620   /**
621    * Did we finish processing the associated request?
622    */ 
623   int finished;
624
625   /**
626    * Did we find a matching request?
627    */
628   int request_found;
629 };
630
631
632 /**
633  * Update the performance data for the sender (if any) since
634  * the sender successfully answered one of our queries.
635  *
636  * @param prq information about the sender
637  * @param pr request that was satisfied
638  */
639 static void
640 update_request_performance_data (struct ProcessReplyClosure *prq,
641                                  struct GSF_PendingRequest *pr)
642 {
643   if (prq->sender == NULL)
644     return;      
645   GSF_peer_update_performance_ (prq->sender,
646                                 pr->public_data.start_time,
647                                 prq->priority);
648 }
649                                 
650
651 /**
652  * We have received a reply; handle it!
653  *
654  * @param cls response (struct ProcessReplyClosure)
655  * @param key our query
656  * @param value value in the hash map (info about the query)
657  * @return GNUNET_YES (we should continue to iterate)
658  */
659 static int
660 process_reply (void *cls,
661                const GNUNET_HashCode * key,
662                void *value)
663 {
664   struct ProcessReplyClosure *prq = cls;
665   struct GSF_PendingRequest *pr = value;
666   GNUNET_HashCode chash;
667
668 #if DEBUG_FS
669   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
670               "Matched result (type %u) for query `%s' with pending request\n",
671               (unsigned int) prq->type,
672               GNUNET_h2s (key));
673 #endif  
674   GNUNET_STATISTICS_update (GSF_stats,
675                             gettext_noop ("# replies received and matched"),
676                             1,
677                             GNUNET_NO);
678   prq->eval = GNUNET_BLOCK_evaluate (GSF_block_ctx,
679                                      prq->type,
680                                      key,
681                                      &pr->bf,
682                                      pr->mingle,
683                                      &pr->public_data.namespace, 
684                                      (prq->type == GNUNET_BLOCK_TYPE_FS_SBLOCK) ? sizeof (GNUNET_HashCode) : 0,
685                                      prq->data,
686                                      prq->size);
687   switch (prq->eval)
688     {
689     case GNUNET_BLOCK_EVALUATION_OK_MORE:
690       update_request_performance_data (prq, pr);
691       break;
692     case GNUNET_BLOCK_EVALUATION_OK_LAST:
693       /* short cut: stop processing early, no BF-update, etc. */
694       update_request_performance_data (prq, pr);
695       GNUNET_LOAD_update (GSF_rt_entry_lifetime,
696                           GNUNET_TIME_absolute_get_duration (pr->public_data.start_time).rel_value);
697       /* pass on to other peers / local clients */
698       pr->rh (pr->rh_cls,             
699               pr,
700               prq->expiration,
701               prq->data, prq->size, 
702               GNUNET_NO);
703       /* destroy request, we're done */
704       prq->finished = GNUNET_YES;
705       GSF_pending_request_cancel_ (pr);
706       return GNUNET_YES;
707     case GNUNET_BLOCK_EVALUATION_OK_DUPLICATE:
708       GNUNET_STATISTICS_update (GSF_stats,
709                                 gettext_noop ("# duplicate replies discarded (bloomfilter)"),
710                                 1,
711                                 GNUNET_NO);
712 #if DEBUG_FS && 0
713       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
714                   "Duplicate response `%s', discarding.\n",
715                   GNUNET_h2s (&mhash));
716 #endif
717       return GNUNET_YES; /* duplicate */
718     case GNUNET_BLOCK_EVALUATION_RESULT_INVALID:
719       return GNUNET_YES; /* wrong namespace */  
720     case GNUNET_BLOCK_EVALUATION_REQUEST_VALID:
721       GNUNET_break (0);
722       return GNUNET_YES;
723     case GNUNET_BLOCK_EVALUATION_REQUEST_INVALID:
724       GNUNET_break (0);
725       return GNUNET_YES;
726     case GNUNET_BLOCK_EVALUATION_TYPE_NOT_SUPPORTED:
727       GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
728                   _("Unsupported block type %u\n"),
729                   prq->type);
730       return GNUNET_NO;
731     }
732   /* update bloomfilter */
733   GNUNET_CRYPTO_hash (prq->data,
734                       prq->size,
735                       &chash);
736   GSF_pending_request_update_ (pr, &chash, 1);
737   if (NULL == prq->sender)
738     {
739 #if DEBUG_FS
740       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
741                   "Found result for query `%s' in local datastore\n",
742                   GNUNET_h2s (key));
743 #endif
744       GNUNET_STATISTICS_update (GSF_stats,
745                                 gettext_noop ("# results found locally"),
746                                 1,
747                                 GNUNET_NO);      
748     }
749   else
750     {     
751       GSF_dht_lookup_ (pr);
752     }
753   prq->priority += pr->public_data.original_priority;
754   pr->public_data.priority = 0;
755   pr->public_data.original_priority = 0;
756   pr->public_data.results_found++;
757   prq->request_found = GNUNET_YES;
758   /* finally, pass on to other peer / local client */
759   pr->rh (pr->rh_cls,
760           pr, 
761           prq->expiration,
762           prq->data, prq->size, 
763           GNUNET_YES);
764   return GNUNET_YES;
765 }
766
767
768 /**
769  * Continuation called to notify client about result of the
770  * operation.
771  *
772  * @param cls closure
773  * @param success GNUNET_SYSERR on failure
774  * @param msg NULL on success, otherwise an error message
775  */
776 static void 
777 put_migration_continuation (void *cls,
778                             int success,
779                             const char *msg)
780 {
781   struct GNUNET_TIME_Absolute *start = cls;
782   struct GNUNET_TIME_Relative delay;
783   
784   delay = GNUNET_TIME_absolute_get_duration (*start);
785   GNUNET_free (start);
786   /* FIXME: should we really update the load value on failure? */
787   GNUNET_LOAD_update (datastore_put_load,
788                       delay.rel_value);
789   if (GNUNET_OK == success)
790     return;
791   GNUNET_STATISTICS_update (GSF_stats,
792                             gettext_noop ("# datastore 'put' failures"),
793                             1,
794                             GNUNET_NO);
795 }
796
797
798 /**
799  * Test if the DATABASE (PUT) load on this peer is too high
800  * to even consider processing the query at
801  * all.  
802  * 
803  * @return GNUNET_YES if the load is too high to do anything (load high)
804  *         GNUNET_NO to process normally (load normal or low)
805  */
806 static int
807 test_put_load_too_high (uint32_t priority)
808 {
809   double ld;
810
811   if (GNUNET_LOAD_get_average (datastore_put_load) < 50)
812     return GNUNET_NO; /* very fast */
813   ld = GNUNET_LOAD_get_load (datastore_put_load);
814   if (ld < 2.0 * (1 + priority))
815     return GNUNET_NO;
816   GNUNET_STATISTICS_update (GSF_stats,
817                             gettext_noop ("# storage requests dropped due to high load"),
818                             1,
819                             GNUNET_NO);
820   return GNUNET_YES;
821 }
822
823
824 /**
825  * Iterator called on each result obtained for a DHT
826  * operation that expects a reply
827  *
828  * @param cls closure
829  * @param exp when will this value expire
830  * @param key key of the result
831  * @param get_path NULL-terminated array of pointers
832  *                 to the peers on reverse GET path (or NULL if not recorded)
833  * @param put_path NULL-terminated array of pointers
834  *                 to the peers on the PUT path (or NULL if not recorded)
835  * @param type type of the result
836  * @param size number of bytes in data
837  * @param data pointer to the result data
838  */
839 static void
840 handle_dht_reply (void *cls,
841                   struct GNUNET_TIME_Absolute exp,
842                   const GNUNET_HashCode *key,
843                   const struct GNUNET_PeerIdentity * const *get_path,
844                   const struct GNUNET_PeerIdentity * const *put_path,
845                   enum GNUNET_BLOCK_Type type,
846                   size_t size,
847                   const void *data)
848 {
849   struct GSF_PendingRequest *pr = cls;
850   struct ProcessReplyClosure prq;
851   struct GNUNET_TIME_Absolute *start;
852
853   memset (&prq, 0, sizeof (prq));
854   prq.data = data;
855   prq.expiration = exp;
856   prq.size = size;  
857   prq.type = type;
858   process_reply (&prq, key, pr);
859   if ( (GNUNET_YES == active_to_migration) &&
860        (GNUNET_NO == test_put_load_too_high (prq.priority)) )
861     {      
862 #if DEBUG_FS
863       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
864                   "Replicating result for query `%s' with priority %u\n",
865                   GNUNET_h2s (key),
866                   prq.priority);
867 #endif
868       start = GNUNET_malloc (sizeof (struct GNUNET_TIME_Absolute));
869       *start = GNUNET_TIME_absolute_get ();
870       GNUNET_DATASTORE_put (GSF_dsh,
871                             0, key, size, data,
872                             type, prq.priority, 1 /* anonymity */, 
873                             exp, 
874                             1 + prq.priority, MAX_DATASTORE_QUEUE,
875                             GNUNET_CONSTANTS_SERVICE_TIMEOUT,
876                             &put_migration_continuation, 
877                             start);
878     }
879 }
880
881
882 /**
883  * Consider looking up the data in the DHT (anonymity-level permitting).
884  *
885  * @param pr the pending request to process
886  */
887 void
888 GSF_dht_lookup_ (struct GSF_PendingRequest *pr)
889 {
890   const void *xquery;
891   size_t xquery_size;
892   struct GNUNET_PeerIdentity pi;
893   char buf[sizeof (GNUNET_HashCode) * 2];
894
895   if (0 != pr->public_data.anonymity_level)
896     return;
897   if (NULL != pr->gh)
898     {
899       GNUNET_DHT_get_stop (pr->gh);
900       pr->gh = NULL;
901     }
902   xquery = NULL;
903   xquery_size = 0;
904   if (GNUNET_BLOCK_TYPE_FS_SBLOCK == pr->public_data.type)
905     {
906       xquery = buf;
907       memcpy (buf, &pr->public_data.namespace, sizeof (GNUNET_HashCode));
908       xquery_size = sizeof (GNUNET_HashCode);
909     }
910   if (0 != (pr->public_data.options & GSF_PRO_FORWARD_ONLY))
911     {
912       GNUNET_PEER_resolve (pr->sender_pid,
913                            &pi);
914       memcpy (&buf[xquery_size], &pi, sizeof (struct GNUNET_PeerIdentity));
915       xquery_size += sizeof (struct GNUNET_PeerIdentity);
916     }
917   pr->gh = GNUNET_DHT_get_start (GSF_dht,
918                                  GNUNET_TIME_UNIT_FOREVER_REL,
919                                  pr->public_data.type,
920                                  &pr->public_data.query,
921                                  DEFAULT_GET_REPLICATION,
922                                  GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE,
923                                  pr->bf,
924                                  pr->mingle,
925                                  xquery,
926                                  xquery_size,
927                                  &handle_dht_reply,
928                                  pr);
929 }
930
931 /**
932  * We're processing (local) results for a search request
933  * from another peer.  Pass applicable results to the
934  * peer and if we are done either clean up (operation
935  * complete) or forward to other peers (more results possible).
936  *
937  * @param cls our closure (struct PendingRequest)
938  * @param key key for the content
939  * @param size number of bytes in data
940  * @param data content stored
941  * @param type type of the content
942  * @param priority priority of the content
943  * @param anonymity anonymity-level for the content
944  * @param expiration expiration time for the content
945  * @param uid unique identifier for the datum;
946  *        maybe 0 if no unique identifier is available
947  */
948 static void
949 process_local_reply (void *cls,
950                      const GNUNET_HashCode * key,
951                      size_t size,
952                      const void *data,
953                      enum GNUNET_BLOCK_Type type,
954                      uint32_t priority,
955                      uint32_t anonymity,
956                      struct GNUNET_TIME_Absolute expiration, 
957                      uint64_t uid)
958 {
959   struct GSF_PendingRequest *pr = cls;
960   GSF_LocalLookupContinuation cont;
961
962   struct ProcessReplyClosure prq;
963   GNUNET_HashCode query;
964   unsigned int old_rf;
965   
966   if (NULL == key)
967     {
968       pr->qe = NULL;
969       if (NULL != (cont = pr->llc_cont))
970         {
971           pr->llc_cont = NULL;
972           cont (pr->llc_cont_cls,
973                 pr,
974                 pr->local_result);
975         }
976       return;
977     }
978 #if DEBUG_FS
979   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
980               "New local response to `%s' of type %u.\n",
981               GNUNET_h2s (key),
982               type);
983 #endif
984   if (type == GNUNET_BLOCK_TYPE_FS_ONDEMAND)
985     {
986 #if DEBUG_FS
987       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
988                   "Found ONDEMAND block, performing on-demand encoding\n");
989 #endif
990       GNUNET_STATISTICS_update (GSF_stats,
991                                 gettext_noop ("# on-demand blocks matched requests"),
992                                 1,
993                                 GNUNET_NO);
994       if (GNUNET_OK != 
995           GNUNET_FS_handle_on_demand_block (key, size, data, type, priority, 
996                                             anonymity, expiration, uid, 
997                                             &process_local_reply,
998                                             pr))
999         {
1000           if (pr->qe != NULL)
1001             GNUNET_DATASTORE_get_next (GSF_dsh, GNUNET_YES);        
1002         }
1003       return;
1004     }
1005   old_rf = pr->public_data.results_found;
1006   memset (&prq, 0, sizeof (prq));
1007   prq.data = data;
1008   prq.expiration = expiration;
1009   prq.size = size;  
1010   if (GNUNET_OK != 
1011       GNUNET_BLOCK_get_key (GSF_block_ctx,
1012                             type,
1013                             data,
1014                             size,
1015                             &query))
1016     {
1017       GNUNET_break (0);
1018       GNUNET_DATASTORE_remove (GSF_dsh,
1019                                key,
1020                                size, data,
1021                                -1, -1, 
1022                                GNUNET_TIME_UNIT_FOREVER_REL,
1023                                NULL, NULL);
1024       GNUNET_DATASTORE_get_next (GSF_dsh, GNUNET_YES);
1025       return;
1026     }
1027   prq.type = type;
1028   prq.priority = priority;  
1029   prq.finished = GNUNET_NO;
1030   prq.request_found = GNUNET_NO;
1031   prq.anonymity_level = anonymity;
1032   if ( (old_rf == 0) &&
1033        (pr->public_data.results_found == 0) )
1034     GSF_update_datastore_delay_ (pr->public_data.start_time);
1035   process_reply (&prq, key, pr);
1036   if (prq.finished == GNUNET_YES)
1037     return;
1038   pr->local_result = prq.eval;
1039   if (pr->qe == NULL)
1040     return; /* done here */
1041   if (prq.eval == GNUNET_BLOCK_EVALUATION_OK_LAST)
1042     {
1043       GNUNET_DATASTORE_get_next (GSF_dsh, GNUNET_NO);
1044       return;
1045     }
1046   if ( (0 == (GSF_PRO_PRIORITY_UNLIMITED & pr->public_data.options)) &&
1047        ( (GNUNET_YES == GSF_test_get_load_too_high_ (0)) ||
1048          (pr->public_data.results_found > 5 + 2 * pr->public_data.priority) ) )
1049     {
1050 #if DEBUG_FS > 2
1051       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1052                   "Load too high, done with request\n");
1053 #endif
1054       GNUNET_STATISTICS_update (GSF_stats,
1055                                 gettext_noop ("# processing result set cut short due to load"),
1056                                 1,
1057                                 GNUNET_NO);
1058       GNUNET_DATASTORE_get_next (GSF_dsh, GNUNET_NO);
1059       return;
1060     }
1061   GNUNET_DATASTORE_get_next (GSF_dsh, GNUNET_YES);
1062 }
1063
1064
1065 /**
1066  * Look up the request in the local datastore.
1067  *
1068  * @param pr the pending request to process
1069  * @param cont function to call at the end
1070  * @param cont_cls closure for cont
1071  */
1072 void
1073 GSF_local_lookup_ (struct GSF_PendingRequest *pr,
1074                    GSF_LocalLookupContinuation cont,
1075                    void *cont_cls)
1076 {
1077   GNUNET_assert (NULL == pr->gh);
1078   GNUNET_assert (NULL == pr->llc_cont);
1079   pr->llc_cont = cont;
1080   pr->llc_cont_cls = cont_cls;
1081   pr->qe = GNUNET_DATASTORE_get (GSF_dsh,
1082                                  &pr->public_data.query,
1083                                  pr->public_data.type,
1084                                  1 /* queue priority */,
1085                                  1 /* max queue size */,
1086                                  GNUNET_TIME_UNIT_FOREVER_REL,
1087                                  &process_local_reply,
1088                                  pr);
1089 }
1090
1091
1092
1093 /**
1094  * Handle P2P "CONTENT" message.  Checks that the message is
1095  * well-formed and then checks if there are any pending requests for
1096  * this content and possibly passes it on (to local clients or other
1097  * peers).  Does NOT perform migration (content caching at this peer).
1098  *
1099  * @param cp the other peer involved (sender or receiver, NULL
1100  *        for loopback messages where we are both sender and receiver)
1101  * @param message the actual message
1102  * @return GNUNET_OK if the message was well-formed,
1103  *         GNUNET_SYSERR if the message was malformed (close connection,
1104  *         do not cache under any circumstances)
1105  */
1106 int
1107 GSF_handle_p2p_content_ (struct GSF_ConnectedPeer *cp,
1108                          const struct GNUNET_MessageHeader *message)
1109 {
1110   const struct PutMessage *put;
1111   uint16_t msize;
1112   size_t dsize;
1113   enum GNUNET_BLOCK_Type type;
1114   struct GNUNET_TIME_Absolute expiration;
1115   GNUNET_HashCode query;
1116   struct ProcessReplyClosure prq;
1117   struct GNUNET_TIME_Relative block_time;  
1118   double putl;
1119   struct GNUNET_TIME_Absolute *start;
1120
1121   msize = ntohs (message->size);
1122   if (msize < sizeof (struct PutMessage))
1123     {
1124       GNUNET_break_op(0);
1125       return GNUNET_SYSERR;
1126     }
1127   put = (const struct PutMessage*) message;
1128   dsize = msize - sizeof (struct PutMessage);
1129   type = ntohl (put->type);
1130   expiration = GNUNET_TIME_absolute_ntoh (put->expiration);
1131   if (type == GNUNET_BLOCK_TYPE_FS_ONDEMAND)
1132     return GNUNET_SYSERR;
1133   if (GNUNET_OK !=
1134       GNUNET_BLOCK_get_key (GSF_block_ctx,
1135                             type,
1136                             &put[1],
1137                             dsize,
1138                             &query))
1139     {
1140       GNUNET_break_op (0);
1141       return GNUNET_SYSERR;
1142     }
1143   /* now, lookup 'query' */
1144   prq.data = (const void*) &put[1];
1145   if (NULL != cp)
1146     prq.sender = cp;
1147   else
1148     prq.sender = NULL;
1149   prq.size = dsize;
1150   prq.type = type;
1151   prq.expiration = expiration;
1152   prq.priority = 0;
1153   prq.anonymity_level = 1;
1154   prq.finished = GNUNET_NO;
1155   prq.request_found = GNUNET_NO;
1156   GNUNET_CONTAINER_multihashmap_get_multiple (pr_map,
1157                                               &query,
1158                                               &process_reply,
1159                                               &prq);
1160   if (NULL != cp)
1161     {
1162       GSF_connected_peer_change_preference_ (cp, CONTENT_BANDWIDTH_VALUE + 1000 * prq.priority);
1163       GSF_get_peer_performance_data_ (cp)->trust += prq.priority;
1164     }
1165   if ( (GNUNET_YES == active_to_migration) &&
1166        (GNUNET_NO == test_put_load_too_high (prq.priority)) )
1167     {      
1168 #if DEBUG_FS
1169       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1170                   "Replicating result for query `%s' with priority %u\n",
1171                   GNUNET_h2s (&query),
1172                   prq.priority);
1173 #endif
1174       start = GNUNET_malloc (sizeof (struct GNUNET_TIME_Absolute));
1175       *start = GNUNET_TIME_absolute_get ();
1176       GNUNET_DATASTORE_put (GSF_dsh,
1177                             0, &query, dsize, &put[1],
1178                             type, prq.priority, 1 /* anonymity */, 
1179                             expiration, 
1180                             1 + prq.priority, MAX_DATASTORE_QUEUE,
1181                             GNUNET_CONSTANTS_SERVICE_TIMEOUT,
1182                             &put_migration_continuation, 
1183                             start);
1184     }
1185   putl = GNUNET_LOAD_get_load (datastore_put_load);
1186   if ( (NULL != (cp = prq.sender)) &&
1187        (GNUNET_NO == prq.request_found) &&
1188        ( (GNUNET_YES != active_to_migration) ||
1189          (putl > 2.5 * (1 + prq.priority)) ) ) 
1190     {
1191       if (GNUNET_YES != active_to_migration) 
1192         putl = 1.0 + GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK, 5);
1193       block_time = GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MILLISECONDS,
1194                                                   5000 + GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK,
1195                                                                                    (unsigned int) (60000 * putl * putl)));
1196       GSF_block_peer_migration_ (cp, block_time);
1197     }
1198   return GNUNET_OK;
1199 }
1200
1201
1202 /**
1203  * Setup the subsystem.
1204  */
1205 void
1206 GSF_pending_request_init_ ()
1207 {
1208   if (GNUNET_OK !=
1209       GNUNET_CONFIGURATION_get_value_number (GSF_cfg,
1210                                              "fs",
1211                                              "MAX_PENDING_REQUESTS",
1212                                              &max_pending_requests))
1213     {
1214       GNUNET_log (GNUNET_ERROR_TYPE_INFO,
1215                   _("Configuration fails to specify `%s', assuming default value."),
1216                   "MAX_PENDING_REQUESTS");
1217     }
1218   pr_map = GNUNET_CONTAINER_multihashmap_create (32 * 1024);
1219   requests_by_expiration_heap = GNUNET_CONTAINER_heap_create (GNUNET_CONTAINER_HEAP_ORDER_MIN); 
1220 }
1221
1222
1223 /**
1224  * Shutdown the subsystem.
1225  */
1226 void
1227 GSF_pending_request_done_ ()
1228 {
1229   GNUNET_CONTAINER_multihashmap_iterate (pr_map,
1230                                          &clean_request,
1231                                          NULL);
1232   GNUNET_CONTAINER_multihashmap_destroy (pr_map);
1233   pr_map = NULL;
1234   GNUNET_CONTAINER_heap_destroy (requests_by_expiration_heap);
1235   requests_by_expiration_heap = NULL;
1236 }
1237
1238
1239 /* end of gnunet-service-fs_pr.c */