GNUnet 0.26.2-98-gb402d9955
 
Loading...
Searching...
No Matches
testing_api_cmd_netjail_start.c File Reference

Command to start the netjail script. More...

#include "platform.h"
#include "gnunet_util_lib.h"
#include "gnunet_testing_lib.h"
#include "testing_api_topology.h"
Include dependency graph for testing_api_cmd_netjail_start.c:

Go to the source code of this file.

Data Structures

struct  NetJailState
 Struct to hold information for callbacks. More...
 

Macros

#define LOG(kind, ...)   GNUNET_log (kind, __VA_ARGS__)
 

Functions

static void netjail_start_cleanup (void *cls)
 The cleanup function of this cmd frees resources the cmd allocated.
 
static void child_completed_callback (void *cls, enum GNUNET_OS_ProcessStatusType type, unsigned long int exit_code)
 Callback which will be called if the setup script finished.
 
static void netjail_start_run (void *cls, struct GNUNET_TESTING_Interpreter *is)
 The run method starts the script which setup the network namespaces.
 
struct GNUNET_TESTING_Command GNUNET_TESTING_cmd_netjail_setup (const char *label, const char *script, const char *topology_cmd_label)
 This command executes a shell script to setup the netjail environment.
 

Detailed Description

Command to start the netjail script.

Author
t3sserakt

Definition in file testing_api_cmd_netjail_start.c.

Macro Definition Documentation

◆ LOG

#define LOG (   kind,
  ... 
)    GNUNET_log (kind, __VA_ARGS__)

Definition at line 31 of file testing_api_cmd_netjail_start.c.

Function Documentation

◆ netjail_start_cleanup()

static void netjail_start_cleanup ( void *  cls)
static

The cleanup function of this cmd frees resources the cmd allocated.

Definition at line 69 of file testing_api_cmd_netjail_start.c.

70{
71 struct NetJailState *ns = cls;
72
74 "netjail_start_cleanup!\n");
75 if (NULL != ns->cwh)
76 {
78 ns->cwh = NULL;
79 }
80 if (NULL != ns->start_proc)
81 {
83 GNUNET_process_kill (ns->start_proc,
84 SIGKILL));
86 GNUNET_process_wait (ns->start_proc,
87 true,
88 NULL,
89 NULL));
90 GNUNET_process_destroy (ns->start_proc);
91 ns->start_proc = NULL;
92 }
94}
static struct GNUNET_NAMECACHE_Handle * ns
Handle to the namecache.
#define GNUNET_log(kind,...)
void GNUNET_wait_child_cancel(struct GNUNET_ChildWaitHandle *cwh)
Stop waiting on this child.
@ GNUNET_OK
#define GNUNET_assert(cond)
Use this for fatal errors that cannot be handled.
@ GNUNET_ERROR_TYPE_DEBUG
#define GNUNET_free(ptr)
Wrapper around free.
enum GNUNET_GenericReturnValue GNUNET_process_wait(struct GNUNET_Process *proc, bool blocking, enum GNUNET_OS_ProcessStatusType *type, unsigned long *code)
Wait for a process to terminate.
void GNUNET_process_destroy(struct GNUNET_Process *proc)
Cleans up process structure contents (OS-dependent) and deallocates it.
Definition os_process.c:363
enum GNUNET_GenericReturnValue GNUNET_process_kill(struct GNUNET_Process *proc, int sig)
Sends a signal to the process.
Definition os_process.c:307
Struct to hold information for callbacks.

References GNUNET_assert, GNUNET_ERROR_TYPE_DEBUG, GNUNET_free, GNUNET_log, GNUNET_OK, GNUNET_process_destroy(), GNUNET_process_kill(), GNUNET_process_wait(), GNUNET_wait_child_cancel(), and ns.

Referenced by GNUNET_TESTING_cmd_netjail_setup().

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

◆ child_completed_callback()

static void child_completed_callback ( void *  cls,
enum GNUNET_OS_ProcessStatusType  type,
unsigned long int  exit_code 
)
static

Callback which will be called if the setup script finished.

Definition at line 101 of file testing_api_cmd_netjail_start.c.

