GNUnet 0.28.1-dev.6-3-gbc381df64
 
Loading...
Searching...
No Matches
gnunet-dht-get.c File Reference

search for data in DHT More...

#include "platform.h"
#include "gnunet_dht_service.h"
Include dependency graph for gnunet-dht-get.c:

Go to the source code of this file.

Macros

#define LOG(kind, ...)   GNUNET_log_from (kind, "dht-clients", __VA_ARGS__)
 

Functions

static void cleanup_task (void *cls)
 Task run to clean up on shutdown.
 
static void timeout_task (void *cls)
 Task run on timeout.
 
static void get_result_iterator (void *cls, struct GNUNET_TIME_Absolute exp, const struct GNUNET_HashCode *key, const struct GNUNET_PeerIdentity *trunc_peer, const struct GNUNET_DHT_PathElement *get_path, unsigned int get_path_length, const struct GNUNET_DHT_PathElement *put_path, unsigned int put_path_length, enum GNUNET_BLOCK_Type type, size_t size, const void *data)
 Iterator called on each result obtained for a DHT operation that expects a reply.
 
static void run (void *cls, char *const *args, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *c)
 Main function that will be run by the scheduler.
 
int main (int argc, char *const *argv)
 Entry point for gnunet-dht-get.
 

Variables

static unsigned int query_type
 The type of the query.
 
static unsigned int replication = 5
 Desired replication level.
 
static char * query_key
 The key for the query.
 
static int raw_key
 Is query_key the key itself rather than its preimage?
 
static struct GNUNET_TIME_Relative timeout_request = { 60 * 1000 * 1000 }
 User supplied timeout value.
 
static unsigned int verbose
 Be verbose.
 
static int demultixplex_everywhere
 Use DHT demultixplex_everywhere.
 
static int record_route
 Use GNUNET_DHT_RO_RECORD_ROUTE.
 
static struct GNUNET_DHT_Handledht_handle
 Handle to the DHT.
 
static const struct GNUNET_CONFIGURATION_Handlecfg
 Global handle of the configuration.
 
static struct GNUNET_DHT_GetHandleget_handle
 Handle for the get request.
 
static unsigned int result_count
 Count of results found.
 
static int ret
 Global status value.
 
static struct GNUNET_SCHEDULER_Tasktt
 Task scheduled to handle timeout.
 

Detailed Description

search for data in DHT

Author
Christian Grothoff
Nathan Evans

Definition in file gnunet-dht-get.c.

Macro Definition Documentation

◆ LOG

#define LOG (   kind,
  ... 
)    GNUNET_log_from (kind, "dht-clients", __VA_ARGS__)

Definition at line 29 of file gnunet-dht-get.c.

Function Documentation

◆ cleanup_task()

static void cleanup_task ( void *  cls)
static

Task run to clean up on shutdown.

Parameters
clsunused

Definition at line 109 of file gnunet-dht-get.c.

110{
111 if (NULL != get_handle)
112 {
114 get_handle = NULL;
115 }
116 if (NULL != dht_handle)
117 {
119 dht_handle = NULL;
120 }
121 if (NULL != tt)
122 {
124 tt = NULL;
125 }
126}
static struct GNUNET_DHT_Handle * dht_handle
Handle to the DHT.
static struct GNUNET_SCHEDULER_Task * tt
Task scheduled to handle timeout.
static struct GNUNET_DHT_GetHandle * get_handle
Handle for the get request.
void GNUNET_DHT_get_stop(struct GNUNET_DHT_GetHandle *get_handle)
Stop async DHT-get.
Definition dht_api.c:1238
void GNUNET_DHT_disconnect(struct GNUNET_DHT_Handle *handle)
Shutdown connection with the DHT service.
Definition dht_api.c:1058
void * GNUNET_SCHEDULER_cancel(struct GNUNET_SCHEDULER_Task *task)
Cancel the task with the specified identifier.
Definition scheduler.c:986

References dht_handle, get_handle, GNUNET_DHT_disconnect(), GNUNET_DHT_get_stop(), GNUNET_SCHEDULER_cancel(), and tt.

Here is the call graph for this function:

◆ timeout_task()

static void timeout_task ( void *  cls)
static

Task run on timeout.

Triggers shutdown.

Parameters
clsunused

