support overriding GNUNET_DEFAULT_USER_CONFIG_FILE
[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    * Configuration file name (in $XDG_CONFIG_HOME) to use.
255    */
256   const char *config_file;
257
258   /**
259    * Configuration file name to use (if $XDG_CONFIG_HOME is not set).
260    */
261   const char *user_config_file;
262
263 };
264
265
266 /**
267  * Return default project data used by 'libgnunetutil' for GNUnet.
268  */
269 const struct GNUNET_OS_ProjectData *
270 GNUNET_OS_project_data_default (void);
271
272
273 /**
274  * @return current (actual) project data.
275  */
276 const struct GNUNET_OS_ProjectData *
277 GNUNET_OS_project_data_get (void);
278
279
280 /**
281  * Setup OS subsystem with project data.
282  *
283  * @param pd project data used to determine paths.
284  */
285 void
286 GNUNET_OS_init (const struct GNUNET_OS_ProjectData *pd);
287
288
289 /**
290  * Get the path to a specific GNUnet installation directory or, with
291  * #GNUNET_OS_IPK_SELF_PREFIX, the current running apps installation
292  * directory.
293  *
294  * @param dirkind what kind of directory is desired?
295  * @return a pointer to the dir path (to be freed by the caller)
296  */
297 char *
298 GNUNET_OS_installation_get_path (enum GNUNET_OS_InstallationPathKind dirkind);
299
300
301 /**
302  * Given the name of a gnunet-helper, gnunet-service or gnunet-daemon
303  * binary, try to prefix it with the libexec/-directory to get the
304  * full path.
305  *
306  * @param progname name of the binary
307  * @return full path to the binary, if possible, otherwise copy of 'progname'
308  */
309 char *
310 GNUNET_OS_get_libexec_binary_path (const char *progname);
311
312
313 /**
314  * Callback function invoked for each interface found.
315  *
316  * @param cls closure
317  * @param name name of the interface (can be NULL for unknown)
318  * @param isDefault is this presumably the default interface
319  * @param addr address of this interface (can be NULL for unknown or unassigned)
320  * @param broadcast_addr the broadcast address (can be NULL for unknown or unassigned)
321  * @param netmask the network mask (can be NULL for unknown or unassigned)
322  * @param addrlen length of the address
323  * @return #GNUNET_OK to continue iteration, #GNUNET_SYSERR to abort
324  */
325 typedef int
326 (*GNUNET_OS_NetworkInterfaceProcessor) (void *cls,
327                                         const char *name,
328                                         int isDefault,
329                                         const struct sockaddr *addr,
330                                         const struct sockaddr *broadcast_addr,
331                                         const struct sockaddr *netmask,
332                                         socklen_t addrlen);
333
334
335 /**
336  * @brief Enumerate all network interfaces
337  *
338  * @param proc the callback function
339  * @param proc_cls closure for @a proc
340  */
341 void
342 GNUNET_OS_network_interfaces_list (GNUNET_OS_NetworkInterfaceProcessor proc,
343                                    void *proc_cls);
344
345 /**
346  * @brief Get maximum string length returned by gethostname()
347  */
348 #if HAVE_SYSCONF && defined(_SC_HOST_NAME_MAX)
349 #define GNUNET_OS_get_hostname_max_length() ({ int __sc_tmp = sysconf(_SC_HOST_NAME_MAX); __sc_tmp <= 0 ? 255 : __sc_tmp; })
350 #elif defined(HOST_NAME_MAX)
351 #define GNUNET_OS_get_hostname_max_length() HOST_NAME_MAX
352 #else
353 #define GNUNET_OS_get_hostname_max_length() 255
354 #endif
355
356
357 /**
358  * Get process structure for current process
359  *
360  * The pointer it returns points to static memory location and must not be
361  * deallocated/closed
362  *
363  * @return pointer to the process sturcutre for this process
364  */
365 struct GNUNET_OS_Process *
366 GNUNET_OS_process_current (void);
367
368
369 /**
370  * Sends a signal to the process
371  *
372  * @param proc pointer to process structure
373  * @param sig signal
374  * @return 0 on success, -1 on error
375  */
376 int
377 GNUNET_OS_process_kill (struct GNUNET_OS_Process *proc, int sig);
378
379
380 /**
381  * Cleans up process structure contents (OS-dependent) and deallocates it
382  *
383  * @param proc pointer to process structure
384  */
385 void
386 GNUNET_OS_process_destroy (struct GNUNET_OS_Process *proc);
387
388
389 /**
390  * Get the pid of the process in question
391  *
392  * @param proc the process to get the pid of
393  *
394  * @return the current process id
395  */
396 pid_t
397 GNUNET_OS_process_get_pid (struct GNUNET_OS_Process *proc);
398
399
400 /**
401  * Start a process.
402  *
403  * @param pipe_control should a pipe be used to send signals to the child?
404  * @param std_inheritance a set of GNUNET_OS_INHERIT_STD_* flags
405  * @param pipe_stdin pipe to use to send input to child process (or NULL)
406  * @param pipe_stdout pipe to use to get output from child process (or NULL)
407  * @param pipe_stderr pipe to use to get error output from child process (or NULL)
408  * @param filename name of the binary
409  * @param argv NULL-terminated array of arguments to the process
410  * @return pointer to process structure of the new process, NULL on error
411  */
412 struct GNUNET_OS_Process *
413 GNUNET_OS_start_process_vap (int pipe_control,
414                              enum GNUNET_OS_InheritStdioFlags std_inheritance,
415                              struct GNUNET_DISK_PipeHandle *pipe_stdin,
416                              struct GNUNET_DISK_PipeHandle *pipe_stdout,
417                              struct GNUNET_DISK_PipeHandle *pipe_stderr,
418                              const char *filename,
419                              char *const argv[]);
420
421
422 /**
423  * Start a process.
424  *
425  * @param pipe_control should a pipe be used to send signals to the child?
426  * @param std_inheritance a set of GNUNET_OS_INHERIT_STD_* flags
427  * @param pipe_stdin pipe to use to send input to child process (or NULL)
428  * @param pipe_stdout pipe to use to get output from child process (or NULL)
429  * @param pipe_stderr pipe to use to get error output from child process (or NULL)
430  * @param filename name of the binary
431  * @param ... NULL-terminated list of arguments to the process
432  * @return pointer to process structure of the new process, NULL on error
433  */
434 struct GNUNET_OS_Process *
435 GNUNET_OS_start_process (int pipe_control,
436                          enum GNUNET_OS_InheritStdioFlags std_inheritance,
437                          struct GNUNET_DISK_PipeHandle *pipe_stdin,
438                          struct GNUNET_DISK_PipeHandle *pipe_stdout,
439                          struct GNUNET_DISK_PipeHandle *pipe_stderr,
440                          const char *filename, ...);
441
442
443 /**
444  * Start a process.
445  *
446  * @param pipe_control should a pipe be used to send signals to the child?
447  * @param std_inheritance a set of GNUNET_OS_INHERIT_STD_* flags
448  * @param pipe_stdin pipe to use to send input to child process (or NULL)
449  * @param pipe_stdout pipe to use to get output from child process (or NULL)
450  * @param pipe_stderr pipe to use to get error output from child process (or NULL)
451  * @param filename name of the binary
452  * @param va NULL-terminated list of arguments to the process
453  * @return pointer to process structure of the new process, NULL on error
454  */
455 struct GNUNET_OS_Process *
456 GNUNET_OS_start_process_va (int pipe_control,
457                             enum GNUNET_OS_InheritStdioFlags std_inheritance,
458                             struct GNUNET_DISK_PipeHandle *pipe_stdin,
459                             struct GNUNET_DISK_PipeHandle *pipe_stdout,
460                             struct GNUNET_DISK_PipeHandle *pipe_stderr,
461                             const char *filename, va_list va);
462
463 /**
464  * Start a process.
465  *
466  * @param pipe_control should a pipe be used to send signals to the child?
467  * @param std_inheritance a set of GNUNET_OS_INHERIT_STD_* flags
468  * @param lsocks array of listen sockets to dup systemd-style (or NULL);
469  *         must be NULL on platforms where dup is not supported
470  * @param filename name of the binary
471  * @param argv NULL-terminated list of arguments to the process,
472  *             including the process name as the first argument
473  * @return pointer to process structure of the new process, NULL on error
474  */
475 struct GNUNET_OS_Process *
476 GNUNET_OS_start_process_v (int pipe_control,
477                            enum GNUNET_OS_InheritStdioFlags std_inheritance,
478                            const SOCKTYPE *lsocks,
479                            const char *filename,
480                            char *const argv[]);
481
482
483 /**
484  * Start a process.  This function is similar to the GNUNET_OS_start_process_*
485  * except that the filename and arguments can have whole strings which contain
486  * the arguments.  These arguments are to be separated by spaces and are parsed
487  * in the order they appear.  Arguments containing spaces can be used by
488  * quoting them with @em ".
489  *
490  * @param pipe_control should a pipe be used to send signals to the child?
491  * @param std_inheritance a set of GNUNET_OS_INHERIT_STD_* flags
492  * @param lsocks array of listen sockets to dup systemd-style (or NULL);
493  *         must be NULL on platforms where dup is not supported
494  * @param filename name of the binary.  It is valid to have the arguments
495  *         in this string when they are separated by spaces.
496  * @param ... more arguments.  Should be of type `char *`.  It is valid
497  *         to have the arguments in these strings when they are separated by
498  *         spaces.  The last argument MUST be NULL.
499  * @return pointer to process structure of the new process, NULL on error
500  */
501 struct GNUNET_OS_Process *
502 GNUNET_OS_start_process_s (int pipe_control,
503                            unsigned int std_inheritance,
504                            const SOCKTYPE * lsocks,
505                            const char *filename, ...);
506
507
508 /**
509  * Handle to a command action.
510  */
511 struct GNUNET_OS_CommandHandle;
512
513
514 /**
515  * Type of a function to process a line of output.
516  *
517  * @param cls closure
518  * @param line line of output from a command, NULL for the end
519  */
520 typedef void (*GNUNET_OS_LineProcessor) (void *cls, const char *line);
521
522
523 /**
524  * Stop/kill a command.
525  *
526  * @param cmd handle to the process
527  */
528 void
529 GNUNET_OS_command_stop (struct GNUNET_OS_CommandHandle *cmd);
530
531
532 /**
533  * Run the given command line and call the given function
534  * for each line of the output.
535  *
536  * @param proc function to call for each line of the output
537  * @param proc_cls closure for proc
538  * @param timeout when to time out
539  * @param binary command to run
540  * @param ... arguments to command
541  * @return NULL on error
542  */
543 struct GNUNET_OS_CommandHandle *
544 GNUNET_OS_command_run (GNUNET_OS_LineProcessor proc, void *proc_cls,
545                        struct GNUNET_TIME_Relative timeout, const char *binary,
546                        ...);
547
548
549 /**
550  * Retrieve the status of a process, waiting on him if dead.
551  * Nonblocking version.
552  *
553  * @param proc pointer to process structure
554  * @param type status type
555  * @param code return code/signal number
556  * @return #GNUNET_OK on success, #GNUNET_NO if the process is still running, #GNUNET_SYSERR otherwise
557  */
558 int
559 GNUNET_OS_process_status (struct GNUNET_OS_Process *proc,
560                           enum GNUNET_OS_ProcessStatusType *type,
561                           unsigned long *code);
562
563
564 /**
565  * Wait for a process to terminate.  The return code is discarded.
566  * You must not use #GNUNET_OS_process_status() on the same process
567  * after calling this function!  This function is blocking and should
568  * thus only be used if the child process is known to have terminated
569  * or to terminate very soon.
570  *
571  * @param proc pointer to process structure of the process to wait for
572  * @return #GNUNET_OK on success, #GNUNET_SYSERR otherwise
573  */
574 int
575 GNUNET_OS_process_wait (struct GNUNET_OS_Process *proc);
576
577
578 /**
579  * Connects this process to its parent via pipe;
580  * essentially, the parent control handler will read signal numbers
581  * from the #GNUNET_OS_CONTROL_PIPE (as given in an environment
582  * variable) and raise those signals.
583  *
584  * @param cls closure (unused)
585  */
586 void
587 GNUNET_OS_install_parent_control_handler (void *cls);
588
589
590 /**
591  * Check whether an executable exists and possibly
592  * if the suid bit is set on the file.
593  * Attempts to find the file using the current
594  * PATH environment variable as a search path.
595  *
596  * @param binary the name of the file to check.
597  *        W32: must not have an .exe suffix.
598  * @param check_suid input true if the binary should be checked for SUID (*nix)
599  *        W32: checks if the program has sufficient privileges by executing this
600  *             binary with the -d flag. -d omits a programs main loop and only
601  *             executes all privileged operations in an binary.
602  * @param params parameters used for w32 privilege checking (can be NULL for != w32, or when not checking for suid/permissions )
603  * @return #GNUNET_YES if the file is SUID (*nix) or can be executed with current privileges (W32),
604  *         #GNUNET_NO if not SUID (but binary exists),
605  *         #GNUNET_SYSERR on error (no such binary or not executable)
606  */
607 int
608 GNUNET_OS_check_helper_binary (const char *binary,
609                                int check_suid,
610                                const char *params);
611
612
613 #if 0                           /* keep Emacsens' auto-indent happy */
614 {
615 #endif
616 #ifdef __cplusplus
617 }
618 #endif
619
620 /* ifndef GNUNET_OS_LIB_H */
621 #endif
622
623 /** @} */  /* end of group */
624
625 /* end of gnunet_os_lib.h */