GNUnet  0.20.0
gnunet-helper-testbed.c
Go to the documentation of this file.
1 /*
2  This file is part of GNUnet
3  Copyright (C) 2008--2013, 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 
41 #include "platform.h"
42 #include "gnunet_util_lib.h"
43 #include "gnunet_testing_lib.h"
44 #include "gnunet_testbed_service.h"
45 #include "testbed_helper.h"
46 #include "testbed_api.h"
47 #include <zlib.h>
48 
52 #define LOG(kind, ...) GNUNET_log (kind, __VA_ARGS__)
53 
57 #define LOG_DEBUG(...) LOG (GNUNET_ERROR_TYPE_DEBUG, __VA_ARGS__)
58 
59 
64 {
68  void *data;
69 
73  size_t length;
74 
78  size_t pos;
79 };
80 
81 
86 
91 
96 
101 
105 static struct GNUNET_OS_Process *testbed;
106 
111 
116 
121 
126 
130 static int done_reading;
131 
135 static int status;
136 
137 
143 static void
144 shutdown_task (void *cls)
145 {
146  LOG_DEBUG ("Shutting down\n");
147  if (NULL != testbed)
148  {
149  LOG_DEBUG ("Killing testbed\n");
151  }
152  if (NULL != read_task_id)
153  {
155  read_task_id = NULL;
156  }
157  if (NULL != write_task_id)
158  {
159  struct WriteContext *wc;
160 
162  write_task_id = NULL;
163  GNUNET_free (wc->data);
164  GNUNET_free (wc);
165  }
166  if (NULL != child_death_task_id)
167  {
169  child_death_task_id = NULL;
170  }
171  if (NULL != stdin_fd)
173  if (NULL != stdout_fd)
176  tokenizer = NULL;
177  if (NULL != testbed)
178  {
181  testbed = NULL;
182  }
183  if (NULL != test_system)
184  {
186  test_system = NULL;
187  }
188 }
189 
190 
196 static void
197 write_task (void *cls)
198 {
199  struct WriteContext *wc = cls;
200  ssize_t bytes_wrote;
201 
202  GNUNET_assert (NULL != wc);
203  write_task_id = NULL;
204  bytes_wrote = GNUNET_DISK_file_write (stdout_fd,
205  wc->data + wc->pos,
206  wc->length - wc->pos);
207  if (GNUNET_SYSERR == bytes_wrote)
208  {
209  LOG (GNUNET_ERROR_TYPE_WARNING, "Cannot reply back configuration\n");
210  GNUNET_free (wc->data);
211  GNUNET_free (wc);
212  return;
213  }
214  wc->pos += bytes_wrote;
215  if (wc->pos == wc->length)
216  {
217  GNUNET_free (wc->data);
218  GNUNET_free (wc);
219  return;
220  }
222  stdout_fd,
223  &write_task,
224  wc);
225 }
226 
227 
234 static void
235 child_death_task (void *cls)
236 {
237  const struct GNUNET_DISK_FileHandle *pr;
238  char c[16];
240  unsigned long code;
241  int ret;
242 
244  child_death_task_id = NULL;
245  /* consume the signal */
246  GNUNET_break (0 < GNUNET_DISK_file_read (pr, &c, sizeof(c)));
247  LOG_DEBUG ("Got SIGCHLD\n");
248  if (NULL == testbed)
249  {
250  GNUNET_break (0);
251  return;
252  }
254  (ret = GNUNET_OS_process_status (testbed, &type, &code)));
255  if (GNUNET_NO != ret)
256  {
258  testbed = NULL;
259  /* Send SIGTERM to our process group */
260  if (0 != kill (0, GNUNET_TERM_SIG))
261  {
263  GNUNET_SCHEDULER_shutdown (); /* Couldn't send the signal, we shutdown frowning */
264  }
265  return;
266  }
267  LOG_DEBUG ("Child hasn't died. Resuming to monitor its status\n");
270  pr,
272  NULL);
273 }
274 
275 
288 static int
289 tokenizer_cb (void *cls, const struct GNUNET_MessageHeader *message)
290 {
291  const struct GNUNET_TESTBED_HelperInit *msg;
292  struct GNUNET_TESTBED_HelperReply *reply;
294  struct WriteContext *wc;
295  char *binary;
296  char *trusted_ip;
297  char *hostname;
298  char *config;
299  char *xconfig;
300  char *evstr;
301  // char *str;
302  size_t config_size;
303  uLongf ul_config_size;
304  size_t xconfig_size;
305  uint16_t trusted_ip_size;
306  uint16_t hostname_size;
307  uint16_t msize;
308 
309  msize = ntohs (message->size);
310  if ((sizeof(struct GNUNET_TESTBED_HelperInit) >= msize) ||
311  (GNUNET_MESSAGE_TYPE_TESTBED_HELPER_INIT != ntohs (message->type)))
312  {
313  LOG (GNUNET_ERROR_TYPE_WARNING, "Received unexpected message -- exiting\n");
314  goto error;
315  }
316  msg = (const struct GNUNET_TESTBED_HelperInit *) message;
317  trusted_ip_size = ntohs (msg->trusted_ip_size);
318  trusted_ip = (char *) &msg[1];
319  if ('\0' != trusted_ip[trusted_ip_size])
320  {
321  LOG (GNUNET_ERROR_TYPE_WARNING, "Trusted IP cannot be empty -- exiting\n");
322  goto error;
323  }
324  hostname_size = ntohs (msg->hostname_size);
325  if ((sizeof(struct GNUNET_TESTBED_HelperInit) + trusted_ip_size + 1
326  + hostname_size) >= msize)
327  {
328  GNUNET_break (0);
329  LOG (GNUNET_ERROR_TYPE_WARNING, "Received unexpected message -- exiting\n");
330  goto error;
331  }
332  ul_config_size = (uLongf) ntohs (msg->config_size);
333  config = GNUNET_malloc (ul_config_size);
334  xconfig_size = msize - (trusted_ip_size + 1 + hostname_size
335  + sizeof(struct GNUNET_TESTBED_HelperInit));
336  int ret = uncompress ((Bytef *) config,
337  &ul_config_size,
338  (const Bytef *) (trusted_ip + trusted_ip_size + 1
339  + hostname_size),
340  (uLongf) xconfig_size);
341  if (Z_OK != ret)
342  {
343  switch (ret)
344  {
345  case Z_MEM_ERROR:
346  LOG (GNUNET_ERROR_TYPE_ERROR, "Not enough memory for decompression\n");
347  break;
348 
349  case Z_BUF_ERROR:
350  LOG (GNUNET_ERROR_TYPE_ERROR, "Output buffer too small\n");
351  break;
352 
353  case Z_DATA_ERROR:
354  LOG (GNUNET_ERROR_TYPE_ERROR, "Data corrupted/incomplete\n");
355  break;
356 
357  default:
358  GNUNET_break (0);
359  }
361  "Error while uncompressing config -- exiting\n");
363  goto error;
364  }
366  if (GNUNET_OK !=
367  GNUNET_CONFIGURATION_deserialize (cfg, config, ul_config_size, NULL))
368  {
369  LOG (GNUNET_ERROR_TYPE_ERROR, "Unable to deserialize config -- exiting\n");
371  goto error;
372  }
374  hostname = NULL;
375  if (0 != hostname_size)
376  {
379  ((char *) &msg[1]) + trusted_ip_size + 1,
380  hostname_size + 1);
381  }
382  /* unset GNUNET_TESTING_PREFIX if present as it is more relevant for testbed */
383  evstr = getenv (GNUNET_TESTING_PREFIX);
384  if (NULL != evstr)
385  {
386  /* unsetting the variable will invalidate the pointer! */
387  evstr = GNUNET_strdup (evstr);
388  GNUNET_break (0 == unsetenv (GNUNET_TESTING_PREFIX));
389  }
390  test_system =
391  GNUNET_TESTING_system_create ("testbed-helper", trusted_ip, hostname, NULL);
392  if (NULL != evstr)
393  {
394  char *evar;
395 
396  GNUNET_asprintf (&evar, GNUNET_TESTING_PREFIX "=%s", evstr);
397  GNUNET_assert (0 == putenv (evar)); /* consumes 'evar',
398  see putenv(): becomes part of environment! */
399  GNUNET_free (evstr);
400  evstr = NULL;
401  }
403  hostname = NULL;
404  GNUNET_assert (NULL != test_system);
409  "PATHS",
410  "DEFAULTCONFIG",
411  &config));
413  {
415  "Unable to write config file: %s -- exiting\n",
416  config);
419  goto error;
420  }
421  LOG_DEBUG ("Staring testbed with config: %s\n", config);
422  binary = GNUNET_OS_get_libexec_binary_path ("gnunet-service-testbed");
423  {
424  char *evar;
425 
426  /* expose testbed configuration through env variable */
427  GNUNET_asprintf (&evar, "%s=%s", ENV_TESTBED_CONFIG, config);
428  GNUNET_assert (0 == putenv (evar)); /* consumes 'evar',
429  see putenv(): becomes part of environment! */
430  evstr = NULL;
431  }
433  NULL,
434  NULL,
435  NULL,
436  binary,
437  "gnunet-service-testbed",
438  "-c",
439  config,
440  NULL);
441  GNUNET_free (binary);
443  if (NULL == testbed)
444  {
446  "Error starting gnunet-service-testbed -- exiting\n");
448  goto error;
449  }
453  cfg = NULL;
454  xconfig_size =
457  wc = GNUNET_new (struct WriteContext);
458  wc->length = xconfig_size + sizeof(struct GNUNET_TESTBED_HelperReply);
459  reply = GNUNET_realloc (xconfig, wc->length);
460  memmove (&reply[1], reply, xconfig_size);
462  reply->header.size = htons ((uint16_t) wc->length);
463  reply->config_size = htons ((uint16_t) config_size);
464  wc->data = reply;
466  stdout_fd,
467  &write_task,
468  wc);
473  NULL);
474  return GNUNET_OK;
475 
476 error:
479  return GNUNET_SYSERR;
480 }
481 
482 
488 static void
489 read_task (void *cls)
490 {
492  ssize_t sread;
493 
494  read_task_id = NULL;
495  sread = GNUNET_DISK_file_read (stdin_fd, buf, sizeof(buf));
496  if ((GNUNET_SYSERR == sread) || (0 == sread))
497  {
498  LOG_DEBUG ("STDIN closed\n");
500  return;
501  }
502  if (GNUNET_YES == done_reading)
503  {
504  /* didn't expect any more data! */
505  GNUNET_break_op (0);
507  return;
508  }
509  LOG_DEBUG ("Read %u bytes\n", (unsigned int) sread);
510  /* FIXME: could introduce a GNUNET_MST_read2 to read
511  directly from 'stdin_fd' and save a memcpy() here */
512  if (GNUNET_OK !=
514  {
515  GNUNET_break (0);
517  return;
518  }
519  read_task_id /* No timeout while reading */
521  stdin_fd,
522  &read_task,
523  NULL);
524 }
525 
526 
535 static void
536 run (void *cls,
537  char *const *args,
538  const char *cfgfile,
539  const struct GNUNET_CONFIGURATION_Handle *cfg)
540 {
541  LOG_DEBUG ("Starting testbed helper...\n");
546  stdin_fd,
547  &read_task,
548  NULL);
550 }
551 
552 
556 static void
558 {
559  static char c;
560  int old_errno; /* back-up errno */
561 
562  old_errno = errno;
563  GNUNET_break (
564  1 ==
567  &c,
568  sizeof(c)));
569  errno = old_errno;
570 }
571 
572 
580 int
581 main (int argc, char **argv)
582 {
586  int ret;
587 
588  status = GNUNET_OK;
589  if (NULL ==
591  {
592  GNUNET_break (0);
593  return 1;
594  }
595  shc_chld =
597  ret = GNUNET_PROGRAM_run (argc,
598  argv,
599  "gnunet-helper-testbed",
600  "Helper for starting gnunet-service-testbed",
601  options,
602  &run,
603  NULL);
605  shc_chld = NULL;
607  if (GNUNET_OK != ret)
608  return 1;
609  return (GNUNET_OK == status) ? 0 : 1;
610 }
611 
612 
613 /* end of gnunet-helper-testbed.c */
struct GNUNET_GETOPT_CommandLineOption GNUNET_GETOPT_OPTION_END
Definition: 002.c:13
struct GNUNET_GETOPT_CommandLineOption options[]
Definition: 002.c:5
struct GNUNET_MessageHeader * msg
Definition: 005.c:2
static struct GNUNET_SIGNAL_Context * shc_chld
char * getenv()
static const struct GNUNET_CONFIGURATION_Handle * cfg
Configuration we are using.
Definition: gnunet-abd.c:36
static int ret
Return value of the commandline.
Definition: gnunet-abd.c:81
struct GNUNET_MessageStreamTokenizer * tokenizer
Our message stream tokenizer.
static void read_task(void *cls)
Task to read from stdin.
int main(int argc, char **argv)
Main function.
static struct GNUNET_OS_Process * testbed
The process handle to the testbed service.
static struct GNUNET_SCHEDULER_Task * child_death_task_id
Task to kill the child.
static struct GNUNET_DISK_FileHandle * stdout_fd
Disk handle for stdout.
static void shutdown_task(void *cls)
Task to shut down cleanly.
static int status
Result to return in case we fail.
static int tokenizer_cb(void *cls, const struct GNUNET_MessageHeader *message)
Functions with this signature are called whenever a complete message is received by the tokenizer.
static void child_death_task(void *cls)
Task triggered whenever we receive a SIGCHLD (child process died).
#define LOG_DEBUG(...)
Debug logging shorthand.
static struct GNUNET_DISK_PipeHandle * sigpipe
Pipe used to communicate shutdown via signal.
static void sighandler_child_death()
Signal handler called for SIGCHLD.
static struct GNUNET_TESTING_System * test_system
Handle to the testing system.
static struct GNUNET_SCHEDULER_Task * read_task_id
Task identifier for the read task.
static void write_task(void *cls)
Task to write to the standard out.
static void run(void *cls, char *const *args, const char *cfgfile, const struct GNUNET_CONFIGURATION_Handle *cfg)
Main function that will be run.
#define LOG(kind,...)
Generic logging shortcut.
static struct GNUNET_SCHEDULER_Task * write_task_id
Task identifier for the write task.
static struct GNUNET_DISK_FileHandle * stdin_fd
Disk handle from stdin.
static int done_reading
Are we done reading messages from stdin?
static char * hostname
Our hostname; we give this to all the peers we start.
static char buf[2048]
static const struct GNUNET_CONFIGURATION_Handle * config
API for writing tests and creating large-scale emulation testbeds for GNUnet.
Convenience API for writing testcases for GNUnet.
#define GNUNET_MAX_MESSAGE_SIZE
Largest supported message (to be precise, one byte more than the largest possible message,...
char * GNUNET_CONFIGURATION_serialize(const struct GNUNET_CONFIGURATION_Handle *cfg, size_t *size)
Serializes the given configuration.
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.
struct GNUNET_CONFIGURATION_Handle * GNUNET_CONFIGURATION_create(void)
Create a new configuration object.
void GNUNET_CONFIGURATION_destroy(struct GNUNET_CONFIGURATION_Handle *cfg)
Destroy configuration object.
enum GNUNET_GenericReturnValue GNUNET_CONFIGURATION_deserialize(struct GNUNET_CONFIGURATION_Handle *cfg, const char *mem, size_t size, const char *source_filename)
De-serializes configuration.
enum GNUNET_GenericReturnValue GNUNET_CONFIGURATION_write(struct GNUNET_CONFIGURATION_Handle *cfg, const char *filename)
Write configuration file.
struct GNUNET_DISK_FileHandle * GNUNET_DISK_get_handle_from_native(FILE *fd)
Get a handle from a native FD.
Definition: disk.c:1346
ssize_t GNUNET_DISK_file_write(const struct GNUNET_DISK_FileHandle *h, const void *buffer, size_t n)
Write a buffer to a file.
Definition: disk.c:686
enum GNUNET_GenericReturnValue GNUNET_DISK_pipe_close(struct GNUNET_DISK_PipeHandle *p)
Closes an interprocess channel.
Definition: disk.c:1587
enum GNUNET_GenericReturnValue GNUNET_DISK_file_close(struct GNUNET_DISK_FileHandle *h)
Close an open file.
Definition: disk.c:1308
ssize_t GNUNET_DISK_file_read(const struct GNUNET_DISK_FileHandle *h, void *result, size_t len)
Read the contents of a binary file into a buffer.
Definition: disk.c:622
const struct GNUNET_DISK_FileHandle * GNUNET_DISK_pipe_handle(const struct GNUNET_DISK_PipeHandle *p, enum GNUNET_DISK_PipeEnd n)
Get the handle to a particular pipe end.
Definition: disk.c:1617
struct GNUNET_DISK_PipeHandle * GNUNET_DISK_pipe(enum GNUNET_DISK_PipeFlags pf)
Creates an interprocess channel.
Definition: disk.c:1444
@ GNUNET_DISK_PF_NONE
No special options, use non-blocking read/write operations.
@ GNUNET_DISK_PIPE_END_WRITE
The writing-end of a pipe.
@ GNUNET_DISK_PIPE_END_READ
The reading-end of a pipe.
@ GNUNET_OK
@ GNUNET_YES
@ GNUNET_NO
@ GNUNET_SYSERR
#define GNUNET_break_op(cond)
Use this for assertion violations caused by other peers (i.e.
#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.
#define GNUNET_log_strerror(level, cmd)
Log an error message at log-level 'level' that indicates a failure of the command 'cmd' with the mess...
@ GNUNET_ERROR_TYPE_WARNING
@ GNUNET_ERROR_TYPE_ERROR
int int GNUNET_asprintf(char **buf, const char *format,...) __attribute__((format(printf
Like asprintf, just portable.
#define GNUNET_strdup(a)
Wrapper around GNUNET_xstrdup_.
#define GNUNET_new(type)
Allocate a struct or union of the given type.
#define GNUNET_malloc(size)
Wrapper around malloc.
#define GNUNET_realloc(ptr, size)
Wrapper around realloc.
#define GNUNET_free(ptr)
Wrapper around free.
char * GNUNET_OS_get_libexec_binary_path(const char *progname)
Given the name of a gnunet-helper, gnunet-service or gnunet-daemon binary, try to prefix it with the ...
struct GNUNET_OS_Process * GNUNET_OS_start_process(enum GNUNET_OS_InheritStdioFlags std_inheritance, struct GNUNET_DISK_PipeHandle *pipe_stdin, struct GNUNET_DISK_PipeHandle *pipe_stdout, struct GNUNET_DISK_PipeHandle *pipe_stderr, const char *filename,...)
Start a process.
Definition: os_priority.c:620
GNUNET_OS_ProcessStatusType
Process status types.
void GNUNET_OS_process_destroy(struct GNUNET_OS_Process *proc)
Cleans up process structure contents (OS-dependent) and deallocates it.
Definition: os_priority.c:260
int GNUNET_OS_process_kill(struct GNUNET_OS_Process *proc, int sig)
Sends a signal to the process.
Definition: os_priority.c:210
enum GNUNET_GenericReturnValue GNUNET_OS_process_status(struct GNUNET_OS_Process *proc, enum GNUNET_OS_ProcessStatusType *type, unsigned long *code)
Retrieve the status of a process.
Definition: os_priority.c:853
enum GNUNET_GenericReturnValue GNUNET_OS_process_wait(struct GNUNET_OS_Process *proc)
Wait for a process to terminate.
Definition: os_priority.c:871
@ GNUNET_OS_INHERIT_STD_ERR
When this flag is set, the child process will inherit stderr of the parent.
Definition: gnunet_os_lib.h:95
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
#define GNUNET_MESSAGE_TYPE_TESTBED_HELPER_REPLY
The reply message from gnunet-testbed-helper.
#define GNUNET_MESSAGE_TYPE_TESTBED_HELPER_INIT
The initialization message towards gnunet-testbed-helper.
void GNUNET_SCHEDULER_shutdown(void)
Request the shutdown of a scheduler.
Definition: scheduler.c:562
struct GNUNET_SCHEDULER_Task * GNUNET_SCHEDULER_add_read_file(struct GNUNET_TIME_Relative delay, const struct GNUNET_DISK_FileHandle *rfd, GNUNET_SCHEDULER_TaskCallback task, void *task_cls)
Schedule a new task to be run with a specified delay or when the specified file descriptor is ready f...
Definition: scheduler.c:1656
struct GNUNET_SCHEDULER_Task * GNUNET_SCHEDULER_add_write_file(struct GNUNET_TIME_Relative delay, const struct GNUNET_DISK_FileHandle *wfd, GNUNET_SCHEDULER_TaskCallback task, void *task_cls)
Schedule a new task to be run with a specified delay or when the specified file descriptor is ready f...
Definition: scheduler.c:1689
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:1334
void * GNUNET_SCHEDULER_cancel(struct GNUNET_SCHEDULER_Task *task)
Cancel the task with the specified identifier.
Definition: scheduler.c:975
enum GNUNET_GenericReturnValue GNUNET_MST_from_buffer(struct GNUNET_MessageStreamTokenizer *mst, const char *buf, size_t size, int purge, int one_shot)
Add incoming data to the receive buffer and call the callback for all complete messages.
Definition: mst.c:101
void GNUNET_MST_destroy(struct GNUNET_MessageStreamTokenizer *mst)
Destroys a tokenizer.
Definition: mst.c:404
struct GNUNET_MessageStreamTokenizer * GNUNET_MST_create(GNUNET_MessageTokenizerCallback cb, void *cb_cls)
Create a message stream tokenizer.
Definition: mst.c:86
struct GNUNET_SIGNAL_Context * GNUNET_SIGNAL_handler_install(int signal, GNUNET_SIGNAL_Handler handler)
Install a signal handler that will be run if the given signal is received.
Definition: signal.c:52
void GNUNET_SIGNAL_handler_uninstall(struct GNUNET_SIGNAL_Context *ctx)
Uninstall a previously installed signal handler.
Definition: signal.c:78
size_t GNUNET_strlcpy(char *dst, const char *src, size_t n)
Like strlcpy but portable.
Definition: strings.c:138
struct GNUNET_TESTING_System * GNUNET_TESTING_system_create(const char *testdir, const char *trusted_ip, const char *hostname, const struct GNUNET_TESTING_SharedService *shared_services)
Create a system handle.
Definition: testing.c:477
#define GNUNET_TESTING_PREFIX
The environmental variable, if set, that dictates where testing should place generated peer configura...
void GNUNET_TESTING_system_destroy(struct GNUNET_TESTING_System *system, int remove_paths)
Free system resources.
Definition: testing.c:557
int GNUNET_TESTING_configuration_create(struct GNUNET_TESTING_System *system, struct GNUNET_CONFIGURATION_Handle *cfg)
Create a new configuration using the given configuration as a template; ports and paths will be modif...
Definition: testing.c:1167
#define GNUNET_TIME_UNIT_FOREVER_REL
Constant used to specify "forever".
#define GNUNET_SIGCHLD
Definition: platform.h:42
#define GNUNET_TERM_SIG
The termination signal.
Definition: platform.h:234
Handle used to access files (and pipes).
Handle used to manage a pipe.
Definition: disk.c:68
Definition of a command line option.
Header for all communications.
uint16_t type
The type of the message (GNUNET_MESSAGE_TYPE_XXXX), in big-endian format.
uint16_t size
The length of the struct (in bytes, including the length field itself), in big-endian format.
Handle to a message stream tokenizer.
Definition: mst.c:45
Entry in list of pending tasks.
Definition: scheduler.c:136
Initialization message for gnunet-helper-testbed to start testbed service.
uint16_t trusted_ip_size
The controller hostname size excluding the NULL termination character - strlen (hostname); cannot be ...
uint16_t hostname_size
The hostname size excluding the NULL termination character - strlen (hostname); cannot be zero.
uint16_t config_size
The size of the uncompressed configuration.
Reply message from helper process.
uint16_t config_size
Size of the uncompressed configuration.
struct GNUNET_MessageHeader header
Type is GNUNET_MESSAGE_TYPE_TESTBED_HELPER_REPLY.
Handle for a system on which GNUnet peers are executed; a system is used for reserving unique paths a...
Definition: testing.c:122
Context for a single write on a chunk of memory.
size_t pos
The current position from where the write operation should begin.
size_t length
The length of the data.
void * data
The data to write.
#define ENV_TESTBED_CONFIG
The environmental variable which when available refers to the configuration file the local testbed co...
Definition: testbed.h:776
size_t GNUNET_TESTBED_compress_config_(const char *config, size_t size, char **xconfig)
Compresses given configuration using zlib compress.
Definition: testbed_api.c:1758
Interface for functions internally exported from testbed_api.c.
enum GNUNET_TESTBED_UnderlayLinkModelType type
the type of this model
Message formats for communication between testbed api and gnunet-helper-testbed process.