small API change: do no longer pass rarely needed GNUNET_SCHEDULER_TaskContext to...
[oweals/gnunet.git] / src / include / gnunet_os_lib.h
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2011 GNUnet e.V.
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 3, or (at your
8      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      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18      Boston, MA 02110-1301, USA.
19 */
20
21 /**
22  * @author Christian Grothoff
23  * @author Krista Bennett
24  * @author Gerd Knorr <kraxel@bytesex.org>
25  * @author Ioana Patrascu
26  * @author Tzvetan Horozov
27  * @author Milan
28  *
29  * @file
30  * Low level process routines
31  *
32  * @defgroup os  OS library
33  * Low level process routines.
34  *
35  * This code manages child processes.  We can communicate with child
36  * processes using signals.  Because signals are not supported on W32
37  * and Java (at least not nicely), we can alternatively use a pipe
38  * to send signals to the child processes (if the child process is
39  * a full-blown GNUnet process that supports reading signals from
40  * a pipe, of course).  Naturally, this also only works for 'normal'
41  * termination via signals, and not as a replacement for SIGKILL.
42  * Thus using pipes to communicate signals should only be enabled if
43  * the child is a Java process OR if we are on Windoze.
44  *
45  * @{
46  */
47
48 #ifndef GNUNET_OS_LIB_H
49 #define GNUNET_OS_LIB_H
50
51 #ifdef __cplusplus
52 extern "C"
53 {
54 #if 0                           /* keep Emacsens' auto-indent happy */
55 }
56 #endif
57 #endif
58
59 #include "gnunet_common.h"
60 #include "gnunet_configuration_lib.h"
61 #include "gnunet_scheduler_lib.h"
62
63
64 /**
65  * Flags that determine which of the standard streams
66  * should be inherited by the child process.
67  */
68 enum GNUNET_OS_InheritStdioFlags
69 {
70
71   /**
72    * No standard streams should be inherited.
73    */
74   GNUNET_OS_INHERIT_STD_NONE = 0,
75
76   /**
77    * When this flag is set, the child process will
78    * inherit stdin of the parent.
79    */
80   GNUNET_OS_INHERIT_STD_IN = 1,
81
82   /**
83    * When this flag is set, the child process will
84    * inherit stdout of the parent.
85    */
86   GNUNET_OS_INHERIT_STD_OUT = 2,
87
88   /**
89    * When this flag is set, the child process will
90    * inherit stderr of the parent.
91    */
92   GNUNET_OS_INHERIT_STD_ERR = 4,
93
94   /**
95    * When these flags are set, the child process will
96    * inherit stdout and stderr of the parent.
97    */
98   GNUNET_OS_INHERIT_STD_OUT_AND_ERR = 6,
99
100   /**
101    * Use this option to have all of the standard streams
102    * (stdin, stdout and stderror) be inherited.
103    */
104   GNUNET_OS_INHERIT_STD_ALL = 7
105 };
106
107
108 /**
109  * Process information (OS-dependent)
110  */
111 struct GNUNET_OS_Process;
112
113
114 /**
115  * Possible installation paths to request
116  */
117 enum GNUNET_OS_InstallationPathKind
118 {
119   /**
120    * Return the "PREFIX" directory given to configure.
121    */
122   GNUNET_OS_IPK_PREFIX,
123
124   /**
125    * Return the directory where the program binaries are installed. (bin/)
126    */
127   GNUNET_OS_IPK_BINDIR,
128
129   /**
130    * Return the directory where libraries are installed. (lib/gnunet/)
131    */
132   GNUNET_OS_IPK_LIBDIR,
133
134   /**
135    * Return the directory where data is installed (share/gnunet/)
136    */
137   GNUNET_OS_IPK_DATADIR,
138
139   /**
140    * Return the directory where translations are installed (share/locale/)
141    */
142   GNUNET_OS_IPK_LOCALEDIR,
143
144   /**
145    * Return the installation directory of this application, not
146    * the one of the overall GNUnet installation (in case they
147    * are different).
148    */
149   GNUNET_OS_IPK_SELF_PREFIX,
150
151   /**
152    * Return the prefix of the path with application icons (share/icons/).
153    */
154   GNUNET_OS_IPK_ICONDIR,
155
156   /**
157    * Return the prefix of the path with documentation files, including the
158    * license (share/doc/gnunet/).
159    */
160   GNUNET_OS_IPK_DOCDIR,
161
162   /**
163    * Return the directory where helper binaries are installed (lib/gnunet/libexec/)
164    */
165   GNUNET_OS_IPK_LIBEXECDIR
166 };
167
168
169 /**
170  * Process status types
171  */
172 enum GNUNET_OS_ProcessStatusType
173 {
174   /**
175    * The process is not known to the OS (or at
176    * least not one of our children).
177    */
178   GNUNET_OS_PROCESS_UNKNOWN,
179
180   /**
181    * The process is still running.
182    */
183   GNUNET_OS_PROCESS_RUNNING,
184
185   /**
186    * The process is paused (but could be resumed).
187    */
188   GNUNET_OS_PROCESS_STOPPED,
189
190   /**
191    * The process exited with a return code.
192    */
193   GNUNET_OS_PROCESS_EXITED,
194
195   /**
196    * The process was killed by a signal.
197    */
198   GNUNET_OS_PROCESS_SIGNALED
199 };
200
201
202 /**
203  * Project-specific data used to help the OS subsystem
204  * find installation paths.
205  */
206 struct GNUNET_OS_ProjectData
207 {
208   /**
209    * Name of a library that is installed in the "lib/" directory of
210    * the project, such as "libgnunetutil".  Used to locate the
211    * installation by scanning dependencies of the current process.
212    */
213   const char *libname;
214
215   /**
216    * Name of the project that is used in the "libexec" prefix, For
217    * example, "gnunet".  Certain helper binaries are then expected to
218    * be installed in "$PREFIX/libexec/gnunet/" and resources in
219    * "$PREFIX/share/gnunet/".
220    */
221   const char *project_dirname;
222
223   /**
224    * Name of a project-specific binary that should be in "$PREFIX/bin/".
225    * Used to determine installation path from $PATH variable.
226    * For example "gnunet-arm".  On W32, ".exe" should be omitted.
227    */
228   const char *binary_name;
229
230   /**
231    * Name of an environment variable that can be used to override
232    * installation path detection, for example "GNUNET_PREFIX".
233    */
234   const char *env_varname;
235
236   /**
237    * Alternative name of an environment variable that can be used to
238    * override installation path detection, if "env_varname" is not
239    * set. Again, for example, "GNUNET_PREFIX".
240    */
241   const char *env_varname_alt;
242
243   /**
244    * E-mail address for reporting bugs.
245    */
246   const char *bug_email;
247
248   /**
249    * Project homepage.
250    */
251   const char *homepage;
252
253 };
254
255
256 /**
257  * Return default project data used by 'libgnunetutil' for GNUnet.
258  */
259 const struct GNUNET_OS_ProjectData *
260 GNUNET_OS_project_data_default (void);
261
262
263 /**
264  * @return current (actual) project data.
265  */
266 const struct GNUNET_OS_ProjectData *
267 GNUNET_OS_project_data_get (void);
268
269
270 /**
271  * Setup OS subsystem with project data.
272  *
273  * @param pd project data used to determine paths.
274  */
275 void
276 GNUNET_OS_init (const struct GNUNET_OS_ProjectData *pd);
277
278
279 /**
280  * Get the path to a specific GNUnet installation directory or, with
281  * #GNUNET_OS_IPK_SELF_PREFIX, the current running apps installation
282  * directory.
283  *
284  * @param dirkind what kind of directory is desired?
285  * @return a pointer to the dir path (to be freed by the caller)
286  */
287 char *
288 GNUNET_OS_installation_get_path (enum GNUNET_OS_InstallationPathKind dirkind);
289
290
291 /**
292  * Given the name of a gnunet-helper, gnunet-service or gnunet-daemon
293  * binary, try to prefix it with the libexec/-directory to get the
294  * full path.
295  *
296  * @param progname name of the binary
297  * @return full path to the binary, if possible, otherwise copy of 'progname'
298  */
299 char *
300 GNUNET_OS_get_libexec_binary_path (const char *progname);
301
302
303 /**
304  * Callback function invoked for each interface found.
305  *
306  * @param cls closure
307  * @param name name of the interface (can be NULL for unknown)
308  * @param isDefault is this presumably the default interface
309  * @param addr address of this interface (can be NULL for unknown or unassigned)
310  * @param broadcast_addr the broadcast address (can be NULL for unknown or unassigned)
311  * @param netmask the network mask (can be NULL for unknown or unassigned)
312  * @param addrlen length of the address
313  * @return #GNUNET_OK to continue iteration, #GNUNET_SYSERR to abort
314  */
315 typedef int
316 (*GNUNET_OS_NetworkInterfaceProcessor) (void *cls,
317                                         const char *name,
318                                         int isDefault,
319                                         const struct sockaddr *addr,
320                                         const struct sockaddr *broadcast_addr,
321                                         const struct sockaddr *netmask,
322                                         socklen_t addrlen);
323
324
325 /**
326  * @brief Enumerate all network interfaces
327  *
328  * @param proc the callback function
329  * @param proc_cls closure for @a proc
330  */
331 void
332 GNUNET_OS_network_interfaces_list (GNUNET_OS_NetworkInterfaceProcessor proc,
333                                    void *proc_cls);
334
335 /**
336  * @brief Get maximum string length returned by gethostname()
337  */
338 #if HAVE_SYSCONF && defined(_SC_HOST_NAME_MAX)
339 #define GNUNET_OS_get_hostname_max_length() ({ int __sc_tmp = sysconf(_SC_HOST_NAME_MAX); __sc_tmp <= 0 ? 255 : __sc_tmp; })
340 #elif defined(HOST_NAME_MAX)
341 #define GNUNET_OS_get_hostname_max_length() HOST_NAME_MAX
342 #else
343 #define GNUNET_OS_get_hostname_max_length() 255
344 #endif
345
346
347 /**
348  * Get process structure for current process
349  *
350  * The pointer it returns points to static memory location and must not be
351  * deallocated/closed
352  *
353  * @return pointer to the process sturcutre for this process
354  */
355 struct GNUNET_OS_Process *
356 GNUNET_OS_process_current (void);
357
358
359 /**
360  * Sends a signal to the process
361  *
362  * @param proc pointer to process structure
363  * @param sig signal
364  * @return 0 on success, -1 on error
365  */
366 int
367 GNUNET_OS_process_kill (struct GNUNET_OS_Process *proc, int sig);
368
369
370 /**
371  * Cleans up process structure contents (OS-dependent) and deallocates it
372  *
373  * @param proc pointer to process structure
374  */
375 void
376 GNUNET_OS_process_destroy (struct GNUNET_OS_Process *proc);
377
378
379 /**
380  * Get the pid of the process in question
381  *
382  * @param proc the process to get the pid of
383  *
384  * @return the current process id
385  */
386 pid_t
387 GNUNET_OS_process_get_pid (struct GNUNET_OS_Process *proc);
388
389
390 /**
391  * Start a process.
392  *
393  * @param pipe_control should a pipe be used to send signals to the child?
394  * @param std_inheritance a set of GNUNET_OS_INHERIT_STD_* flags
395  * @param pipe_stdin pipe to use to send input to child process (or NULL)
396  * @param pipe_stdout pipe to use to get output from child process (or NULL)
397  * @param pipe_stderr pipe to use to get error output from child process (or NULL)
398  * @param filename name of the binary
399  * @param argv NULL-terminated array of arguments to the process
400  * @return pointer to process structure of the new process, NULL on error
401  */
402 struct GNUNET_OS_Process *
403 GNUNET_OS_start_process_vap (int pipe_control,
404                              enum GNUNET_OS_InheritStdioFlags std_inheritance,
405                              struct GNUNET_DISK_PipeHandle *pipe_stdin,
406                              struct GNUNET_DISK_PipeHandle *pipe_stdout,
407                              struct GNUNET_DISK_PipeHandle *pipe_stderr,
408                              const char *filename,
409                              char *const argv[]);
410
411
412 /**
413  * Start a process.
414  *
415  * @param pipe_control should a pipe be used to send signals to the child?
416  * @param std_inheritance a set of GNUNET_OS_INHERIT_STD_* flags
417  * @param pipe_stdin pipe to use to send input to child process (or NULL)
418  * @param pipe_stdout pipe to use to get output from child process (or NULL)
419  * @param pipe_stderr pipe to use to get error output from child process (or NULL)
420  * @param filename name of the binary
421  * @param ... NULL-terminated list of arguments to the process
422  * @return pointer to process structure of the new process, NULL on error
423  */
424 struct GNUNET_OS_Process *
425 GNUNET_OS_start_process (int pipe_control,
426                          enum GNUNET_OS_InheritStdioFlags std_inheritance,
427                          struct GNUNET_DISK_PipeHandle *pipe_stdin,
428                          struct GNUNET_DISK_PipeHandle *pipe_stdout,
429                          struct GNUNET_DISK_PipeHandle *pipe_stderr,
430                          const char *filename, ...);
431
432
433 /**
434  * Start a process.
435  *
436  * @param pipe_control should a pipe be used to send signals to the child?
437  * @param std_inheritance a set of GNUNET_OS_INHERIT_STD_* flags
438  * @param pipe_stdin pipe to use to send input to child process (or NULL)
439  * @param pipe_stdout pipe to use to get output from child process (or NULL)
440  * @param pipe_stderr pipe to use to get error output from child process (or NULL)
441  * @param filename name of the binary
442  * @param va NULL-terminated list of arguments to the process
443  * @return pointer to process structure of the new process, NULL on error
444  */
445 struct GNUNET_OS_Process *
446 GNUNET_OS_start_process_va (int pipe_control,
447                             enum GNUNET_OS_InheritStdioFlags std_inheritance,
448                             struct GNUNET_DISK_PipeHandle *pipe_stdin,
449                             struct GNUNET_DISK_PipeHandle *pipe_stdout,
450                             struct GNUNET_DISK_PipeHandle *pipe_stderr,
451                             const char *filename, va_list va);
452
453 /**
454  * Start a process.
455  *
456  * @param pipe_control should a pipe be used to send signals to the child?
457  * @param std_inheritance a set of GNUNET_OS_INHERIT_STD_* flags
458  * @param lsocks array of listen sockets to dup systemd-style (or NULL);
459  *         must be NULL on platforms where dup is not supported
460  * @param filename name of the binary
461  * @param argv NULL-terminated list of arguments to the process,
462  *             including the process name as the first argument
463  * @return pointer to process structure of the new process, NULL on error
464  */
465 struct GNUNET_OS_Process *
466 GNUNET_OS_start_process_v (int pipe_control,
467                            enum GNUNET_OS_InheritStdioFlags std_inheritance,
468                            const SOCKTYPE *lsocks,
469                            const char *filename,
470                            char *const argv[]);
471
472
473 /**
474  * Start a process.  This function is similar to the GNUNET_OS_start_process_*
475  * except that the filename and arguments can have whole strings which contain
476  * the arguments.  These arguments are to be separated by spaces and are parsed
477  * in the order they appear.  Arguments containing spaces can be used by
478  * quoting them with @em ".
479  *
480  * @param pipe_control should a pipe be used to send signals to the child?
481  * @param std_inheritance a set of GNUNET_OS_INHERIT_STD_* flags
482  * @param lsocks array of listen sockets to dup systemd-style (or NULL);
483  *         must be NULL on platforms where dup is not supported
484  * @param filename name of the binary.  It is valid to have the arguments
485  *         in this string when they are separated by spaces.
486  * @param ... more arguments.  Should be of type `char *`.  It is valid
487  *         to have the arguments in these strings when they are separated by
488  *         spaces.  The last argument MUST be NULL.
489  * @return pointer to process structure of the new process, NULL on error
490  */
491 struct GNUNET_OS_Process *
492 GNUNET_OS_start_process_s (int pipe_control,
493                            unsigned int std_inheritance,
494                            const SOCKTYPE * lsocks,
495                            const char *filename, ...);
496
497
498 /**
499  * Handle to a command action.
500  */
501 struct GNUNET_OS_CommandHandle;
502
503
504 /**
505  * Type of a function to process a line of output.
506  *
507  * @param cls closure
508  * @param line line of output from a command, NULL for the end
509  */
510 typedef void (*GNUNET_OS_LineProcessor) (void *cls, const char *line);
511
512
513 /**
514  * Stop/kill a command.
515  *
516  * @param cmd handle to the process
517  */
518 void
519 GNUNET_OS_command_stop (struct GNUNET_OS_CommandHandle *cmd);
520
521
522 /**
523  * Run the given command line and call the given function
524  * for each line of the output.
525  *
526  * @param proc function to call for each line of the output
527  * @param proc_cls closure for proc
528  * @param timeout when to time out
529  * @param binary command to run
530  * @param ... arguments to command
531  * @return NULL on error
532  */
533 struct GNUNET_OS_CommandHandle *
534 GNUNET_OS_command_run (GNUNET_OS_LineProcessor proc, void *proc_cls,
535                        struct GNUNET_TIME_Relative timeout, const char *binary,
536                        ...);
537
538
539 /**
540  * Retrieve the status of a process, waiting on him if dead.
541  * Nonblocking version.
542  *
543  * @param proc pointer to process structure
544  * @param type status type
545  * @param code return code/signal number
546  * @return #GNUNET_OK on success, #GNUNET_NO if the process is still running, #GNUNET_SYSERR otherwise
547  */
548 int
549 GNUNET_OS_process_status (struct GNUNET_OS_Process *proc,
550                           enum GNUNET_OS_ProcessStatusType *type,
551                           unsigned long *code);
552
553
554 /**
555  * Wait for a process to terminate.  The return code is discarded.
556  * You must not use #GNUNET_OS_process_status() on the same process
557  * after calling this function!  This function is blocking and should
558  * thus only be used if the child process is known to have terminated
559  * or to terminate very soon.
560  *
561  * @param proc pointer to process structure of the process to wait for
562  * @return #GNUNET_OK on success, #GNUNET_SYSERR otherwise
563  */
564 int
565 GNUNET_OS_process_wait (struct GNUNET_OS_Process *proc);
566
567
568 /**
569  * Connects this process to its parent via pipe;
570  * essentially, the parent control handler will read signal numbers
571  * from the #GNUNET_OS_CONTROL_PIPE (as given in an environment
572  * variable) and raise those signals.
573  *
574  * @param cls closure (unused)
575  */
576 void
577 GNUNET_OS_install_parent_control_handler (void *cls);
578
579
580 /**
581  * Check whether an executable exists and possibly
582  * if the suid bit is set on the file.
583  * Attempts to find the file using the current
584  * PATH environment variable as a search path.
585  *
586  * @param binary the name of the file to check.
587  *        W32: must not have an .exe suffix.
588  * @param check_suid input true if the binary should be checked for SUID (*nix)
589  *        W32: checks if the program has sufficient privileges by executing this
590  *             binary with the -d flag. -d omits a programs main loop and only
591  *             executes all privileged operations in an binary.
592  * @param params parameters used for w32 privilege checking (can be NULL for != w32, or when not checking for suid/permissions )
593  * @return #GNUNET_YES if the file is SUID (*nix) or can be executed with current privileges (W32),
594  *         #GNUNET_NO if not SUID (but binary exists),
595  *         #GNUNET_SYSERR on error (no such binary or not executable)
596  */
597 int
598 GNUNET_OS_check_helper_binary (const char *binary,
599                                int check_suid,
600                                const char *params);
601
602
603 #if 0                           /* keep Emacsens' auto-indent happy */
604 {
605 #endif
606 #ifdef __cplusplus
607 }
608 #endif
609
610 /* ifndef GNUNET_OS_LIB_H */
611 #endif
612
613 /** @} */  /* end of group */
614
615 /* end of gnunet_os_lib.h */