increase
[oweals/gnunet.git] / src / nse / gnunet-service-nse.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 nse/gnunet-service-nse.c
23  * @brief network size estimation service
24  * @author Nathan Evans
25  * @author Christian Grothoff
26  *
27  * The purpose of this service is to estimate the size of the network.
28  * Given a specified interval, each peer hashes the most recent
29  * timestamp which is evenly divisible by that interval.  This hash is
30  * compared in distance to the peer identity to choose an offset.  The
31  * closer the peer identity to the hashed timestamp, the earlier the
32  * peer sends out a "nearest peer" message.  The closest peer's
33  * message should thus be received before any others, which stops
34  * those peer from sending their messages at a later duration.  So
35  * every peer should receive the same nearest peer message, and from
36  * this can calculate the expected number of peers in the network.
37  */
38 #include "platform.h"
39 #include <math.h>
40 #include "gnunet_util_lib.h"
41 #include "gnunet_constants.h"
42 #include "gnunet_protocols.h"
43 #include "gnunet_signatures.h"
44 #include "gnunet_statistics_service.h"
45 #include "gnunet_core_service.h"
46 #include "gnunet_nse_service.h"
47 #include "nse.h"
48
49 /**
50  * Should messages be delayed randomly?  This option should be set to
51  * GNUNET_NO only for experiments, not in production.  It should also
52  * be removed once the initial experiments have been completed.
53  */
54 #define USE_RANDOM_DELAYS GNUNET_YES
55
56 /**
57  * Should we generate a histogram with the time stamps of when we received
58  * NSE messages to disk? (for performance evaluation only, not useful in
59  * production).  The associated code should also probably be removed
60  * once we're done with experiments.
61  */
62 #define ENABLE_HISTOGRAM GNUNET_NO
63
64 /**
65  * Over how many values do we calculate the weighted average?
66  */
67 #define HISTORY_SIZE 64
68
69 /**
70  * Message priority to use.
71  */
72 #define NSE_PRIORITY 5
73
74 #if FREEBSD
75 #define log2(a) (log(a)/log(2))
76 #endif
77
78 /**
79  * Amount of work required (W-bit collisions) for NSE proofs, in collision-bits.
80  */
81 static unsigned long long nse_work_required;
82
83 /**
84  * Interval for sending network size estimation flood requests.
85  */
86 static struct GNUNET_TIME_Relative gnunet_nse_interval;
87
88 /**
89  * Interval between proof find runs.
90  */
91 static struct GNUNET_TIME_Relative proof_find_delay;
92
93 #if ENABLE_HISTOGRAM
94 /**
95  * Handle for writing when we received messages to disk.
96  */
97 static struct GNUNET_BIO_WriteHandle *wh;
98 #endif
99
100
101 /**
102  * Per-peer information.
103  */
104 struct NSEPeerEntry
105 {
106
107   /**
108    * Pending message for this peer.
109    */
110   struct GNUNET_MessageHeader *pending_message;
111
112   /**
113    * Core handle for sending messages to this peer.
114    */
115   struct GNUNET_CORE_TransmitHandle *th;
116
117   /**
118    * What is the identity of the peer?
119    */
120   struct GNUNET_PeerIdentity id;
121
122   /**
123    * Task scheduled to send message to this peer.
124    */
125   GNUNET_SCHEDULER_TaskIdentifier transmit_task;
126
127   /**
128    * Did we receive or send a message about the previous round
129    * to this peer yet?   GNUNET_YES if the previous round has
130    * been taken care of.
131    */
132   int previous_round;
133 };
134
135
136 /**
137  * Network size estimate reply; sent when "this"
138  * peer's timer has run out before receiving a
139  * valid reply from another peer.
140  */
141 struct GNUNET_NSE_FloodMessage
142 {
143   /**
144    * Type: GNUNET_MESSAGE_TYPE_NSE_P2P_FLOOD
145    */
146   struct GNUNET_MessageHeader header;
147
148   /**
149    * Number of hops this message has taken so far.
150    */
151   uint32_t hop_count GNUNET_PACKED;
152
153   /**
154    * Purpose.
155    */
156   struct GNUNET_CRYPTO_RsaSignaturePurpose purpose;
157
158   /**
159    * The current timestamp value (which all
160    * peers should agree on).
161    */
162   struct GNUNET_TIME_AbsoluteNBO timestamp;
163
164   /**
165    * Number of matching bits between the hash
166    * of timestamp and the initiator's public
167    * key.
168    */
169   uint32_t matching_bits GNUNET_PACKED;
170
171   /**
172    * Public key of the originator.
173    */
174   struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded pkey;
175
176   /**
177    * Proof of work, causing leading zeros when hashed with pkey.
178    */
179   uint64_t proof_of_work GNUNET_PACKED;
180
181   /**
182    * Signature (over range specified in purpose).
183    */
184   struct GNUNET_CRYPTO_RsaSignature signature;
185 };
186
187
188 /**
189  * Handle to our current configuration.
190  */
191 static const struct GNUNET_CONFIGURATION_Handle *cfg;
192
193 /**
194  * Handle to the statistics service.
195  */
196 static struct GNUNET_STATISTICS_Handle *stats;
197
198 /**
199  * Handle to the core service.
200  */
201 static struct GNUNET_CORE_Handle *coreAPI;
202
203 /**
204  * Map of all connected peers.
205  */
206 static struct GNUNET_CONTAINER_MultiHashMap *peers;
207
208 /**
209  * The current network size estimate.  Number of bits matching on
210  * average thus far.
211  */
212 static double current_size_estimate;
213
214 /**
215  * The standard deviation of the last HISTORY_SIZE network
216  * size estimates.
217  */
218 static double current_std_dev = NAN;
219
220 /**
221  * Current hop counter estimate (estimate for network diameter).
222  */
223 static uint32_t hop_count_max;
224
225 /**
226  * Message for the next round, if we got any.
227  */
228 static struct GNUNET_NSE_FloodMessage next_message;
229
230 /**
231  * Array of recent size estimate messages.
232  */
233 static struct GNUNET_NSE_FloodMessage size_estimate_messages[HISTORY_SIZE];
234
235 /**
236  * Index of most recent estimate.
237  */
238 static unsigned int estimate_index;
239
240 /**
241  * Number of valid entries in the history.
242  */
243 static unsigned int estimate_count;
244
245 /**
246  * Task scheduled to update our flood message for the next round.
247  */
248 static GNUNET_SCHEDULER_TaskIdentifier flood_task;
249
250 /**
251  * Task scheduled to compute our proof.
252  */
253 static GNUNET_SCHEDULER_TaskIdentifier proof_task;
254
255 /**
256  * Notification context, simplifies client broadcasts.
257  */
258 static struct GNUNET_SERVER_NotificationContext *nc;
259
260 /**
261  * The next major time.
262  */
263 static struct GNUNET_TIME_Absolute next_timestamp;
264
265 /**
266  * The current major time.
267  */
268 static struct GNUNET_TIME_Absolute current_timestamp;
269
270 /**
271  * The public key of this peer.
272  */
273 static struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded my_public_key;
274
275 /**
276  * The private key of this peer.
277  */
278 static struct GNUNET_CRYPTO_RsaPrivateKey *my_private_key;
279
280 /**
281  * The peer identity of this peer.
282  */
283 static struct GNUNET_PeerIdentity my_identity;
284
285 /**
286  * Proof of work for this peer.
287  */
288 static uint64_t my_proof;
289
290
291 /**
292  * Initialize a message to clients with the current network
293  * size estimate.
294  *
295  * @param em message to fill in
296  */
297 static void
298 setup_estimate_message (struct GNUNET_NSE_ClientMessage *em)
299 {
300   unsigned int i;
301   unsigned int j;
302   double mean;
303   double sum;
304   double std_dev;
305   double variance;
306   double val;
307   double nsize;
308
309   /* Weighted incremental algorithm for stddev according to West (1979) */
310 #if WEST
311   double sumweight;
312   double weight;
313   double q;
314   double r;
315   double temp;
316
317   mean = 0.0;
318   sum = 0.0;
319   sumweight = 0.0;
320   for (i = 0; i < estimate_count; i++)
321   {
322     j = (estimate_index - i + HISTORY_SIZE) % HISTORY_SIZE;
323     val = htonl (size_estimate_messages[j].matching_bits);
324     weight = 1.0;              /* was: estimate_count + 1 - i; */
325
326     temp = weight + sumweight;
327     q = val - mean;
328     r = q * weight / temp;
329     mean += r;
330     sum += sumweight * q * r;
331     sumweight = temp;
332   }
333   if (estimate_count > 0)
334     variance = (sum / sumweight) * estimate_count / (estimate_count - 1.0);
335 #else
336   /* trivial version for debugging */
337   double vsq;
338
339   /* non-weighted trivial version */
340   sum = 0.0;
341   vsq = 0.0;
342   variance = 0.0;
343   mean = 0.0;
344
345   for (i = 0; i < estimate_count; i++)
346   {
347     j = (estimate_index - i + HISTORY_SIZE) % HISTORY_SIZE;
348     val = htonl (size_estimate_messages[j].matching_bits);
349     sum += val;
350     vsq += val * val;
351   }
352   if (0 != estimate_count)
353   {
354     mean = sum / estimate_count;
355     variance = (vsq - mean * sum) / (estimate_count - 1.0); // terrible for numerical stability...
356     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 
357                 "(%f - %f) / %u = %f\n", 
358                 vsq, mean * sum, estimate_count - 1, variance);
359
360   }
361 #endif
362   GNUNET_assert (variance >= 0);
363   std_dev = sqrt (variance);
364   current_std_dev = std_dev;
365   current_size_estimate = mean;
366
367   em->header.size = htons (sizeof (struct GNUNET_NSE_ClientMessage));
368   em->header.type = htons (GNUNET_MESSAGE_TYPE_NSE_ESTIMATE);
369   em->reserved = htonl (0);
370   em->timestamp = GNUNET_TIME_absolute_hton (GNUNET_TIME_absolute_get ());
371   em->size_estimate = mean - 0.332747;
372   nsize = log2 (GNUNET_CONTAINER_multihashmap_size (peers) + 1);
373   if (em->size_estimate < nsize)
374     em->size_estimate = nsize;
375   em->std_deviation = std_dev;
376   GNUNET_STATISTICS_set (stats, "# nodes in the network (estimate)",
377                          (uint64_t) pow (2, mean - 1.0 / 3.0), GNUNET_NO);
378 }
379
380
381 /**
382  * Handler for START message from client, triggers an
383  * immediate current network estimate notification.
384  * Also, we remember the client for updates upon future
385  * estimate measurements.
386  *
387  * @param cls unused
388  * @param client who sent the message
389  * @param message the message received
390  */
391 static void
392 handle_start_message (void *cls, struct GNUNET_SERVER_Client *client,
393                       const struct GNUNET_MessageHeader *message)
394 {
395   struct GNUNET_NSE_ClientMessage em;
396
397 #if DEBUG_NSE
398   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received START message from client\n");
399 #endif
400   GNUNET_SERVER_notification_context_add (nc, client);
401   setup_estimate_message (&em);
402   GNUNET_SERVER_notification_context_unicast (nc, client, &em.header,
403                                               GNUNET_YES);
404   GNUNET_SERVER_receive_done (client, GNUNET_OK);
405 }
406
407
408 /**
409  * How long should we delay a message to go the given number of
410  * matching bits?
411  *
412  * @param matching_bits number of matching bits to consider
413  */
414 static double
415 get_matching_bits_delay (uint32_t matching_bits)
416 {
417   /* Calculated as: S + f/2 - (f / pi) * (atan(x - p')) */
418   // S is next_timestamp (ignored in return value)
419   // f is frequency (gnunet_nse_interval)
420   // x is matching_bits
421   // p' is current_size_estimate
422   return ((double) gnunet_nse_interval.rel_value / (double) 2.0) -
423       ((gnunet_nse_interval.rel_value / M_PI) *
424        atan (matching_bits - current_size_estimate));
425 }
426
427
428 /**
429  * What delay randomization should we apply for a given number of matching bits?
430  *
431  * @param matching_bits number of matching bits
432  * @return random delay to apply
433  */
434 static struct GNUNET_TIME_Relative
435 get_delay_randomization (uint32_t matching_bits)
436 {
437 #if USE_RANDOM_DELAYS
438   struct GNUNET_TIME_Relative ret;
439
440   if (matching_bits == 0)
441     return GNUNET_TIME_UNIT_ZERO;
442   ret.rel_value =
443       GNUNET_CRYPTO_random_u32 (GNUNET_CRYPTO_QUALITY_WEAK,
444                                 (uint32_t) (get_matching_bits_delay
445                                             (matching_bits -
446                                              1) / (double) (hop_count_max +
447                                                             1)));
448   return ret;
449 #else
450   return GNUNET_TIME_UNIT_ZERO;
451 #endif
452 }
453
454
455 /**
456  * Get the number of matching bits that the given timestamp has to the given peer ID.
457  *
458  * @param timestamp time to generate key
459  * @param id peer identity to compare with
460  * @return number of matching bits
461  */
462 static uint32_t
463 get_matching_bits (struct GNUNET_TIME_Absolute timestamp,
464                    const struct GNUNET_PeerIdentity *id)
465 {
466   GNUNET_HashCode timestamp_hash;
467
468   GNUNET_CRYPTO_hash (&timestamp.abs_value, sizeof (timestamp.abs_value),
469                       &timestamp_hash);
470   return GNUNET_CRYPTO_hash_matching_bits (&timestamp_hash, &id->hashPubKey);
471 }
472
473
474 /**
475  * Get the transmission delay that should be applied for a
476  * particular round.
477  *
478  * @param round_offset -1 for the previous round (random delay between 0 and 50ms)
479  *                      0 for the current round (based on our proximity to time key)
480  * @return delay that should be applied
481  */
482 static struct GNUNET_TIME_Relative
483 get_transmit_delay (int round_offset)
484 {
485   struct GNUNET_TIME_Relative ret;
486   struct GNUNET_TIME_Absolute tgt;
487   double dist_delay;
488   uint32_t matching_bits;
489
490   switch (round_offset)
491   {
492   case -1:
493     /* previous round is randomized between 0 and 50 ms */
494 #if USE_RANDOM_DELAYS
495     ret.rel_value = GNUNET_CRYPTO_random_u64 (GNUNET_CRYPTO_QUALITY_WEAK, 50);
496 #else
497     ret = GNUNET_TIME_UNIT_ZERO;
498 #endif
499 #if DEBUG_NSE
500     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
501                 "Transmitting previous round behind schedule in %llu ms\n",
502                 (unsigned long long) ret.rel_value);
503 #endif
504     return ret;
505   case 0:
506     /* current round is based on best-known matching_bits */
507     matching_bits =
508         ntohl (size_estimate_messages[estimate_index].matching_bits);
509     dist_delay = get_matching_bits_delay (matching_bits);
510     dist_delay += get_delay_randomization (matching_bits).rel_value;
511     ret.rel_value = (uint64_t) dist_delay;
512 #if DEBUG_NSE
513     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
514                 "For round %llu, delay for %u matching bits is %llu ms\n",
515                 (unsigned long long) current_timestamp.abs_value,
516                 (unsigned int) matching_bits,
517                 (unsigned long long) ret.rel_value);
518 #endif
519     /* now consider round start time and add delay to it */
520     tgt = GNUNET_TIME_absolute_add (current_timestamp, ret);
521     return GNUNET_TIME_absolute_get_remaining (tgt);
522   }
523   GNUNET_break (0);
524   return GNUNET_TIME_UNIT_FOREVER_REL;
525 }
526
527
528 /**
529  * Task that triggers a NSE P2P transmission.
530  *
531  * @param cls the 'struct NSEPeerEntry'
532  * @param tc scheduler context
533  */
534 static void
535 transmit_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc);
536
537
538 /**
539  * Called when core is ready to send a message we asked for
540  * out to the destination.
541  *
542  * @param cls closure (NULL)
543  * @param size number of bytes available in buf
544  * @param buf where the callee should write the message
545  * @return number of bytes written to buf
546  */
547 static size_t
548 transmit_ready (void *cls, size_t size, void *buf)
549 {
550   struct NSEPeerEntry *peer_entry = cls;
551   unsigned int idx;
552
553   peer_entry->th = NULL;
554   if (buf == NULL)
555   {
556     /* client disconnected */
557     return 0;
558   }
559   GNUNET_assert (size >= sizeof (struct GNUNET_NSE_FloodMessage));
560   idx = estimate_index;
561   if (peer_entry->previous_round == GNUNET_NO)
562   {
563     idx = (idx + HISTORY_SIZE - 1) % HISTORY_SIZE;
564     peer_entry->previous_round = GNUNET_YES;
565     peer_entry->transmit_task =
566         GNUNET_SCHEDULER_add_delayed (get_transmit_delay (0), &transmit_task,
567                                       peer_entry);
568   }
569   if ((ntohl (size_estimate_messages[idx].hop_count) == 0) &&
570       (GNUNET_SCHEDULER_NO_TASK != proof_task))
571   {
572     GNUNET_STATISTICS_update (stats,
573                               "# flood messages not generated (no proof yet)",
574                               1, GNUNET_NO);
575     return 0;
576   }
577 #if DEBUG_NSE
578   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
579               "In round %llu, sending to `%s' estimate with %u bits\n",
580               (unsigned long long)
581               GNUNET_TIME_absolute_ntoh (size_estimate_messages[idx].
582                                          timestamp).abs_value,
583               GNUNET_i2s (&peer_entry->id),
584               (unsigned int) ntohl (size_estimate_messages[idx].matching_bits));
585 #endif
586   if (ntohl (size_estimate_messages[idx].hop_count) == 0)
587     GNUNET_STATISTICS_update (stats, "# flood messages started", 1, GNUNET_NO);
588   GNUNET_STATISTICS_update (stats, "# flood messages transmitted", 1,
589                             GNUNET_NO);
590   memcpy (buf, &size_estimate_messages[idx],
591           sizeof (struct GNUNET_NSE_FloodMessage));
592   GNUNET_STATISTICS_update (stats, "# flood messages sent", 1, GNUNET_NO);
593   return sizeof (struct GNUNET_NSE_FloodMessage);
594 }
595
596
597 /**
598  * Task that triggers a NSE P2P transmission.
599  *
600  * @param cls the 'struct NSEPeerEntry'
601  * @param tc scheduler context
602  */
603 static void
604 transmit_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
605 {
606   struct NSEPeerEntry *peer_entry = cls;
607
608   peer_entry->transmit_task = GNUNET_SCHEDULER_NO_TASK;
609   GNUNET_assert (NULL == peer_entry->th);
610   peer_entry->th =
611       GNUNET_CORE_notify_transmit_ready (coreAPI, GNUNET_NO, NSE_PRIORITY,
612                                          GNUNET_TIME_UNIT_FOREVER_REL,
613                                          &peer_entry->id,
614                                          sizeof (struct
615                                                  GNUNET_NSE_FloodMessage),
616                                          &transmit_ready, peer_entry);
617 }
618
619
620 /**
621  * We've sent on our flood message or one that we received which was
622  * validated and closer than ours.  Update the global list of recent
623  * messages and the average.  Also re-broadcast the message to any
624  * clients.
625  */
626 static void
627 update_network_size_estimate ()
628 {
629   struct GNUNET_NSE_ClientMessage em;
630
631   setup_estimate_message (&em);
632   GNUNET_SERVER_notification_context_broadcast (nc, &em.header, GNUNET_YES);
633 }
634
635
636 /**
637  * Setup a flood message in our history array at the given
638  * slot offset for the given timestamp.
639  *
640  * @param slot index to use
641  * @param ts timestamp to use
642  */
643 static void
644 setup_flood_message (unsigned int slot, struct GNUNET_TIME_Absolute ts)
645 {
646   struct GNUNET_NSE_FloodMessage *fm;
647   uint32_t matching_bits;
648
649   matching_bits = get_matching_bits (ts, &my_identity);
650   fm = &size_estimate_messages[slot];
651   fm->header.size = htons (sizeof (struct GNUNET_NSE_FloodMessage));
652   fm->header.type = htons (GNUNET_MESSAGE_TYPE_NSE_P2P_FLOOD);
653   fm->hop_count = htonl (0);
654   fm->purpose.purpose = htonl (GNUNET_SIGNATURE_PURPOSE_NSE_SEND);
655   fm->purpose.size =
656       htonl (sizeof (struct GNUNET_NSE_FloodMessage) -
657              sizeof (struct GNUNET_MessageHeader) - sizeof (uint32_t) -
658              sizeof (struct GNUNET_CRYPTO_RsaSignature));
659   fm->matching_bits = htonl (matching_bits);
660   fm->timestamp = GNUNET_TIME_absolute_hton (ts);
661   fm->pkey = my_public_key;
662   fm->proof_of_work = my_proof;
663   GNUNET_assert (GNUNET_OK ==
664                  GNUNET_CRYPTO_rsa_sign (my_private_key, &fm->purpose,
665                                          &fm->signature));
666 }
667
668
669 /**
670  * Schedule transmission for the given peer for the current round based
671  * on what we know about the desired delay.
672  *
673  * @param cls unused
674  * @param key hash of peer identity
675  * @param value the 'struct NSEPeerEntry'
676  * @return GNUNET_OK (continue to iterate)
677  */
678 static int
679 schedule_current_round (void *cls, const GNUNET_HashCode * key, void *value)
680 {
681   struct NSEPeerEntry *peer_entry = value;
682   struct GNUNET_TIME_Relative delay;
683
684   if (peer_entry->th != NULL)
685   {
686     peer_entry->previous_round = GNUNET_NO;
687     return GNUNET_OK;
688   }
689   if (peer_entry->transmit_task != GNUNET_SCHEDULER_NO_TASK)
690   {
691     GNUNET_SCHEDULER_cancel (peer_entry->transmit_task);
692     peer_entry->previous_round = GNUNET_NO;
693   }
694   delay =
695       get_transmit_delay ((peer_entry->previous_round == GNUNET_NO) ? -1 : 0);
696   peer_entry->transmit_task =
697       GNUNET_SCHEDULER_add_delayed (delay, &transmit_task, peer_entry);
698   return GNUNET_OK;
699 }
700
701
702 /**
703  * Update our flood message to be sent (and our timestamps).
704  *
705  * @param cls unused
706  * @param tc context for this message
707  */
708 static void
709 update_flood_message (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
710 {
711   struct GNUNET_TIME_Relative offset;
712   unsigned int i;
713
714   flood_task = GNUNET_SCHEDULER_NO_TASK;
715   offset = GNUNET_TIME_absolute_get_remaining (next_timestamp);
716   if (0 != offset.rel_value)
717   {
718     /* somehow run early, delay more */
719     flood_task =
720         GNUNET_SCHEDULER_add_delayed (offset, &update_flood_message, NULL);
721     return;
722   }
723   current_timestamp = next_timestamp;
724   next_timestamp =
725       GNUNET_TIME_absolute_add (current_timestamp, gnunet_nse_interval);
726   estimate_index = (estimate_index + 1) % HISTORY_SIZE;
727   if (estimate_count < HISTORY_SIZE)
728     estimate_count++;
729   if (next_timestamp.abs_value ==
730       GNUNET_TIME_absolute_ntoh (next_message.timestamp).abs_value)
731   {
732     /* we received a message for this round way early, use it! */
733     size_estimate_messages[estimate_index] = next_message;
734     size_estimate_messages[estimate_index].hop_count =
735         htonl (1 + ntohl (next_message.hop_count));
736   }
737   else
738     setup_flood_message (estimate_index, current_timestamp);
739   next_message.matching_bits = htonl (0);       /* reset for 'next' round */
740   hop_count_max = 0;
741   for (i = 0; i < HISTORY_SIZE; i++)
742     hop_count_max =
743         GNUNET_MAX (ntohl (size_estimate_messages[i].hop_count), hop_count_max);
744   GNUNET_CONTAINER_multihashmap_iterate (peers, &schedule_current_round, NULL);
745   flood_task =
746       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_absolute_get_remaining
747                                     (next_timestamp), &update_flood_message,
748                                     NULL);
749 }
750
751
752 /**
753  * Count the leading zeroes in hash.
754  *
755  * @param hash
756  * @return the number of leading zero bits.
757  */
758 static unsigned int
759 count_leading_zeroes (const GNUNET_HashCode * hash)
760 {
761   unsigned int hash_count;
762
763   hash_count = 0;
764   while ((0 == GNUNET_CRYPTO_hash_get_bit (hash, hash_count)))
765     hash_count++;
766   return hash_count;
767 }
768
769
770 /**
771  * Check whether the given public key
772  * and integer are a valid proof of work.
773  *
774  * @param pkey the public key
775  * @param val the integer
776  *
777  * @return GNUNET_YES if valid, GNUNET_NO if not
778  */
779 static int
780 check_proof_of_work (const struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded *pkey,
781                      uint64_t val)
782 {
783   char buf[sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded) +
784            sizeof (val)];
785   GNUNET_HashCode result;
786
787   memcpy (buf, &val, sizeof (val));
788   memcpy (&buf[sizeof (val)], pkey,
789           sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded));
790   GNUNET_CRYPTO_hash (buf, sizeof (buf), &result);
791   return (count_leading_zeroes (&result) >=
792           nse_work_required) ? GNUNET_YES : GNUNET_NO;
793 }
794
795
796 /**
797  * Write our current proof to disk.
798  */
799 static void
800 write_proof ()
801 {
802   char *proof;
803
804   if (GNUNET_OK !=
805       GNUNET_CONFIGURATION_get_value_filename (cfg, "NSE", "PROOFFILE", &proof))
806     return;
807   if (sizeof (my_proof) !=
808       GNUNET_DISK_fn_write (proof, &my_proof, sizeof (my_proof),
809                             GNUNET_DISK_PERM_USER_READ |
810                             GNUNET_DISK_PERM_USER_WRITE))
811     GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_WARNING, "write", proof);
812   GNUNET_free (proof);
813
814 }
815
816
817 /**
818  * Find our proof of work.
819  *
820  * @param cls closure (unused)
821  * @param tc task context
822  */
823 static void
824 find_proof (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
825 {
826 #define ROUND_SIZE 10
827   uint64_t counter;
828   char buf[sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded) +
829            sizeof (uint64_t)];
830   GNUNET_HashCode result;
831   unsigned int i;
832
833   proof_task = GNUNET_SCHEDULER_NO_TASK;
834   memcpy (&buf[sizeof (uint64_t)], &my_public_key,
835           sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded));
836   i = 0;
837   counter = my_proof;
838   while ((counter != UINT64_MAX) && (i < ROUND_SIZE))
839   {
840     memcpy (buf, &counter, sizeof (uint64_t));
841     GNUNET_CRYPTO_hash (buf, sizeof (buf), &result);
842     if (nse_work_required <= count_leading_zeroes (&result))
843     {
844       my_proof = counter;
845 #if DEBUG_NSE
846       GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Proof of work found: %llu!\n",
847                   (unsigned long long) GNUNET_ntohll (counter));
848 #endif
849       for (i = 0; i < HISTORY_SIZE; i++)
850         if (ntohl (size_estimate_messages[i].hop_count) == 0)
851         {
852           size_estimate_messages[i].proof_of_work = my_proof;
853           GNUNET_assert (GNUNET_OK ==
854                          GNUNET_CRYPTO_rsa_sign (my_private_key,
855                                                  &size_estimate_messages
856                                                  [i].purpose,
857                                                  &size_estimate_messages
858                                                  [i].signature));
859         }
860       write_proof ();
861       return;
862     }
863     counter++;
864     i++;
865   }
866   if (my_proof / (100 * ROUND_SIZE) < counter / (100 * ROUND_SIZE))
867   {
868 #if DEBUG_NSE
869     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Testing proofs currently at %llu\n",
870                 (unsigned long long) counter);
871 #endif
872     /* remember progress every 100 rounds */
873     my_proof = counter;
874     write_proof ();
875   }
876   else
877   {
878     my_proof = counter;
879   }
880   proof_task =
881       GNUNET_SCHEDULER_add_delayed (proof_find_delay, &find_proof, NULL);
882 }
883
884
885 /**
886  * An incoming flood message has been received which claims
887  * to have more bits matching than any we know in this time
888  * period.  Verify the signature and/or proof of work.
889  *
890  * @param incoming_flood the message to verify
891  *
892  * @return GNUNET_YES if the message is verified
893  *         GNUNET_NO if the key/signature don't verify
894  */
895 static int
896 verify_message_crypto (const struct GNUNET_NSE_FloodMessage *incoming_flood)
897 {
898   if (GNUNET_YES !=
899       check_proof_of_work (&incoming_flood->pkey,
900                            incoming_flood->proof_of_work))
901   {
902     GNUNET_log (GNUNET_ERROR_TYPE_INFO, _("Proof of work invalid: %llu!\n"),
903                 (unsigned long long)
904                 GNUNET_ntohll (incoming_flood->proof_of_work));
905     GNUNET_break_op (0);
906     return GNUNET_NO;
907   }
908   if (GNUNET_OK !=
909       GNUNET_CRYPTO_rsa_verify (GNUNET_SIGNATURE_PURPOSE_NSE_SEND,
910                                 &incoming_flood->purpose,
911                                 &incoming_flood->signature,
912                                 &incoming_flood->pkey))
913   {
914     GNUNET_break_op (0);
915     return GNUNET_NO;
916   }
917   return GNUNET_YES;
918 }
919
920
921 /**
922  * Update transmissions for the given peer for the current round based
923  * on updated proximity information.
924  *
925  * @param cls peer entry to exclude from updates
926  * @param key hash of peer identity
927  * @param value the 'struct NSEPeerEntry'
928  * @return GNUNET_OK (continue to iterate)
929  */
930 static int
931 update_flood_times (void *cls, const GNUNET_HashCode * key, void *value)
932 {
933   struct NSEPeerEntry *exclude = cls;
934   struct NSEPeerEntry *peer_entry = value;
935   struct GNUNET_TIME_Relative delay;
936
937   if (peer_entry->th != NULL)
938     return GNUNET_OK;           /* already active */
939   if (peer_entry == exclude)
940     return GNUNET_OK;           /* trigger of the update */
941   if (peer_entry->previous_round == GNUNET_NO)
942   {
943     /* still stuck in previous round, no point to update, check that
944      * we are active here though... */
945     GNUNET_break ((peer_entry->transmit_task != GNUNET_SCHEDULER_NO_TASK) ||
946                   (peer_entry->th != NULL));
947     return GNUNET_OK;
948   }
949   if (peer_entry->transmit_task != GNUNET_SCHEDULER_NO_TASK)
950   {
951     GNUNET_SCHEDULER_cancel (peer_entry->transmit_task);
952     peer_entry->transmit_task = GNUNET_SCHEDULER_NO_TASK;
953   }
954   delay = get_transmit_delay (0);
955   peer_entry->transmit_task =
956       GNUNET_SCHEDULER_add_delayed (delay, &transmit_task, peer_entry);
957   return GNUNET_OK;
958 }
959
960
961 /**
962  * Core handler for size estimate flooding messages.
963  *
964  * @param cls closure unused
965  * @param message message
966  * @param peer peer identity this message is from (ignored)
967  * @param atsi performance data (ignored)
968  * @param atsi_count number of records in 'atsi'
969  */
970 static int
971 handle_p2p_size_estimate (void *cls, const struct GNUNET_PeerIdentity *peer,
972                           const struct GNUNET_MessageHeader *message,
973                           const struct GNUNET_ATS_Information *atsi,
974                           unsigned int atsi_count)
975 {
976   const struct GNUNET_NSE_FloodMessage *incoming_flood;
977   struct GNUNET_TIME_Absolute ts;
978   struct NSEPeerEntry *peer_entry;
979   uint32_t matching_bits;
980   unsigned int idx;
981
982 #if ENABLE_HISTOGRAM
983   if (NULL != wh)
984     GNUNET_BIO_write_int64 (wh, GNUNET_TIME_absolute_get ().abs_value);
985 #endif
986   incoming_flood = (const struct GNUNET_NSE_FloodMessage *) message;
987   GNUNET_STATISTICS_update (stats, "# flood messages received", 1, GNUNET_NO);
988   matching_bits = ntohl (incoming_flood->matching_bits);
989 #if DEBUG_NSE
990   {
991     char origin[5];
992     char pred[5];
993     struct GNUNET_PeerIdentity os;
994
995     GNUNET_CRYPTO_hash (&incoming_flood->pkey,
996                         sizeof (struct GNUNET_CRYPTO_RsaPublicKeyBinaryEncoded),
997                         &os.hashPubKey);
998     GNUNET_snprintf (origin, sizeof (origin), "%s", GNUNET_i2s (&os));
999     GNUNET_snprintf (pred, sizeof (pred), "%s", GNUNET_i2s (peer));
1000     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
1001                 "Flood at %llu from `%s' via `%s' at `%s' with bits %u\n",
1002                 (unsigned long long)
1003                 GNUNET_TIME_absolute_ntoh (incoming_flood->timestamp).abs_value,
1004                 origin, pred, GNUNET_i2s (&my_identity),
1005                 (unsigned int) matching_bits);
1006   }
1007 #endif
1008
1009   peer_entry = GNUNET_CONTAINER_multihashmap_get (peers, &peer->hashPubKey);
1010   if (NULL == peer_entry)
1011   {
1012     GNUNET_break (0);
1013     return GNUNET_OK;
1014   }
1015
1016   ts = GNUNET_TIME_absolute_ntoh (incoming_flood->timestamp);
1017
1018   if (ts.abs_value == current_timestamp.abs_value)
1019     idx = estimate_index;
1020   else if (ts.abs_value ==
1021            current_timestamp.abs_value - gnunet_nse_interval.rel_value)
1022     idx = (estimate_index + HISTORY_SIZE - 1) % HISTORY_SIZE;
1023   else if (ts.abs_value ==
1024            next_timestamp.abs_value - gnunet_nse_interval.rel_value)
1025   {
1026     if (matching_bits <= ntohl (next_message.matching_bits))
1027       return GNUNET_OK;         /* ignore, simply too early/late */
1028     if (GNUNET_YES != verify_message_crypto (incoming_flood))
1029     {
1030       GNUNET_break_op (0);
1031       return GNUNET_OK;
1032     }
1033     next_message = *incoming_flood;
1034     return GNUNET_OK;
1035   }
1036   else
1037   {
1038     GNUNET_STATISTICS_update (stats,
1039                               "# flood messages discarded (clock skew too large)",
1040                               1, GNUNET_NO);
1041     return GNUNET_OK;
1042   }
1043   if (0 == (memcmp (peer, &my_identity, sizeof (struct GNUNET_PeerIdentity))))
1044   {
1045     /* send to self, update our own estimate IF this also comes from us! */
1046     if (0 ==
1047         memcmp (&incoming_flood->pkey, &my_public_key, sizeof (my_public_key)))
1048       update_network_size_estimate ();
1049     return GNUNET_OK;
1050   }
1051   if (matching_bits >= ntohl (size_estimate_messages[idx].matching_bits))
1052   {
1053     /* cancel transmission from us to this peer for this round */
1054     if (idx == estimate_index)
1055     {
1056       if (peer_entry->previous_round == GNUNET_YES)
1057       {
1058         /* cancel any activity for current round */
1059         if (peer_entry->transmit_task != GNUNET_SCHEDULER_NO_TASK)
1060         {
1061           GNUNET_SCHEDULER_cancel (peer_entry->transmit_task);
1062           peer_entry->transmit_task = GNUNET_SCHEDULER_NO_TASK;
1063         }
1064         if (peer_entry->th != NULL)
1065         {
1066           GNUNET_CORE_notify_transmit_ready_cancel (peer_entry->th);
1067           peer_entry->th = NULL;
1068         }
1069       }
1070     }
1071     else
1072     {
1073       /* cancel previous round only */
1074       peer_entry->previous_round = GNUNET_YES;
1075     }
1076   }
1077   if (matching_bits == ntohl (size_estimate_messages[idx].matching_bits))
1078     return GNUNET_OK;
1079   if (matching_bits <= ntohl (size_estimate_messages[idx].matching_bits))
1080   {
1081     if ((idx < estimate_index) && (peer_entry->previous_round == GNUNET_YES))
1082       peer_entry->previous_round = GNUNET_NO;
1083     /* push back our result now, that peer is spreading bad information... */
1084     if (NULL == peer_entry->th)
1085     {
1086       if (peer_entry->transmit_task != GNUNET_SCHEDULER_NO_TASK)
1087         GNUNET_SCHEDULER_cancel (peer_entry->transmit_task);
1088       peer_entry->transmit_task =
1089           GNUNET_SCHEDULER_add_now (&transmit_task, peer_entry);
1090     }
1091     /* Not closer than our most recent message, no need to do work here */
1092     GNUNET_STATISTICS_update (stats,
1093                               "# flood messages ignored (had closer already)",
1094                               1, GNUNET_NO);
1095     return GNUNET_OK;
1096   }
1097   if (GNUNET_YES != verify_message_crypto (incoming_flood))
1098   {
1099     GNUNET_break_op (0);
1100     return GNUNET_OK;
1101   }
1102   size_estimate_messages[idx] = *incoming_flood;
1103   size_estimate_messages[idx].hop_count =
1104       htonl (ntohl (incoming_flood->hop_count) + 1);
1105   hop_count_max =
1106       GNUNET_MAX (ntohl (incoming_flood->hop_count) + 1, hop_count_max);
1107
1108   /* have a new, better size estimate, inform clients */
1109   update_network_size_estimate ();
1110
1111   /* flood to rest */
1112   GNUNET_CONTAINER_multihashmap_iterate (peers, &update_flood_times,
1113                                          peer_entry);
1114   return GNUNET_OK;
1115 }
1116
1117
1118
1119 /**
1120  * Method called whenever a peer connects.
1121  *
1122  * @param cls closure
1123  * @param peer peer identity this notification is about
1124  * @param atsi performance data
1125  * @param atsi_count number of records in 'atsi'
1126  */
1127 static void
1128 handle_core_connect (void *cls, const struct GNUNET_PeerIdentity *peer,
1129                      const struct GNUNET_ATS_Information *atsi,
1130                      unsigned int atsi_count)
1131 {
1132   struct NSEPeerEntry *peer_entry;
1133
1134 #if DEBUG_NSE
1135   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer `%s' connected to us\n",
1136               GNUNET_i2s (peer));
1137 #endif
1138   peer_entry = GNUNET_malloc (sizeof (struct NSEPeerEntry));
1139   peer_entry->id = *peer;
1140   GNUNET_assert (GNUNET_OK ==
1141                  GNUNET_CONTAINER_multihashmap_put (peers, &peer->hashPubKey, peer_entry,
1142                                                     GNUNET_CONTAINER_MULTIHASHMAPOPTION_UNIQUE_ONLY));
1143   peer_entry->transmit_task =
1144       GNUNET_SCHEDULER_add_delayed (get_transmit_delay (-1), &transmit_task,
1145                                     peer_entry);
1146 }
1147
1148
1149 /**
1150  * Method called whenever a peer disconnects.
1151  *
1152  * @param cls closure
1153  * @param peer peer identity this notification is about
1154  */
1155 static void
1156 handle_core_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
1157 {
1158   struct NSEPeerEntry *pos;
1159
1160 #if DEBUG_NSE
1161   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer `%s' disconnected from us\n",
1162               GNUNET_i2s (peer));
1163 #endif
1164   pos = GNUNET_CONTAINER_multihashmap_get (peers, &peer->hashPubKey);
1165   if (NULL == pos)
1166   {
1167     GNUNET_break (0);
1168     return;
1169   }
1170   GNUNET_assert (GNUNET_YES ==
1171                  GNUNET_CONTAINER_multihashmap_remove (peers, &peer->hashPubKey,
1172                                                        pos));
1173   if (pos->transmit_task != GNUNET_SCHEDULER_NO_TASK)
1174     GNUNET_SCHEDULER_cancel (pos->transmit_task);
1175   if (pos->th != NULL)
1176   {
1177     GNUNET_CORE_notify_transmit_ready_cancel (pos->th);
1178     pos->th = NULL;
1179   }
1180   GNUNET_free (pos);
1181 }
1182
1183
1184 /**
1185  * Task run during shutdown.
1186  *
1187  * @param cls unused
1188  * @param tc unused
1189  */
1190 static void
1191 shutdown_task (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1192 {
1193   if (flood_task != GNUNET_SCHEDULER_NO_TASK)
1194   {
1195     GNUNET_SCHEDULER_cancel (flood_task);
1196     flood_task = GNUNET_SCHEDULER_NO_TASK;
1197   }
1198   if (proof_task != GNUNET_SCHEDULER_NO_TASK)
1199   {
1200     GNUNET_SCHEDULER_cancel (proof_task);
1201     proof_task = GNUNET_SCHEDULER_NO_TASK;
1202     write_proof ();             /* remember progress */
1203   }
1204   if (nc != NULL)
1205   {
1206     GNUNET_SERVER_notification_context_destroy (nc);
1207     nc = NULL;
1208   }
1209   if (coreAPI != NULL)
1210   {
1211     GNUNET_CORE_disconnect (coreAPI);
1212     coreAPI = NULL;
1213   }
1214   if (stats != NULL)
1215   {
1216     GNUNET_STATISTICS_destroy (stats, GNUNET_NO);
1217     stats = NULL;
1218   }
1219   if (peers != NULL)
1220   {
1221     GNUNET_CONTAINER_multihashmap_destroy (peers);
1222     peers = NULL;
1223   }
1224   if (my_private_key != NULL)
1225   {
1226     GNUNET_CRYPTO_rsa_key_free (my_private_key);
1227     my_private_key = NULL;
1228   }
1229 #if ENABLE_HISTOGRAM
1230   if (wh != NULL)
1231   {
1232     GNUNET_BIO_write_close (wh);
1233     wh = NULL;
1234   }
1235 #endif
1236 }
1237
1238
1239 /**
1240  * Called on core init/fail.
1241  *
1242  * @param cls service closure
1243  * @param server handle to the server for this service
1244  * @param identity the public identity of this peer
1245  */
1246 static void
1247 core_init (void *cls, struct GNUNET_CORE_Handle *server,
1248            const struct GNUNET_PeerIdentity *identity)
1249 {
1250   struct GNUNET_TIME_Absolute now;
1251   struct GNUNET_TIME_Absolute prev_time;
1252   unsigned int i;
1253
1254   if (server == NULL)
1255   {
1256 #if DEBUG_NSE
1257     GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Connection to core FAILED!\n");
1258 #endif
1259     GNUNET_SCHEDULER_shutdown ();
1260     return;
1261   }
1262   GNUNET_assert (0 ==
1263                  memcmp (&my_identity, identity,
1264                          sizeof (struct GNUNET_PeerIdentity)));
1265   now = GNUNET_TIME_absolute_get ();
1266   current_timestamp.abs_value =
1267       (now.abs_value / gnunet_nse_interval.rel_value) *
1268       gnunet_nse_interval.rel_value;
1269   next_timestamp.abs_value =
1270       current_timestamp.abs_value + gnunet_nse_interval.rel_value;
1271
1272   for (i = 0; i < HISTORY_SIZE; i++)
1273   {
1274     prev_time.abs_value =
1275         current_timestamp.abs_value - (HISTORY_SIZE - i -
1276                                        1) * gnunet_nse_interval.rel_value;
1277     setup_flood_message (i, prev_time);
1278   }
1279   estimate_index = HISTORY_SIZE - 1;
1280   estimate_count = 2;
1281   flood_task =
1282       GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_absolute_get_remaining
1283                                     (next_timestamp), &update_flood_message,
1284                                     NULL);
1285 }
1286
1287
1288 /**
1289  * Handle network size estimate clients.
1290  *
1291  * @param cls closure
1292  * @param server the initialized server
1293  * @param c configuration to use
1294  */
1295 static void
1296 run (void *cls, struct GNUNET_SERVER_Handle *server,
1297      const struct GNUNET_CONFIGURATION_Handle *c)
1298 {
1299   char *keyfile;
1300   char *proof;
1301
1302   static const struct GNUNET_SERVER_MessageHandler handlers[] = {
1303     {&handle_start_message, NULL, GNUNET_MESSAGE_TYPE_NSE_START,
1304      sizeof (struct GNUNET_MessageHeader)},
1305     {NULL, NULL, 0, 0}
1306   };
1307   static const struct GNUNET_CORE_MessageHandler core_handlers[] = {
1308     {&handle_p2p_size_estimate, GNUNET_MESSAGE_TYPE_NSE_P2P_FLOOD,
1309      sizeof (struct GNUNET_NSE_FloodMessage)},
1310     {NULL, 0, 0}
1311   };
1312   cfg = c;
1313
1314   if ((GNUNET_OK !=
1315        GNUNET_CONFIGURATION_get_value_time (cfg, "NSE", "INTERVAL",
1316                                             &gnunet_nse_interval)) ||
1317       (GNUNET_OK !=
1318        GNUNET_CONFIGURATION_get_value_time (cfg, "NSE", "WORKDELAY",
1319                                             &proof_find_delay)) ||
1320       (GNUNET_OK !=
1321        GNUNET_CONFIGURATION_get_value_number (cfg, "NSE", "WORKBITS",
1322                                               &nse_work_required)))
1323   {
1324     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1325                 _
1326                 ("NSE service is lacking key configuration settings.  Exiting.\n"));
1327     GNUNET_SCHEDULER_shutdown ();
1328     return;
1329   }
1330   if (nse_work_required >= sizeof (GNUNET_HashCode) * 8)
1331   {
1332     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1333                 _("Invalid work requirement for NSE service. Exiting.\n"));
1334     GNUNET_SCHEDULER_shutdown ();
1335     return;
1336   }
1337
1338
1339   if (GNUNET_OK !=
1340       GNUNET_CONFIGURATION_get_value_filename (cfg, "GNUNETD", "HOSTKEY",
1341                                                &keyfile))
1342   {
1343     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1344                 _
1345                 ("NSE service is lacking key configuration settings.  Exiting.\n"));
1346     GNUNET_SCHEDULER_shutdown ();
1347     return;
1348   }
1349   my_private_key = GNUNET_CRYPTO_rsa_key_create_from_file (keyfile);
1350   GNUNET_free (keyfile);
1351   if (my_private_key == NULL)
1352   {
1353     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1354                 _("NSE service could not access hostkey.  Exiting.\n"));
1355     GNUNET_SCHEDULER_shutdown ();
1356     return;
1357   }
1358   GNUNET_CRYPTO_rsa_key_get_public (my_private_key, &my_public_key);
1359   GNUNET_CRYPTO_hash (&my_public_key, sizeof (my_public_key),
1360                       &my_identity.hashPubKey);
1361   if (GNUNET_OK !=
1362       GNUNET_CONFIGURATION_get_value_filename (cfg, "NSE", "PROOFFILE", &proof))
1363   {
1364     GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
1365                 _
1366                 ("NSE service is lacking key configuration settings.  Exiting.\n"));
1367     if (my_private_key != NULL)
1368     {
1369       GNUNET_CRYPTO_rsa_key_free (my_private_key);
1370       my_private_key = NULL;
1371     }
1372     GNUNET_SCHEDULER_shutdown ();
1373     return;
1374   }
1375   if ((GNUNET_YES != GNUNET_DISK_file_test (proof)) ||
1376       (sizeof (my_proof) !=
1377        GNUNET_DISK_fn_read (proof, &my_proof, sizeof (my_proof))))
1378     my_proof = 0;
1379   GNUNET_free (proof);
1380   proof_task =
1381       GNUNET_SCHEDULER_add_with_priority (GNUNET_SCHEDULER_PRIORITY_IDLE,
1382                                           &find_proof, NULL);
1383
1384   peers = GNUNET_CONTAINER_multihashmap_create (128);
1385   GNUNET_SERVER_add_handlers (server, handlers);
1386   nc = GNUNET_SERVER_notification_context_create (server, 1);
1387   /* Connect to core service and register core handlers */
1388   coreAPI = GNUNET_CORE_connect (cfg,   /* Main configuration */
1389                                  1,
1390                                  NULL,  /* Closure passed to functions */
1391                                  &core_init,    /* Call core_init once connected */
1392                                  &handle_core_connect,  /* Handle connects */
1393                                  &handle_core_disconnect,       /* Handle disconnects */
1394                                  NULL,  /* Don't want notified about all incoming messages */
1395                                  GNUNET_NO,     /* For header only inbound notification */
1396                                  NULL,  /* Don't want notified about all outbound messages */
1397                                  GNUNET_NO,     /* For header only outbound notification */
1398                                  core_handlers);        /* Register these handlers */
1399   GNUNET_SCHEDULER_add_delayed (GNUNET_TIME_UNIT_FOREVER_REL, &shutdown_task,
1400                                 NULL);
1401 #if ENABLE_HISTOGRAM
1402   if (GNUNET_OK ==
1403       GNUNET_CONFIGURATION_get_value_filename (cfg, "NSE", "HISTOGRAM", &proof))
1404   {
1405     wh = GNUNET_BIO_write_open (proof);
1406     GNUNET_free (proof);
1407   }
1408 #endif
1409   if (coreAPI == NULL)
1410   {
1411     GNUNET_SCHEDULER_shutdown ();
1412     return;
1413   }
1414   stats = GNUNET_STATISTICS_create ("nse", cfg);
1415 }
1416
1417
1418 /**
1419  * The main function for the statistics service.
1420  *
1421  * @param argc number of arguments from the command line
1422  * @param argv command line arguments
1423  * @return 0 ok, 1 on error
1424  */
1425 int
1426 main (int argc, char *const *argv)
1427 {
1428   return (GNUNET_OK ==
1429           GNUNET_SERVICE_run (argc, argv, "nse", GNUNET_SERVICE_OPTION_NONE,
1430                               &run, NULL)) ? 0 : 1;
1431 }
1432
1433 /* end of gnunet-service-nse.c */