Definition at line 135 of file gnunet-dht-get.c.

136{
137 tt = NULL;
139}
void GNUNET_SCHEDULER_shutdown(void)
Request the shutdown of a scheduler.
Definition scheduler.c:572

References GNUNET_SCHEDULER_shutdown(), and tt.

Here is the call graph for this function:

◆ get_result_iterator()

static void get_result_iterator ( void *  cls,
struct GNUNET_TIME_Absolute  exp,
const struct GNUNET_HashCode key,
const struct GNUNET_PeerIdentity trunc_peer,
const struct GNUNET_DHT_PathElement get_path,
unsigned int  get_path_length,
const struct GNUNET_DHT_PathElement put_path,
unsigned int  put_path_length,
enum GNUNET_BLOCK_Type  type,
size_t  size,
const void *  data 
)
static

Iterator called on each result obtained for a DHT operation that expects a reply.

Parameters
clsclosure
expwhen will this value expire
keykey of the result
trunc_peerpeer at which the path was truncated, or NULL if not
get_pathpeers on reply path (or NULL if not recorded)
get_path_lengthnumber of entries in get_path
put_pathpeers on the PUT path (or NULL if not recorded)
put_path_lengthnumber of entries in get_path
typetype of the result
sizenumber of bytes in data
datapointer to the result data

Definition at line 159 of file gnunet-dht-get.c.

