transport fixes, hello API extension
[oweals/gnunet.git] / src / include / gnunet_common.h
1 /*
2      This file is part of GNUnet.
3      (C) 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_common.h
23  * @brief commonly used definitions; globals in this file
24  *        are exempt from the rule that the module name ("common")
25  *        must be part of the symbol name.
26  *
27  * @author Christian Grothoff
28  * @author Nils Durner
29  */
30 #ifndef GNUNET_COMMON_H
31 #define GNUNET_COMMON_H
32
33 /**
34  * Version of the API (for entire gnunetutil.so library).
35  */
36 #define GNUNET_UTIL_VERSION 0x00000000
37
38 /**
39  * Name used for "services" that are actually command-line
40  * programs invoked by the end user.
41  */
42 #define GNUNET_CLIENT_SERVICE_NAME "client"
43
44 /**
45  * Named constants for return values.  The following
46  * invariants hold: "GNUNET_NO == 0" (to allow "if (GNUNET_NO)")
47  * "GNUNET_OK != GNUNET_SYSERR", "GNUNET_OK != GNUNET_NO", "GNUNET_NO != GNUNET_SYSERR"
48  * and finally "GNUNET_YES != GNUNET_NO".
49  */
50 #define GNUNET_OK      1
51 #define GNUNET_SYSERR -1
52 #define GNUNET_YES     1
53 #define GNUNET_NO      0
54
55 #define GNUNET_MIN(a,b) (((a) < (b)) ? (a) : (b))
56
57 #define GNUNET_MAX(a,b) (((a) > (b)) ? (a) : (b))
58
59 /**
60  * gcc-ism to get packed structs.
61  */
62 #define GNUNET_PACKED __attribute__((packed))
63
64
65 /* ************************ super-general types *********************** */
66
67 /**
68  * Header for all communications.
69  */
70 struct GNUNET_MessageHeader
71 {
72
73   /**
74    * The length of the struct (in bytes, including the length field itself)
75    */
76   uint16_t size GNUNET_PACKED;
77
78   /**
79    * The type of the message (XX_CS_PROTO_XXXX)
80    */
81   uint16_t type GNUNET_PACKED;
82
83 };
84
85
86 /**
87  * @brief 512-bit hashcode
88  */
89 typedef struct
90 {
91   uint32_t bits[512 / 8 / sizeof (uint32_t)];   /* = 16 */
92 }
93 GNUNET_HashCode;
94
95
96 /**
97  * The identity of the host (basically the SHA-512 hashcode of
98  * it's public key).
99  */
100 struct GNUNET_PeerIdentity
101 {
102   GNUNET_HashCode hashPubKey GNUNET_PACKED;
103 };
104
105
106 /**
107  * Function called with a filename.
108  *
109  * @param filename complete filename (absolute path)
110  * @param cls closure
111  * @return GNUNET_OK to continue to iterate,
112  *  GNUNET_SYSERR to abort iteration with error!
113  */
114 typedef int (*GNUNET_FileNameCallback) (void *cls, const char *filename);
115
116
117 /* ****************************** logging ***************************** */
118
119 /**
120  * Types of errors.
121  */
122 enum GNUNET_ErrorType
123 {
124   GNUNET_ERROR_TYPE_ERROR = 1,
125   GNUNET_ERROR_TYPE_WARNING = 2,
126   GNUNET_ERROR_TYPE_INFO = 4,
127   GNUNET_ERROR_TYPE_DEBUG = 8,
128   GNUNET_ERROR_TYPE_INVALID = 16,
129   GNUNET_ERROR_TYPE_BULK = 32
130 };
131
132 /**
133  * User-defined handler for log messages.
134  *
135  * @param cls closure
136  * @param kind severeity
137  * @param component what component is issuing the message?
138  * @param date when was the message logged?
139  * @param message what is the message
140  */
141 typedef void (*GNUNET_Logger) (void *cls,
142                                enum GNUNET_ErrorType kind,
143                                const char *component,
144                                const char *date, const char *message);
145
146 /**
147  * Main log function.
148  *
149  * @param kind how serious is the error?
150  * @param message what is the message (format string)
151  * @param ... arguments for format string
152  */
153 void GNUNET_log (enum GNUNET_ErrorType kind, const char *message, ...);
154
155
156
157 /**
158  * Log function that specifies an alternative component.
159  * This function should be used by plugins.
160  *
161  * @param kind how serious is the error?
162  * @param comp component responsible for generating the message
163  * @param message what is the message (format string)
164  * @param ... arguments for format string
165  */
166 void
167 GNUNET_log_from (enum GNUNET_ErrorType kind,
168                  const char *comp, const char *message, ...);
169
170
171 /**
172  * Ignore the next n calls to the log function.
173  *
174  * @param n number of log calls to ignore, use 0 to
175  *  assert that the log skip counter is currently zero.
176  */
177 void GNUNET_log_skip (unsigned int n);
178
179
180 /**
181  * Setup logging.
182  *
183  * @param component default component to use
184  * @param loglevel what types of messages should be logged
185  * @param logfile change logging to logfile (use NULL to keep stderr)
186  * @return GNUNET_OK on success, GNUNET_SYSERR if logfile could not be opened
187  */
188 int
189 GNUNET_log_setup (const char *component,
190                   const char *loglevel, const char *logfile);
191
192 /**
193  * Add a custom logger.
194  *
195  * @param logger log function
196  * @param logger_cls closure for logger
197  */
198 void GNUNET_logger_add (GNUNET_Logger logger, void *logger_cls);
199
200 /**
201  * Remove a custom logger.
202  *
203  * @param logger log function
204  * @param logger_cls closure for logger
205  */
206 void GNUNET_logger_remove (GNUNET_Logger logger, void *logger_cls);
207
208
209 /**
210  * Convert a hash value to a string (for printing debug messages).
211  * This is one of the very few calls in the entire API that is
212  * NOT reentrant!
213  *
214  * @param hc the hash code
215  * @return string 
216  */
217 const char *GNUNET_h2s (const GNUNET_HashCode *hc);
218
219
220 /**
221  * Convert a peer identity to a string (for printing debug messages).
222  * This is one of the very few calls in the entire API that is
223  * NOT reentrant!
224  *
225  * @param pid the peer identity
226  * @return string form of the pid; will be overwritten by next
227  *         call to GNUNET_i2s.
228  */
229 const char *GNUNET_i2s (const struct GNUNET_PeerIdentity *pid);
230
231
232 /**
233  * Convert a "struct sockaddr*" (IPv4 or IPv6 address) to a string
234  * (for printing debug messages).  This is one of the very few calls
235  * in the entire API that is NOT reentrant!
236  *
237  * @param addr the address
238  * @param addrlen the length of the address
239  * @return nicely formatted string for the address
240  *  will be overwritten by next call to GNUNET_a2s.
241  */
242 const char *GNUNET_a2s (const struct sockaddr *addr,
243                         socklen_t addrlen);
244
245 /**
246  * Convert error type to string.
247  *
248  * @param kind type to convert
249  * @return string corresponding to the type
250  */
251 const char *GNUNET_error_type_to_string (enum GNUNET_ErrorType kind);
252
253 /**
254  * Use this for fatal errors that cannot be handled
255  */
256 #define GNUNET_assert(cond) do { if (! (cond)) { GNUNET_log(GNUNET_ERROR_TYPE_ERROR, _("Assertion failed at %s:%d.\n"), __FILE__, __LINE__); abort(); } } while(0)
257
258 /**
259  * Use this for fatal errors that cannot be handled
260  */
261 #define GNUNET_assert_at(cond, f, l) do { if (! (cond)) { GNUNET_log(GNUNET_ERROR_TYPE_ERROR, _("Assertion failed at %s:%d.\n"), f, l); abort(); } } while(0)
262
263 /**
264  * Use this for internal assertion violations that are
265  * not fatal (can be handled) but should not occur.
266  */
267 #define GNUNET_break(cond)  do { if (! (cond)) { GNUNET_log(GNUNET_ERROR_TYPE_ERROR, _("Assertion failed at %s:%d.\n"), __FILE__, __LINE__); } } while(0)
268
269 /**
270  * Use this for assertion violations caused by other
271  * peers (i.e. protocol violations).  We do not want to
272  * confuse end-users (say, some other peer runs an
273  * older, broken or incompatible GNUnet version), but
274  * we still want to see these problems during
275  * development and testing.  "OP == other peer".
276  */
277 #define GNUNET_break_op(cond)  do { if (! (cond)) { GNUNET_log(GNUNET_ERROR_TYPE_WARNING, _("External protocol violation detected at %s:%d.\n"), __FILE__, __LINE__); } } while(0)
278
279 /**
280  * Log an error message at log-level 'level' that indicates
281  * a failure of the command 'cmd' with the message given
282  * by strerror(errno).
283  */
284 #define GNUNET_log_strerror(level, cmd) do { GNUNET_log(level, _("`%s' failed at %s:%d with error: %s\n"), cmd, __FILE__, __LINE__, STRERROR(errno)); } while(0)
285
286 /**
287  * Log an error message at log-level 'level' that indicates
288  * a failure of the command 'cmd' with the message given
289  * by strerror(errno).
290  */
291 #define GNUNET_log_strerror_file(level, cmd, filename) do { GNUNET_log(level, _("`%s' failed on file `%s' at %s:%d with error: %s\n"), cmd, filename,__FILE__, __LINE__, STRERROR(errno)); } while(0)
292
293 /* ************************* endianess conversion ****************** */
294
295 /**
296  * Convert a long-long to host-byte-order.
297  * @param n the value in network byte order
298  * @return the same value in host byte order
299  */
300 unsigned long long GNUNET_ntohll (unsigned long long n);
301
302 /**
303  * Convert a long long to network-byte-order.
304  * @param n the value in host byte order
305  * @return the same value in network byte order
306  */
307 unsigned long long GNUNET_htonll (unsigned long long n);
308
309
310 /* ************************* allocation functions ****************** */
311
312 /**
313  * Maximum allocation with GNUNET_malloc macro.
314  */
315 #define GNUNET_MAX_MALLOC_CHECKED (1024 * 1024 * 40)
316
317 /**
318  * Wrapper around malloc. Allocates size bytes of memory.
319  * The memory will be zero'ed out.
320  *
321  * @param size the number of bytes to allocate, must be
322  *        smaller than 40 MB.
323  * @return pointer to size bytes of memory
324  */
325 #define GNUNET_malloc(size) GNUNET_xmalloc_(size, __FILE__, __LINE__)
326
327 /**
328  * Wrapper around malloc. Allocates size bytes of memory.
329  * The memory will be zero'ed out.
330  *
331  * @param size the number of bytes to allocate
332  * @return pointer to size bytes of memory
333  */
334 #define GNUNET_malloc_large(size) GNUNET_xmalloc_unchecked_(size, __FILE__, __LINE__)
335
336 /**
337  * Wrapper around realloc. Rellocates size bytes of memory.
338  *
339  * @param ptr the pointer to reallocate
340  * @param size the number of bytes to reallocate
341  * @return pointer to size bytes of memory
342  */
343 #define GNUNET_realloc(ptr, size) GNUNET_xrealloc_(ptr, size, __FILE__, __LINE__)
344
345 /**
346  * Wrapper around free. Frees the memory referred to by ptr.
347  * Note that is is generally better to free memory that was
348  * allocated with GNUNET_array_grow using GNUNET_array_grow(mem, size, 0) instead of GNUNET_free.
349  *
350  * @param ptr location where to free the memory. ptr must have
351  *     been returned by GNUNET_strdup, GNUNET_malloc or GNUNET_array_grow earlier.
352  */
353 #define GNUNET_free(ptr) GNUNET_xfree_(ptr, __FILE__, __LINE__)
354
355 /**
356  * Free the memory pointed to by ptr if ptr is not NULL.
357  * Equivalent to if (ptr!=null)GNUNET_free(ptr).
358  *
359  * @param ptr the location in memory to free
360  */
361 #define GNUNET_free_non_null(ptr) do { void * __x__ = ptr; if (__x__ != NULL) { GNUNET_free(__x__); } } while(0)
362
363 /**
364  * Wrapper around GNUNET_strdup.  Makes a copy of the zero-terminated string
365  * pointed to by a.
366  *
367  * @param a pointer to a zero-terminated string
368  * @return a copy of the string including zero-termination
369  */
370 #define GNUNET_strdup(a) GNUNET_xstrdup_(a,__FILE__,__LINE__)
371
372 /**
373  * Grow a well-typed (!) array.  This is a convenience
374  * method to grow a vector <tt>arr</tt> of size <tt>size</tt>
375  * to the new (target) size <tt>tsize</tt>.
376  * <p>
377  *
378  * Example (simple, well-typed stack):
379  *
380  * <pre>
381  * static struct foo * myVector = NULL;
382  * static int myVecLen = 0;
383  *
384  * static void push(struct foo * elem) {
385  *   GNUNET_array_grow(myVector, myVecLen, myVecLen+1);
386  *   memcpy(&myVector[myVecLen-1], elem, sizeof(struct foo));
387  * }
388  *
389  * static void pop(struct foo * elem) {
390  *   if (myVecLen == 0) die();
391  *   memcpy(elem, myVector[myVecLen-1], sizeof(struct foo));
392  *   GNUNET_array_grow(myVector, myVecLen, myVecLen-1);
393  * }
394  * </pre>
395  *
396  * @param arr base-pointer of the vector, may be NULL if size is 0;
397  *        will be updated to reflect the new address. The TYPE of
398  *        arr is important since size is the number of elements and
399  *        not the size in bytes
400  * @param size the number of elements in the existing vector (number
401  *        of elements to copy over)
402  * @param tsize the target size for the resulting vector, use 0 to
403  *        free the vector (then, arr will be NULL afterwards).
404  */
405 #define GNUNET_array_grow(arr,size,tsize) GNUNET_xgrow_((void**)&arr, sizeof(arr[0]), &size, tsize, __FILE__, __LINE__)
406
407 /**
408  * Append an element to a list (growing the
409  * list by one).
410  */
411 #define GNUNET_array_append(arr,size,element) do { GNUNET_array_grow(arr,size,size+1); arr[size-1] = element; } while(0)
412
413 /**
414  * Like snprintf, just aborts if the buffer is of insufficient size.
415  */
416 int GNUNET_snprintf (char *buf, size_t size, const char *format, ...);
417
418 /**
419  * Like asprintf, just portable.
420  */
421 int GNUNET_asprintf (char **buf, const char *format, ...);
422
423
424 /* ************** internal implementations, use macros above! ************** */
425
426 /**
427  * Allocate memory. Checks the return value, aborts if no more
428  * memory is available.  Don't use GNUNET_xmalloc_ directly. Use the
429  * GNUNET_malloc macro.
430  * The memory will be zero'ed out.
431  */
432 void *GNUNET_xmalloc_ (size_t size, const char *filename, int linenumber);
433
434 /**
435  * Allocate memory.  This function does not check if the
436  * allocation request is within reasonable bounds, allowing
437  * allocations larger than 40 MB.  If you don't expect the
438  * possibility of very large allocations, use GNUNET_malloc instead.
439  * The memory will be zero'ed out.
440  */
441 void *GNUNET_xmalloc_unchecked_ (size_t size,
442                                  const char *filename, int linenumber);
443
444 /**
445  * Reallocate memory. Checks the return value, aborts if no more
446  * memory is available.
447  */
448 void *GNUNET_xrealloc_ (void *ptr,
449                         const size_t n, const char *filename, int linenumber);
450
451 /**
452  * Free memory. Merely a wrapper for the case that we
453  * want to keep track of allocations.  Don't use GNUNET_xfree_
454  * directly. Use the GNUNET_free macro.
455  */
456 void GNUNET_xfree_ (void *ptr, const char *filename, int linenumber);
457
458
459 /**
460  * Dup a string. Don't call GNUNET_xstrdup_ directly. Use the GNUNET_strdup macro.
461  */
462 char *GNUNET_xstrdup_ (const char *str, const char *filename, int linenumber);
463
464 /**
465  * Grow an array, the new elements are zeroed out.
466  * Grows old by (*oldCount-newCount)*elementSize
467  * bytes and sets *oldCount to newCount.
468  *
469  * Don't call GNUNET_xgrow_ directly. Use the GNUNET_array_grow macro.
470  *
471  * @param old address of the pointer to the array
472  *        *old may be NULL
473  * @param elementSize the size of the elements of the array
474  * @param oldCount address of the number of elements in the *old array
475  * @param newCount number of elements in the new array, may be 0 (then *old will be NULL afterwards)
476  */
477 void GNUNET_xgrow_ (void **old,
478                     size_t elementSize,
479                     unsigned int *oldCount,
480                     unsigned int newCount,
481                     const char *filename, int linenumber);
482
483
484
485
486 #if __STDC_VERSION__ < 199901L
487 # if __GNUC__ >= 2
488 #  define __func__ __FUNCTION__
489 # else
490 #  define __func__ "<unknown>"
491 # endif
492 #endif
493
494 #endif /*GNUNET_COMMON_H_ */