HKDF (does not work yet)
[oweals/gnunet.git] / src / include / gnunet_os_lib.h
1 /*
2      This file is part of GNUnet.
3      (C) 2001, 2002, 2003, 2004, 2005, 2006 Christian Grothoff (and other contributing authors)
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 2, 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., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file include/gnunet_os_lib.h
23  * @brief low level process routines
24  * @author Christian Grothoff
25  * @author Krista Bennett
26  * @author Gerd Knorr <kraxel@bytesex.org>
27  * @author Ioana Patrascu
28  * @author Tzvetan Horozov
29  * @author Milan
30  */
31
32 #ifndef GNUNET_OS_LIB_H
33 #define GNUNET_OS_LIB_H
34
35 #ifdef __cplusplus
36 extern "C"
37 {
38 #if 0                           /* keep Emacsens' auto-indent happy */
39 }
40 #endif
41 #endif
42
43 #include "gnunet_common.h"
44 #include "gnunet_configuration_lib.h"
45 #include "gnunet_scheduler_lib.h"
46
47
48 /**
49  * Possible installation paths to request
50  */
51 enum GNUNET_OS_InstallationPathKind
52 {
53   /**
54    * Return the "PREFIX" directory given to configure.
55    */
56   GNUNET_OS_IPK_PREFIX,
57
58   /**
59    * Return the directory where the program binaries are installed. (bin/)
60    */
61   GNUNET_OS_IPK_BINDIR,
62
63   /**
64    * Return the directory where libraries are installed. (lib/)
65    */
66   GNUNET_OS_IPK_LIBDIR,
67
68   /**
69    * Return the directory where data is installed (share/)
70    */
71   GNUNET_OS_IPK_DATADIR,
72
73   /**
74    * Return the directory where translations are installed (share/locale/)
75    */
76   GNUNET_OS_IPK_LOCALEDIR,
77
78   /**
79    * Return the installation directory of this application, not
80    * the one of the overall GNUnet installation (in case they
81    * are different).
82    */
83   GNUNET_OS_IPK_SELF_PREFIX
84 };
85
86
87 /**
88  * Process status types
89  */
90 enum GNUNET_OS_ProcessStatusType
91 {
92   /**
93    * The process is not known to the OS (or at
94    * least not one of our children).
95    */
96   GNUNET_OS_PROCESS_UNKNOWN,
97
98   /**
99    * The process is still running.
100    */
101   GNUNET_OS_PROCESS_RUNNING,
102
103   /**
104    * The process is paused (but could be resumed).
105    */
106   GNUNET_OS_PROCESS_STOPPED,
107
108   /**
109    * The process exited with a return code.
110    */
111   GNUNET_OS_PROCESS_EXITED,
112
113   /**
114    * The process was killed by a signal.
115    */
116   GNUNET_OS_PROCESS_SIGNALED
117 };
118
119
120 /**
121  * Get the path to a specific GNUnet installation directory or, with
122  * GNUNET_OS_IPK_SELF_PREFIX, the current running apps installation
123  * directory.
124  *
125  * @param dirkind what kind of directory is desired?
126  * @return a pointer to the dir path (to be freed by the caller)
127  */
128 char *GNUNET_OS_installation_get_path (enum GNUNET_OS_InstallationPathKind
129                                        dirkind);
130
131
132 /**
133  * Callback function invoked for each interface found.
134  *
135  * @param cls closure
136  * @param name name of the interface (can be NULL for unknown)
137  * @param isDefault is this presumably the default interface
138  * @param addr address of this interface (can be NULL for unknown or unassigned)
139  * @param addrlen length of the address
140  * @return GNUNET_OK to continue iteration, GNUNET_SYSERR to abort
141  */
142 typedef int (*GNUNET_OS_NetworkInterfaceProcessor) (void *cls,
143                                                     const char *name,
144                                                     int isDefault,
145                                                     const struct sockaddr *
146                                                     addr, socklen_t addrlen);
147
148
149 /**
150  * @brief Enumerate all network interfaces
151  * @param proc the callback function
152  * @param proc_cls closure for proc
153  */
154 void GNUNET_OS_network_interfaces_list (GNUNET_OS_NetworkInterfaceProcessor
155                                         proc, void *proc_cls);
156
157 /**
158  * @brief Get maximum string length returned by gethostname()
159  */
160 #if HAVE_SYSCONF && defined(_SC_HOST_NAME_MAX)
161 #define GNUNET_OS_get_hostname_max_length() ({ int __sc_tmp = sysconf(_SC_HOST_NAME_MAX); __sc_tmp <= 0 ? 255 : __sc_tmp; })
162 #elif defined(HOST_NAME_MAX)
163 #define GNUNET_OS_get_hostname_max_length() HOST_NAME_MAX
164 #else
165 #define GNUNET_OS_get_hostname_max_length() 255
166 #endif
167
168
169 /**
170  * Get the current CPU load.
171  *
172  * @param cfg to determine acceptable load level (LOAD::MAXCPULOAD)
173  * @return -1 on error, otherwise load value (between 0 and 100,
174  *        (100 is equivalent to full load for one CPU)
175  */
176 int GNUNET_OS_load_cpu_get (const struct GNUNET_CONFIGURATION_Handle *cfg);
177
178
179 /**
180  * Get the current IO load.
181  *
182  * @param cfg to determine acceptable load level (LOAD::MAXIOLOAD)
183  * @return -1 on error, otherwise load value (between 0 and 100,
184  *       100 means that we spend all of our cycles waiting for
185  *       the disk)
186  */
187 int GNUNET_OS_load_disk_get (const struct GNUNET_CONFIGURATION_Handle *cfg);
188
189
190 /**
191  * Set process priority
192  *
193  * @param proc id of the process
194  * @param prio priority value
195  * @return GNUNET_OK on success, GNUNET_SYSERR on error
196  */
197 int GNUNET_OS_set_process_priority (pid_t proc,
198                                     enum GNUNET_SCHEDULER_Priority prio);
199
200
201 /**
202  * Start a process.
203  *
204  * @param pipe_stdin pipe to use to send input to child process (or NULL)
205  * @param pipe_stdout pipe to use to get output from child process (or NULL)
206  * @param filename name of the binary
207  * @param ... NULL-terminated list of arguments to the process
208  * @return process ID of the new process, -1 on error
209  */
210 pid_t
211 GNUNET_OS_start_process (struct GNUNET_DISK_PipeHandle *pipe_stdin, 
212                          struct GNUNET_DISK_PipeHandle *pipe_stdout, 
213                          const char *filename, ...);
214
215
216 /**
217  * Start a process.
218  *
219  * @param lsocks array of listen sockets to dup systemd-style (or NULL);
220  *         must be NULL on platforms where dup is not supported
221  * @param filename name of the binary
222  * @param argv NULL-terminated list of arguments to the process,
223  *             including the process name as the first argument
224  * @return process ID of the new process, -1 on error
225  */
226 pid_t GNUNET_OS_start_process_v (const int *lsocks,
227                                  const char *filename, char *const argv[]);
228
229
230 /**
231  * Retrieve the status of a process
232  * @param proc process ID
233  * @param type status type
234  * @param code return code/signal number
235  * @return GNUNET_OK on success, GNUNET_NO if the process is still running, GNUNET_SYSERR otherwise
236  */
237 int GNUNET_OS_process_status (pid_t proc, enum GNUNET_OS_ProcessStatusType *type,
238     unsigned long *code);
239
240
241 /**
242  * Wait for a process
243  * @param proc process ID to wait for
244  * @return GNUNET_OK on success, GNUNET_SYSERR otherwise
245  */
246 int GNUNET_OS_process_wait (pid_t proc);
247
248
249 #if 0                           /* keep Emacsens' auto-indent happy */
250 {
251 #endif
252 #ifdef __cplusplus
253 }
254 #endif
255
256
257 /* ifndef GNUNET_OS_LIB_H */
258 #endif
259 /* end of gnunet_os_lib.h */