170{
171 fprintf (stdout,
173 ? _ ("Result %d, type %d:\n%.*s\n")
174 : _ ("Result %d, type %d:\n"),
176 type,
177 (int) size,
178 (char *) data);
179 if (record_route && verbose)
180 {
181 {
183
186 &my_identity));
187 GNUNET_break (0 ==
189 size,
190 exp,
191 trunc_peer,
192 put_path,
193 put_path_length,
194 get_path,
195 get_path_length,
196 &my_identity));
197 }
198 fprintf (stdout,
199 " GET path: ");
200 for (unsigned int i = 0; i < get_path_length; i++)
201 fprintf (stdout,
202 "%s%s",
203 (0 == i) ? "" : "-",
204 GNUNET_i2s (&get_path[i].pred));
205 fprintf (stdout,
206 "\n PUT path: ");
207 for (unsigned int i = 0; i < put_path_length; i++)
208 fprintf (stdout,
209 "%s%s",
210 (0 == i) ? "" : "-",
211 GNUNET_i2s (&put_path[i].pred));
212 if (NULL != trunc_peer)
213 fprintf (stdout,
214 "!%s",
215 GNUNET_i2s (trunc_peer));
216 fprintf (stdout,
217 "\n");
218 }
219 result_count++;
220}
static unsigned int verbose
Be verbose.
static unsigned int result_count
Count of results found.
static const struct GNUNET_CONFIGURATION_Handle * cfg
Global handle of the configuration.
static int record_route
Use GNUNET_DHT_RO_RECORD_ROUTE.
static char * data
The data to insert into the dht.
static uint32_t type
Type string converted to DNS type value.
static struct GNUNET_PeerIdentity my_identity
Identity of this peer.
@ GNUNET_BLOCK_TYPE_TEST
Block for testing.
enum GNUNET_GenericReturnValue GNUNET_CRYPTO_get_peer_identity(const struct GNUNET_CONFIGURATION_Handle *cfg, struct GNUNET_PeerIdentity *dst)
Retrieve the identity of the host's peer.
unsigned int GNUNET_DHT_verify_path(const void *data, size_t data_size, struct GNUNET_TIME_Absolute exp_time, const struct GNUNET_PeerIdentity *trunc_peer, const struct GNUNET_DHT_PathElement *put_path, unsigned int put_path_len, const struct GNUNET_DHT_PathElement *get_path, unsigned int get_path_len, const struct GNUNET_PeerIdentity *me)
Verify signatures on a path consisting of put_path and get_path in reverse order (starting at the las...
Definition dht_api.c:1354
@ GNUNET_OK
const char * GNUNET_i2s(const struct GNUNET_PeerIdentity *pid)
Convert a peer identity to a string (for printing debug messages).
#define GNUNET_break(cond)
Use this for internal assertion violations that are not fatal (can be handled) but should not occur.
static unsigned int size
Size of the "table".
Definition peer.c:68
#define _(String)
GNU gettext support macro.
Definition platform.h:179
The identity of the host (wraps the signing key of the peer).

References _, cfg, data, GNUNET_BLOCK_TYPE_TEST, GNUNET_break, GNUNET_CRYPTO_get_peer_identity(), GNUNET_DHT_verify_path(), GNUNET_i2s(), GNUNET_OK, my_identity, record_route, result_count, size, type, and verbose.

Referenced by run().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ run()

static void run ( void *  cls,
char *const *  args,
const char *  cfgfile,
const struct GNUNET_CONFIGURATION_Handle c 
)
static

Main function that will be run by the scheduler.

Parameters
clsclosure
argsremaining command-line arguments
cfgfilename of the configuration file used (for saving, can be NULL!)
cconfiguration

Definition at line 232 of file gnunet-dht-get.c.

236{
237 struct GNUNET_HashCode key;
239
240 cfg = c;
241 if (NULL == query_key)
242 {
243 fprintf (stderr,
244 "%s",
245 _ ("Must provide key for DHT GET!\n"));
246 ret = 1;
247 return;
248 }
249 /* Resolve the key before connecting, so that a bad key does not leak
250 the DHT handle. */
251 if (raw_key)
252 {
253 if (GNUNET_OK !=
255 &key))
256 {
257 fprintf (stderr,
258 _ ("`%s' is not a valid key\n"),
259 query_key);
260 ret = 1;
261 return;
262 }
263 }
264 else
265 {
267 strlen (query_key),
268 &key);
269 }
270 if (NULL == (dht_handle = GNUNET_DHT_connect (cfg, 1)))
271 {
272 fprintf (stderr,
273 "%s",
274 _ ("Failed to connect to DHT service!\n"));
275 ret = 1;
276 return;
277 }
278 if (query_type == GNUNET_BLOCK_TYPE_ANY) /* Type of data not set */
280 if (verbose)
281 fprintf (stderr,
282 "%s `%s' \n",
283 _ ("Issuing DHT GET with key"),
290 if (record_route)
294 &key,
296 ro,
297 NULL,
298 0,
300 NULL);
301}
static struct GNUNET_SCHEDULER_Task * timeout_task
Task to be run on timeout.
Definition gnunet-arm.c:123
static int raw_key
Is query_key the key itself rather than its preimage?
static unsigned int query_type
The type of the query.
static struct GNUNET_TIME_Relative timeout_request
User supplied timeout value.
static void get_result_iterator(void *cls, struct GNUNET_TIME_Absolute exp, const struct GNUNET_HashCode *key, const struct GNUNET_PeerIdentity *trunc_peer, const struct GNUNET_DHT_PathElement *get_path, unsigned int get_path_length, const struct GNUNET_DHT_PathElement *put_path, unsigned int put_path_length, enum GNUNET_BLOCK_Type type, size_t size, const void *data)
Iterator called on each result obtained for a DHT operation that expects a reply.
static int ret
Global status value.
static char * query_key
The key for the query.
static unsigned int replication
Desired replication level.
static int demultixplex_everywhere
Use DHT demultixplex_everywhere.
struct GNUNET_HashCode key
The key used in the DHT.
static struct GNUNET_SCHEDULER_Task * cleanup_task
Cleanup task.
@ GNUNET_BLOCK_TYPE_ANY
Identifier for any block.
GNUNET_DHT_RouteOption
Options for routing.
struct GNUNET_DHT_Handle * GNUNET_DHT_connect(const struct GNUNET_CONFIGURATION_Handle *cfg, unsigned int ht_len)
Initialize the connection with the DHT service.
Definition dht_api.c:1036
struct GNUNET_DHT_GetHandle * GNUNET_DHT_get_start(struct GNUNET_DHT_Handle *handle, enum GNUNET_BLOCK_Type type, const struct GNUNET_HashCode *key, uint32_t desired_replication_level, enum GNUNET_DHT_RouteOption options, const void *xquery, size_t xquery_size, GNUNET_DHT_GetIterator iter, void *iter_cls)
Perform an asynchronous GET operation on the DHT identified.
Definition dht_api.c:1165
@ GNUNET_DHT_RO_NONE
Default.
@ GNUNET_DHT_RO_RECORD_ROUTE
We should keep track of the route that the message took in the P2P network.
@ GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE
Each peer along the way should process the request (otherwise only peers locally closest to the key w...
void GNUNET_CRYPTO_hash(const void *block, size_t size, struct GNUNET_HashCode *ret)
Compute hash of a given block.
Definition crypto_hash.c:40
#define GNUNET_CRYPTO_hash_from_string(enc, result)
Convert ASCII encoding back to struct GNUNET_HashCode
const char * GNUNET_h2s_full(const struct GNUNET_HashCode *hc)
Convert a hash value to a string (for printing debug messages).
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:1345
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:1283
A 512-bit hashcode.

References _, cfg, cleanup_task, demultixplex_everywhere, dht_handle, get_handle, get_result_iterator(), GNUNET_BLOCK_TYPE_ANY, GNUNET_BLOCK_TYPE_TEST, GNUNET_CRYPTO_hash(), GNUNET_CRYPTO_hash_from_string, GNUNET_DHT_connect(), GNUNET_DHT_get_start(), GNUNET_DHT_RO_DEMULTIPLEX_EVERYWHERE, GNUNET_DHT_RO_NONE, GNUNET_DHT_RO_RECORD_ROUTE, GNUNET_h2s_full(), GNUNET_OK, GNUNET_SCHEDULER_add_delayed(), GNUNET_SCHEDULER_add_shutdown(), key, query_key, query_type, raw_key, record_route, replication, ret, timeout_request, timeout_task, tt, and verbose.

Referenced by main().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ main()

int main ( int  argc,
char *const *  argv 
)

Entry point for gnunet-dht-get.

Parameters
argcnumber of arguments from the command line
argvcommand line arguments
Returns
0 ok, 1 on error

Definition at line 312 of file gnunet-dht-get.c.

313{
316 'k',
317 "key",
318 "KEY",
320 "the string to hash into the query key (see -K to give the key itself)")
321 ,
322 &query_key),
324 'K',
325 "raw-key",
327 "interpret -k as the query key itself, in the base32 form GNUnet prints it, instead of hashing it"),
328 &raw_key),
330 'r',
331 "replication",
332 "LEVEL",
333 gettext_noop ("how many parallel requests (replicas) to create"),
334 &replication),
336 'R',
337 "record",
338 gettext_noop ("use DHT's record route option"),
339 &record_route),
341 't',
342 "type",
343 "TYPE",
344 gettext_noop ("the type of data to look for"),
345 &query_type),
347 'T',
348 "timeout",
349 "TIMEOUT",
350 gettext_noop ("how long to execute this query before giving up?"),
353 'x',
354 "demultiplex",
356 "use DHT's demultiplex everywhere option"),
360 };
361
362
363 ret = (GNUNET_OK ==
366 argc,
367 argv,
368 "gnunet-dht-get",
370 "Issue a GET request to the GNUnet DHT, prints results."),
371 options,
372 &run,
373 NULL))
374 ? ret
375 : 1;
376 return ret;
377}
struct GNUNET_GETOPT_CommandLineOption options[]
Definition 002.c:5
#define gettext_noop(String)
Definition gettext.h:74
static void run(void *cls, char *const *args, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *c)
Main function that will be run by the scheduler.
struct GNUNET_GETOPT_CommandLineOption GNUNET_GETOPT_option_uint(char shortName, const char *name, const char *argumentHelp, const char *description, unsigned int *val)
Allow user to specify an unsigned int.
struct GNUNET_GETOPT_CommandLineOption GNUNET_GETOPT_option_relative_time(char shortName, const char *name, const char *argumentHelp, const char *description, struct GNUNET_TIME_Relative *val)
Allow user to specify a struct GNUNET_TIME_Relative (using human-readable "fancy" time).
#define GNUNET_GETOPT_OPTION_END
Marker for the end of the list of options.
struct GNUNET_GETOPT_CommandLineOption GNUNET_GETOPT_option_verbose(unsigned int *level)
Define the '-V' verbosity option.
struct GNUNET_GETOPT_CommandLineOption GNUNET_GETOPT_option_flag(char shortName, const char *name, const char *description, int *val)
Allow user to specify a flag (which internally means setting an integer to 1/GNUNET_YES/GNUNET_OK.
struct GNUNET_GETOPT_CommandLineOption GNUNET_GETOPT_option_string(char shortName, const char *name, const char *argumentHelp, const char *description, char **str)
Allow user to specify a string.
const struct GNUNET_OS_ProjectData * GNUNET_OS_project_data_gnunet(void)
Return default project data used by 'libgnunetutil' for GNUnet.
enum GNUNET_GenericReturnValue GNUNET_PROGRAM_run(const struct GNUNET_OS_ProjectData *pd, int argc, char *const *argv, const char *binaryName, const char *binaryHelp, const struct GNUNET_GETOPT_CommandLineOption *options, GNUNET_PROGRAM_Main task, void *task_cls)
Run a standard GNUnet command startup sequence (initialize loggers and configuration,...
Definition program.c:406
Definition of a command line option.

References demultixplex_everywhere, gettext_noop, GNUNET_GETOPT_OPTION_END, GNUNET_GETOPT_option_flag(), GNUNET_GETOPT_option_relative_time(), GNUNET_GETOPT_option_string(), GNUNET_GETOPT_option_uint(), GNUNET_GETOPT_option_verbose(), GNUNET_OK, GNUNET_OS_project_data_gnunet(), GNUNET_PROGRAM_run(), options, query_key, query_type, raw_key, record_route, replication, ret, run(), timeout_request, and verbose.

Here is the call graph for this function:

Variable Documentation

◆ query_type

unsigned int query_type
static

The type of the query.

Definition at line 33 of file gnunet-dht-get.c.

Referenced by main(), and run().

◆ replication

◆ query_key

char* query_key
static

The key for the query.

Definition at line 43 of file gnunet-dht-get.c.

Referenced by main(), and run().

◆ raw_key

int raw_key
static

Is query_key the key itself rather than its preimage?

Definition at line 48 of file gnunet-dht-get.c.

Referenced by main(), and run().

◆ timeout_request

struct GNUNET_TIME_Relative timeout_request = { 60 * 1000 * 1000 }
static

User supplied timeout value.

GNUNET_TIME_Relative counts microseconds, so this is 60 seconds; the plain 60000 it used to be was 60 milliseconds and gave up before any answer could arrive.

Definition at line 55 of file gnunet-dht-get.c.

55{ 60 * 1000 * 1000 };

Referenced by dns_pre_request_handler(), main(), and run().

◆ verbose

unsigned int verbose
static

Be verbose.

Definition at line 60 of file gnunet-dht-get.c.

Referenced by get_result_iterator(), main(), run(), and serialize_diagnostics().

◆ demultixplex_everywhere

int demultixplex_everywhere
static

Use DHT demultixplex_everywhere.

Definition at line 65 of file gnunet-dht-get.c.

Referenced by main(), and run().

◆ record_route

int record_route
static

Use GNUNET_DHT_RO_RECORD_ROUTE.

Definition at line 70 of file gnunet-dht-get.c.

Referenced by get_result_iterator(), main(), and run().

◆ dht_handle

struct GNUNET_DHT_Handle* dht_handle
static

Handle to the DHT.

Definition at line 75 of file gnunet-dht-get.c.

Referenced by cleanup_task(), GNUNET_DHT_hello_get(), GNUNET_DHT_hello_get_cancel(), GNUNET_DHT_hello_offer(), and run().

◆ cfg

const struct GNUNET_CONFIGURATION_Handle* cfg
static

Global handle of the configuration.

Definition at line 80 of file gnunet-dht-get.c.

Referenced by get_result_iterator(), and run().

◆ get_handle

struct GNUNET_DHT_GetHandle* get_handle
static

◆ result_count

unsigned int result_count
static

Count of results found.

Definition at line 90 of file gnunet-dht-get.c.

Referenced by get_result_iterator().

◆ ret

int ret
static

Global status value.

Definition at line 95 of file gnunet-dht-get.c.

Referenced by main(), and run().

◆ tt

struct GNUNET_SCHEDULER_Task* tt
static

Task scheduled to handle timeout.

Definition at line 100 of file gnunet-dht-get.c.

Referenced by cleanup_task(), GNUNET_STRINGS_absolute_time_to_string(), GNUNET_TIME_absolute2s(), GNUNET_TIME_timestamp2s(), run(), and timeout_task().