-oops, remove printf
[oweals/gnunet.git] / src / fs / gnunet-service-fs_cp.c
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2011 GNUnet e.V.
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., 51 Franklin Street, Fifth Floor,
18      Boston, MA 02110-1301, USA.
19 */
20 /**
21  * @file fs/gnunet-service-fs_cp.c
22  * @brief API to handle 'connected peers'
23  * @author Christian Grothoff
24  */
25 #include "platform.h"
26 #include "gnunet_util_lib.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_pe.h"
31 #include "gnunet-service-fs_pr.h"
32 #include "gnunet-service-fs_push.h"
33 #include "gnunet_peerstore_service.h"
34
35
36 /**
37  * Ratio for moving average delay calculation.  The previous
38  * average goes in with a factor of (n-1) into the calculation.
39  * Must be > 0.
40  */
41 #define RUNAVG_DELAY_N 16
42
43 /**
44  * How often do we flush respect values to disk?
45  */
46 #define RESPECT_FLUSH_FREQ GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 5)
47
48 /**
49  * After how long do we discard a reply?
50  */
51 #define REPLY_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 2)
52
53 /**
54  * Collect an instane number of statistics?  May cause excessive IPC.
55  */
56 #define INSANE_STATISTICS GNUNET_NO
57
58
59 /**
60  * Handle to cancel a transmission request.
61  */
62 struct GSF_PeerTransmitHandle
63 {
64
65   /**
66    * Kept in a doubly-linked list.
67    */
68   struct GSF_PeerTransmitHandle *next;
69
70   /**
71    * Kept in a doubly-linked list.
72    */
73   struct GSF_PeerTransmitHandle *prev;
74
75   /**
76    * Time when this transmission request was issued.
77    */
78   struct GNUNET_TIME_Absolute transmission_request_start_time;
79
80   /**
81    * Timeout for this request.
82    */
83   struct GNUNET_TIME_Absolute timeout;
84
85   /**
86    * Task called on timeout, or 0 for none.
87    */
88   struct GNUNET_SCHEDULER_Task *timeout_task;
89
90   /**
91    * Function to call to get the actual message.
92    */
93   GSF_GetMessageCallback gmc;
94
95   /**
96    * Peer this request targets.
97    */
98   struct GSF_ConnectedPeer *cp;
99
100   /**
101    * Closure for @e gmc.
102    */
103   void *gmc_cls;
104
105   /**
106    * Size of the message to be transmitted.
107    */
108   size_t size;
109
110   /**
111    * #GNUNET_YES if this is a query, #GNUNET_NO for content.
112    */
113   int is_query;
114
115   /**
116    * Did we get a reservation already?
117    */
118   int was_reserved;
119
120   /**
121    * Priority of this request.
122    */
123   uint32_t priority;
124
125 };
126
127
128 /**
129  * Handle for an entry in our delay list.
130  */
131 struct GSF_DelayedHandle
132 {
133
134   /**
135    * Kept in a doubly-linked list.
136    */
137   struct GSF_DelayedHandle *next;
138
139   /**
140    * Kept in a doubly-linked list.
141    */
142   struct GSF_DelayedHandle *prev;
143
144   /**
145    * Peer this transmission belongs to.
146    */
147   struct GSF_ConnectedPeer *cp;
148
149   /**
150    * The PUT that was delayed.
151    */
152   struct PutMessage *pm;
153
154   /**
155    * Task for the delay.
156    */
157   struct GNUNET_SCHEDULER_Task *delay_task;
158
159   /**
160    * Size of the message.
161    */
162   size_t msize;
163
164 };
165
166
167 /**
168  * Information per peer and request.
169  */
170 struct PeerRequest
171 {
172
173   /**
174    * Handle to generic request (generic: from peer or local client).
175    */
176   struct GSF_PendingRequest *pr;
177
178   /**
179    * Which specific peer issued this request?
180    */
181   struct GSF_ConnectedPeer *cp;
182
183   /**
184    * Task for asynchronous stopping of this request.
185    */
186   struct GNUNET_SCHEDULER_Task *kill_task;
187
188 };
189
190
191 /**
192  * A connected peer.
193  */
194 struct GSF_ConnectedPeer
195 {
196
197   /**
198    * Performance data for this peer.
199    */
200   struct GSF_PeerPerformanceData ppd;
201
202   /**
203    * Time until when we blocked this peer from migrating
204    * data to us.
205    */
206   struct GNUNET_TIME_Absolute last_migration_block;
207
208   /**
209    * Task scheduled to revive migration to this peer.
210    */
211   struct GNUNET_SCHEDULER_Task *mig_revive_task;
212
213   /**
214    * Messages (replies, queries, content migration) we would like to
215    * send to this peer in the near future.  Sorted by priority, head.
216    */
217   struct GSF_PeerTransmitHandle *pth_head;
218
219   /**
220    * Messages (replies, queries, content migration) we would like to
221    * send to this peer in the near future.  Sorted by priority, tail.
222    */
223   struct GSF_PeerTransmitHandle *pth_tail;
224
225   /**
226    * Messages (replies, queries, content migration) we would like to
227    * send to this peer in the near future.  Sorted by priority, head.
228    */
229   struct GSF_DelayedHandle *delayed_head;
230
231   /**
232    * Messages (replies, queries, content migration) we would like to
233    * send to this peer in the near future.  Sorted by priority, tail.
234    */
235   struct GSF_DelayedHandle *delayed_tail;
236
237   /**
238    * Migration stop message in our queue, or NULL if we have none pending.
239    */
240   struct GSF_PeerTransmitHandle *migration_pth;
241
242   /**
243    * Context of our GNUNET_ATS_reserve_bandwidth call (or NULL).
244    */
245   struct GNUNET_ATS_ReservationContext *rc;
246
247   /**
248    * Task scheduled if we need to retry bandwidth reservation later.
249    */
250   struct GNUNET_SCHEDULER_Task *rc_delay_task;
251
252   /**
253    * Active requests from this neighbour, map of query to `struct PeerRequest`.
254    */
255   struct GNUNET_CONTAINER_MultiHashMap *request_map;
256
257   /**
258    * Handle for an active request for transmission to this
259    * peer, or NULL (if core queue was full).
260    */
261   struct GNUNET_CORE_TransmitHandle *cth;
262
263   /**
264    * Increase in traffic preference still to be submitted
265    * to the core service for this peer.
266    */
267   uint64_t inc_preference;
268
269   /**
270    * Set to 1 if we're currently in the process of calling
271    * #GNUNET_CORE_notify_transmit_ready() (so while @e cth is
272    * NULL, we should not call notify_transmit_ready for this
273    * handle right now).
274    */
275   unsigned int cth_in_progress;
276
277   /**
278    * Number of entries in @e delayed_head DLL.
279    */
280   unsigned int delay_queue_size;
281
282   /**
283    * Respect rating for this peer on disk.
284    */
285   uint32_t disk_respect;
286
287   /**
288    * Which offset in @e last_p2p_replies will be updated next?
289    * (we go round-robin).
290    */
291   unsigned int last_p2p_replies_woff;
292
293   /**
294    * Which offset in @e last_client_replies will be updated next?
295    * (we go round-robin).
296    */
297   unsigned int last_client_replies_woff;
298
299   /**
300    * Current offset into @e last_request_times ring buffer.
301    */
302   unsigned int last_request_times_off;
303
304   /**
305    * #GNUNET_YES if we did successfully reserve 32k bandwidth,
306    * #GNUNET_NO if not.
307    */
308   int did_reserve;
309
310   /**
311    * Function called when the creation of this record is complete.
312    */
313   GSF_ConnectedPeerCreationCallback creation_cb;
314
315   /**
316    * Closure for @e creation_cb
317    */
318   void *creation_cb_cls;
319
320   /**
321    * Handle to the PEERSTORE iterate request for peer respect value
322    */
323   struct GNUNET_PEERSTORE_IterateContext *respect_iterate_req;
324
325 };
326
327
328 /**
329  * Map from peer identities to `struct GSF_ConnectPeer` entries.
330  */
331 static struct GNUNET_CONTAINER_MultiPeerMap *cp_map;
332
333 /**
334  * Handle to peerstore service.
335  */
336 static struct GNUNET_PEERSTORE_Handle *peerstore;
337
338 /**
339  * Task used to flush respect values to disk.
340  */
341 static struct GNUNET_SCHEDULER_Task *fr_task;
342
343
344 /**
345  * Update the latency information kept for the given peer.
346  *
347  * @param id peer record to update
348  * @param latency current latency value
349  */
350 void
351 GSF_update_peer_latency_ (const struct GNUNET_PeerIdentity *id,
352                           struct GNUNET_TIME_Relative latency)
353 {
354   struct GSF_ConnectedPeer *cp;
355
356   cp = GSF_peer_get_ (id);
357   if (NULL == cp)
358     return; /* we're not yet connected at the core level, ignore */
359   GNUNET_LOAD_value_set_decline (cp->ppd.transmission_delay,
360                                  latency);
361 }
362
363
364 /**
365  * Return the performance data record for the given peer
366  *
367  * @param cp peer to query
368  * @return performance data record for the peer
369  */
370 struct GSF_PeerPerformanceData *
371 GSF_get_peer_performance_data_ (struct GSF_ConnectedPeer *cp)
372 {
373   return &cp->ppd;
374 }
375
376
377 /**
378  * Core is ready to transmit to a peer, get the message.
379  *
380  * @param cls the `struct GSF_PeerTransmitHandle` of the message
381  * @param size number of bytes core is willing to take
382  * @param buf where to copy the message
383  * @return number of bytes copied to @a buf
384  */
385 static size_t
386 peer_transmit_ready_cb (void *cls,
387                         size_t size,
388                         void *buf);
389
390
391 /**
392  * Function called by core upon success or failure of our bandwidth reservation request.
393  *
394  * @param cls the `struct GSF_ConnectedPeer` of the peer for which we made the request
395  * @param peer identifies the peer
396  * @param amount set to the amount that was actually reserved or unreserved;
397  *               either the full requested amount or zero (no partial reservations)
398  * @param res_delay if the reservation could not be satisfied (amount was 0), how
399  *        long should the client wait until re-trying?
400  */
401 static void
402 ats_reserve_callback (void *cls,
403                       const struct GNUNET_PeerIdentity *peer,
404                       int32_t amount,
405                       struct GNUNET_TIME_Relative res_delay);
406
407
408 /**
409  * If ready (bandwidth reserved), try to schedule transmission via
410  * core for the given handle.
411  *
412  * @param pth transmission handle to schedule
413  */
414 static void
415 schedule_transmission (struct GSF_PeerTransmitHandle *pth)
416 {
417   struct GSF_ConnectedPeer *cp;
418   struct GNUNET_PeerIdentity target;
419
420   cp = pth->cp;
421   if ((NULL != cp->cth) || (0 != cp->cth_in_progress))
422     return;                     /* already done */
423   GNUNET_assert (0 != cp->ppd.pid);
424   GNUNET_PEER_resolve (cp->ppd.pid, &target);
425
426   if (0 != cp->inc_preference)
427   {
428     GNUNET_ATS_performance_change_preference (GSF_ats,
429                                               &target,
430                                               GNUNET_ATS_PREFERENCE_BANDWIDTH,
431                                               (double) cp->inc_preference,
432                                               GNUNET_ATS_PREFERENCE_END);
433     cp->inc_preference = 0;
434   }
435
436   if ( (GNUNET_YES == pth->is_query) &&
437        (GNUNET_YES != pth->was_reserved) )
438   {
439     /* query, need reservation */
440     if (GNUNET_YES != cp->did_reserve)
441       return;                   /* not ready */
442     cp->did_reserve = GNUNET_NO;
443     /* reservation already done! */
444     pth->was_reserved = GNUNET_YES;
445     cp->rc = GNUNET_ATS_reserve_bandwidth (GSF_ats,
446                                            &target,
447                                            DBLOCK_SIZE,
448                                            &ats_reserve_callback,
449                                            cp);
450     return;
451   }
452   GNUNET_assert (NULL == cp->cth);
453   cp->cth_in_progress++;
454   cp->cth =
455     GNUNET_CORE_notify_transmit_ready (GSF_core,
456                                        GNUNET_YES,
457                                        GNUNET_CORE_PRIO_BACKGROUND,
458                                        GNUNET_TIME_absolute_get_remaining (pth->timeout),
459                                        &target,
460                                        pth->size,
461                                        &peer_transmit_ready_cb, cp);
462   GNUNET_assert (NULL != cp->cth);
463   GNUNET_assert (0 < cp->cth_in_progress--);
464 }
465
466
467 /**
468  * Core is ready to transmit to a peer, get the message.
469  *
470  * @param cls the `struct GSF_PeerTransmitHandle` of the message
471  * @param size number of bytes core is willing to take
472  * @param buf where to copy the message
473  * @return number of bytes copied to @a buf
474  */
475 static size_t
476 peer_transmit_ready_cb (void *cls,
477                         size_t size,
478                         void *buf)
479 {
480   struct GSF_ConnectedPeer *cp = cls;
481   struct GSF_PeerTransmitHandle *pth = cp->pth_head;
482   struct GSF_PeerTransmitHandle *pos;
483   size_t ret;
484
485   cp->cth = NULL;
486   if (NULL == pth)
487     return 0;
488   if (pth->size > size)
489   {
490     schedule_transmission (pth);
491     return 0;
492   }
493   if (NULL != pth->timeout_task)
494   {
495     GNUNET_SCHEDULER_cancel (pth->timeout_task);
496     pth->timeout_task = NULL;
497   }
498   GNUNET_CONTAINER_DLL_remove (cp->pth_head,
499                                cp->pth_tail,
500                                pth);
501   if (GNUNET_YES == pth->is_query)
502   {
503     cp->ppd.last_request_times[(cp->last_request_times_off++) %
504                                MAX_QUEUE_PER_PEER] =
505       GNUNET_TIME_absolute_get ();
506     GNUNET_assert (0 < cp->ppd.pending_queries--);
507   }
508   else if (GNUNET_NO == pth->is_query)
509   {
510     GNUNET_assert (0 < cp->ppd.pending_replies--);
511   }
512   GNUNET_LOAD_update (cp->ppd.transmission_delay,
513                       GNUNET_TIME_absolute_get_duration
514                       (pth->transmission_request_start_time).rel_value_us);
515   ret = pth->gmc (pth->gmc_cls, size, buf);
516   if (NULL != (pos = cp->pth_head))
517   {
518     GNUNET_assert (pos != pth);
519     schedule_transmission (pos);
520   }
521   GNUNET_free (pth);
522   return ret;
523 }
524
525
526 /**
527  * (re)try to reserve bandwidth from the given peer.
528  *
529  * @param cls the `struct GSF_ConnectedPeer` to reserve from
530  */
531 static void
532 retry_reservation (void *cls)
533 {
534   struct GSF_ConnectedPeer *cp = cls;
535   struct GNUNET_PeerIdentity target;
536
537   GNUNET_PEER_resolve (cp->ppd.pid, &target);
538   cp->rc_delay_task = NULL;
539   cp->rc =
540     GNUNET_ATS_reserve_bandwidth (GSF_ats,
541                                   &target,
542                                   DBLOCK_SIZE,
543                                   &ats_reserve_callback, cp);
544 }
545
546
547 /**
548  * Function called by core upon success or failure of our bandwidth reservation request.
549  *
550  * @param cls the `struct GSF_ConnectedPeer` of the peer for which we made the request
551  * @param peer identifies the peer
552  * @param amount set to the amount that was actually reserved or unreserved;
553  *               either the full requested amount or zero (no partial reservations)
554  * @param res_delay if the reservation could not be satisfied (amount was 0), how
555  *        long should the client wait until re-trying?
556  */
557 static void
558 ats_reserve_callback (void *cls,
559                       const struct GNUNET_PeerIdentity *peer,
560                       int32_t amount,
561                       struct GNUNET_TIME_Relative res_delay)
562 {
563   struct GSF_ConnectedPeer *cp = cls;
564   struct GSF_PeerTransmitHandle *pth;
565
566   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
567               "Reserved %d bytes / need to wait %s for reservation\n",
568               (int) amount,
569               GNUNET_STRINGS_relative_time_to_string (res_delay, GNUNET_YES));
570   cp->rc = NULL;
571   if (0 == amount)
572   {
573     cp->rc_delay_task =
574         GNUNET_SCHEDULER_add_delayed (res_delay,
575                                       &retry_reservation,
576                                       cp);
577     return;
578   }
579   cp->did_reserve = GNUNET_YES;
580   pth = cp->pth_head;
581   if ( (NULL != pth) &&
582        (NULL == cp->cth) &&
583        (0 == cp->cth_in_progress) )
584   {
585     /* reservation success, try transmission now! */
586     cp->cth_in_progress++;
587     cp->cth =
588         GNUNET_CORE_notify_transmit_ready (GSF_core,
589                                            GNUNET_YES,
590                                            GNUNET_CORE_PRIO_BACKGROUND,
591                                            GNUNET_TIME_absolute_get_remaining (pth->timeout),
592                                            peer,
593                                            pth->size,
594                                            &peer_transmit_ready_cb,
595                                            cp);
596     GNUNET_assert (NULL != cp->cth);
597     GNUNET_assert (0 < cp->cth_in_progress--);
598   }
599 }
600
601
602 /**
603  * Function called by PEERSTORE with peer respect record
604  *
605  * @param cls handle to connected peer entry
606  * @param record peerstore record information
607  * @param emsg error message, or NULL if no errors
608  */
609 static void
610 peer_respect_cb (void *cls,
611                  const struct GNUNET_PEERSTORE_Record *record,
612                  const char *emsg)
613 {
614   struct GSF_ConnectedPeer *cp = cls;
615
616   GNUNET_assert (NULL != cp->respect_iterate_req);
617   if ((NULL != record) && (sizeof (cp->disk_respect) == record->value_size))
618     cp->disk_respect = cp->ppd.respect = *((uint32_t *)record->value);
619   GSF_push_start_ (cp);
620   if (NULL != cp->creation_cb)
621     cp->creation_cb (cp->creation_cb_cls, cp);
622   if (NULL != record)
623   {
624     GNUNET_PEERSTORE_iterate_cancel (cp->respect_iterate_req);
625     cp->respect_iterate_req = NULL;
626   }
627 }
628
629
630 /**
631  * A peer connected to us.  Setup the connected peer
632  * records.
633  *
634  * @param peer identity of peer that connected
635  * @param creation_cb callback function when the record is created.
636  * @param creation_cb_cls closure for @creation_cb
637  */
638 void
639 GSF_peer_connect_handler_ (const struct GNUNET_PeerIdentity *peer,
640                            GSF_ConnectedPeerCreationCallback creation_cb,
641                            void *creation_cb_cls)
642 {
643   struct GSF_ConnectedPeer *cp;
644
645   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
646               "Connected to peer %s\n",
647               GNUNET_i2s (peer));
648   cp = GNUNET_new (struct GSF_ConnectedPeer);
649   cp->ppd.pid = GNUNET_PEER_intern (peer);
650   cp->ppd.transmission_delay = GNUNET_LOAD_value_init (GNUNET_TIME_UNIT_ZERO);
651   cp->rc =
652       GNUNET_ATS_reserve_bandwidth (GSF_ats,
653                                     peer,
654                                     DBLOCK_SIZE,
655                                     &ats_reserve_callback, cp);
656   cp->request_map = GNUNET_CONTAINER_multihashmap_create (128,
657                                                           GNUNET_YES);
658   GNUNET_break (GNUNET_OK ==
659                 GNUNET_CONTAINER_multipeermap_put (cp_map,
660                GSF_connected_peer_get_identity2_ (cp),
661                                                    cp,
662                                                    GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
663   GNUNET_STATISTICS_set (GSF_stats,
664                          gettext_noop ("# peers connected"),
665                          GNUNET_CONTAINER_multipeermap_size (cp_map),
666                          GNUNET_NO);
667   cp->creation_cb = creation_cb;
668   cp->creation_cb_cls = creation_cb_cls;
669   cp->respect_iterate_req =
670       GNUNET_PEERSTORE_iterate (peerstore, "fs",
671                                 peer, "respect",
672                                 GNUNET_TIME_UNIT_FOREVER_REL,
673                                 &peer_respect_cb,
674                                 cp);
675 }
676
677
678 /**
679  * It may be time to re-start migrating content to this
680  * peer.  Check, and if so, restart migration.
681  *
682  * @param cls the `struct GSF_ConnectedPeer`
683  */
684 static void
685 revive_migration (void *cls)
686 {
687   struct GSF_ConnectedPeer *cp = cls;
688   struct GNUNET_TIME_Relative bt;
689
690   cp->mig_revive_task = NULL;
691   bt = GNUNET_TIME_absolute_get_remaining (cp->ppd.migration_blocked_until);
692   if (0 != bt.rel_value_us)
693   {
694     /* still time left... */
695     cp->mig_revive_task =
696         GNUNET_SCHEDULER_add_delayed (bt, &revive_migration, cp);
697     return;
698   }
699   GSF_push_start_ (cp);
700 }
701
702
703 /**
704  * Get a handle for a connected peer.
705  *
706  * @param peer peer's identity
707  * @return NULL if the peer is not currently connected
708  */
709 struct GSF_ConnectedPeer *
710 GSF_peer_get_ (const struct GNUNET_PeerIdentity *peer)
711 {
712   if (NULL == cp_map)
713     return NULL;
714   return GNUNET_CONTAINER_multipeermap_get (cp_map, peer);
715 }
716
717
718 /**
719  * Handle P2P "MIGRATION_STOP" message.
720  *
721  * @param cls closure, always NULL
722  * @param other the other peer involved (sender or receiver, NULL
723  *        for loopback messages where we are both sender and receiver)
724  * @param message the actual message
725  * @return #GNUNET_OK to keep the connection open,
726  *         #GNUNET_SYSERR to close it (signal serious error)
727  */
728 int
729 GSF_handle_p2p_migration_stop_ (void *cls,
730                                 const struct GNUNET_PeerIdentity *other,
731                                 const struct GNUNET_MessageHeader *message)
732 {
733   struct GSF_ConnectedPeer *cp;
734   const struct MigrationStopMessage *msm;
735   struct GNUNET_TIME_Relative bt;
736
737   msm = (const struct MigrationStopMessage *) message;
738   cp = GSF_peer_get_ (other);
739   if (NULL == cp)
740   {
741     GNUNET_break (0);
742     return GNUNET_OK;
743   }
744   GNUNET_STATISTICS_update (GSF_stats,
745                             gettext_noop ("# migration stop messages received"),
746                             1, GNUNET_NO);
747   bt = GNUNET_TIME_relative_ntoh (msm->duration);
748   GNUNET_log (GNUNET_ERROR_TYPE_INFO,
749               _("Migration of content to peer `%s' blocked for %s\n"),
750               GNUNET_i2s (other),
751               GNUNET_STRINGS_relative_time_to_string (bt, GNUNET_YES));
752   cp->ppd.migration_blocked_until = GNUNET_TIME_relative_to_absolute (bt);
753   if ( (NULL == cp->mig_revive_task) &&
754        (NULL == cp->respect_iterate_req) )
755   {
756     GSF_push_stop_ (cp);
757     cp->mig_revive_task =
758         GNUNET_SCHEDULER_add_delayed (bt,
759                                       &revive_migration, cp);
760   }
761   return GNUNET_OK;
762 }
763
764
765 /**
766  * Copy reply and free put message.
767  *
768  * @param cls the `struct PutMessage`
769  * @param buf_size number of bytes available in @a buf
770  * @param buf where to copy the message, NULL on error (peer disconnect)
771  * @return number of bytes copied to @a buf, can be 0 (without indicating an error)
772  */
773 static size_t
774 copy_reply (void *cls,
775             size_t buf_size,
776             void *buf)
777 {
778   struct PutMessage *pm = cls;
779   size_t size;
780
781   if (NULL != buf)
782   {
783     GNUNET_assert (buf_size >= ntohs (pm->header.size));
784     size = ntohs (pm->header.size);
785     memcpy (buf, pm, size);
786     GNUNET_STATISTICS_update (GSF_stats,
787                               gettext_noop ("# replies transmitted to other peers"),
788                               1,
789                               GNUNET_NO);
790   }
791   else
792   {
793     size = 0;
794     GNUNET_STATISTICS_update (GSF_stats,
795                               gettext_noop ("# replies dropped"),
796                               1,
797                               GNUNET_NO);
798   }
799   GNUNET_free (pm);
800   return size;
801 }
802
803
804 /**
805  * Free resources associated with the given peer request.
806  *
807  * @param peerreq request to free
808  */
809 static void
810 free_pending_request (struct PeerRequest *peerreq)
811 {
812   struct GSF_ConnectedPeer *cp = peerreq->cp;
813   struct GSF_PendingRequestData *prd;
814
815   prd = GSF_pending_request_get_data_ (peerreq->pr);
816   if (NULL != peerreq->kill_task)
817   {
818     GNUNET_SCHEDULER_cancel (peerreq->kill_task);
819     peerreq->kill_task = NULL;
820   }
821   GNUNET_STATISTICS_update (GSF_stats,
822                             gettext_noop ("# P2P searches active"),
823                             -1,
824                             GNUNET_NO);
825   GNUNET_break (GNUNET_YES ==
826                 GNUNET_CONTAINER_multihashmap_remove (cp->request_map,
827                                                       &prd->query,
828                                                       peerreq));
829   GNUNET_free (peerreq);
830 }
831
832
833 /**
834  * Cancel all requests associated with the peer.
835  *
836  * @param cls unused
837  * @param query hash code of the request
838  * @param value the `struct GSF_PendingRequest`
839  * @return #GNUNET_YES (continue to iterate)
840  */
841 static int
842 cancel_pending_request (void *cls,
843                         const struct GNUNET_HashCode *query,
844                         void *value)
845 {
846   struct PeerRequest *peerreq = value;
847   struct GSF_PendingRequest *pr = peerreq->pr;
848
849   free_pending_request (peerreq);
850   GSF_pending_request_cancel_ (pr,
851                                GNUNET_NO);
852   return GNUNET_OK;
853 }
854
855
856 /**
857  * Free the given request.
858  *
859  * @param cls the request to free
860  */
861 static void
862 peer_request_destroy (void *cls)
863 {
864   struct PeerRequest *peerreq = cls;
865   struct GSF_PendingRequest *pr = peerreq->pr;
866   struct GSF_PendingRequestData *prd;
867
868   peerreq->kill_task = NULL;
869   prd = GSF_pending_request_get_data_ (pr);
870   cancel_pending_request (NULL,
871                           &prd->query,
872                           peerreq);
873 }
874
875
876 /**
877  * The artificial delay is over, transmit the message now.
878  *
879  * @param cls the `struct GSF_DelayedHandle` with the message
880  */
881 static void
882 transmit_delayed_now (void *cls)
883 {
884   struct GSF_DelayedHandle *dh = cls;
885   struct GSF_ConnectedPeer *cp = dh->cp;
886
887   GNUNET_CONTAINER_DLL_remove (cp->delayed_head,
888                                cp->delayed_tail,
889                                dh);
890   cp->delay_queue_size--;
891   (void) GSF_peer_transmit_ (cp,
892                              GNUNET_NO,
893                              UINT32_MAX,
894                              REPLY_TIMEOUT,
895                              dh->msize,
896                              &copy_reply,
897                              dh->pm);
898   GNUNET_free (dh);
899 }
900
901
902 /**
903  * Get the randomized delay a response should be subjected to.
904  *
905  * @return desired delay
906  */
907 static struct GNUNET_TIME_Relative
908 get_randomized_delay ()
909 {
910   struct GNUNET_TIME_Relative ret;
911
912   ret =
913       GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MILLISECONDS,
914                                      GNUNET_CRYPTO_random_u32
915                                      (GNUNET_CRYPTO_QUALITY_WEAK,
916                                       2 * GSF_avg_latency.rel_value_us + 1));
917 #if INSANE_STATISTICS
918   GNUNET_STATISTICS_update (GSF_stats,
919                             gettext_noop
920                             ("# artificial delays introduced (ms)"),
921                             ret.rel_value_us / 1000LL, GNUNET_NO);
922 #endif
923   return ret;
924 }
925
926
927 /**
928  * Handle a reply to a pending request.  Also called if a request
929  * expires (then with data == NULL).  The handler may be called
930  * many times (depending on the request type), but will not be
931  * called during or after a call to GSF_pending_request_cancel
932  * and will also not be called anymore after a call signalling
933  * expiration.
934  *
935  * @param cls `struct PeerRequest` this is an answer for
936  * @param eval evaluation of the result
937  * @param pr handle to the original pending request
938  * @param reply_anonymity_level anonymity level for the reply, UINT32_MAX for "unknown"
939  * @param expiration when does @a data expire?
940  * @param last_transmission when did we last transmit a request for this block
941  * @param type type of the block
942  * @param data response data, NULL on request expiration
943  * @param data_len number of bytes in @a data
944  */
945 static void
946 handle_p2p_reply (void *cls,
947                   enum GNUNET_BLOCK_EvaluationResult eval,
948                   struct GSF_PendingRequest *pr,
949                   uint32_t reply_anonymity_level,
950                   struct GNUNET_TIME_Absolute expiration,
951                   struct GNUNET_TIME_Absolute last_transmission,
952                   enum GNUNET_BLOCK_Type type,
953                   const void *data,
954                   size_t data_len)
955 {
956   struct PeerRequest *peerreq = cls;
957   struct GSF_ConnectedPeer *cp = peerreq->cp;
958   struct GSF_PendingRequestData *prd;
959   struct PutMessage *pm;
960   size_t msize;
961
962   GNUNET_assert (data_len + sizeof (struct PutMessage) <
963                  GNUNET_SERVER_MAX_MESSAGE_SIZE);
964   GNUNET_assert (peerreq->pr == pr);
965   prd = GSF_pending_request_get_data_ (pr);
966   if (NULL == data)
967   {
968     free_pending_request (peerreq);
969     return;
970   }
971   GNUNET_break (GNUNET_BLOCK_TYPE_ANY != type);
972   if ((prd->type != type) && (GNUNET_BLOCK_TYPE_ANY != prd->type))
973   {
974     GNUNET_STATISTICS_update (GSF_stats,
975                               gettext_noop
976                               ("# replies dropped due to type mismatch"),
977                                 1, GNUNET_NO);
978     return;
979   }
980   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
981               "Transmitting result for query `%s' to peer\n",
982               GNUNET_h2s (&prd->query));
983   GNUNET_STATISTICS_update (GSF_stats,
984                             gettext_noop ("# replies received for other peers"),
985                             1, GNUNET_NO);
986   msize = sizeof (struct PutMessage) + data_len;
987   if (msize >= GNUNET_SERVER_MAX_MESSAGE_SIZE)
988   {
989     GNUNET_break (0);
990     return;
991   }
992   if ((UINT32_MAX != reply_anonymity_level) && (reply_anonymity_level > 1))
993   {
994     if (reply_anonymity_level - 1 > GSF_cover_content_count)
995     {
996       GNUNET_STATISTICS_update (GSF_stats,
997                                 gettext_noop
998                                 ("# replies dropped due to insufficient cover traffic"),
999                                 1, GNUNET_NO);
1000       return;
1001     }
1002     GSF_cover_content_count -= (reply_anonymity_level - 1);
1003   }
1004
1005   pm = GNUNET_malloc (msize);
1006   pm->header.type = htons (GNUNET_MESSAGE_TYPE_FS_PUT);
1007   pm->header.size = htons (msize);
1008   pm->type = htonl (type);
1009   pm->expiration = GNUNET_TIME_absolute_hton (expiration);
1010   memcpy (&pm[1], data, data_len);
1011   if ( (UINT32_MAX != reply_anonymity_level) &&
1012        (0 != reply_anonymity_level) &&
1013        (GNUNET_YES == GSF_enable_randomized_delays) )
1014   {
1015     struct GSF_DelayedHandle *dh;
1016
1017     dh = GNUNET_new (struct GSF_DelayedHandle);
1018     dh->cp = cp;
1019     dh->pm = pm;
1020     dh->msize = msize;
1021     GNUNET_CONTAINER_DLL_insert (cp->delayed_head,
1022                                  cp->delayed_tail,
1023                                  dh);
1024     cp->delay_queue_size++;
1025     dh->delay_task =
1026         GNUNET_SCHEDULER_add_delayed (get_randomized_delay (),
1027                                       &transmit_delayed_now,
1028                                       dh);
1029   }
1030   else
1031   {
1032     (void) GSF_peer_transmit_ (cp,
1033                                GNUNET_NO,
1034                                UINT32_MAX,
1035                                REPLY_TIMEOUT,
1036                                msize,
1037                                &copy_reply,
1038                                pm);
1039   }
1040   if (GNUNET_BLOCK_EVALUATION_OK_LAST != eval)
1041     return;
1042   if (NULL == peerreq->kill_task)
1043   {
1044     GNUNET_STATISTICS_update (GSF_stats,
1045                               gettext_noop
1046                               ("# P2P searches destroyed due to ultimate reply"),
1047                               1,
1048                               GNUNET_NO);
1049     peerreq->kill_task =
1050         GNUNET_SCHEDULER_add_now (&peer_request_destroy,
1051                                   peerreq);
1052   }
1053 }
1054
1055
1056 /**
1057  * Increase the peer's respect by a value.
1058  *
1059  * @param cp which peer to change the respect value on
1060  * @param value is the int value by which the
1061  *  peer's credit is to be increased or decreased
1062  * @returns the actual change in respect (positive or negative)
1063  */
1064 static int
1065 change_peer_respect (struct GSF_ConnectedPeer *cp, int value)
1066 {
1067   if (0 == value)
1068     return 0;
1069   GNUNET_assert (NULL != cp);
1070   if (value > 0)
1071   {
1072     if (cp->ppd.respect + value < cp->ppd.respect)
1073     {
1074       value = UINT32_MAX - cp->ppd.respect;
1075       cp->ppd.respect = UINT32_MAX;
1076     }
1077     else
1078       cp->ppd.respect += value;
1079   }
1080   else
1081   {
1082     if (cp->ppd.respect < -value)
1083     {
1084       value = -cp->ppd.respect;
1085       cp->ppd.respect = 0;
1086     }
1087     else
1088       cp->ppd.respect += value;
1089   }
1090   return value;
1091 }
1092
1093
1094 /**
1095  * We've received a request with the specified priority.  Bound it
1096  * according to how much we respect the given peer.
1097  *
1098  * @param prio_in requested priority
1099  * @param cp the peer making the request
1100  * @return effective priority
1101  */
1102 static int32_t
1103 bound_priority (uint32_t prio_in,
1104                 struct GSF_ConnectedPeer *cp)
1105 {
1106 #define N ((double)128.0)
1107   uint32_t ret;
1108   double rret;
1109   int ld;
1110
1111   ld = GSF_test_get_load_too_high_ (0);
1112   if (GNUNET_SYSERR == ld)
1113   {
1114 #if INSANE_STATISTICS
1115     GNUNET_STATISTICS_update (GSF_stats,
1116                               gettext_noop
1117                               ("# requests done for free (low load)"), 1,
1118                               GNUNET_NO);
1119 #endif
1120     return 0;                   /* excess resources */
1121   }
1122   if (prio_in > INT32_MAX)
1123     prio_in = INT32_MAX;
1124   ret = -change_peer_respect (cp, -(int) prio_in);
1125   if (ret > 0)
1126   {
1127     if (ret > GSF_current_priorities + N)
1128       rret = GSF_current_priorities + N;
1129     else
1130       rret = ret;
1131     GSF_current_priorities = (GSF_current_priorities * (N - 1) + rret) / N;
1132   }
1133   if ((GNUNET_YES == ld) && (ret > 0))
1134   {
1135     /* try with charging */
1136     ld = GSF_test_get_load_too_high_ (ret);
1137   }
1138   if (GNUNET_YES == ld)
1139   {
1140     GNUNET_STATISTICS_update (GSF_stats,
1141                               gettext_noop
1142                               ("# request dropped, priority insufficient"), 1,
1143                               GNUNET_NO);
1144     /* undo charge */
1145     change_peer_respect (cp, (int) ret);
1146     return -1;                  /* not enough resources */
1147   }
1148   else
1149   {
1150     GNUNET_STATISTICS_update (GSF_stats,
1151                               gettext_noop
1152                               ("# requests done for a price (normal load)"), 1,
1153                               GNUNET_NO);
1154   }
1155 #undef N
1156   return ret;
1157 }
1158
1159
1160 /**
1161  * The priority level imposes a bound on the maximum
1162  * value for the ttl that can be requested.
1163  *
1164  * @param ttl_in requested ttl
1165  * @param prio given priority
1166  * @return @a ttl_in if @a ttl_in is below the limit,
1167  *         otherwise the ttl-limit for the given @a prio
1168  */
1169 static int32_t
1170 bound_ttl (int32_t ttl_in,
1171            uint32_t prio)
1172 {
1173   unsigned long long allowed;
1174
1175   if (ttl_in <= 0)
1176     return ttl_in;
1177   allowed = ((unsigned long long) prio) * TTL_DECREMENT / 1000;
1178   if (ttl_in > allowed)
1179   {
1180     if (allowed >= (1 << 30))
1181       return 1 << 30;
1182     return allowed;
1183   }
1184   return ttl_in;
1185 }
1186
1187
1188 /**
1189  * Closure for #test_exist_cb().
1190  */
1191 struct TestExistClosure
1192 {
1193
1194   /**
1195    * Priority of the incoming request.
1196    */
1197   int32_t priority;
1198
1199   /**
1200    * Relative TTL of the incoming request.
1201    */
1202   int32_t ttl;
1203
1204   /**
1205    * Type of the incoming request.
1206    */
1207   enum GNUNET_BLOCK_Type type;
1208
1209   /**
1210    * Set to #GNUNET_YES if we are done handling the query.
1211    */
1212   int finished;
1213
1214 };
1215
1216
1217 /**
1218  * Test if the query already exists.  If so, merge it, otherwise
1219  * keep `finished` at #GNUNET_NO.
1220  *
1221  * @param cls our `struct TestExistClosure`
1222  * @param hc the key of the query
1223  * @param value the existing `struct PeerRequest`.
1224  * @return #GNUNET_YES to continue to iterate,
1225  *         #GNUNET_NO if we successfully merged
1226  */
1227 static int
1228 test_exist_cb (void *cls,
1229                const struct GNUNET_HashCode *hc,
1230                void *value)
1231 {
1232   struct TestExistClosure *tec = cls;
1233   struct PeerRequest *peerreq = value;
1234   struct GSF_PendingRequest *pr;
1235   struct GSF_PendingRequestData *prd;
1236
1237   pr = peerreq->pr;
1238   prd = GSF_pending_request_get_data_ (pr);
1239   if (prd->type != tec->type)
1240     return GNUNET_YES;
1241   if (prd->ttl.abs_value_us >=
1242       GNUNET_TIME_absolute_get ().abs_value_us + tec->ttl * 1000LL)
1243   {
1244     /* existing request has higher TTL, drop new one! */
1245     prd->priority += tec->priority;
1246     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1247                 "Have existing request with higher TTL, dropping new request.\n");
1248     GNUNET_STATISTICS_update (GSF_stats,
1249                               gettext_noop
1250                               ("# requests dropped due to higher-TTL request"),
1251                               1, GNUNET_NO);
1252     tec->finished = GNUNET_YES;
1253     return GNUNET_NO;
1254   }
1255   /* existing request has lower TTL, drop old one! */
1256   tec->priority += prd->priority;
1257   free_pending_request (peerreq);
1258   GSF_pending_request_cancel_ (pr,
1259                                GNUNET_YES);
1260   return GNUNET_NO;
1261 }
1262
1263
1264 /**
1265  * Handle P2P "QUERY" message.  Creates the pending request entry
1266  * and sets up all of the data structures to that we will
1267  * process replies properly.  Does not initiate forwarding or
1268  * local database lookups.
1269  *
1270  * @param other the other peer involved (sender or receiver, NULL
1271  *        for loopback messages where we are both sender and receiver)
1272  * @param message the actual message
1273  * @return pending request handle, NULL on error
1274  */
1275 struct GSF_PendingRequest *
1276 GSF_handle_p2p_query_ (const struct GNUNET_PeerIdentity *other,
1277                        const struct GNUNET_MessageHeader *message)
1278 {
1279   struct PeerRequest *peerreq;
1280   struct GSF_PendingRequest *pr;
1281   struct GSF_ConnectedPeer *cp;
1282   struct GSF_ConnectedPeer *cps;
1283   const struct GNUNET_PeerIdentity *target;
1284   enum GSF_PendingRequestOptions options;
1285   uint16_t msize;
1286   const struct GetMessage *gm;
1287   unsigned int bits;
1288   const struct GNUNET_PeerIdentity *opt;
1289   uint32_t bm;
1290   size_t bfsize;
1291   uint32_t ttl_decrement;
1292   struct TestExistClosure tec;
1293   GNUNET_PEER_Id spid;
1294   const struct GSF_PendingRequestData *prd;
1295
1296   msize = ntohs (message->size);
1297   if (msize < sizeof (struct GetMessage))
1298   {
1299     GNUNET_break_op (0);
1300     return NULL;
1301   }
1302   GNUNET_STATISTICS_update (GSF_stats,
1303                             gettext_noop
1304                             ("# GET requests received (from other peers)"),
1305                             1,
1306                             GNUNET_NO);
1307   gm = (const struct GetMessage *) message;
1308   tec.type = ntohl (gm->type);
1309   bm = ntohl (gm->hash_bitmap);
1310   bits = 0;
1311   while (bm > 0)
1312   {
1313     if (1 == (bm & 1))
1314       bits++;
1315     bm >>= 1;
1316   }
1317   if (msize < sizeof (struct GetMessage) + bits * sizeof (struct GNUNET_PeerIdentity))
1318   {
1319     GNUNET_break_op (0);
1320     return NULL;
1321   }
1322   opt = (const struct GNUNET_PeerIdentity *) &gm[1];
1323   bfsize = msize - sizeof (struct GetMessage) - bits * sizeof (struct GNUNET_PeerIdentity);
1324   /* bfsize must be power of 2, check! */
1325   if (0 != ((bfsize - 1) & bfsize))
1326   {
1327     GNUNET_break_op (0);
1328     return NULL;
1329   }
1330   GSF_cover_query_count++;
1331   bm = ntohl (gm->hash_bitmap);
1332   bits = 0;
1333   cps = GSF_peer_get_ (other);
1334   if (NULL == cps)
1335   {
1336     /* peer must have just disconnected */
1337     GNUNET_STATISTICS_update (GSF_stats,
1338                               gettext_noop
1339                               ("# requests dropped due to initiator not being connected"),
1340                               1, GNUNET_NO);
1341     return NULL;
1342   }
1343   if (0 != (bm & GET_MESSAGE_BIT_RETURN_TO))
1344     cp = GSF_peer_get_ (&opt[bits++]);
1345   else
1346     cp = cps;
1347   if (NULL == cp)
1348   {
1349     if (0 != (bm & GET_MESSAGE_BIT_RETURN_TO))
1350       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1351                   "Failed to find RETURN-TO peer `%s' in connection set. Dropping query.\n",
1352                   GNUNET_i2s (&opt[bits - 1]));
1353
1354     else
1355       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1356                   "Failed to find peer `%s' in connection set. Dropping query.\n",
1357                   GNUNET_i2s (other));
1358     GNUNET_STATISTICS_update (GSF_stats,
1359                               gettext_noop
1360                               ("# requests dropped due to missing reverse route"),
1361                               1,
1362                               GNUNET_NO);
1363     return NULL;
1364   }
1365   if (cp->ppd.pending_replies + cp->delay_queue_size > MAX_QUEUE_PER_PEER)
1366   {
1367     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1368                 "Peer `%s' has too many replies queued already. Dropping query.\n",
1369                 GNUNET_i2s (other));
1370     GNUNET_STATISTICS_update (GSF_stats,
1371                               gettext_noop ("# requests dropped due to full reply queue"),
1372                               1,
1373                               GNUNET_NO);
1374     return NULL;
1375   }
1376   /* note that we can really only check load here since otherwise
1377    * peers could find out that we are overloaded by not being
1378    * disconnected after sending us a malformed query... */
1379   tec.priority = bound_priority (ntohl (gm->priority),
1380                                  cps);
1381   if (tec.priority < 0)
1382   {
1383     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1384                 "Dropping query from `%s', this peer is too busy.\n",
1385                 GNUNET_i2s (other));
1386     return NULL;
1387   }
1388   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1389               "Received request for `%s' of type %u from peer `%s' with flags %u\n",
1390               GNUNET_h2s (&gm->query),
1391               (unsigned int) tec.type,
1392               GNUNET_i2s (other),
1393               (unsigned int) bm);
1394   target =
1395       (0 !=
1396        (bm & GET_MESSAGE_BIT_TRANSMIT_TO)) ? (&opt[bits++]) : NULL;
1397   options = GSF_PRO_DEFAULTS;
1398   spid = 0;
1399   if ((GNUNET_LOAD_get_load (cp->ppd.transmission_delay) > 3 * (1 + tec.priority))
1400       || (GNUNET_LOAD_get_average (cp->ppd.transmission_delay) >
1401           GNUNET_CONSTANTS_MAX_CORK_DELAY.rel_value_us * 2 +
1402           GNUNET_LOAD_get_average (GSF_rt_entry_lifetime)))
1403   {
1404     /* don't have BW to send to peer, or would likely take longer than we have for it,
1405      * so at best indirect the query */
1406     tec.priority = 0;
1407     options |= GSF_PRO_FORWARD_ONLY;
1408     spid = GNUNET_PEER_intern (other);
1409     GNUNET_assert (0 != spid);
1410   }
1411   tec.ttl = bound_ttl (ntohl (gm->ttl),
1412                        tec.priority);
1413   /* decrement ttl (always) */
1414   ttl_decrement =
1415       2 * TTL_DECREMENT + GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK,
1416                                                     TTL_DECREMENT);
1417   if ((tec.ttl < 0) && (((int32_t) (tec.ttl - ttl_decrement)) > 0))
1418   {
1419     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1420                 "Dropping query from `%s' due to TTL underflow (%d - %u).\n",
1421                 GNUNET_i2s (other),
1422                 tec.ttl,
1423                 ttl_decrement);
1424     GNUNET_STATISTICS_update (GSF_stats,
1425                               gettext_noop
1426                               ("# requests dropped due TTL underflow"), 1,
1427                               GNUNET_NO);
1428     /* integer underflow => drop (should be very rare)! */
1429     return NULL;
1430   }
1431   tec.ttl -= ttl_decrement;
1432
1433   /* test if the request already exists */
1434   tec.finished = GNUNET_NO;
1435   GNUNET_CONTAINER_multihashmap_get_multiple (cp->request_map,
1436                                               &gm->query,
1437                                               &test_exist_cb,
1438                                               &tec);
1439   if (GNUNET_YES == tec.finished)
1440     return NULL; /* merged into existing request, we're done */
1441
1442   peerreq = GNUNET_new (struct PeerRequest);
1443   peerreq->cp = cp;
1444   pr = GSF_pending_request_create_ (options,
1445                                     tec.type,
1446                                     &gm->query,
1447                                     target,
1448                                     (bfsize > 0)
1449                                     ? (const char *) &opt[bits]
1450                                     : NULL,
1451                                     bfsize,
1452                                     ntohl (gm->filter_mutator),
1453                                     1 /* anonymity */,
1454                                     (uint32_t) tec.priority,
1455                                     tec.ttl,
1456                                     spid,
1457                                     GNUNET_PEER_intern (other),
1458                                     NULL, 0,        /* replies_seen */
1459                                     &handle_p2p_reply,
1460                                     peerreq);
1461   GNUNET_assert (NULL != pr);
1462   prd = GSF_pending_request_get_data_ (pr);
1463   peerreq->pr = pr;
1464   GNUNET_break (GNUNET_OK ==
1465                 GNUNET_CONTAINER_multihashmap_put (cp->request_map,
1466                                                    &prd->query,
1467                                                    peerreq,
1468                                                    GNUNET_CONTAINER_MULTIHASHMAPOPTION_MULTIPLE));
1469   GNUNET_STATISTICS_update (GSF_stats,
1470                             gettext_noop ("# P2P query messages received and processed"),
1471                             1,
1472                             GNUNET_NO);
1473   GNUNET_STATISTICS_update (GSF_stats,
1474                             gettext_noop ("# P2P searches active"),
1475                             1,
1476                             GNUNET_NO);
1477   return pr;
1478 }
1479
1480
1481 /**
1482  * Function called if there has been a timeout trying to satisfy
1483  * a transmission request.
1484  *
1485  * @param cls the `struct GSF_PeerTransmitHandle` of the request
1486  */
1487 static void
1488 peer_transmit_timeout (void *cls)
1489 {
1490   struct GSF_PeerTransmitHandle *pth = cls;
1491   struct GSF_ConnectedPeer *cp;
1492
1493   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1494               "Timeout trying to transmit to other peer\n");
1495   pth->timeout_task = NULL;
1496   cp = pth->cp;
1497   GNUNET_CONTAINER_DLL_remove (cp->pth_head,
1498                                cp->pth_tail,
1499                                pth);
1500   if (GNUNET_YES == pth->is_query)
1501     GNUNET_assert (0 < cp->ppd.pending_queries--);
1502   else if (GNUNET_NO == pth->is_query)
1503     GNUNET_assert (0 < cp->ppd.pending_replies--);
1504   GNUNET_LOAD_update (cp->ppd.transmission_delay,
1505                       UINT64_MAX);
1506   if (NULL != cp->cth)
1507   {
1508     GNUNET_CORE_notify_transmit_ready_cancel (cp->cth);
1509     cp->cth = NULL;
1510   }
1511   pth->gmc (pth->gmc_cls, 0, NULL);
1512   GNUNET_assert (0 == cp->cth_in_progress);
1513   GNUNET_free (pth);
1514 }
1515
1516
1517 /**
1518  * Transmit a message to the given peer as soon as possible.
1519  * If the peer disconnects before the transmission can happen,
1520  * the callback is invoked with a `NULL` @a buffer.
1521  *
1522  * @param cp target peer
1523  * @param is_query is this a query (#GNUNET_YES) or content (#GNUNET_NO) or neither (#GNUNET_SYSERR)
1524  * @param priority how important is this request?
1525  * @param timeout when does this request timeout (call gmc with error)
1526  * @param size number of bytes we would like to send to the peer
1527  * @param gmc function to call to get the message
1528  * @param gmc_cls closure for @a gmc
1529  * @return handle to cancel request
1530  */
1531 struct GSF_PeerTransmitHandle *
1532 GSF_peer_transmit_ (struct GSF_ConnectedPeer *cp,
1533                     int is_query,
1534                     uint32_t priority,
1535                     struct GNUNET_TIME_Relative timeout,
1536                     size_t size,
1537                     GSF_GetMessageCallback gmc, void *gmc_cls)
1538 {
1539   struct GSF_PeerTransmitHandle *pth;
1540   struct GSF_PeerTransmitHandle *pos;
1541   struct GSF_PeerTransmitHandle *prev;
1542
1543   pth = GNUNET_new (struct GSF_PeerTransmitHandle);
1544   pth->transmission_request_start_time = GNUNET_TIME_absolute_get ();
1545   pth->timeout = GNUNET_TIME_relative_to_absolute (timeout);
1546   pth->gmc = gmc;
1547   pth->gmc_cls = gmc_cls;
1548   pth->size = size;
1549   pth->is_query = is_query;
1550   pth->priority = priority;
1551   pth->cp = cp;
1552   /* insertion sort (by priority, descending) */
1553   prev = NULL;
1554   pos = cp->pth_head;
1555   while ((NULL != pos) && (pos->priority > priority))
1556   {
1557     prev = pos;
1558     pos = pos->next;
1559   }
1560   GNUNET_CONTAINER_DLL_insert_after (cp->pth_head,
1561                                      cp->pth_tail,
1562                                      prev,
1563                                      pth);
1564   if (GNUNET_YES == is_query)
1565     cp->ppd.pending_queries++;
1566   else if (GNUNET_NO == is_query)
1567     cp->ppd.pending_replies++;
1568   pth->timeout_task
1569     = GNUNET_SCHEDULER_add_delayed (timeout,
1570                                     &peer_transmit_timeout,
1571                                     pth);
1572   schedule_transmission (pth);
1573   return pth;
1574 }
1575
1576
1577 /**
1578  * Cancel an earlier request for transmission.
1579  *
1580  * @param pth request to cancel
1581  */
1582 void
1583 GSF_peer_transmit_cancel_ (struct GSF_PeerTransmitHandle *pth)
1584 {
1585   struct GSF_ConnectedPeer *cp;
1586
1587   if (NULL != pth->timeout_task)
1588   {
1589     GNUNET_SCHEDULER_cancel (pth->timeout_task);
1590     pth->timeout_task = NULL;
1591   }
1592   cp = pth->cp;
1593   GNUNET_CONTAINER_DLL_remove (cp->pth_head,
1594                                cp->pth_tail,
1595                                pth);
1596   if (GNUNET_YES == pth->is_query)
1597     GNUNET_assert (0 < cp->ppd.pending_queries--);
1598   else if (GNUNET_NO == pth->is_query)
1599     GNUNET_assert (0 < cp->ppd.pending_replies--);
1600   GNUNET_free (pth);
1601 }
1602
1603
1604 /**
1605  * Report on receiving a reply; update the performance record of the given peer.
1606  *
1607  * @param cp responding peer (will be updated)
1608  * @param request_time time at which the original query was transmitted
1609  * @param request_priority priority of the original request
1610  */
1611 void
1612 GSF_peer_update_performance_ (struct GSF_ConnectedPeer *cp,
1613                               struct GNUNET_TIME_Absolute request_time,
1614                               uint32_t request_priority)
1615 {
1616   struct GNUNET_TIME_Relative delay;
1617
1618   delay = GNUNET_TIME_absolute_get_duration (request_time);
1619   cp->ppd.avg_reply_delay.rel_value_us =
1620       (cp->ppd.avg_reply_delay.rel_value_us * (RUNAVG_DELAY_N - 1) +
1621        delay.rel_value_us) / RUNAVG_DELAY_N;
1622   cp->ppd.avg_priority =
1623       (cp->ppd.avg_priority * (RUNAVG_DELAY_N - 1) +
1624        request_priority) / RUNAVG_DELAY_N;
1625 }
1626
1627
1628 /**
1629  * Report on receiving a reply in response to an initiating client.
1630  * Remember that this peer is good for this client.
1631  *
1632  * @param cp responding peer (will be updated)
1633  * @param initiator_client local client on responsible for query
1634  */
1635 void
1636 GSF_peer_update_responder_client_ (struct GSF_ConnectedPeer *cp,
1637                                    struct GSF_LocalClient *initiator_client)
1638 {
1639   cp->ppd.last_client_replies[cp->last_client_replies_woff++ %
1640                               CS2P_SUCCESS_LIST_SIZE] = initiator_client;
1641 }
1642
1643
1644 /**
1645  * Report on receiving a reply in response to an initiating peer.
1646  * Remember that this peer is good for this initiating peer.
1647  *
1648  * @param cp responding peer (will be updated)
1649  * @param initiator_peer other peer responsible for query
1650  */
1651 void
1652 GSF_peer_update_responder_peer_ (struct GSF_ConnectedPeer *cp,
1653                                  const struct GSF_ConnectedPeer *initiator_peer)
1654 {
1655   unsigned int woff;
1656
1657   woff = cp->last_p2p_replies_woff % P2P_SUCCESS_LIST_SIZE;
1658   GNUNET_PEER_change_rc (cp->ppd.last_p2p_replies[woff], -1);
1659   cp->ppd.last_p2p_replies[woff] = initiator_peer->ppd.pid;
1660   GNUNET_PEER_change_rc (initiator_peer->ppd.pid, 1);
1661   cp->last_p2p_replies_woff = (woff + 1) % P2P_SUCCESS_LIST_SIZE;
1662 }
1663
1664
1665 /**
1666  * Write peer-respect information to a file - flush the buffer entry!
1667  *
1668  * @param cls unused
1669  * @param key peer identity
1670  * @param value the `struct GSF_ConnectedPeer` to flush
1671  * @return #GNUNET_OK to continue iteration
1672  */
1673 static int
1674 flush_respect (void *cls,
1675                const struct GNUNET_PeerIdentity *key,
1676                void *value)
1677 {
1678   struct GSF_ConnectedPeer *cp = value;
1679   struct GNUNET_PeerIdentity pid;
1680
1681   if (cp->ppd.respect == cp->disk_respect)
1682     return GNUNET_OK;           /* unchanged */
1683   GNUNET_assert (0 != cp->ppd.pid);
1684   GNUNET_PEER_resolve (cp->ppd.pid, &pid);
1685   GNUNET_PEERSTORE_store (peerstore, "fs", &pid, "respect", &cp->ppd.respect,
1686                           sizeof (cp->ppd.respect),
1687                           GNUNET_TIME_UNIT_FOREVER_ABS,
1688                           GNUNET_PEERSTORE_STOREOPTION_REPLACE, NULL, NULL);
1689   return GNUNET_OK;
1690 }
1691
1692
1693 /**
1694  * A peer disconnected from us.  Tear down the connected peer
1695  * record.
1696  *
1697  * @param cls unused
1698  * @param peer identity of peer that connected
1699  */
1700 void
1701 GSF_peer_disconnect_handler_ (void *cls,
1702                               const struct GNUNET_PeerIdentity *peer)
1703 {
1704   struct GSF_ConnectedPeer *cp;
1705   struct GSF_PeerTransmitHandle *pth;
1706   struct GSF_DelayedHandle *dh;
1707
1708   cp = GSF_peer_get_ (peer);
1709   if (NULL == cp)
1710     return;                     /* must have been disconnect from core with
1711                                  * 'peer' == my_id, ignore */
1712   flush_respect (NULL, peer, cp);
1713   GNUNET_assert (GNUNET_YES ==
1714                  GNUNET_CONTAINER_multipeermap_remove (cp_map,
1715                                                        peer,
1716                                                        cp));
1717   GNUNET_STATISTICS_set (GSF_stats, gettext_noop ("# peers connected"),
1718                          GNUNET_CONTAINER_multipeermap_size (cp_map),
1719                          GNUNET_NO);
1720   if (NULL != cp->respect_iterate_req)
1721   {
1722     GNUNET_PEERSTORE_iterate_cancel (cp->respect_iterate_req);
1723     cp->respect_iterate_req = NULL;
1724   }
1725   if (NULL != cp->migration_pth)
1726   {
1727     GSF_peer_transmit_cancel_ (cp->migration_pth);
1728     cp->migration_pth = NULL;
1729   }
1730   if (NULL != cp->rc)
1731   {
1732     GNUNET_ATS_reserve_bandwidth_cancel (cp->rc);
1733     cp->rc = NULL;
1734   }
1735   if (NULL != cp->rc_delay_task)
1736   {
1737     GNUNET_SCHEDULER_cancel (cp->rc_delay_task);
1738     cp->rc_delay_task = NULL;
1739   }
1740   GNUNET_CONTAINER_multihashmap_iterate (cp->request_map,
1741                                          &cancel_pending_request,
1742                                          cp);
1743   GNUNET_CONTAINER_multihashmap_destroy (cp->request_map);
1744   cp->request_map = NULL;
1745   GSF_plan_notify_peer_disconnect_ (cp);
1746   GNUNET_LOAD_value_free (cp->ppd.transmission_delay);
1747   GNUNET_PEER_decrement_rcs (cp->ppd.last_p2p_replies,
1748                              P2P_SUCCESS_LIST_SIZE);
1749   memset (cp->ppd.last_p2p_replies,
1750           0,
1751           sizeof (cp->ppd.last_p2p_replies));
1752   GSF_push_stop_ (cp);
1753   if (NULL != cp->cth)
1754   {
1755     GNUNET_CORE_notify_transmit_ready_cancel (cp->cth);
1756     cp->cth = NULL;
1757   }
1758   GNUNET_assert (0 == cp->cth_in_progress);
1759   while (NULL != (pth = cp->pth_head))
1760   {
1761     if (pth->timeout_task != NULL)
1762     {
1763       GNUNET_SCHEDULER_cancel (pth->timeout_task);
1764       pth->timeout_task = NULL;
1765     }
1766     GNUNET_CONTAINER_DLL_remove (cp->pth_head,
1767                                  cp->pth_tail,
1768                                  pth);
1769     if (GNUNET_YES == pth->is_query)
1770       GNUNET_assert (0 < cp->ppd.pending_queries--);
1771     else if (GNUNET_NO == pth->is_query)
1772       GNUNET_assert (0 < cp->ppd.pending_replies--);
1773     pth->gmc (pth->gmc_cls, 0, NULL);
1774     GNUNET_free (pth);
1775   }
1776   while (NULL != (dh = cp->delayed_head))
1777   {
1778     GNUNET_CONTAINER_DLL_remove (cp->delayed_head,
1779                                  cp->delayed_tail,
1780                                  dh);
1781     cp->delay_queue_size--;
1782     GNUNET_SCHEDULER_cancel (dh->delay_task);
1783     GNUNET_free (dh->pm);
1784     GNUNET_free (dh);
1785   }
1786   GNUNET_PEER_change_rc (cp->ppd.pid, -1);
1787   if (NULL != cp->mig_revive_task)
1788   {
1789     GNUNET_SCHEDULER_cancel (cp->mig_revive_task);
1790     cp->mig_revive_task = NULL;
1791   }
1792   GNUNET_break (0 == cp->ppd.pending_queries);
1793   GNUNET_break (0 == cp->ppd.pending_replies);
1794   GNUNET_free (cp);
1795 }
1796
1797
1798 /**
1799  * Closure for #call_iterator().
1800  */
1801 struct IterationContext
1802 {
1803   /**
1804    * Function to call on each entry.
1805    */
1806   GSF_ConnectedPeerIterator it;
1807
1808   /**
1809    * Closure for @e it.
1810    */
1811   void *it_cls;
1812 };
1813
1814
1815 /**
1816  * Function that calls the callback for each peer.
1817  *
1818  * @param cls the `struct IterationContext *`
1819  * @param key identity of the peer
1820  * @param value the `struct GSF_ConnectedPeer *`
1821  * @return #GNUNET_YES to continue iteration
1822  */
1823 static int
1824 call_iterator (void *cls,
1825                const struct GNUNET_PeerIdentity *key,
1826                void *value)
1827 {
1828   struct IterationContext *ic = cls;
1829   struct GSF_ConnectedPeer *cp = value;
1830
1831   ic->it (ic->it_cls,
1832           key, cp,
1833           &cp->ppd);
1834   return GNUNET_YES;
1835 }
1836
1837
1838 /**
1839  * Iterate over all connected peers.
1840  *
1841  * @param it function to call for each peer
1842  * @param it_cls closure for @a it
1843  */
1844 void
1845 GSF_iterate_connected_peers_ (GSF_ConnectedPeerIterator it,
1846                               void *it_cls)
1847 {
1848   struct IterationContext ic;
1849
1850   ic.it = it;
1851   ic.it_cls = it_cls;
1852   GNUNET_CONTAINER_multipeermap_iterate (cp_map,
1853                                          &call_iterator,
1854                                          &ic);
1855 }
1856
1857
1858 /**
1859  * Obtain the identity of a connected peer.
1860  *
1861  * @param cp peer to get identity of
1862  * @param id identity to set (written to)
1863  */
1864 void
1865 GSF_connected_peer_get_identity_ (const struct GSF_ConnectedPeer *cp,
1866                                   struct GNUNET_PeerIdentity *id)
1867 {
1868   GNUNET_assert (0 != cp->ppd.pid);
1869   GNUNET_PEER_resolve (cp->ppd.pid, id);
1870 }
1871
1872
1873 /**
1874  * Obtain the identity of a connected peer.
1875  *
1876  * @param cp peer to get identity of
1877  * @return reference to peer identity, valid until peer disconnects (!)
1878  */
1879 const struct GNUNET_PeerIdentity *
1880 GSF_connected_peer_get_identity2_ (const struct GSF_ConnectedPeer *cp)
1881 {
1882   GNUNET_assert (0 != cp->ppd.pid);
1883   return GNUNET_PEER_resolve2 (cp->ppd.pid);
1884 }
1885
1886
1887 /**
1888  * Assemble a migration stop message for transmission.
1889  *
1890  * @param cls the `struct GSF_ConnectedPeer` to use
1891  * @param size number of bytes we're allowed to write to @a buf
1892  * @param buf where to copy the message
1893  * @return number of bytes copied to @a buf
1894  */
1895 static size_t
1896 create_migration_stop_message (void *cls,
1897                                size_t size,
1898                                void *buf)
1899 {
1900   struct GSF_ConnectedPeer *cp = cls;
1901   struct MigrationStopMessage msm;
1902
1903   cp->migration_pth = NULL;
1904   if (NULL == buf)
1905     return 0;
1906   GNUNET_assert (size >= sizeof (struct MigrationStopMessage));
1907   msm.header.size = htons (sizeof (struct MigrationStopMessage));
1908   msm.header.type = htons (GNUNET_MESSAGE_TYPE_FS_MIGRATION_STOP);
1909   msm.reserved = htonl (0);
1910   msm.duration =
1911       GNUNET_TIME_relative_hton (GNUNET_TIME_absolute_get_remaining
1912                                  (cp->last_migration_block));
1913   memcpy (buf, &msm, sizeof (struct MigrationStopMessage));
1914   GNUNET_STATISTICS_update (GSF_stats,
1915                             gettext_noop ("# migration stop messages sent"),
1916                             1, GNUNET_NO);
1917   return sizeof (struct MigrationStopMessage);
1918 }
1919
1920
1921 /**
1922  * Ask a peer to stop migrating data to us until the given point
1923  * in time.
1924  *
1925  * @param cp peer to ask
1926  * @param block_time until when to block
1927  */
1928 void
1929 GSF_block_peer_migration_ (struct GSF_ConnectedPeer *cp,
1930                            struct GNUNET_TIME_Absolute block_time)
1931 {
1932   if (cp->last_migration_block.abs_value_us > block_time.abs_value_us)
1933   {
1934     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1935                 "Migration already blocked for another %s\n",
1936                 GNUNET_STRINGS_relative_time_to_string (GNUNET_TIME_absolute_get_remaining
1937                                                         (cp->last_migration_block), GNUNET_YES));
1938     return;                     /* already blocked */
1939   }
1940   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Asking to stop migration for %s\n",
1941               GNUNET_STRINGS_relative_time_to_string (GNUNET_TIME_absolute_get_remaining (block_time),
1942                                                       GNUNET_YES));
1943   cp->last_migration_block = block_time;
1944   if (NULL != cp->migration_pth)
1945     GSF_peer_transmit_cancel_ (cp->migration_pth);
1946   cp->migration_pth =
1947       GSF_peer_transmit_ (cp, GNUNET_SYSERR, UINT32_MAX,
1948                           GNUNET_TIME_UNIT_FOREVER_REL,
1949                           sizeof (struct MigrationStopMessage),
1950                           &create_migration_stop_message, cp);
1951 }
1952
1953
1954 /**
1955  * Notify core about a preference we have for the given peer
1956  * (to allocate more resources towards it).  The change will
1957  * be communicated the next time we reserve bandwidth with
1958  * core (not instantly).
1959  *
1960  * @param cp peer to reserve bandwidth from
1961  * @param pref preference change
1962  */
1963 void
1964 GSF_connected_peer_change_preference_ (struct GSF_ConnectedPeer *cp,
1965                                        uint64_t pref)
1966 {
1967   cp->inc_preference += pref;
1968 }
1969
1970
1971 /**
1972  * Call this method periodically to flush respect information to disk.
1973  *
1974  * @param cls closure, not used
1975  */
1976 static void
1977 cron_flush_respect (void *cls)
1978 {
1979   fr_task = NULL;
1980   GNUNET_CONTAINER_multipeermap_iterate (cp_map,
1981                                          &flush_respect,
1982                                          NULL);
1983   fr_task = GNUNET_SCHEDULER_add_delayed_with_priority (RESPECT_FLUSH_FREQ,
1984                                                         GNUNET_SCHEDULER_PRIORITY_HIGH,
1985                                                         &cron_flush_respect, NULL);
1986 }
1987
1988
1989 /**
1990  * Initialize peer management subsystem.
1991  */
1992 void
1993 GSF_connected_peer_init_ ()
1994 {
1995   cp_map = GNUNET_CONTAINER_multipeermap_create (128, GNUNET_YES);
1996   peerstore = GNUNET_PEERSTORE_connect (GSF_cfg);
1997   fr_task = GNUNET_SCHEDULER_add_with_priority (GNUNET_SCHEDULER_PRIORITY_HIGH,
1998                                                 &cron_flush_respect, NULL);
1999 }
2000
2001
2002 /**
2003  * Iterator to free peer entries.
2004  *
2005  * @param cls closure, unused
2006  * @param key current key code
2007  * @param value value in the hash map (peer entry)
2008  * @return #GNUNET_YES (we should continue to iterate)
2009  */
2010 static int
2011 clean_peer (void *cls,
2012             const struct GNUNET_PeerIdentity *key,
2013             void *value)
2014 {
2015   GSF_peer_disconnect_handler_ (NULL, key);
2016   return GNUNET_YES;
2017 }
2018
2019
2020 /**
2021  * Shutdown peer management subsystem.
2022  */
2023 void
2024 GSF_connected_peer_done_ ()
2025 {
2026   GNUNET_CONTAINER_multipeermap_iterate (cp_map,
2027                                          &flush_respect,
2028                                          NULL);
2029   GNUNET_CONTAINER_multipeermap_iterate (cp_map,
2030                                          &clean_peer,
2031                                          NULL);
2032   GNUNET_SCHEDULER_cancel (fr_task);
2033   fr_task = NULL;
2034   GNUNET_CONTAINER_multipeermap_destroy (cp_map);
2035   cp_map = NULL;
2036   GNUNET_PEERSTORE_disconnect (peerstore,
2037                                GNUNET_YES);
2038   
2039 }
2040
2041
2042 /**
2043  * Iterator to remove references to LC entry.
2044  *
2045  * @param cls the `struct GSF_LocalClient *` to look for
2046  * @param key current key code
2047  * @param value value in the hash map (peer entry)
2048  * @return #GNUNET_YES (we should continue to iterate)
2049  */
2050 static int
2051 clean_local_client (void *cls,
2052                     const struct GNUNET_PeerIdentity *key,
2053                     void *value)
2054 {
2055   const struct GSF_LocalClient *lc = cls;
2056   struct GSF_ConnectedPeer *cp = value;
2057   unsigned int i;
2058
2059   for (i = 0; i < CS2P_SUCCESS_LIST_SIZE; i++)
2060     if (cp->ppd.last_client_replies[i] == lc)
2061       cp->ppd.last_client_replies[i] = NULL;
2062   return GNUNET_YES;
2063 }
2064
2065
2066 /**
2067  * Notification that a local client disconnected.  Clean up all of our
2068  * references to the given handle.
2069  *
2070  * @param lc handle to the local client (henceforth invalid)
2071  */
2072 void
2073 GSF_handle_local_client_disconnect_ (const struct GSF_LocalClient *lc)
2074 {
2075   if (NULL == cp_map)
2076     return;                     /* already cleaned up */
2077   GNUNET_CONTAINER_multipeermap_iterate (cp_map, &clean_local_client,
2078                                          (void *) lc);
2079 }
2080
2081
2082 /* end of gnunet-service-fs_cp.c */