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