GNUnet 0.21.1
testing_api_cmd_netjail_start.c File Reference

Command to start the netjail script. More...

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 NETJAIL_START_SCRIPT   "netjail_start.sh"
 
#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. More...
 
static void child_completed_callback (void *cls, enum GNUNET_OS_ProcessStatusType type, long unsigned int exit_code)
 Callback which will be called if the setup script finished. More...
 
static void netjail_start_run (void *cls, struct GNUNET_TESTING_Interpreter *is)
 The run method starts the script which setup the network namespaces. More...
 
struct GNUNET_TESTING_Command GNUNET_TESTING_cmd_netjail_start (const char *label, char *topology_config, unsigned int *read_file)
 Create command. More...
 

Detailed Description

Command to start the netjail script.

Author
t3sserakt

Definition in file testing_api_cmd_netjail_start.c.

Macro Definition Documentation

◆ NETJAIL_START_SCRIPT

#define NETJAIL_START_SCRIPT   "netjail_start.sh"

Definition at line 33 of file testing_api_cmd_netjail_start.c.

◆ LOG

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

Definition at line 35 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 73 of file testing_api_cmd_netjail_start.c.

74{
75 struct NetJailState *ns = cls;
76
78 "netjail_start_cleanup!\n");
79
80 if (NULL != ns->cwh)
81 {
83 "Cancel child\n");
85 ns->cwh = NULL;
86 }
87 if (NULL != ns->start_proc)
88 {
90 "Kill process\n");
91 GNUNET_assert (0 ==
92 GNUNET_OS_process_kill (ns->start_proc,
93 SIGKILL));
95 GNUNET_OS_process_wait (ns->start_proc));
96 GNUNET_OS_process_destroy (ns->start_proc);
97 ns->start_proc = NULL;
98 }
100}
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.
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_wait(struct GNUNET_OS_Process *proc)
Wait for a process to terminate.
Definition: os_priority.c:877
Struct to hold information for callbacks.

References GNUNET_assert, GNUNET_ERROR_TYPE_DEBUG, GNUNET_free, GNUNET_log, GNUNET_OK, GNUNET_OS_process_destroy(), GNUNET_OS_process_kill(), GNUNET_OS_process_wait(), GNUNET_wait_child_cancel(), and ns.

Referenced by GNUNET_TESTING_cmd_netjail_start().

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,
long unsigned int  exit_code 
)
static

Callback which will be called if the setup script finished.

Definition at line 108 of file testing_api_cmd_netjail_start.c.

111{
112 struct NetJailState *ns = cls;
113
114 GNUNET_OS_process_destroy (ns->start_proc);
115 ns->start_proc = NULL;
116 ns->cwh = NULL;
117 if (0 == exit_code)
118 {
120 }
121 else
122 {
124 "Child failed with error %lu!\n",
125 exit_code);
127 }
128}
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

References exit_code, GNUNET_ERROR_TYPE_ERROR, GNUNET_log, GNUNET_OS_process_destroy(), GNUNET_TESTING_async_fail(), GNUNET_TESTING_async_finish(), and ns.

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 138 of file testing_api_cmd_netjail_start.c.

140{
141 struct NetJailState *ns = cls;
142 char pid[15];
143 enum GNUNET_GenericReturnValue helper_check;
144 char *data_dir;
145 char *script_name;
146 char *read_file;
147
149 GNUNET_asprintf (&script_name, "%s%s", data_dir, NETJAIL_START_SCRIPT);
150 GNUNET_asprintf (&read_file, "%u", *(ns->read_file));
151
152 helper_check = GNUNET_OS_check_helper_binary (
153 script_name,
155 NULL);
156
158 "script_name %s\n",
159 script_name);
160
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 ());
182 {
183 char *const script_argv[] = {
184 script_name,
185 ns->topology_config,
186 pid,
187 read_file,
188 NULL
189 };
190
191 ns->start_proc
193 NULL,
194 NULL,
195 NULL,
196 script_name,
197 script_argv);
198
199 }
200 ns->cwh = GNUNET_wait_child (ns->start_proc,
202 ns);
203 GNUNET_break (NULL != ns->cwh);
205 GNUNET_free (script_name);
206 GNUNET_free (data_dir);
207}
struct GNUNET_TESTING_Interpreter * is
static struct GNUNET_PeerIdentity pid
Identity of the peer we transmit to / connect to.
void GNUNET_TESTING_interpreter_fail(struct GNUNET_TESTING_Interpreter *is)
Current command failed, clean up and fail the test case.
struct GNUNET_ChildWaitHandle * GNUNET_wait_child(struct GNUNET_OS_Process *proc, GNUNET_ChildCompletedCallback cb, void *cb_cls)
Starts the handling of the child processes.
GNUNET_GenericReturnValue
Named constants for return values.
@ GNUNET_YES
@ 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.
char * GNUNET_OS_installation_get_path(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_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_OS_Process * GNUNET_OS_start_process_vap(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, char *const argv[])
Start a process.
Definition: os_priority.c:573
@ 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
@ GNUNET_OS_IPK_DATADIR
Return the directory where data is installed (share/gnunet/)
enum GNUNET_GenericReturnValue read_file(char const *const filename, char **buffer)
Definition: pabc_helper.c:71
static void child_completed_callback(void *cls, enum GNUNET_OS_ProcessStatusType type, long unsigned int exit_code)
Callback which will be called if the setup script finished.
#define LOG(kind,...)
#define NETJAIL_START_SCRIPT

References child_completed_callback(), GNUNET_asprintf(), GNUNET_break, GNUNET_ERROR_TYPE_DEBUG, GNUNET_ERROR_TYPE_ERROR, GNUNET_free, GNUNET_log, GNUNET_NO, GNUNET_OS_check_helper_binary(), GNUNET_OS_INHERIT_STD_ERR, GNUNET_OS_installation_get_path(), GNUNET_OS_IPK_DATADIR, GNUNET_OS_start_process_vap(), GNUNET_snprintf(), GNUNET_SYSERR, GNUNET_TESTING_interpreter_fail(), GNUNET_wait_child(), GNUNET_YES, is, LOG, NETJAIL_START_SCRIPT, ns, pid, and read_file().

Referenced by GNUNET_TESTING_cmd_netjail_start().

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

◆ GNUNET_TESTING_cmd_netjail_start()

struct GNUNET_TESTING_Command GNUNET_TESTING_cmd_netjail_start ( const char *  label,
char *  topology_config,
unsigned int *  read_file 
)

Create command.

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

Parameters
labelname for command.
topology_configConfiguration file for the test topology.
Returns
command.

Definition at line 218 of file testing_api_cmd_netjail_start.c.

221{
222 struct NetJailState *ns;
223
224 ns = GNUNET_new (struct NetJailState);
225 ns->topology_config = topology_config;
226 ns->read_file = read_file;
227 return GNUNET_TESTING_command_new (ns, label,
230 NULL, &ns->ac);
231}
struct GNUNET_TESTING_Command GNUNET_TESTING_command_new(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.
#define GNUNET_new(type)
Allocate a struct or union of the given type.
char * topology_config
Configuration file for the test topology.
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(), netjail_start_cleanup(), netjail_start_run(), ns, read_file(), and NetJailState::topology_config.

Here is the call graph for this function: