d934c109e14db7b299c58ae92c5cfcda401f69fd
[oweals/gnunet.git] / src / include / gnunet_common.h
1 /*
2      This file is part of GNUnet.
3      (C) 2006, 2009 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 #if HAVE_SYS_SOCKET_H
34 #include <sys/socket.h>
35 #endif
36 #if HAVE_NETINET_IN_H
37 #include <netinet/in.h>
38 #endif
39 #ifdef MINGW
40 #include "winproc.h"
41 #endif
42 #ifdef HAVE_STDINT_H
43 #include <stdint.h>
44 #endif
45 #ifdef HAVE_STDARG_H
46 #include <stdarg.h>
47 #endif
48
49 /**
50  * Version of the API (for entire gnunetutil.so library).
51  */
52 #define GNUNET_UTIL_VERSION 0x00090100
53
54 /**
55  * Named constants for return values.  The following
56  * invariants hold: "GNUNET_NO == 0" (to allow "if (GNUNET_NO)")
57  * "GNUNET_OK != GNUNET_SYSERR", "GNUNET_OK != GNUNET_NO", "GNUNET_NO != GNUNET_SYSERR"
58  * and finally "GNUNET_YES != GNUNET_NO".
59  */
60 #define GNUNET_OK      1
61 #define GNUNET_SYSERR -1
62 #define GNUNET_YES     1
63 #define GNUNET_NO      0
64
65 #define GNUNET_MIN(a,b) (((a) < (b)) ? (a) : (b))
66
67 #define GNUNET_MAX(a,b) (((a) > (b)) ? (a) : (b))
68
69 /* some systems use one underscore only... */
70 #ifndef __BYTE_ORDER
71 #ifdef _BYTE_ORDER
72 #define __BYTE_ORDER _BYTE_ORDER
73 #define __LITTLE_ENDIAN _LITTLE_ENDIAN
74 #define __BIG_ENDIAN _BIG_ENDIAN
75 #endif
76 #endif
77
78 /**
79  * Endian operations
80  */
81
82 # if __BYTE_ORDER == __LITTLE_ENDIAN
83 #  define GNUNET_htobe16(x) __bswap_16 (x)
84 #  define GNUNET_htole16(x) (x)
85 #  define GNUNET_be16toh(x) __bswap_16 (x)
86 #  define GNUNET_le16toh(x) (x)
87
88 #  define GNUNET_htobe32(x) __bswap_32 (x)
89 #  define GNUNET_htole32(x) (x)
90 #  define GNUNET_be32toh(x) __bswap_32 (x)
91 #  define GNUNET_le32toh(x) (x)
92
93 #  define GNUNET_htobe64(x) __bswap_64 (x)
94 #  define GNUNET_htole64(x) (x)
95 #  define GNUNET_be64toh(x) __bswap_64 (x)
96 #  define GNUNET_le64toh(x) (x)
97 #endif
98 # if __BYTE_ORDER == __BIG_ENDIAN
99 #  define GNUNET_htobe16(x) (x)
100 #  define GNUNET_htole16(x) __bswap_16 (x)
101 #  define GNUNET_be16toh(x) (x)
102 #  define GNUNET_le16toh(x) __bswap_16 (x)
103
104 #  define GNUNET_htobe32(x) (x)
105 #  define GNUNET_htole32(x) __bswap_32 (x)
106 #  define GNUNET_be32toh(x) (x)
107 #  define GNUNET_le32toh(x) __bswap_32 (x)
108
109 #  define GNUNET_htobe64(x) (x)
110 #  define GNUNET_htole64(x) __bswap_64 (x)
111 #  define GNUNET_be64toh(x) (x)
112 #  define GNUNET_le64toh(x) __bswap_64 (x)
113 #endif
114
115
116
117
118 /**
119  * gcc-ism to get packed structs.
120  */
121 #define GNUNET_PACKED __attribute__((packed))
122
123 /**
124  * gcc-ism to document unused arguments
125  */
126 #define GNUNET_UNUSED __attribute__((unused))
127
128 /**
129  * gcc-ism to document functions that don't return
130  */
131 #define GNUNET_NORETURN __attribute__((noreturn))
132
133 #if __GNUC__ > 3
134 /**
135  * gcc 4.x-ism to pack structures even on W32 (to be used before structs)
136  */
137 #define GNUNET_NETWORK_STRUCT_BEGIN \
138   _Pragma("pack(push)") \
139   _Pragma("pack(1)")
140
141 /**
142  * gcc 4.x-ism to pack structures even on W32 (to be used after structs)
143  */
144 #define GNUNET_NETWORK_STRUCT_END _Pragma("pack(pop)")
145 #else
146 #ifdef MINGW
147 #error gcc 4.x or higher required on W32 systems
148 #endif
149 /**
150  * Good luck, GNUNET_PACKED should suffice, but this won't work on W32
151  */
152 #define GNUNET_NETWORK_STRUCT_BEGIN 
153
154 /**
155  * Good luck, GNUNET_PACKED should suffice, but this won't work on W32
156  */
157 #define GNUNET_NETWORK_STRUCT_END
158 #endif
159
160 /* ************************ super-general types *********************** */
161
162 GNUNET_NETWORK_STRUCT_BEGIN
163
164 /**
165  * Header for all communications.
166  */
167 struct GNUNET_MessageHeader
168 {
169
170   /**
171    * The length of the struct (in bytes, including the length field itself),
172    * in big-endian format.
173    */
174   uint16_t size GNUNET_PACKED;
175
176   /**
177    * The type of the message (GNUNET_MESSAGE_TYPE_XXXX), in big-endian format.
178    */
179   uint16_t type GNUNET_PACKED;
180
181 };
182 GNUNET_NETWORK_STRUCT_END
183
184 /**
185  * @brief 512-bit hashcode
186  */
187 typedef struct
188 {
189   uint32_t bits[512 / 8 / sizeof (uint32_t)];   /* = 16 */
190 }
191 GNUNET_HashCode;
192
193
194 GNUNET_NETWORK_STRUCT_BEGIN
195
196 /**
197  * The identity of the host (basically the SHA-512 hashcode of
198  * it's public key).
199  */
200 struct GNUNET_PeerIdentity
201 {
202   GNUNET_HashCode hashPubKey GNUNET_PACKED;
203 };
204 GNUNET_NETWORK_STRUCT_END
205
206 /**
207  * Function called with a filename.
208  *
209  * @param cls closure
210  * @param filename complete filename (absolute path)
211  * @return GNUNET_OK to continue to iterate,
212  *  GNUNET_SYSERR to abort iteration with error!
213  */
214 typedef int (*GNUNET_FileNameCallback) (void *cls, const char *filename);
215
216
217 /* ****************************** logging ***************************** */
218
219 /**
220  * Types of errors.
221  */
222 enum GNUNET_ErrorType
223 {
224   GNUNET_ERROR_TYPE_UNSPECIFIED = -1,
225   GNUNET_ERROR_TYPE_NONE = 0,
226   GNUNET_ERROR_TYPE_ERROR = 1,
227   GNUNET_ERROR_TYPE_WARNING = 2,
228   GNUNET_ERROR_TYPE_INFO = 4,
229   GNUNET_ERROR_TYPE_DEBUG = 8,
230   GNUNET_ERROR_TYPE_INVALID = 16,
231   GNUNET_ERROR_TYPE_BULK = 32
232 };
233
234
235 /**
236  * User-defined handler for log messages.
237  *
238  * @param cls closure
239  * @param kind severeity
240  * @param component what component is issuing the message?
241  * @param date when was the message logged?
242  * @param message what is the message
243  */
244 typedef void (*GNUNET_Logger) (void *cls, enum GNUNET_ErrorType kind,
245                                const char *component, const char *date,
246                                const char *message);
247
248
249 /**
250  * Number of log calls to ignore.
251  */
252 extern unsigned int skip_log;
253
254 #if !defined(GNUNET_CULL_LOGGING)
255 int
256 GNUNET_get_log_call_status (int caller_level, const char *comp,
257                             const char *file, const char *function, int line);
258 #endif
259 /**
260  * Main log function.
261  *
262  * @param kind how serious is the error?
263  * @param message what is the message (format string)
264  * @param ... arguments for format string
265  */
266 void
267 GNUNET_log_nocheck (enum GNUNET_ErrorType kind, const char *message, ...);
268
269 /* from glib */
270 #if defined(__GNUC__) && (__GNUC__ > 2) && defined(__OPTIMIZE__)
271 #define _GNUNET_BOOLEAN_EXPR(expr)              \
272  __extension__ ({                               \
273    int _gnunet_boolean_var_;                    \
274    if (expr)                                    \
275       _gnunet_boolean_var_ = 1;                 \
276    else                                         \
277       _gnunet_boolean_var_ = 0;                 \
278    _gnunet_boolean_var_;                        \
279 })
280 #define GN_LIKELY(expr) (__builtin_expect (_GNUNET_BOOLEAN_EXPR(expr), 1))
281 #define GN_UNLIKELY(expr) (__builtin_expect (_GNUNET_BOOLEAN_EXPR(expr), 0))
282 #else
283 #define GN_LIKELY(expr) (expr)
284 #define GN_UNLIKELY(expr) (expr)
285 #endif
286
287 #if !defined(GNUNET_LOG_CALL_STATUS)
288 #define GNUNET_LOG_CALL_STATUS -1
289 #endif
290
291 /**
292  * Log function that specifies an alternative component.
293  * This function should be used by plugins.
294  *
295  * @param kind how serious is the error?
296  * @param comp component responsible for generating the message
297  * @param message what is the message (format string)
298  * @param ... arguments for format string
299  */
300 void
301 GNUNET_log_from_nocheck (enum GNUNET_ErrorType kind, const char *comp,
302                          const char *message, ...);
303
304 #if !defined(GNUNET_CULL_LOGGING)
305 #define GNUNET_log_from(kind,comp,...) do { int log_line = __LINE__;\
306   static int log_call_enabled = GNUNET_LOG_CALL_STATUS;\
307   if (GN_UNLIKELY(log_call_enabled == -1))\
308     log_call_enabled = GNUNET_get_log_call_status ((kind) & (~GNUNET_ERROR_TYPE_BULK), comp, __FILE__, __FUNCTION__, log_line);\
309   if (GN_UNLIKELY(skip_log > 0)) {skip_log--;}\
310   else {\
311     if (GN_UNLIKELY(log_call_enabled))\
312       GNUNET_log_from_nocheck (kind, comp, __VA_ARGS__);\
313   }\
314 } while (0)
315
316 #define GNUNET_log(kind,...) do { int log_line = __LINE__;\
317   static int log_call_enabled = GNUNET_LOG_CALL_STATUS;\
318   if (GN_UNLIKELY(log_call_enabled == -1))\
319     log_call_enabled = GNUNET_get_log_call_status ((kind) & (~GNUNET_ERROR_TYPE_BULK), NULL, __FILE__, __FUNCTION__, log_line);\
320   if (GN_UNLIKELY(skip_log > 0)) {skip_log--;}\
321   else {\
322     if (GN_UNLIKELY(log_call_enabled))\
323       GNUNET_log_nocheck (kind, __VA_ARGS__);\
324   }\
325 } while (0)
326 #else
327 #define GNUNET_log(...)
328 #define GNUNET_log_from(...)
329 #endif
330
331
332 /**
333  * Abort the process, generate a core dump if possible.
334  */
335 void
336 GNUNET_abort (void) GNUNET_NORETURN;
337
338 /**
339  * Ignore the next n calls to the log function.
340  *
341  * @param n number of log calls to ignore
342  * @param check_reset GNUNET_YES to assert that the log skip counter is currently zero
343  */
344 void
345 GNUNET_log_skip (unsigned int n, int check_reset);
346
347
348 /**
349  * Setup logging.
350  *
351  * @param comp default component to use
352  * @param loglevel what types of messages should be logged
353  * @param logfile change logging to logfile (use NULL to keep stderr)
354  * @return GNUNET_OK on success, GNUNET_SYSERR if logfile could not be opened
355  */
356 int
357 GNUNET_log_setup (const char *comp, const char *loglevel, const char *logfile);
358
359
360 /**
361  * Add a custom logger.
362  *
363  * @param logger log function
364  * @param logger_cls closure for logger
365  */
366 void
367 GNUNET_logger_add (GNUNET_Logger logger, void *logger_cls);
368
369
370 /**
371  * Remove a custom logger.
372  *
373  * @param logger log function
374  * @param logger_cls closure for logger
375  */
376 void
377 GNUNET_logger_remove (GNUNET_Logger logger, void *logger_cls);
378
379
380 /**
381  * Convert a hash value to a string (for printing debug messages).
382  * This is one of the very few calls in the entire API that is
383  * NOT reentrant!
384  *
385  * @param hc the hash code
386  * @return string
387  */
388 const char *
389 GNUNET_h2s (const GNUNET_HashCode * hc);
390
391
392 /**
393  * Convert a hash value to a string (for printing debug messages).
394  * This prints all 104 characters of a hashcode!
395  * This is one of the very few calls in the entire API that is
396  * NOT reentrant!
397  *
398  * @param hc the hash code
399  * @return string
400  */
401 const char *
402 GNUNET_h2s_full (const GNUNET_HashCode * hc);
403
404
405 /**
406  * Convert a peer identity to a string (for printing debug messages).
407  * This is one of the very few calls in the entire API that is
408  * NOT reentrant!
409  *
410  * @param pid the peer identity
411  * @return string form of the pid; will be overwritten by next
412  *         call to GNUNET_i2s.
413  */
414 const char *
415 GNUNET_i2s (const struct GNUNET_PeerIdentity *pid);
416
417
418 /**
419  * Convert a "struct sockaddr*" (IPv4 or IPv6 address) to a string
420  * (for printing debug messages).  This is one of the very few calls
421  * in the entire API that is NOT reentrant!
422  *
423  * @param addr the address
424  * @param addrlen the length of the address
425  * @return nicely formatted string for the address
426  *  will be overwritten by next call to GNUNET_a2s.
427  */
428 const char *
429 GNUNET_a2s (const struct sockaddr *addr, socklen_t addrlen);
430
431 /**
432  * Convert error type to string.
433  *
434  * @param kind type to convert
435  * @return string corresponding to the type
436  */
437 const char *
438 GNUNET_error_type_to_string (enum GNUNET_ErrorType kind);
439
440
441 /**
442  * Use this for fatal errors that cannot be handled
443  */
444 #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)
445
446 /**
447  * Use this for fatal errors that cannot be handled
448  */
449 #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)
450
451 /**
452  * Use this for internal assertion violations that are
453  * not fatal (can be handled) but should not occur.
454  */
455 #define GNUNET_break(cond)  do { if (! (cond)) { GNUNET_log(GNUNET_ERROR_TYPE_ERROR, _("Assertion failed at %s:%d.\n"), __FILE__, __LINE__); } } while(0)
456
457 /**
458  * Use this for assertion violations caused by other
459  * peers (i.e. protocol violations).  We do not want to
460  * confuse end-users (say, some other peer runs an
461  * older, broken or incompatible GNUnet version), but
462  * we still want to see these problems during
463  * development and testing.  "OP == other peer".
464  */
465 #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)
466
467 /**
468  * Log an error message at log-level 'level' that indicates
469  * a failure of the command 'cmd' with the message given
470  * by strerror(errno).
471  */
472 #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)
473
474 /**
475  * Log an error message at log-level 'level' that indicates
476  * a failure of the command 'cmd' with the message given
477  * by strerror(errno).
478  */
479 #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)
480
481 /**
482  * Log an error message at log-level 'level' that indicates
483  * a failure of the command 'cmd' with the message given
484  * by strerror(errno).
485  */
486 #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)
487
488 /**
489  * Log an error message at log-level 'level' that indicates
490  * a failure of the command 'cmd' with the message given
491  * by strerror(errno).
492  */
493 #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)
494
495 /* ************************* endianess conversion ****************** */
496
497 /**
498  * Convert unsigned 64-bit integer to host-byte-order.
499  * @param n the value in network byte order
500  * @return the same value in host byte order
501  */
502 uint64_t
503 GNUNET_ntohll (uint64_t n);
504
505 /**
506  * Convert unsigned 64-bit integer to network-byte-order.
507  * @param n the value in host byte order
508  * @return the same value in network byte order
509  */
510 uint64_t
511 GNUNET_htonll (uint64_t n);
512
513 /**
514  * Convert double to network-byte-order.
515  * @param d the value in network byte order
516  * @return the same value in host byte order
517  */
518 double 
519 GNUNET_hton_double (double d);
520
521 /**
522  * Convert double to host-byte-order
523  * @param d the value in network byte order
524  * @return the same value in host byte order
525  */
526 double 
527 GNUNET_ntoh_double (double d);
528
529 /* ************************* allocation functions ****************** */
530
531 /**
532  * Maximum allocation with GNUNET_malloc macro.
533  */
534 #define GNUNET_MAX_MALLOC_CHECKED (1024 * 1024 * 40)
535
536 /**
537  * Wrapper around malloc. Allocates size bytes of memory.
538  * The memory will be zero'ed out.
539  *
540  * @param size the number of bytes to allocate, must be
541  *        smaller than 40 MB.
542  * @return pointer to size bytes of memory, never NULL (!)
543  */
544 #define GNUNET_malloc(size) GNUNET_xmalloc_(size, __FILE__, __LINE__)
545
546 /**
547  * Allocate and initialize a block of memory.
548  *
549  * @param buf data to initalize the block with
550  * @param size the number of bytes in buf (and size of the allocation)
551  * @return pointer to size bytes of memory, never NULL (!)
552  */
553 #define GNUNET_memdup(buf,size) GNUNET_xmemdup_(buf, size, __FILE__, __LINE__)
554
555 /**
556  * Wrapper around malloc. Allocates size bytes of memory.
557  * The memory will be zero'ed out.
558  *
559  * @param size the number of bytes to allocate
560  * @return pointer to size bytes of memory, NULL if we do not have enough memory
561  */
562 #define GNUNET_malloc_large(size) GNUNET_xmalloc_unchecked_(size, __FILE__, __LINE__)
563
564 /**
565  * Wrapper around realloc. Rellocates size bytes of memory.
566  *
567  * @param ptr the pointer to reallocate
568  * @param size the number of bytes to reallocate
569  * @return pointer to size bytes of memory
570  */
571 #define GNUNET_realloc(ptr, size) GNUNET_xrealloc_(ptr, size, __FILE__, __LINE__)
572
573 /**
574  * Wrapper around free. Frees the memory referred to by ptr.
575  * Note that is is generally better to free memory that was
576  * allocated with GNUNET_array_grow using GNUNET_array_grow(mem, size, 0) instead of GNUNET_free.
577  *
578  * @param ptr location where to free the memory. ptr must have
579  *     been returned by GNUNET_strdup, GNUNET_strndup, GNUNET_malloc or GNUNET_array_grow earlier.
580  */
581 #define GNUNET_free(ptr) GNUNET_xfree_(ptr, __FILE__, __LINE__)
582
583 /**
584  * Free the memory pointed to by ptr if ptr is not NULL.
585  * Equivalent to if (ptr!=null)GNUNET_free(ptr).
586  *
587  * @param ptr the location in memory to free
588  */
589 #define GNUNET_free_non_null(ptr) do { void * __x__ = ptr; if (__x__ != NULL) { GNUNET_free(__x__); } } while(0)
590
591 /**
592  * Wrapper around GNUNET_strdup.  Makes a copy of the zero-terminated string
593  * pointed to by a.
594  *
595  * @param a pointer to a zero-terminated string
596  * @return a copy of the string including zero-termination
597  */
598 #define GNUNET_strdup(a) GNUNET_xstrdup_(a,__FILE__,__LINE__)
599
600 /**
601  * Wrapper around GNUNET_strndup.  Makes a partial copy of the string
602  * pointed to by a.
603  *
604  * @param a pointer to a string
605  * @param length of the string to duplicate
606  * @return a partial copy of the string including zero-termination
607  */
608 #define GNUNET_strndup(a,length) GNUNET_xstrndup_(a,length,__FILE__,__LINE__)
609
610 /**
611  * Grow a well-typed (!) array.  This is a convenience
612  * method to grow a vector <tt>arr</tt> of size <tt>size</tt>
613  * to the new (target) size <tt>tsize</tt>.
614  * <p>
615  *
616  * Example (simple, well-typed stack):
617  *
618  * <pre>
619  * static struct foo * myVector = NULL;
620  * static int myVecLen = 0;
621  *
622  * static void push(struct foo * elem) {
623  *   GNUNET_array_grow(myVector, myVecLen, myVecLen+1);
624  *   memcpy(&myVector[myVecLen-1], elem, sizeof(struct foo));
625  * }
626  *
627  * static void pop(struct foo * elem) {
628  *   if (myVecLen == 0) die();
629  *   memcpy(elem, myVector[myVecLen-1], sizeof(struct foo));
630  *   GNUNET_array_grow(myVector, myVecLen, myVecLen-1);
631  * }
632  * </pre>
633  *
634  * @param arr base-pointer of the vector, may be NULL if size is 0;
635  *        will be updated to reflect the new address. The TYPE of
636  *        arr is important since size is the number of elements and
637  *        not the size in bytes
638  * @param size the number of elements in the existing vector (number
639  *        of elements to copy over)
640  * @param tsize the target size for the resulting vector, use 0 to
641  *        free the vector (then, arr will be NULL afterwards).
642  */
643 #define GNUNET_array_grow(arr,size,tsize) GNUNET_xgrow_((void**)&arr, sizeof(arr[0]), &size, tsize, __FILE__, __LINE__)
644
645 /**
646  * Append an element to a list (growing the
647  * list by one).
648  */
649 #define GNUNET_array_append(arr,size,element) do { GNUNET_array_grow(arr,size,size+1); arr[size-1] = element; } while(0)
650
651 /**
652  * Like snprintf, just aborts if the buffer is of insufficient size.
653  *
654  * @param buf pointer to buffer that is written to
655  * @param size number of bytes in buf
656  * @param format format strings
657  * @param ... data for format string
658  * @return number of bytes written to buf or negative value on error
659  */
660 int
661 GNUNET_snprintf (char *buf, size_t size, const char *format, ...);
662
663
664 /**
665  * Like asprintf, just portable.
666  *
667  * @param buf set to a buffer of sufficient size (allocated, caller must free)
668  * @param format format string (see printf, fprintf, etc.)
669  * @param ... data for format string
670  * @return number of bytes in "*buf" excluding 0-termination
671  */
672 int
673 GNUNET_asprintf (char **buf, const char *format, ...);
674
675
676 /* ************** internal implementations, use macros above! ************** */
677
678 /**
679  * Allocate memory. Checks the return value, aborts if no more
680  * memory is available.  Don't use GNUNET_xmalloc_ directly. Use the
681  * GNUNET_malloc macro.
682  * The memory will be zero'ed out.
683  *
684  * @param size number of bytes to allocate
685  * @param filename where is this call being made (for debugging)
686  * @param linenumber line where this call is being made (for debugging)
687  * @return allocated memory, never NULL
688  */
689 void *
690 GNUNET_xmalloc_ (size_t size, const char *filename, int linenumber);
691
692
693 /**
694  * Allocate and initialize memory. Checks the return value, aborts if no more
695  * memory is available.  Don't use GNUNET_xmemdup_ directly. Use the
696  * GNUNET_memdup macro.
697  *
698  * @param buf buffer to initialize from (must contain size bytes)
699  * @param size number of bytes to allocate
700  * @param filename where is this call being made (for debugging)
701  * @param linenumber line where this call is being made (for debugging)
702  * @return allocated memory, never NULL
703  */
704 void *
705 GNUNET_xmemdup_ (const void *buf, size_t size, const char *filename,
706                  int linenumber);
707
708
709 /**
710  * Allocate memory.  This function does not check if the allocation
711  * request is within reasonable bounds, allowing allocations larger
712  * than 40 MB.  If you don't expect the possibility of very large
713  * allocations, use GNUNET_malloc instead.  The memory will be zero'ed
714  * out.
715  *
716  * @param size number of bytes to allocate
717  * @param filename where is this call being made (for debugging)
718  * @param linenumber line where this call is being made (for debugging)
719  * @return pointer to size bytes of memory, NULL if we do not have enough memory
720  */
721 void *
722 GNUNET_xmalloc_unchecked_ (size_t size, const char *filename, int linenumber);
723
724 /**
725  * Reallocate memory. Checks the return value, aborts if no more
726  * memory is available.
727  */
728 void *
729 GNUNET_xrealloc_ (void *ptr, size_t n, const char *filename, int linenumber);
730
731 /**
732  * Free memory. Merely a wrapper for the case that we
733  * want to keep track of allocations.  Don't use GNUNET_xfree_
734  * directly. Use the GNUNET_free macro.
735  *
736  * @param ptr pointer to memory to free
737  * @param filename where is this call being made (for debugging)
738  * @param linenumber line where this call is being made (for debugging)
739  */
740 void
741 GNUNET_xfree_ (void *ptr, const char *filename, int linenumber);
742
743
744 /**
745  * Dup a string. Don't call GNUNET_xstrdup_ directly. Use the GNUNET_strdup macro.
746  * @param str string to duplicate
747  * @param filename where is this call being made (for debugging)
748  * @param linenumber line where this call is being made (for debugging)
749  * @return the duplicated string
750  */
751 char *
752 GNUNET_xstrdup_ (const char *str, const char *filename, int linenumber);
753
754 /**
755  * Dup partially a string. Don't call GNUNET_xstrndup_ directly. Use the GNUNET_strndup macro.
756  *
757  * @param str string to duplicate
758  * @param len length of the string to duplicate
759  * @param filename where is this call being made (for debugging)
760  * @param linenumber line where this call is being made (for debugging)
761  * @return the duplicated string
762  */
763 char *
764 GNUNET_xstrndup_ (const char *str, size_t len, const char *filename,
765                   int linenumber);
766
767 /**
768  * Grow an array, the new elements are zeroed out.
769  * Grows old by (*oldCount-newCount)*elementSize
770  * bytes and sets *oldCount to newCount.
771  *
772  * Don't call GNUNET_xgrow_ directly. Use the GNUNET_array_grow macro.
773  *
774  * @param old address of the pointer to the array
775  *        *old may be NULL
776  * @param elementSize the size of the elements of the array
777  * @param oldCount address of the number of elements in the *old array
778  * @param newCount number of elements in the new array, may be 0 (then *old will be NULL afterwards)
779  * @param filename where is this call being made (for debugging)
780  * @param linenumber line where this call is being made (for debugging)
781  */
782 void
783 GNUNET_xgrow_ (void **old, size_t elementSize, unsigned int *oldCount,
784                unsigned int newCount, const char *filename, int linenumber);
785
786
787 /**
788  * Create a copy of the given message.
789  *
790  * @param msg message to copy
791  * @return duplicate of the message
792  */
793 struct GNUNET_MessageHeader *
794 GNUNET_copy_message (const struct GNUNET_MessageHeader *msg);
795
796
797 #if __STDC_VERSION__ < 199901L
798 #if __GNUC__ >= 2
799 #define __func__ __FUNCTION__
800 #else
801 #define __func__ "<unknown>"
802 #endif
803 #endif
804
805 #endif /*GNUNET_COMMON_H_ */