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