GNUnet 0.21.1
gnunet-service-dht.c
Go to the documentation of this file.
1/*
2 This file is part of GNUnet.
3 Copyright (C) 2009, 2010, 2011, 2016 GNUnet e.V.
4
5 GNUnet is free software: you can redistribute it and/or modify it
6 under the terms of the GNU Affero General Public License as published
7 by the Free Software Foundation, either version 3 of the License,
8 or (at your 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 Affero General Public License for more details.
14
15 You should have received a copy of the GNU Affero General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
17
18 SPDX-License-Identifier: AGPL3.0-or-later
19 */
20
27#include "platform.h"
28#include "gnunet_common.h"
29#include "gnunet_block_lib.h"
30#include "gnunet_util_lib.h"
33#include "gnunet-service-dht.h"
37#include "plugin_dhtu_ip.h"
38#include "plugin_dhtu_gnunet.h"
39
44#define HELLO_FREQUENCY GNUNET_TIME_UNIT_HOURS
45
46
51{
52
57
62
67
72
77
81 char *name;
82
86 char *libname;
87};
88
89
94{
98 struct MyAddress *next;
99
104
109
113 char *url;
114
119};
120
121
126
131
136
141
146
150static struct GDS_Underlay *u_head;
151
155static struct GDS_Underlay *u_tail;
156
160static struct MyAddress *a_head;
161
165static struct MyAddress *a_tail;
166
172
173
183static void
185 struct GNUNET_TIME_Absolute timestamp,
186 double logestimate,
187 double std_dev)
188{
189 struct GDS_Underlay *u = cls;
190 double sum = 0.0;
191
193 "# Network size estimates received",
194 1,
195 GNUNET_NO);
196 /* do not allow estimates < 0.5 */
197 u->network_size_estimate = pow (2.0,
198 GNUNET_MAX (0.5,
199 logestimate));
200 for (struct GDS_Underlay *p = u_head; NULL != p; p = p->next)
201 sum += p->network_size_estimate;
202 if (sum <= 2.0)
204 else
206}
207
208
214double
216{
218}
219
220
222
223
229static void
231{
232 struct GNUNET_MessageHeader *hello;
233
234 (void) cls;
235 /* TODO: randomize! */
238 NULL);
242 if (NULL == hello)
243 {
244 GNUNET_break (0);
245 return;
246 }
248 GNUNET_free (hello);
249}
250
251
261static void
262u_address_add (void *cls,
263 const char *address,
265 void **ctx)
266{
267 struct GDS_Underlay *u = cls;
268 struct MyAddress *a;
269 enum GNUNET_GenericReturnValue add_success;
270
272 "Underlay adds address %s for this peer\n",
273 address);
274 if (GNUNET_OK != (add_success = GNUNET_HELLO_builder_add_address (
276 address)))
277 {
279 "Adding address `%s' from underlay %s\n",
280 address,
281 GNUNET_NO == add_success ? "not done" : "failed");
282 return;
283 }
284 a = GNUNET_new (struct MyAddress);
285 a->source = source;
287 a->u = u;
289 a_tail,
290 a);
291 *ctx = a;
292
293 if (NULL != hello_task)
296 NULL);
297}
298
299
305static void
307{
308 struct MyAddress *a = ctx;
309
311 "Underlay deletes address %s for this peer\n",
312 a->url);
314 a->url);
316 a_tail,
317 a);
318 GNUNET_free (a->url);
319 GNUNET_free (a);
320 if (NULL != hello_task)
323 NULL);
324}
325
326
327void
329 const char *address)
330{
331 for (struct GDS_Underlay *u = u_head;
332 NULL != u;
333 u = u->next)
334 u->dhtu->try_connect (u->dhtu->cls,
335 pid,
336 address);
337}
338
339
340void
342 struct GNUNET_DHTU_Target *target,
343 const void *msg,
344 size_t msg_size,
346 void *finished_cb_cls)
347{
348 u->dhtu->send (u->dhtu->cls,
349 target,
350 msg,
351 msg_size,
353 finished_cb_cls);
354}
355
356
357void
360{
361 u->dhtu->drop (ph);
362}
363
364
368{
369 return u->dhtu->hold (u->dhtu->cls,
370 target);
371}
372
373
379static void
380shutdown_task (void *cls)
381{
382 struct GDS_Underlay *u;
383
384 while (NULL != (u = u_head))
385 {
386 GNUNET_PLUGIN_unload (u->libname,
387 u->dhtu);
389 u_tail,
390 u);
391 if (0 == strcmp (u->name, "gnunet"))
392 {
393 DHTU_gnunet_done (u->dhtu);
394 }
395 else if (0 == strcmp (u->name, "ip"))
396 {
397 DHTU_ip_done (u->dhtu);
398 }
399 else
400 {
401 GNUNET_assert (0);
402 }
403 GNUNET_free (u->name);
404 GNUNET_free (u);
405 }
409 if (NULL != GDS_block_context)
410 {
412 GDS_block_context = NULL;
413 }
415 if (NULL != GDS_stats)
416 {
418 GNUNET_YES);
419 GDS_stats = NULL;
420 }
421 if (NULL != GDS_my_hello)
422 {
424 GDS_my_hello = NULL;
425 }
426 if (NULL != hello_task)
427 {
429 hello_task = NULL;
430 }
431}
432
433
441static void
442load_underlay (void *cls,
443 const char *section)
444{
445 struct GDS_Underlay *u;
446
447 (void) cls;
448 if (0 != strncasecmp (section,
449 "dhtu-",
450 strlen ("dhtu-")))
451 return;
452 if (GNUNET_YES !=
454 section,
455 "ENABLED"))
456 return;
457 section += strlen ("dhtu-");
458 u = GNUNET_new (struct GDS_Underlay);
459 u->env.cls = u;
460 u->env.cfg = GDS_cfg;
461 u->env.address_add_cb = &u_address_add;
462 u->env.address_del_cb = &u_address_del;
463 u->env.network_size_cb = &update_network_size_estimate;
464 u->env.connect_cb = &GDS_u_connect;
465 u->env.disconnect_cb = &GDS_u_disconnect;
466 u->env.receive_cb = &GDS_u_receive;
467
470 if (0 == strcmp (section, "gnunet"))
471 {
472 u->dhtu = DHTU_gnunet_init (&u->env);
473 }
474 else if (0 == strcmp (section, "ip"))
475 {
476 u->dhtu = DHTU_ip_init (&u->env);
477 }
478 if (NULL == u->dhtu)
479 {
480 GNUNET_free (u);
481 return;
482 }
483 u->name = GNUNET_strdup (section);
485 u_tail,
486 u);
487}
488
489
497static void
498run (void *cls,
499 const struct GNUNET_CONFIGURATION_Handle *c,
501{
502 GDS_cfg = c;
504 {
505 char *keyfile;
506
507 if (GNUNET_OK !=
509 "PEER",
510 "PRIVATE_KEY",
511 &keyfile))
512 {
514 "PEER",
515 "PRIVATE_KEY");
517 return;
518 }
519 if (GNUNET_SYSERR ==
523 {
525 "Failed to setup peer's private key\n");
526 GNUNET_free (keyfile);
528 return;
529 }
530 GNUNET_free (keyfile);
531 }
536 sizeof(struct GNUNET_PeerIdentity),
540 GDS_cfg);
545 NULL);
546 if (GNUNET_OK !=
548 {
550 return;
551 }
554 NULL);
555 if (NULL == u_head)
556 {
558 "No DHT underlays configured!\n");
560 return;
561 }
562}
563
564
565/* Finally, define the main method */
567
568
569/* end of gnunet-service-dht.c */
struct GNUNET_MessageHeader * msg
Definition: 005.c:2
static mp_limb_t u[(((256)+GMP_NUMB_BITS - 1)/GMP_NUMB_BITS)]
static void finished_cb(enum GNUNET_GenericReturnValue rv)
static char * address
GNS address for this phone.
static struct GNUNET_FS_Handle * ctx
static GstElement * source
Appsrc instance into which we write data for the pipeline.
static struct GNUNET_SERVICE_Handle * service
Handle to our service instance.
static void load_underlay(void *cls, const char *section)
Function iterating over all configuration sections.
struct GNUNET_PeerIdentity GDS_my_identity
Identity of this peer.
double GDS_NSE_get(void)
Return the current NSE.
static struct MyAddress * a_head
Head of addresses of this peer.
static void u_address_add(void *cls, const char *address, struct GNUNET_DHTU_Source *source, void **ctx)
Function to call with new addresses of this peer.
static struct MyAddress * a_tail
Tail of addresses of this peer.
struct GNUNET_CRYPTO_EddsaPrivateKey GDS_my_private_key
Our private key.
static struct GDS_Underlay * u_head
Handles for the DHT underlays.
static void shutdown_task(void *cls)
Task run during shutdown.
static void u_address_del(void *ctx)
Function to call with expired addresses of this peer.
struct GNUNET_DHTU_PreferenceHandle * GDS_u_hold(struct GDS_Underlay *u, struct GNUNET_DHTU_Target *target)
Create a hold on target at underlay u.
void GDS_u_send(struct GDS_Underlay *u, struct GNUNET_DHTU_Target *target, const void *msg, size_t msg_size, GNUNET_SCHEDULER_TaskCallback finished_cb, void *finished_cb_cls)
Send message to some other participant over the network.
static struct GDS_Underlay * u_tail
Handles for the DHT underlays.
#define HELLO_FREQUENCY
How often do we broadcast our HELLO to neighbours if nothing special happens?
static struct GNUNET_SCHEDULER_Task * hello_task
Task broadcasting our HELLO.
static void run(void *cls, const struct GNUNET_CONFIGURATION_Handle *c, struct GNUNET_SERVICE_Handle *service)
Process dht requests.
struct GNUNET_HELLO_Builder * GDS_my_hello
Our HELLO.
void GDS_u_drop(struct GDS_Underlay *u, struct GNUNET_DHTU_PreferenceHandle *ph)
Drop a hold ph from underlay u.
void GDS_u_try_connect(const struct GNUNET_PeerIdentity *pid, const char *address)
Ask all underlays to connect to peer pid at address.
struct GNUNET_HashCode GDS_my_identity_hash
Hash of the identity of this peer.
static void broadcast_hello(void *cls)
Task run periodically to broadcast our HELLO.
static double log_of_network_size_estimate
log of the current network size estimate, used as the point where we switch between random and determ...
static void update_network_size_estimate(void *cls, struct GNUNET_TIME_Absolute timestamp, double logestimate, double std_dev)
Callback that is called when network size estimate is updated.
GNUnet DHT globals.
struct GNUNET_STATISTICS_Handle * GDS_stats
Handle for the statistics service.
struct GNUNET_BLOCK_Context * GDS_block_context
Our handle to the BLOCK library.
struct GNUNET_SERVICE_Handle * GDS_service
Handle for the service.
const struct GNUNET_CONFIGURATION_Handle * GDS_cfg
Configuration we use.
GNUnet DHT service's client management code.
#define GDS_DHT_SERVICE_INIT(name, run)
Define "main" method using service macro.
static void GDS_CLIENTS_init(void)
Initialize client subsystem.
static void GDS_CLIENTS_stop(void)
Shutdown client subsystem.
void GDS_DATACACHE_init()
Initialize datacache subsystem.
void GDS_DATACACHE_done()
Shutdown datacache subsystem.
GNUnet DHT service's datacache integration.
void GDS_NEIGHBOURS_done()
Shutdown neighbours subsystem.
void GDS_u_disconnect(void *ctx)
Function to call when we disconnected from a peer and can henceforth cannot transmit to that peer any...
void GDS_NEIGHBOURS_broadcast(const struct GNUNET_MessageHeader *msg)
Send msg to all peers in our buckets.
void GDS_u_connect(void *cls, struct GNUNET_DHTU_Target *target, const struct GNUNET_PeerIdentity *pid, void **ctx)
Function to call when we connect to a peer and can henceforth transmit to that peer.
enum GNUNET_GenericReturnValue GDS_NEIGHBOURS_init()
Initialize neighbours subsystem.
void GDS_u_receive(void *cls, void **tctx, void **sctx, const void *message, size_t message_size)
Function to call when we receive a message.
GNUnet DHT routing code.
void GDS_ROUTING_done()
Shutdown routing subsystem.
void GDS_ROUTING_init()
Initialize routing subsystem.
GNUnet DHT tracking of requests for routing replies.
static struct GNUNET_PeerIdentity pid
Identity of the peer we transmit to / connect to.
static struct GNUNET_OS_Process * p
Helper process we started.
Definition: gnunet-uri.c:38
Library for data block manipulation.
commonly used definitions; globals in this file are exempt from the rule that the module name ("commo...
Helper library for handling HELLO URIs.
API to create, modify and access statistics.
void GNUNET_BLOCK_context_destroy(struct GNUNET_BLOCK_Context *ctx)
Destroy the block context.
Definition: block.c:156
struct GNUNET_BLOCK_Context * GNUNET_BLOCK_context_create(const struct GNUNET_CONFIGURATION_Handle *cfg)
Create a block context.
Definition: block.c:140
enum GNUNET_GenericReturnValue GNUNET_CONFIGURATION_get_value_filename(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *section, const char *option, char **value)
Get a configuration value that should be the name of a file or directory.
void GNUNET_CONFIGURATION_iterate_sections(const struct GNUNET_CONFIGURATION_Handle *cfg, GNUNET_CONFIGURATION_SectionIterator iter, void *iter_cls)
Iterate over all sections in the configuration.
enum GNUNET_GenericReturnValue GNUNET_CONFIGURATION_get_value_yesno(const struct GNUNET_CONFIGURATION_Handle *cfg, const char *section, const char *option)
Get a configuration value that should be in a set of "YES" or "NO".
enum GNUNET_GenericReturnValue GNUNET_CRYPTO_eddsa_key_from_file(const char *filename, int do_create, struct GNUNET_CRYPTO_EddsaPrivateKey *pkey)
Create a new private key by reading it from a file.
void GNUNET_CRYPTO_eddsa_key_get_public(const struct GNUNET_CRYPTO_EddsaPrivateKey *priv, struct GNUNET_CRYPTO_EddsaPublicKey *pub)
Extract the public key for the given private key.
Definition: crypto_ecc.c:198
#define GNUNET_CONTAINER_DLL_remove(head, tail, element)
Remove an element from a DLL.
#define GNUNET_CONTAINER_DLL_insert(head, tail, element)
Insert an element at the head of a DLL.
void GNUNET_CRYPTO_hash(const void *block, size_t size, struct GNUNET_HashCode *ret)
Compute hash of a given block.
Definition: crypto_hash.c:41
void GNUNET_HELLO_builder_free(struct GNUNET_HELLO_Builder *builder)
Release resources of a builder.
Definition: hello-uri.c:373
struct GNUNET_HELLO_Builder * GNUNET_HELLO_builder_new(const struct GNUNET_PeerIdentity *pid)
Allocate builder.
Definition: hello-uri.c:355
enum GNUNET_GenericReturnValue GNUNET_HELLO_builder_del_address(struct GNUNET_HELLO_Builder *builder, const char *address)
Remove individual address from the builder.
Definition: hello-uri.c:885
enum GNUNET_GenericReturnValue GNUNET_HELLO_builder_add_address(struct GNUNET_HELLO_Builder *builder, const char *address)
Add individual address to the builder.
Definition: hello-uri.c:835
struct GNUNET_MessageHeader * GNUNET_HELLO_builder_to_dht_hello_msg(const struct GNUNET_HELLO_Builder *builder, const struct GNUNET_CRYPTO_EddsaPrivateKey *priv, struct GNUNET_TIME_Relative expiration_time)
Generate DHT HELLO message (without peer ID) from a builder.
Definition: hello-uri.c:666
#define GNUNET_log(kind,...)
#define GNUNET_MAX(a, b)
GNUNET_GenericReturnValue
Named constants for return values.
@ GNUNET_OK
@ GNUNET_YES
@ GNUNET_NO
@ GNUNET_SYSERR
#define GNUNET_assert(cond)
Use this for fatal errors that cannot be handled.
#define GNUNET_break(cond)
Use this for internal assertion violations that are not fatal (can be handled) but should not occur.
void GNUNET_log_config_missing(enum GNUNET_ErrorType kind, const char *section, const char *option)
Log error message about missing configuration option.
@ GNUNET_ERROR_TYPE_WARNING
@ GNUNET_ERROR_TYPE_ERROR
@ GNUNET_ERROR_TYPE_INFO
#define GNUNET_strdup(a)
Wrapper around GNUNET_xstrdup_.
#define GNUNET_new(type)
Allocate a struct or union of the given type.
#define GNUNET_free(ptr)
Wrapper around free.
void * GNUNET_PLUGIN_unload(const char *library_name, void *arg)
Unload plugin (runs the "done" callback and returns whatever "done" returned).
Definition: plugin.c:242
void GNUNET_SCHEDULER_shutdown(void)
Request the shutdown of a scheduler.
Definition: scheduler.c:567
struct GNUNET_SCHEDULER_Task * GNUNET_SCHEDULER_add_shutdown(GNUNET_SCHEDULER_TaskCallback task, void *task_cls)
Schedule a new task to be run on shutdown, that is when a CTRL-C signal is received,...
Definition: scheduler.c:1340
void * GNUNET_SCHEDULER_cancel(struct GNUNET_SCHEDULER_Task *task)
Cancel the task with the specified identifier.
Definition: scheduler.c:981
struct GNUNET_SCHEDULER_Task * GNUNET_SCHEDULER_add_now(GNUNET_SCHEDULER_TaskCallback task, void *task_cls)
Schedule a new task to be run as soon as possible.
Definition: scheduler.c:1305
void(* GNUNET_SCHEDULER_TaskCallback)(void *cls)
Signature of the main function of a task.
struct GNUNET_SCHEDULER_Task * GNUNET_SCHEDULER_add_delayed(struct GNUNET_TIME_Relative delay, GNUNET_SCHEDULER_TaskCallback task, void *task_cls)
Schedule a new task to be run with a specified delay.
Definition: scheduler.c:1278
struct GNUNET_STATISTICS_Handle * GNUNET_STATISTICS_create(const char *subsystem, const struct GNUNET_CONFIGURATION_Handle *cfg)
Get handle for the statistics service.
void GNUNET_STATISTICS_update(struct GNUNET_STATISTICS_Handle *handle, const char *name, int64_t delta, int make_persistent)
Set statistic value for the peer.
void GNUNET_STATISTICS_destroy(struct GNUNET_STATISTICS_Handle *h, int sync_first)
Destroy a handle (free all state associated with it).
#define GNUNET_TIME_UNIT_ZERO
Relative time zero.
void * DHTU_gnunet_done(struct GNUNET_DHTU_PluginFunctions *api)
Exit point from the plugin.
struct GNUNET_DHTU_PluginFunctions * DHTU_gnunet_init(struct GNUNET_DHTU_PluginEnvironment *env)
Entry point for the plugin.
struct GNUNET_DHTU_PluginFunctions * DHTU_ip_init(struct GNUNET_DHTU_PluginEnvironment *env)
Entry point for the plugin.
void * DHTU_ip_done(struct GNUNET_DHTU_PluginFunctions *api)
Exit point from the plugin.
Information we keep per underlay.
struct GNUNET_DHTU_PluginEnvironment env
Environment for this underlay.
struct GDS_Underlay * prev
Kept in a DLL.
double network_size_estimate
current network size estimate for this underlay.
char * libname
Name of the library providing the underlay.
char * name
Name of the underlay (i.e.
struct GDS_Underlay * next
Kept in a DLL.
struct GNUNET_DHTU_PluginFunctions * dhtu
Underlay API handle.
Private ECC key encoded for transmission.
The datastore service will pass a pointer to a struct of this type as the first and only argument to ...
struct returned by the initialization function of the plugin
Opaque handle expressing a preference of the DHT to keep a particular target connected.
struct GNUNET_DHTU_Target * target
Target a preference was expressed for.
Opaque handle that the underlay offers for our address to be used when sending messages to another pe...
Opaque handle that the underlay offers for the target peer when sending messages to another peer.
Context for building (or parsing) HELLO URIs.
Definition: hello-uri.c:205
A 512-bit hashcode.
Header for all communications.
The identity of the host (wraps the signing key of the peer).
struct GNUNET_CRYPTO_EddsaPublicKey public_key
Entry in list of pending tasks.
Definition: scheduler.c:136
Handle to a service.
Definition: service.c:118
Time for absolute times used by GNUnet, in microseconds.
An address of this peer.
char * url
Textual representation of the address.
struct GDS_Underlay * u
Underlay of this address.
struct MyAddress * prev
Kept in a DLL.
struct MyAddress * next
Kept in a DLL.
struct GNUNET_DHTU_Source * source
Underlay handle for the address.