GNUnet 0.27.0
 
Loading...
Searching...
No Matches
child_management.c
Go to the documentation of this file.
1/*
2 This file is part of GNUnet
3 Copyright (C) 2021-2023 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
29#include "platform.h"
30#include "gnunet_util_lib.h"
31
35#define LOG(kind, ...) GNUNET_log (kind, __VA_ARGS__)
36
37
64
65
70
72
74
76
78
85static void
87{
88 char buf[16];
89 const struct GNUNET_DISK_FileHandle *pr;
90 struct GNUNET_ChildWaitHandle *nxt;
91
92 (void) cls;
93 sig_task = NULL;
94 /* drain pipe */
98 (void) GNUNET_DISK_file_read (pr,
99 buf,
100 sizeof(buf));
101
102 /* find applicable processes that exited */
103 for (struct GNUNET_ChildWaitHandle *cwh = cwh_head;
104 NULL != cwh;
105 cwh = nxt)
106 {
108 long unsigned int exit_code = 0;
109
110 nxt = cwh->next;
111 if (GNUNET_OK ==
112 GNUNET_process_wait (cwh->proc,
113 false,
114 &type,
115 &exit_code))
116 {
118 cwh_tail,
119 cwh);
120 cwh->cb (cwh->cb_cls,
121 type,
122 exit_code);
123 GNUNET_free (cwh);
124 }
125 }
126 if (NULL == cwh_head)
127 return;
128 /* wait for more */
134 NULL);
135}
136
137
142static void
144{
145 static char c;
146 int old_errno = errno; /* back-up errno */
147
149 1 ==
152 ,
153 &c,
154 sizeof(c)));
155 errno = old_errno; /* restore errno */
156}
157
158
162static void
164{
166 "Trying to start child management.\n");
167 if (NULL != sigpipe)
168 return; /* already initialized */
170 GNUNET_assert (sigpipe != NULL);
171 shc_chld =
175 "Child management started.\n");
176}
177
178
182static void
184{
185 if (NULL != sig_task)
186 {
188 sig_task = NULL;
189 }
191 shc_chld = NULL;
193 sigpipe = NULL;
195 "Child management stopped.\n");
196}
197
198
202 void *cb_cls)
203{
204 struct GNUNET_ChildWaitHandle *cwh;
205 bool may_race = (NULL == sigpipe);
206
208 cwh = GNUNET_new (struct GNUNET_ChildWaitHandle);
209 cwh->proc = proc;
210 cwh->cb = cb;
211 cwh->cb_cls = cb_cls;
213 cwh_tail,
214 cwh);
215 if ((NULL == sig_task) && (NULL != sigpipe))
216 {
222 NULL);
223 }
224 /* Handle race-condition case where the child terminated just before we
225 installed the signal handler and thus we missed the signal. */
226 if (may_race)
228 return cwh;
229}
230
231
232void
234{
236 cwh_tail,
237 cwh);
238 GNUNET_free (cwh);
239 if (NULL != cwh_head)
240 return;
242}
static void sighandler_child_death(void)
Signal handler called for SIGCHLD.
static void child_management_start(void)
Initializing the signal pipe for child handling.
static void child_management_done(void)
Clean up.
static struct GNUNET_ChildWaitHandle * cwh_tail
static void maint_child_death(void *cls)
Task triggered whenever we receive a SIGCHLD (child process died) or when user presses CTRL-C.
static struct GNUNET_SIGNAL_Context * shc_chld
static struct GNUNET_DISK_PipeHandle * sigpipe
Pipe used to communicate shutdown via signal.
static struct GNUNET_ChildWaitHandle * cwh_head
static struct GNUNET_SCHEDULER_Task * sig_task
static uint32_t type
Type string converted to DNS type value.
static int exit_code
Global exit code.
Definition gnunet-qr.c:43
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:1703
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:745
struct GNUNET_DISK_PipeHandle * GNUNET_DISK_pipe(enum GNUNET_DISK_PipeFlags pf)
Creates an interprocess channel.
Definition disk.c:1524
enum GNUNET_GenericReturnValue GNUNET_DISK_pipe_close(struct GNUNET_DISK_PipeHandle *p)
Closes an interprocess channel.
Definition disk.c:1671
enum GNUNET_GenericReturnValue GNUNET_DISK_handle_invalid(const struct GNUNET_DISK_FileHandle *h)
Checks whether a handle is invalid.
Definition disk.c:199
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:704
@ 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.
#define GNUNET_CONTAINER_DLL_remove(head, tail, element)
Remove an element from a DLL.
#define GNUNET_CONTAINER_DLL_insert(head, tail, element)
Insert an element at the head of a DLL.
#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_Process *proc, GNUNET_ChildCompletedCallback cb, void *cb_cls)
Starts the handling of the child processes.
void(* GNUNET_ChildCompletedCallback)(void *cls, enum GNUNET_OS_ProcessStatusType type, long unsigned int exit_code)
Defines a GNUNET_ChildCompletedCallback which is sent back upon death or completion of a child proces...
@ GNUNET_OK
#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_INFO
#define GNUNET_new(type)
Allocate a struct or union of the given type.
#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.
GNUNET_OS_ProcessStatusType
Process status types.
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:1667
void * GNUNET_SCHEDULER_cancel(struct GNUNET_SCHEDULER_Task *task)
Cancel the task with the specified identifier.
Definition scheduler.c:986
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
#define GNUNET_TIME_UNIT_FOREVER_REL
Constant used to specify "forever".
#define GNUNET_SIGCHLD
Definition platform.h:42
Struct which defines a Child Wait handle.
struct GNUNET_ChildWaitHandle * prev
Linked list to the previous child.
GNUNET_ChildCompletedCallback cb
Callback which is called upon completion/death of the child task.
void * cb_cls
Closure for the handle.
struct GNUNET_ChildWaitHandle * next
Linked list to the next child.
struct GNUNET_Process * proc
Child process which is managed.
Handle used to access files (and pipes).
Handle used to manage a pipe.
Definition disk.c:69
Entry in list of pending tasks.
Definition scheduler.c:141