GNUnet  0.19.4
gnunet-dht-put.c
Go to the documentation of this file.
1 /*
2  This file is part of GNUnet.
3  Copyright (C) 2001, 2002, 2004, 2005, 2006, 2007, 2009, 2017 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  */
26 #include "platform.h"
27 #include "gnunet_dht_service.h"
28 
32 static unsigned int query_type;
33 
37 struct GNUNET_HashCode key;
38 
42 static char *query_key;
43 
47 static struct GNUNET_TIME_Relative expiration;
48 
52 static unsigned int replication = 5;
53 
57 static unsigned int verbose;
58 
63 
67 static int record_route;
68 
73 
74 
78 static const struct GNUNET_CONFIGURATION_Handle *cfg;
79 
83 static int ret;
84 
88 static char *data;
89 
90 
91 static void
92 shutdown_task (void *cls)
93 {
94  if (NULL != dht_handle)
95  {
97  dht_handle = NULL;
98  }
99 }
100 
101 
107 static void
108 message_sent_cont (void *cls)
109 {
111 }
112 
113 
122 static void
123 run (void *cls,
124  char *const *args,
125  const char *cfgfile,
126  const struct GNUNET_CONFIGURATION_Handle *c)
127 {
128  enum GNUNET_DHT_RouteOption ro;
129 
130  cfg = c;
131  if ((NULL == query_key) || (NULL == data))
132  {
133  fprintf (stderr, "%s", _ ("Must provide KEY and DATA for DHT put!\n"));
134  ret = 1;
135  return;
136  }
137 
138  if (NULL == (dht_handle = GNUNET_DHT_connect (cfg, 1)))
139  {
140  fprintf (stderr, _ ("Could not connect to DHT service!\n"));
141  ret = 1;
142  return;
143  }
144  if (GNUNET_BLOCK_TYPE_ANY == query_type) /* Type of data not set */
146 
148 
149  if (verbose)
150  fprintf (stderr,
151  _ ("Issuing put request for `%s' with data `%s'!\n"),
152  query_key,
153  data);
154  ro = GNUNET_DHT_RO_NONE;
157  if (record_route)
160  &key,
161  replication,
162  ro,
163  query_type,
164  strlen (data),
165  data,
168  NULL);
169 }
170 
171 
179 int
180 main (int argc, char *const *argv)
181 {
182  char *u8_argv = NULL;
185  'd',
186  "data",
187  "DATA",
188  gettext_noop (
189  "the data to insert under the key"),
190  &data),
192  'e',
193  "expiration",
194  "EXPIRATION",
195  gettext_noop ("how long to store this entry in the dht (in seconds)"),
196  &expiration),
198  'k',
199  "key",
200  "KEY",
201  gettext_noop ("the query key"),
202  &query_key),
204  'x',
205  "demultiplex",
206  gettext_noop (
207  "use DHT's demultiplex everywhere option"),
210  'r',
211  "replication",
212  "LEVEL",
213  gettext_noop ("how many replicas to create"),
214  &replication),
216  'R',
217  "record",
218  gettext_noop ("use DHT's record route option"),
219  &record_route),
221  't',
222  "type",
223  "TYPE",
224  gettext_noop ("the type to insert data as"),
225  &query_type),
228  };
229 
230 
231  if (GNUNET_OK !=
232  GNUNET_STRINGS_get_utf8_args (argc, argv,
233  &argc, &argv))
234  return 2;
236  return (GNUNET_OK ==
238  argc,
239  argv,
240  "gnunet-dht-put",
241  gettext_noop (
242  "Issue a PUT request to the GNUnet DHT insert DATA under KEY."),
243  options,
244  &run,
245  NULL))
246  ? ret
247  : 1;
248  // This is ugly, but meh. The GNUNET_STRINGS_get_utf8_args allows us to do this.
249  u8_argv = (char*) argv;
250  GNUNET_free (u8_argv);
251 }
252 
253 
254 /* end of gnunet-dht-put.c */
struct GNUNET_GETOPT_CommandLineOption GNUNET_GETOPT_OPTION_END
Definition: 002.c:13
struct GNUNET_GETOPT_CommandLineOption options[]
Definition: 002.c:5
@ GNUNET_BLOCK_TYPE_ANY
Identifier for any block.
@ GNUNET_BLOCK_TYPE_TEST
Block for testing.
#define gettext_noop(String)
Definition: gettext.h:70
static unsigned int query_type
The type of the query.
static unsigned int verbose
Be verbose.
static const struct GNUNET_CONFIGURATION_Handle * cfg
Global handle of the configuration.
static void message_sent_cont(void *cls)
Signature of the main function of a task.
static void shutdown_task(void *cls)
static int ret
Global status value.
static char * query_key
The key for the query.
static struct GNUNET_DHT_Handle * dht_handle
Handle to the DHT.
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.
static char * data
The data to insert into the dht.
static unsigned int replication
Desired replication level.
static int demultixplex_everywhere
Use #GNUNET_DHT_DEMULTIPLEX_EVERYWHERE.
int main(int argc, char *const *argv)
Entry point for gnunet-dht-put.
struct GNUNET_HashCode key
The key used in the DHT.
static int record_route
Use GNUNET_DHT_RO_RECORD_ROUTE.
static struct GNUNET_TIME_Relative expiration
User supplied expiration value.
API to the DHT service.
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:1039
struct GNUNET_DHT_PutHandle * GNUNET_DHT_put(struct GNUNET_DHT_Handle *handle, const struct GNUNET_HashCode *key, uint32_t desired_replication_level, enum GNUNET_DHT_RouteOption options, enum GNUNET_BLOCK_Type type, size_t size, const void *data, struct GNUNET_TIME_Absolute exp, GNUNET_SCHEDULER_TaskCallback cont, void *cont_cls)
Perform a PUT operation storing data in the DHT.
Definition: dht_api.c:1090
void GNUNET_DHT_disconnect(struct GNUNET_DHT_Handle *handle)
Shutdown connection with the DHT service.
Definition: dht_api.c:1062
@ 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...
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).
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.
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
@ GNUNET_OK
#define GNUNET_free(ptr)
Wrapper around free.
enum GNUNET_GenericReturnValue GNUNET_PROGRAM_run(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:400
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:1299
enum GNUNET_GenericReturnValue GNUNET_STRINGS_get_utf8_args(int argc, char *const *argv, int *u8argc, char *const **u8argv)
Returns utf-8 encoded arguments.
Definition: strings.c:1222
#define GNUNET_TIME_UNIT_HOURS
One hour.
struct GNUNET_TIME_Absolute GNUNET_TIME_relative_to_absolute(struct GNUNET_TIME_Relative rel)
Convert relative time to an absolute time in the future.
Definition: time.c:316
#define _(String)
GNU gettext support macro.
Definition: platform.h:178
Connection to the DHT service.
Definition: dht_api.c:237
Definition of a command line option.
A 512-bit hashcode.
Time for relative time used by GNUnet, in microseconds.