GNUnet 0.21.2
testing_api_cmd_netjail_start.c
Go to the documentation of this file.
1/*
2 This file is part of GNUnet
3 Copyright (C) 2021 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
26#include "platform.h"
27#include "gnunet_util_lib.h"
28#include "gnunet_testing_lib.h"
30
31#define LOG(kind, ...) GNUNET_log (kind, __VA_ARGS__)
32
38{
43
45
50
54 const char *topology_cmd_label;
55
59 const char *script;
60
61};
62
63
68static void
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 {
82 GNUNET_assert (0 ==
83 GNUNET_OS_process_kill (ns->start_proc,
84 SIGKILL));
86 GNUNET_OS_process_wait (ns->start_proc));
87 GNUNET_OS_process_destroy (ns->start_proc);
88 ns->start_proc = NULL;
89 }
91}
92
93
97static void
100 unsigned long int exit_code)
101{
102 struct NetJailState *ns = cls;
103
104 GNUNET_OS_process_destroy (ns->start_proc);
105 ns->start_proc = NULL;
106 ns->cwh = NULL;
107 if ( (GNUNET_OS_PROCESS_EXITED != type) ||
108 (0 != exit_code) )
109 {
111 "Child failed with error %lu!\n",
112 exit_code);
114 return;
115 }
117}
118
119
126static void
129{
130 struct NetJailState *ns = cls;
131 const struct GNUNET_TESTING_Command *topo_cmd;
132 char pid[15];
133 enum GNUNET_GenericReturnValue helper_check;
134 char *data_dir;
135 char *script_name;
136 const char *topology_data;
137
139 is,
140 ns->topology_cmd_label);
141 if (NULL == topo_cmd)
143 if (GNUNET_OK !=
144 GNUNET_TESTING_get_trait_topology_string (topo_cmd,
145 &topology_data))
148 GNUNET_asprintf (&script_name,
149 "%s%s",
150 data_dir,
151 ns->script);
152 helper_check = GNUNET_OS_check_helper_binary (
153 script_name,
154 true,
155 NULL);
156 if (GNUNET_NO == helper_check)
157 {
159 "No SUID for %s!\n",
160 script_name);
162 return;
163 }
164 if (GNUNET_SYSERR == helper_check)
165 {
167 "%s not found!\n",
168 script_name);
170 return;
171 }
172
174 sizeof (pid),
175 "%u",
176 getpid ());
177 {
178 char *const script_argv[] = {
179 script_name,
180 (char *) topology_data,
181 pid,
182 "0",
183 NULL
184 };
185
186 ns->start_proc
188 NULL,
189 NULL,
190 NULL,
191 script_name,
192 script_argv);
193
194 }
195 ns->cwh = GNUNET_wait_child (ns->start_proc,
197 ns);
198 GNUNET_break (NULL != ns->cwh);
199 GNUNET_free (script_name);
200 GNUNET_free (data_dir);
201}
202
203
206 const char *label,
207 const char *script,
208 const char *topology_cmd_label)
209{
210 struct NetJailState *ns;
211
212 ns = GNUNET_new (struct NetJailState);
213 ns->script = script;
214 ns->topology_cmd_label = topology_cmd_label;
216 ns,
217 label,
220 NULL,
221 &ns->ac);
222}
static struct GNUNET_TESTING_Interpreter * is
static struct GNUNET_NAMECACHE_Handle * ns
Handle to the namecache.
static uint32_t type
Type string converted to DNS type value.
static int exit_code
Global exit code.
Definition: gnunet-qr.c:43
static struct GNUNET_PeerIdentity pid
Identity of the peer we transmit to / connect to.
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.
void GNUNET_TESTING_async_finish(struct GNUNET_TESTING_AsyncContext *ac)
The asynchronous command of ac has finished.
#define GNUNET_TESTING_FAIL(is)
Print failing line number and trigger shutdown.
void GNUNET_TESTING_async_fail(struct GNUNET_TESTING_AsyncContext *ac)
The asynchronous command of ac has failed.
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.
#define GNUNET_log(kind,...)
void GNUNET_wait_child_cancel(struct GNUNET_ChildWaitHandle *cwh)
Stop waiting on this child.
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_OK
@ GNUNET_NO
@ GNUNET_SYSERR
#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.
@ GNUNET_ERROR_TYPE_ERROR
@ GNUNET_ERROR_TYPE_DEBUG
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.
#define GNUNET_new(type)
Allocate a struct or union of the given type.
#define GNUNET_free(ptr)
Wrapper around free.
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,...
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
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.
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 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_PROCESS_EXITED
The process exited with a return code.
@ GNUNET_OS_IPK_DATADIR
Return the directory where data is installed (share/gnunet/)
Struct which defines a Child Wait handle.
State each asynchronous command must have in its closure.
A command to be run by the interpreter.
struct GNUNET_TESTING_CommandLabel label
Label for the command.
Global state of the interpreter, used by a command to access information about other commands.
Struct to hold information for callbacks.
struct GNUNET_ChildWaitHandle * cwh
const char * topology_cmd_label
Configuration file for the test topology.
struct GNUNET_OS_Process * start_proc
The process id of the start script.
const char * script
Start or stop?
struct GNUNET_TESTING_AsyncContext ac
Context for our asynchronous completion.
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.
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.
static void netjail_start_cleanup(void *cls)
The cleanup function of this cmd frees resources the cmd allocated.