104{
105 struct NetJailState *ns = cls;
106
107 GNUNET_process_destroy (ns->start_proc);
108 ns->start_proc = NULL;
109 ns->cwh = NULL;
110 if ( (GNUNET_OS_PROCESS_EXITED != type) ||
111 (0 != exit_code) )
112 {
114 "Child failed with error %lu!\n",
115 exit_code);
117 return;
118 }
120}
static uint32_t type
Type string converted to DNS type value.
static int exit_code
Global exit code.
Definition gnunet-qr.c:43
void GNUNET_TESTING_async_finish(struct GNUNET_TESTING_AsyncContext *ac)
The asynchronous command of ac has finished.
void GNUNET_TESTING_async_fail(struct GNUNET_TESTING_AsyncContext *ac)
The asynchronous command of ac has failed.
@ GNUNET_ERROR_TYPE_ERROR
@ GNUNET_OS_PROCESS_EXITED
The process exited with a return code.

References exit_code, GNUNET_ERROR_TYPE_ERROR, GNUNET_log, GNUNET_OS_PROCESS_EXITED, GNUNET_process_destroy(), GNUNET_TESTING_async_fail(), GNUNET_TESTING_async_finish(), ns, and type.

Referenced by netjail_start_run().

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

◆ netjail_start_run()

static void netjail_start_run ( void *  cls,
struct GNUNET_TESTING_Interpreter is 
)
static

The run method starts the script which setup the network namespaces.

Parameters
clsclosure.
isinterpreter state.

Definition at line 130 of file testing_api_cmd_netjail_start.c.

132{
133 struct NetJailState *ns = cls;
134 const struct GNUNET_TESTING_Command *topo_cmd;
135 char pid[15];
136 enum GNUNET_GenericReturnValue helper_check;
137 char *data_dir;
138 char *script_name;
139 const char *topology_data;
140
142 is,
143 ns->topology_cmd_label);
144 if (NULL == topo_cmd)
146 if (GNUNET_OK !=
147 GNUNET_TESTING_get_trait_topology_string (topo_cmd,
148 &topology_data))
153 GNUNET_asprintf (&script_name,
154 "%s%s",
155 data_dir,
156 ns->script);
157 helper_check = GNUNET_OS_check_helper_binary (
158 script_name,
159 true,
160 NULL);
161 if (GNUNET_NO == helper_check)
162 {
164 "No SUID for %s!\n",
165 script_name);
167 return;
168 }
169 if (GNUNET_SYSERR == helper_check)
170 {
172 "%s not found!\n",
173 script_name);
175 return;
176 }
177
179 sizeof (pid),
180 "%u",
181 getpid ());
183 if (GNUNET_OK !=
185 script_name,
186 script_name,
187 (char *) topology_data,
188 pid,
189 (char*) "0",
190 NULL))
191 {
192 GNUNET_break (0);
194 return;
195 }
196 ns->cwh = GNUNET_wait_child (ns->start_proc,
198 ns);
199 GNUNET_break (NULL != ns->cwh);
200 GNUNET_free (script_name);
201 GNUNET_free (data_dir);
202}
static struct GNUNET_TESTING_Interpreter * is
static struct GNUNET_PeerIdentity pid
Identity of the peer we transmit to / connect to.
#define GNUNET_TESTING_FAIL(is)
Print failing line number and trigger shutdown.
const struct GNUNET_TESTING_Command * GNUNET_TESTING_interpreter_lookup_command(struct GNUNET_TESTING_Interpreter *is, const char *label)
Lookup command by label.
void GNUNET_TESTING_interpreter_skip(struct GNUNET_TESTING_Interpreter *is)
Skips the current test, the environment is not prepared correctly.
struct GNUNET_ChildWaitHandle * GNUNET_wait_child(struct GNUNET_Process *proc, GNUNET_ChildCompletedCallback cb, void *cb_cls)
Starts the handling of the child processes.
GNUNET_GenericReturnValue
Named constants for return values.
@ GNUNET_NO
@ GNUNET_SYSERR
#define GNUNET_break(cond)
Use this for internal assertion violations that are not fatal (can be handled) but should not occur.
int int GNUNET_asprintf(char **buf, const char *format,...) __attribute__((format(printf
Like asprintf, just portable.
int GNUNET_snprintf(char *buf, size_t size, const char *format,...) __attribute__((format(printf
Like snprintf, just aborts if the buffer is of insufficient size.
const struct GNUNET_OS_ProjectData * GNUNET_OS_project_data_gnunet(void)
Return default project data used by 'libgnunetutil' for GNUnet.
char * GNUNET_OS_installation_get_path(const struct GNUNET_OS_ProjectData *pd, enum GNUNET_OS_InstallationPathKind dirkind)
Get the path to a specific GNUnet installation directory or, with GNUNET_OS_IPK_SELF_PREFIX,...
enum GNUNET_GenericReturnValue GNUNET_process_run_command_va(struct GNUNET_Process *p, const char *filename,...)
Set the command and start a process.
Definition os_process.c:903
enum GNUNET_GenericReturnValue GNUNET_OS_check_helper_binary(const char *binary, bool check_suid, const char *params)
Check whether an executable exists and possibly if the suid bit is set on the file.
struct GNUNET_Process * GNUNET_process_create(enum GNUNET_OS_InheritStdioFlags std_inheritance)
Create a process handle.
Definition os_process.c:462
@ GNUNET_OS_INHERIT_STD_ERR
When this flag is set, the child process will inherit stderr of the parent.
@ GNUNET_OS_IPK_DATADIR
Return the directory where data is installed (share/gnunet/)
A command to be run by the interpreter.
static void child_completed_callback(void *cls, enum GNUNET_OS_ProcessStatusType type, unsigned long int exit_code)
Callback which will be called if the setup script finished.

References child_completed_callback(), GNUNET_asprintf(), GNUNET_break, GNUNET_ERROR_TYPE_ERROR, GNUNET_free, GNUNET_log, GNUNET_NO, GNUNET_OK, GNUNET_OS_check_helper_binary(), GNUNET_OS_INHERIT_STD_ERR, GNUNET_OS_installation_get_path(), GNUNET_OS_IPK_DATADIR, GNUNET_OS_project_data_gnunet(), GNUNET_process_create(), GNUNET_process_run_command_va(), GNUNET_snprintf(), GNUNET_SYSERR, GNUNET_TESTING_FAIL, GNUNET_TESTING_interpreter_lookup_command(), GNUNET_TESTING_interpreter_skip(), GNUNET_wait_child(), is, ns, and pid.

Referenced by GNUNET_TESTING_cmd_netjail_setup().

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

◆ GNUNET_TESTING_cmd_netjail_setup()

struct GNUNET_TESTING_Command GNUNET_TESTING_cmd_netjail_setup ( const char *  label,
const char *  script,
const char *  topology_cmd_label 
)

This command executes a shell script to setup the netjail environment.

Parameters
labelname for command.
scriptwhich script to run, e.g. GNUNET_TESTING_NETJAIL_START_SCRIPT
topology_configConfiguration file for the test topology.
read_fileFlag indicating if the the name of the topology file is send to the helper, or a string with the topology data.
Returns
command.

Definition at line 206 of file testing_api_cmd_netjail_start.c.

210{
211 struct NetJailState *ns;
212
213 ns = GNUNET_new (struct NetJailState);
214 ns->script = script;
215 ns->topology_cmd_label = topology_cmd_label;
217 ns,
218 label,
221 NULL,
222 &ns->ac);
223}
struct GNUNET_TESTING_Command GNUNET_TESTING_command_new_ac(void *cls, const char *label, GNUNET_TESTING_CommandRunRoutine run, GNUNET_TESTING_CommandCleanupRoutine cleanup, GNUNET_TESTING_CommandGetTraits traits, struct GNUNET_TESTING_AsyncContext *ac)
Create a new command that may be asynchronous.
#define GNUNET_new(type)
Allocate a struct or union of the given type.
const char * topology_cmd_label
Configuration file for the test topology.
const char * script
Start or stop?
static void netjail_start_run(void *cls, struct GNUNET_TESTING_Interpreter *is)
The run method starts the script which setup the network namespaces.
static void netjail_start_cleanup(void *cls)
The cleanup function of this cmd frees resources the cmd allocated.

References GNUNET_new, GNUNET_TESTING_command_new_ac(), netjail_start_cleanup(), netjail_start_run(), ns, NetJailState::script, and NetJailState::topology_cmd_label.

Referenced by main().

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