e455f2082b5185e19f23f6388c565c15e86ca6f5
[oweals/gnunet.git] / src / include / gnunet_common.h
1 /*
2      This file is part of GNUnet.
3      Copyright (C) 2006-2013 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 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  * @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  * @defgroup logging Logging
31  * @defgroup memory Memory management
32  */
33 #ifndef GNUNET_COMMON_H
34 #define GNUNET_COMMON_H
35
36 #if HAVE_SYS_SOCKET_H
37 #include <sys/socket.h>
38 #endif
39 #if HAVE_NETINET_IN_H
40 #include <netinet/in.h>
41 #endif
42 #ifdef MINGW
43 #include "winproc.h"
44 #endif
45 #ifdef HAVE_STDINT_H
46 #include <stdint.h>
47 #endif
48 #ifdef HAVE_STDARG_H
49 #include <stdarg.h>
50 #endif
51
52 #ifdef HAVE_BYTESWAP_H
53 #include <byteswap.h>
54 #endif
55
56 #ifdef __cplusplus
57 extern "C"
58 {
59 #if 0                           /* keep Emacsens' auto-indent happy */
60 }
61 #endif
62 #endif
63
64 /**
65  * Version of the API (for entire gnunetutil.so library).
66  */
67 #define GNUNET_UTIL_VERSION 0x000A0100
68
69
70 /**
71  * Named constants for return values.  The following invariants hold:
72  * `GNUNET_NO == 0` (to allow `if (GNUNET_NO)`) `GNUNET_OK !=
73  * GNUNET_SYSERR`, `GNUNET_OK != GNUNET_NO`, `GNUNET_NO !=
74  * GNUNET_SYSERR` and finally `GNUNET_YES != GNUNET_NO`.
75  */
76 #define GNUNET_OK      1
77 #define GNUNET_SYSERR -1
78 #define GNUNET_YES     1
79 #define GNUNET_NO      0
80
81 #define GNUNET_MIN(a,b) (((a) < (b)) ? (a) : (b))
82
83 #define GNUNET_MAX(a,b) (((a) > (b)) ? (a) : (b))
84
85 /* some systems use one underscore only, and mingw uses no underscore... */
86 #ifndef __BYTE_ORDER
87 #ifdef _BYTE_ORDER
88 #define __BYTE_ORDER _BYTE_ORDER
89 #else
90 #ifdef BYTE_ORDER
91 #define __BYTE_ORDER BYTE_ORDER
92 #endif
93 #endif
94 #endif
95 #ifndef __BIG_ENDIAN
96 #ifdef _BIG_ENDIAN
97 #define __BIG_ENDIAN _BIG_ENDIAN
98 #else
99 #ifdef BIG_ENDIAN
100 #define __BIG_ENDIAN BIG_ENDIAN
101 #endif
102 #endif
103 #endif
104 #ifndef __LITTLE_ENDIAN
105 #ifdef _LITTLE_ENDIAN
106 #define __LITTLE_ENDIAN _LITTLE_ENDIAN
107 #else
108 #ifdef LITTLE_ENDIAN
109 #define __LITTLE_ENDIAN LITTLE_ENDIAN
110 #endif
111 #endif
112 #endif
113
114 /**
115  * @ingroup logging
116  * define #GNUNET_EXTRA_LOGGING if using this header outside the GNUnet source
117  * tree where gnunet_config.h is unavailable
118  */
119 #ifndef GNUNET_EXTRA_LOGGING
120 #define GNUNET_EXTRA_LOGGING 0
121 #endif
122
123 /**
124  * Endian operations
125  */
126
127 # if __BYTE_ORDER == __LITTLE_ENDIAN
128 #  define GNUNET_htobe16(x) __bswap_16 (x)
129 #  define GNUNET_htole16(x) (x)
130 #  define GNUNET_be16toh(x) __bswap_16 (x)
131 #  define GNUNET_le16toh(x) (x)
132
133 #  define GNUNET_htobe32(x) __bswap_32 (x)
134 #  define GNUNET_htole32(x) (x)
135 #  define GNUNET_be32toh(x) __bswap_32 (x)
136 #  define GNUNET_le32toh(x) (x)
137
138 #  define GNUNET_htobe64(x) __bswap_64 (x)
139 #  define GNUNET_htole64(x) (x)
140 #  define GNUNET_be64toh(x) __bswap_64 (x)
141 #  define GNUNET_le64toh(x) (x)
142 #endif
143 # if __BYTE_ORDER == __BIG_ENDIAN
144 #  define GNUNET_htobe16(x) (x)
145 #  define GNUNET_htole16(x) __bswap_16 (x)
146 #  define GNUNET_be16toh(x) (x)
147 #  define GNUNET_le16toh(x) __bswap_16 (x)
148
149 #  define GNUNET_htobe32(x) (x)
150 #  define GNUNET_htole32(x) __bswap_32 (x)
151 #  define GNUNET_be32toh(x) (x)
152 #  define GNUNET_le32toh(x) __bswap_32 (x)
153
154 #  define GNUNET_htobe64(x) (x)
155 #  define GNUNET_htole64(x) __bswap_64 (x)
156 #  define GNUNET_be64toh(x) (x)
157 #  define GNUNET_le64toh(x) __bswap_64 (x)
158 #endif
159
160
161
162
163 /**
164  * gcc-ism to get packed structs.
165  */
166 #define GNUNET_PACKED __attribute__((packed))
167
168 /**
169  * gcc-ism to get gcc bitfield layout when compiling with -mms-bitfields
170  */
171 #if MINGW
172 #define GNUNET_GCC_STRUCT_LAYOUT __attribute__((gcc_struct))
173 #else
174 #define GNUNET_GCC_STRUCT_LAYOUT
175 #endif
176
177 /**
178  * gcc-ism to force alignment; we use this to align char-arrays
179  * that may then be cast to 'struct's.  See also gcc
180  * bug #33594.
181  */
182 #ifdef __BIGGEST_ALIGNMENT__
183 #define GNUNET_ALIGN __attribute__((aligned (__BIGGEST_ALIGNMENT__)))
184 #else
185 #define GNUNET_ALIGN __attribute__((aligned (8)))
186 #endif
187
188 /**
189  * gcc-ism to document unused arguments
190  */
191 #define GNUNET_UNUSED __attribute__((unused))
192
193 /**
194  * gcc-ism to document functions that don't return
195  */
196 #define GNUNET_NORETURN __attribute__((noreturn))
197
198 #if MINGW
199 #if __GNUC__ > 3
200 /**
201  * gcc 4.x-ism to pack structures even on W32 (to be used before structs);
202  * Using this would cause structs to be unaligned on the stack on Sparc,
203  * so we *only* use this on W32 (see #670578 from Debian); fortunately,
204  * W32 doesn't run on sparc anyway.
205  */
206 #define GNUNET_NETWORK_STRUCT_BEGIN \
207   _Pragma("pack(push)") \
208   _Pragma("pack(1)")
209
210 /**
211  * gcc 4.x-ism to pack structures even on W32 (to be used after structs)
212  * Using this would cause structs to be unaligned on the stack on Sparc,
213  * so we *only* use this on W32 (see #670578 from Debian); fortunately,
214  * W32 doesn't run on sparc anyway.
215  */
216 #define GNUNET_NETWORK_STRUCT_END _Pragma("pack(pop)")
217
218 #else
219 #error gcc 4.x or higher required on W32 systems
220 #endif
221 #else
222 /**
223  * Define as empty, GNUNET_PACKED should suffice, but this won't work on W32
224  */
225 #define GNUNET_NETWORK_STRUCT_BEGIN
226
227 /**
228  * Define as empty, GNUNET_PACKED should suffice, but this won't work on W32;
229  */
230 #define GNUNET_NETWORK_STRUCT_END
231 #endif
232
233 /* ************************ super-general types *********************** */
234
235 GNUNET_NETWORK_STRUCT_BEGIN
236
237 /**
238  * Header for all communications.
239  */
240 struct GNUNET_MessageHeader
241 {
242
243   /**
244    * The length of the struct (in bytes, including the length field itself),
245    * in big-endian format.
246    */
247   uint16_t size GNUNET_PACKED;
248
249   /**
250    * The type of the message (GNUNET_MESSAGE_TYPE_XXXX), in big-endian format.
251    */
252   uint16_t type GNUNET_PACKED;
253
254 };
255
256
257 /**
258  * Answer from service to client about last operation.
259  */
260 struct GNUNET_OperationResultMessage
261 {
262   struct GNUNET_MessageHeader header;
263
264   uint32_t reserved GNUNET_PACKED;
265
266   /**
267    * Operation ID.
268    */
269   uint64_t op_id GNUNET_PACKED;
270
271   /**
272    * Status code for the operation.
273    */
274   uint64_t result_code GNUNET_PACKED;
275
276   /* Followed by data. */
277 };
278
279 GNUNET_NETWORK_STRUCT_END
280
281 /**
282  * Function called with a filename.
283  *
284  * @param cls closure
285  * @param filename complete filename (absolute path)
286  * @return #GNUNET_OK to continue to iterate,
287  *  #GNUNET_NO to stop iteration with no error,
288  *  #GNUNET_SYSERR to abort iteration with error!
289  */
290 typedef int
291 (*GNUNET_FileNameCallback) (void *cls,
292                             const char *filename);
293
294
295 /**
296  * Generic continuation callback.
297  *
298  * @param cls  Closure.
299  */
300 typedef void
301 (*GNUNET_ContinuationCallback) (void *cls);
302
303
304 /**
305  * Function called with the result of an asynchronous operation.
306  *
307  * @param cls
308  *        Closure.
309  * @param result_code
310  *        Result code for the operation.
311  * @param data
312  *        Data result for the operation.
313  * @param data_size
314  *        Size of @a data.
315  */
316 typedef void
317 (*GNUNET_ResultCallback) (void *cls, int64_t result_code,
318                           const void *data, uint16_t data_size);
319
320
321 /* ****************************** logging ***************************** */
322
323 /**
324  * @ingroup logging
325  * Types of errors.
326  */
327 enum GNUNET_ErrorType
328 {
329   GNUNET_ERROR_TYPE_UNSPECIFIED = -1,
330   GNUNET_ERROR_TYPE_NONE = 0,
331   GNUNET_ERROR_TYPE_ERROR = 1,
332   GNUNET_ERROR_TYPE_WARNING = 2,
333   GNUNET_ERROR_TYPE_INFO = 4,
334   GNUNET_ERROR_TYPE_DEBUG = 8,
335   GNUNET_ERROR_TYPE_INVALID = 16,
336   GNUNET_ERROR_TYPE_BULK = 32
337 };
338
339
340 /**
341  * @ingroup logging
342  * User-defined handler for log messages.
343  *
344  * @param cls closure
345  * @param kind severeity
346  * @param component what component is issuing the message?
347  * @param date when was the message logged?
348  * @param message what is the message
349  */
350 typedef void
351 (*GNUNET_Logger) (void *cls,
352                   enum GNUNET_ErrorType kind,
353                   const char *component,
354                   const char *date,
355                   const char *message);
356
357
358 /**
359  * @ingroup logging
360  * Get the number of log calls that are going to be skipped
361  *
362  * @return number of log calls to be ignored
363  */
364 int
365 GNUNET_get_log_skip (void);
366
367
368 #if !defined(GNUNET_CULL_LOGGING)
369 int
370 GNUNET_get_log_call_status (int caller_level,
371                             const char *comp,
372                             const char *file,
373                             const char *function,
374                             int line);
375 #endif
376
377
378 /**
379  * @ingroup logging
380  * Main log function.
381  *
382  * @param kind how serious is the error?
383  * @param message what is the message (format string)
384  * @param ... arguments for format string
385  */
386 void
387 GNUNET_log_nocheck (enum GNUNET_ErrorType kind, const char *message, ...);
388
389 /* from glib */
390 #if defined(__GNUC__) && (__GNUC__ > 2) && defined(__OPTIMIZE__)
391 #define _GNUNET_BOOLEAN_EXPR(expr)              \
392  __extension__ ({                               \
393    int _gnunet_boolean_var_;                    \
394    if (expr)                                    \
395       _gnunet_boolean_var_ = 1;                 \
396    else                                         \
397       _gnunet_boolean_var_ = 0;                 \
398    _gnunet_boolean_var_;                        \
399 })
400 #define GN_LIKELY(expr) (__builtin_expect (_GNUNET_BOOLEAN_EXPR(expr), 1))
401 #define GN_UNLIKELY(expr) (__builtin_expect (_GNUNET_BOOLEAN_EXPR(expr), 0))
402 #else
403 #define GN_LIKELY(expr) (expr)
404 #define GN_UNLIKELY(expr) (expr)
405 #endif
406
407 #if !defined(GNUNET_LOG_CALL_STATUS)
408 #define GNUNET_LOG_CALL_STATUS -1
409 #endif
410
411
412 /**
413  * @ingroup logging
414  * Log function that specifies an alternative component.
415  * This function should be used by plugins.
416  *
417  * @param kind how serious is the error?
418  * @param comp component responsible for generating the message
419  * @param message what is the message (format string)
420  * @param ... arguments for format string
421  */
422 void
423 GNUNET_log_from_nocheck (enum GNUNET_ErrorType kind, const char *comp,
424                          const char *message, ...);
425
426 #if !defined(GNUNET_CULL_LOGGING)
427 #define GNUNET_log_from(kind,comp,...) do { int log_line = __LINE__;\
428   static int log_call_enabled = GNUNET_LOG_CALL_STATUS;\
429   if ((GNUNET_EXTRA_LOGGING > 0) || ((GNUNET_ERROR_TYPE_DEBUG & (kind)) == 0)) { \
430     if (GN_UNLIKELY(log_call_enabled == -1))\
431       log_call_enabled = GNUNET_get_log_call_status ((kind) & (~GNUNET_ERROR_TYPE_BULK), (comp), __FILE__, __FUNCTION__, log_line); \
432     if (GN_UNLIKELY(GNUNET_get_log_skip () > 0)) { GNUNET_log_skip (-1, GNUNET_NO); }\
433     else {\
434       if (GN_UNLIKELY(log_call_enabled))\
435         GNUNET_log_from_nocheck ((kind), comp, __VA_ARGS__);    \
436     }\
437   }\
438 } while (0)
439
440  #define GNUNET_log(kind,...) do { int log_line = __LINE__;\
441   static int log_call_enabled = GNUNET_LOG_CALL_STATUS;\
442   if ((GNUNET_EXTRA_LOGGING > 0) || ((GNUNET_ERROR_TYPE_DEBUG & (kind)) == 0)) { \
443     if (GN_UNLIKELY(log_call_enabled == -1))\
444       log_call_enabled = GNUNET_get_log_call_status ((kind) & (~GNUNET_ERROR_TYPE_BULK), NULL, __FILE__, __FUNCTION__, log_line);\
445     if (GN_UNLIKELY(GNUNET_get_log_skip () > 0)) { GNUNET_log_skip (-1, GNUNET_NO); }\
446     else {\
447       if (GN_UNLIKELY(log_call_enabled))\
448         GNUNET_log_nocheck ((kind), __VA_ARGS__);       \
449     }\
450   }\
451 } while (0)
452 #else
453 #define GNUNET_log(...)
454 #define GNUNET_log_from(...)
455 #endif
456
457
458 /**
459  * @ingroup logging
460  * Log error message about missing configuration option.
461  *
462  * @param kind log level
463  * @param section section with missing option
464  * @param option name of missing option
465  */
466 void
467 GNUNET_log_config_missing (enum GNUNET_ErrorType kind,
468                            const char *section,
469                            const char *option);
470
471
472 /**
473  * @ingroup logging
474  * Log error message about invalid configuration option value.
475  *
476  * @param kind log level
477  * @param section section with invalid option
478  * @param option name of invalid option
479  * @param required what is required that is invalid about the option
480  */
481 void
482 GNUNET_log_config_invalid (enum GNUNET_ErrorType kind,
483                            const char *section,
484                            const char *option,
485                            const char *required);
486
487
488 /**
489  * @ingroup logging
490  * Abort the process, generate a core dump if possible.
491  * Most code should use `GNUNET_assert (0)` instead to
492  * first log the location of the failure.
493  */
494 void
495 GNUNET_abort_ (void) GNUNET_NORETURN;
496
497
498 /**
499  * @ingroup logging
500  * Ignore the next @a n calls to the log function.
501  *
502  * @param n number of log calls to ignore (could be negative)
503  * @param check_reset #GNUNET_YES to assert that the log skip counter is currently zero
504  */
505 void
506 GNUNET_log_skip (int n,
507                  int check_reset);
508
509
510 /**
511  * @ingroup logging
512  * Setup logging.
513  *
514  * @param comp default component to use
515  * @param loglevel what types of messages should be logged
516  * @param logfile change logging to logfile (use NULL to keep stderr)
517  * @return #GNUNET_OK on success, #GNUNET_SYSERR if logfile could not be opened
518  */
519 int
520 GNUNET_log_setup (const char *comp,
521                   const char *loglevel,
522                   const char *logfile);
523
524
525 /**
526  * @ingroup logging
527  * Add a custom logger.  Note that installing any custom logger
528  * will disable the standard logger.  When multiple custom loggers
529  * are installed, all will be called.  The standard logger will
530  * only be used if no custom loggers are present.
531  *
532  * @param logger log function
533  * @param logger_cls closure for @a logger
534  */
535 void
536 GNUNET_logger_add (GNUNET_Logger logger,
537                    void *logger_cls);
538
539
540 /**
541  * @ingroup logging
542  * Remove a custom logger.
543  *
544  * @param logger log function
545  * @param logger_cls closure for @a logger
546  */
547 void
548 GNUNET_logger_remove (GNUNET_Logger logger,
549                       void *logger_cls);
550
551
552 /**
553  * @ingroup logging
554  * Convert a hash value to a string (for printing debug messages).
555  * This is one of the very few calls in the entire API that is
556  * NOT reentrant!
557  *
558  * @param hc the hash code
559  * @return string
560  */
561 const char *
562 GNUNET_h2s (const struct GNUNET_HashCode * hc);
563
564
565 /**
566  * @ingroup logging
567  * Convert a hash value to a string (for printing debug messages).
568  * This prints all 104 characters of a hashcode!
569  * This is one of the very few calls in the entire API that is
570  * NOT reentrant!
571  *
572  * @param hc the hash code
573  * @return string
574  */
575 const char *
576 GNUNET_h2s_full (const struct GNUNET_HashCode * hc);
577
578
579 /**
580  * @ingroup logging
581  * Convert a peer identity to a string (for printing debug messages).
582  * This is one of the very few calls in the entire API that is
583  * NOT reentrant!
584  *
585  * @param pid the peer identity
586  * @return string form of the pid; will be overwritten by next
587  *         call to #GNUNET_i2s().
588  */
589 const char *
590 GNUNET_i2s (const struct GNUNET_PeerIdentity *pid);
591
592
593 /**
594  * @ingroup logging
595  * Convert a peer identity to a string (for printing debug messages).
596  * This is one of the very few calls in the entire API that is
597  * NOT reentrant!
598  *
599  * @param pid the peer identity
600  * @return string form of the pid; will be overwritten by next
601  *         call to #GNUNET_i2s_full().
602  */
603 const char *
604 GNUNET_i2s_full (const struct GNUNET_PeerIdentity *pid);
605
606
607 /**
608  * @ingroup logging
609  * Convert a "struct sockaddr*" (IPv4 or IPv6 address) to a string
610  * (for printing debug messages).  This is one of the very few calls
611  * in the entire API that is NOT reentrant!
612  *
613  * @param addr the address
614  * @param addrlen the length of the @a addr
615  * @return nicely formatted string for the address
616  *  will be overwritten by next call to #GNUNET_a2s().
617  */
618 const char *
619 GNUNET_a2s (const struct sockaddr *addr,
620             socklen_t addrlen);
621
622
623 /**
624  * @ingroup logging
625  * Convert error type to string.
626  *
627  * @param kind type to convert
628  * @return string corresponding to the type
629  */
630 const char *
631 GNUNET_error_type_to_string (enum GNUNET_ErrorType kind);
632
633
634 /**
635  * @ingroup logging
636  * Use this for fatal errors that cannot be handled
637  */
638 #define GNUNET_assert(cond) do { if (! (cond)) { GNUNET_log(GNUNET_ERROR_TYPE_ERROR, _("Assertion failed at %s:%d.\n"), __FILE__, __LINE__); GNUNET_abort_(); } } while(0)
639
640
641 /**
642  * @ingroup logging
643  * Use this for fatal errors that cannot be handled
644  */
645 #define GNUNET_assert_at(cond, f, l) do { if (! (cond)) { GNUNET_log(GNUNET_ERROR_TYPE_ERROR, _("Assertion failed at %s:%d.\n"), f, l); GNUNET_abort_(); } } while(0)
646
647
648 /**
649  * @ingroup logging
650  * Use this for internal assertion violations that are
651  * not fatal (can be handled) but should not occur.
652  */
653 #define GNUNET_break(cond)  do { if (! (cond)) { GNUNET_log(GNUNET_ERROR_TYPE_ERROR, _("Assertion failed at %s:%d.\n"), __FILE__, __LINE__); } } while(0)
654
655
656 /**
657  * @ingroup logging
658  * Use this for assertion violations caused by other
659  * peers (i.e. protocol violations).  We do not want to
660  * confuse end-users (say, some other peer runs an
661  * older, broken or incompatible GNUnet version), but
662  * we still want to see these problems during
663  * development and testing.  "OP == other peer".
664  */
665 #define GNUNET_break_op(cond)  do { if (! (cond)) { GNUNET_log(GNUNET_ERROR_TYPE_WARNING | GNUNET_ERROR_TYPE_BULK, _("External protocol violation detected at %s:%d.\n"), __FILE__, __LINE__); } } while(0)
666
667
668 /**
669  * @ingroup logging
670  * Log an error message at log-level 'level' that indicates
671  * a failure of the command 'cmd' with the message given
672  * by strerror(errno).
673  */
674 #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)
675
676
677 /**
678  * @ingroup logging
679  * Log an error message at log-level 'level' that indicates
680  * a failure of the command 'cmd' with the message given
681  * by strerror(errno).
682  */
683 #define GNUNET_log_from_strerror(level, component, cmd) do { GNUNET_log_from (level, component, _("`%s' failed at %s:%d with error: %s\n"), cmd, __FILE__, __LINE__, STRERROR(errno)); } while(0)
684
685
686 /**
687  * @ingroup logging
688  * Log an error message at log-level 'level' that indicates
689  * a failure of the command 'cmd' with the message given
690  * by strerror(errno).
691  */
692 #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)
693
694
695 /**
696  * @ingroup logging
697  * Log an error message at log-level 'level' that indicates
698  * a failure of the command 'cmd' with the message given
699  * by strerror(errno).
700  */
701 #define GNUNET_log_from_strerror_file(level, component, cmd, filename) do { GNUNET_log_from (level, component, _("`%s' failed on file `%s' at %s:%d with error: %s\n"), cmd, filename,__FILE__, __LINE__, STRERROR(errno)); } while(0)
702
703 /* ************************* endianess conversion ****************** */
704
705 /**
706  * Convert unsigned 64-bit integer to network byte order.
707  *
708  * @param n
709  *        The value in host byte order.
710  *
711  * @return The same value in network byte order.
712  */
713 uint64_t
714 GNUNET_htonll (uint64_t n);
715
716
717 /**
718  * Convert unsigned 64-bit integer to host byte order.
719  *
720  * @param n
721  *        The value in network byte order.
722  *
723  * @return The same value in host byte order.
724  */
725 uint64_t
726 GNUNET_ntohll (uint64_t n);
727
728
729 /**
730  * Convert double to network byte order.
731  *
732  * @param d
733  *        The value in host byte order.
734  *
735  * @return The same value in network byte order.
736  */
737 double
738 GNUNET_hton_double (double d);
739
740
741 /**
742  * Convert double to host byte order
743  *
744  * @param d
745  *        The value in network byte order.
746  *
747  * @return The same value in host byte order.
748  */
749 double
750 GNUNET_ntoh_double (double d);
751
752
753 /* ************************* allocation functions ****************** */
754
755 /**
756  * @ingroup memory
757  * Maximum allocation with GNUNET_malloc macro.
758  */
759 #define GNUNET_MAX_MALLOC_CHECKED (1024 * 1024 * 40)
760
761 /**
762  * @ingroup memory
763  * Allocate a struct or union of the given @a type.
764  * Wrapper around #GNUNET_malloc that returns a pointer
765  * to the newly created object of the correct type.
766  *
767  * @param type name of the struct or union, i.e. pass 'struct Foo'.
768  */
769 #define GNUNET_new(type) (type *) GNUNET_malloc (sizeof (type))
770
771 /**
772  * @ingroup memory
773  * Allocate a size @a n array with structs or unions of the given @a type.
774  * Wrapper around #GNUNET_malloc that returns a pointer
775  * to the newly created objects of the correct type.
776  *
777  * @param n number of elements in the array
778  * @param type name of the struct or union, i.e. pass 'struct Foo'.
779  */
780 #define GNUNET_new_array(n, type) (type *) GNUNET_malloc ((n) * sizeof (type))
781
782 /**
783  * @ingroup memory
784  * Wrapper around malloc. Allocates size bytes of memory.
785  * The memory will be zero'ed out.
786  *
787  * @param size the number of bytes to allocate, must be
788  *        smaller than 40 MB.
789  * @return pointer to size bytes of memory, never NULL (!)
790  */
791 #define GNUNET_malloc(size) GNUNET_xmalloc_(size, __FILE__, __LINE__)
792
793 /**
794  * @ingroup memory
795  * Allocate and initialize a block of memory.
796  *
797  * @param buf data to initalize the block with
798  * @param size the number of bytes in buf (and size of the allocation)
799  * @return pointer to size bytes of memory, never NULL (!)
800  */
801 #define GNUNET_memdup(buf,size) GNUNET_xmemdup_(buf, size, __FILE__, __LINE__)
802
803 /**
804  * @ingroup memory
805  * Wrapper around malloc. Allocates size bytes of memory.
806  * The memory will be zero'ed out.
807  *
808  * @param size the number of bytes to allocate
809  * @return pointer to size bytes of memory, NULL if we do not have enough memory
810  */
811 #define GNUNET_malloc_large(size) GNUNET_xmalloc_unchecked_(size, __FILE__, __LINE__)
812
813 /**
814  * @ingroup memory
815  * Wrapper around realloc. Rellocates size bytes of memory.
816  *
817  * @param ptr the pointer to reallocate
818  * @param size the number of bytes to reallocate
819  * @return pointer to size bytes of memory
820  */
821 #define GNUNET_realloc(ptr, size) GNUNET_xrealloc_(ptr, size, __FILE__, __LINE__)
822
823 /**
824  * @ingroup memory
825  * Wrapper around free. Frees the memory referred to by ptr.
826  * Note that is is generally better to free memory that was
827  * allocated with #GNUNET_array_grow using #GNUNET_array_grow(mem, size, 0) instead of #GNUNET_free.
828  *
829  * @param ptr location where to free the memory. ptr must have
830  *     been returned by #GNUNET_strdup, #GNUNET_strndup, #GNUNET_malloc or #GNUNET_array_grow earlier.
831  */
832 #define GNUNET_free(ptr) GNUNET_xfree_(ptr, __FILE__, __LINE__)
833
834 /**
835  * @ingroup memory
836  * Free the memory pointed to by ptr if ptr is not NULL.
837  * Equivalent to `if (NULL != ptr) GNUNET_free(ptr)`.
838  *
839  * @param ptr the location in memory to free
840  */
841 #define GNUNET_free_non_null(ptr) do { void * __x__ = ptr; if (__x__ != NULL) { GNUNET_free(__x__); } } while(0)
842
843 /**
844  * @ingroup memory
845  * Wrapper around #GNUNET_xstrdup_.  Makes a copy of the zero-terminated string
846  * pointed to by a.
847  *
848  * @param a pointer to a zero-terminated string
849  * @return a copy of the string including zero-termination
850  */
851 #define GNUNET_strdup(a) GNUNET_xstrdup_(a,__FILE__,__LINE__)
852
853 /**
854  * @ingroup memory
855  * Wrapper around #GNUNET_xstrndup_.  Makes a partial copy of the string
856  * pointed to by a.
857  *
858  * @param a pointer to a string
859  * @param length of the string to duplicate
860  * @return a partial copy of the string including zero-termination
861  */
862 #define GNUNET_strndup(a,length) GNUNET_xstrndup_(a,length,__FILE__,__LINE__)
863
864 /**
865  * @ingroup memory
866  * Grow a well-typed (!) array.  This is a convenience
867  * method to grow a vector @a arr of size @a size
868  * to the new (target) size @a tsize.
869  * <p>
870  *
871  * Example (simple, well-typed stack):
872  *
873  * <pre>
874  * static struct foo * myVector = NULL;
875  * static int myVecLen = 0;
876  *
877  * static void push(struct foo * elem) {
878  *   GNUNET_array_grow(myVector, myVecLen, myVecLen+1);
879  *   memcpy(&myVector[myVecLen-1], elem, sizeof(struct foo));
880  * }
881  *
882  * static void pop(struct foo * elem) {
883  *   if (myVecLen == 0) die();
884  *   memcpy(elem, myVector[myVecLen-1], sizeof(struct foo));
885  *   GNUNET_array_grow(myVector, myVecLen, myVecLen-1);
886  * }
887  * </pre>
888  *
889  * @param arr base-pointer of the vector, may be NULL if size is 0;
890  *        will be updated to reflect the new address. The TYPE of
891  *        arr is important since size is the number of elements and
892  *        not the size in bytes
893  * @param size the number of elements in the existing vector (number
894  *        of elements to copy over)
895  * @param tsize the target size for the resulting vector, use 0 to
896  *        free the vector (then, arr will be NULL afterwards).
897  */
898 #define GNUNET_array_grow(arr,size,tsize) GNUNET_xgrow_((void**)&arr, sizeof(arr[0]), &size, tsize, __FILE__, __LINE__)
899
900 /**
901  * @ingroup memory
902  * Append an element to a list (growing the
903  * list by one).
904  */
905 #define GNUNET_array_append(arr,size,element) do { GNUNET_array_grow(arr,size,size+1); arr[size-1] = element; } while(0)
906
907 /**
908  * @ingroup memory
909  * Like snprintf, just aborts if the buffer is of insufficient size.
910  *
911  * @param buf pointer to buffer that is written to
912  * @param size number of bytes in @a buf
913  * @param format format strings
914  * @param ... data for format string
915  * @return number of bytes written to buf or negative value on error
916  */
917 int
918 GNUNET_snprintf (char *buf, size_t size, const char *format, ...);
919
920
921 /**
922  * @ingroup memory
923  * Like asprintf, just portable.
924  *
925  * @param buf set to a buffer of sufficient size (allocated, caller must free)
926  * @param format format string (see printf, fprintf, etc.)
927  * @param ... data for format string
928  * @return number of bytes in "*buf" excluding 0-termination
929  */
930 int
931 GNUNET_asprintf (char **buf, const char *format, ...);
932
933
934 /* ************** internal implementations, use macros above! ************** */
935
936 /**
937  * Allocate memory. Checks the return value, aborts if no more
938  * memory is available.  Don't use GNUNET_xmalloc_ directly. Use the
939  * #GNUNET_malloc macro.
940  * The memory will be zero'ed out.
941  *
942  * @param size number of bytes to allocate
943  * @param filename where is this call being made (for debugging)
944  * @param linenumber line where this call is being made (for debugging)
945  * @return allocated memory, never NULL
946  */
947 void *
948 GNUNET_xmalloc_ (size_t size, const char *filename, int linenumber);
949
950
951 /**
952  * Allocate and initialize memory. Checks the return value, aborts if no more
953  * memory is available.  Don't use GNUNET_xmemdup_ directly. Use the
954  * #GNUNET_memdup macro.
955  *
956  * @param buf buffer to initialize from (must contain size bytes)
957  * @param size number of bytes to allocate
958  * @param filename where is this call being made (for debugging)
959  * @param linenumber line where this call is being made (for debugging)
960  * @return allocated memory, never NULL
961  */
962 void *
963 GNUNET_xmemdup_ (const void *buf, size_t size, const char *filename,
964                  int linenumber);
965
966
967 /**
968  * Allocate memory.  This function does not check if the allocation
969  * request is within reasonable bounds, allowing allocations larger
970  * than 40 MB.  If you don't expect the possibility of very large
971  * allocations, use #GNUNET_malloc instead.  The memory will be zero'ed
972  * out.
973  *
974  * @param size number of bytes to allocate
975  * @param filename where is this call being made (for debugging)
976  * @param linenumber line where this call is being made (for debugging)
977  * @return pointer to size bytes of memory, NULL if we do not have enough memory
978  */
979 void *
980 GNUNET_xmalloc_unchecked_ (size_t size, const char *filename, int linenumber);
981
982
983 /**
984  * Reallocate memory. Checks the return value, aborts if no more
985  * memory is available.
986  */
987 void *
988 GNUNET_xrealloc_ (void *ptr, size_t n, const char *filename, int linenumber);
989
990
991 /**
992  * Free memory. Merely a wrapper for the case that we
993  * want to keep track of allocations.  Don't use GNUNET_xfree_
994  * directly. Use the #GNUNET_free macro.
995  *
996  * @param ptr pointer to memory to free
997  * @param filename where is this call being made (for debugging)
998  * @param linenumber line where this call is being made (for debugging)
999  */
1000 void
1001 GNUNET_xfree_ (void *ptr, const char *filename, int linenumber);
1002
1003
1004 /**
1005  * Dup a string. Don't call GNUNET_xstrdup_ directly. Use the #GNUNET_strdup macro.
1006  * @param str string to duplicate
1007  * @param filename where is this call being made (for debugging)
1008  * @param linenumber line where this call is being made (for debugging)
1009  * @return the duplicated string
1010  */
1011 char *
1012 GNUNET_xstrdup_ (const char *str, const char *filename, int linenumber);
1013
1014 /**
1015  * Dup partially a string. Don't call GNUNET_xstrndup_ directly. Use the #GNUNET_strndup macro.
1016  *
1017  * @param str string to duplicate
1018  * @param len length of the string to duplicate
1019  * @param filename where is this call being made (for debugging)
1020  * @param linenumber line where this call is being made (for debugging)
1021  * @return the duplicated string
1022  */
1023 char *
1024 GNUNET_xstrndup_ (const char *str, size_t len, const char *filename,
1025                   int linenumber);
1026
1027 /**
1028  * Grow an array, the new elements are zeroed out.
1029  * Grows old by (*oldCount-newCount)*elementSize
1030  * bytes and sets *oldCount to newCount.
1031  *
1032  * Don't call GNUNET_xgrow_ directly. Use the #GNUNET_array_grow macro.
1033  *
1034  * @param old address of the pointer to the array
1035  *        *old may be NULL
1036  * @param elementSize the size of the elements of the array
1037  * @param oldCount address of the number of elements in the *old array
1038  * @param newCount number of elements in the new array, may be 0 (then *old will be NULL afterwards)
1039  * @param filename where is this call being made (for debugging)
1040  * @param linenumber line where this call is being made (for debugging)
1041  */
1042 void
1043 GNUNET_xgrow_ (void **old, size_t elementSize, unsigned int *oldCount,
1044                unsigned int newCount, const char *filename, int linenumber);
1045
1046
1047 /**
1048  * @ingroup memory
1049  * Create a copy of the given message.
1050  *
1051  * @param msg message to copy
1052  * @return duplicate of the message
1053  */
1054 struct GNUNET_MessageHeader *
1055 GNUNET_copy_message (const struct GNUNET_MessageHeader *msg);
1056
1057
1058 #if __STDC_VERSION__ < 199901L
1059 #if __GNUC__ >= 2
1060 #define __func__ __FUNCTION__
1061 #else
1062 #define __func__ "<unknown>"
1063 #endif
1064 #endif
1065
1066
1067 /**
1068  * Valid task priorities.  Use these, do not pass random integers!
1069  * For various reasons (#3862 -- building with QT Creator, and
1070  * our restricted cross-compilation with emscripten) this cannot
1071  * be in gnunet_scheduler_lib.h, but it works if we declare it here.
1072  * Naturally, logically this is part of the scheduler.
1073  */
1074 enum GNUNET_SCHEDULER_Priority
1075 {
1076   /**
1077    * Run with the same priority as the current job.
1078    */
1079   GNUNET_SCHEDULER_PRIORITY_KEEP = 0,
1080
1081   /**
1082    * Run when otherwise idle.
1083    */
1084   GNUNET_SCHEDULER_PRIORITY_IDLE = 1,
1085
1086   /**
1087    * Run as background job (higher than idle,
1088    * lower than default).
1089    */
1090   GNUNET_SCHEDULER_PRIORITY_BACKGROUND = 2,
1091
1092   /**
1093    * Run with the default priority (normal
1094    * P2P operations).  Any task that is scheduled
1095    * without an explicit priority being specified
1096    * will run with this priority.
1097    */
1098   GNUNET_SCHEDULER_PRIORITY_DEFAULT = 3,
1099
1100   /**
1101    * Run with high priority (important requests).
1102    * Higher than DEFAULT.
1103    */
1104   GNUNET_SCHEDULER_PRIORITY_HIGH = 4,
1105
1106   /**
1107    * Run with priority for interactive tasks.
1108    * Higher than "HIGH".
1109    */
1110   GNUNET_SCHEDULER_PRIORITY_UI = 5,
1111
1112   /**
1113    * Run with priority for urgent tasks.  Use
1114    * for things like aborts and shutdowns that
1115    * need to preempt "UI"-level tasks.
1116    * Higher than "UI".
1117    */
1118   GNUNET_SCHEDULER_PRIORITY_URGENT = 6,
1119
1120   /**
1121    * This is an internal priority level that is only used for tasks
1122    * that are being triggered due to shutdown (they have automatically
1123    * highest priority).  User code must not use this priority level
1124    * directly.  Tasks run with this priority level that internally
1125    * schedule other tasks will see their original priority level
1126    * be inherited (unless otherwise specified).
1127    */
1128   GNUNET_SCHEDULER_PRIORITY_SHUTDOWN = 7,
1129
1130   /**
1131    * Number of priorities (must be the last priority).
1132    * This priority must not be used by clients.
1133    */
1134   GNUNET_SCHEDULER_PRIORITY_COUNT = 8
1135 };
1136
1137
1138 #if 0                           /* keep Emacsens' auto-indent happy */
1139 {
1140 #endif
1141 #ifdef __cplusplus
1142 }
1143 #endif
1144
1145 #endif /* GNUNET_COMMON_H */