add units to time, use configuration time api where appropriate, fixing Mantis #1875
[oweals/gnunet.git] / src / util / common_allocation.c
1 /*
2      This file is part of GNUnet.
3      (C) 2001, 2002, 2003, 2005, 2006 Christian Grothoff (and other contributing authors)
4
5      GNUnet is free software; you can redistribute it and/or modify
6      it under the terms of the GNU General Public License as published
7      by the Free Software Foundation; either version 2, or (at your
8      option) any later version.
9
10      GNUnet is distributed in the hope that it will be useful, but
11      WITHOUT ANY WARRANTY; without even the implied warranty of
12      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13      General Public License for more details.
14
15      You should have received a copy of the GNU General Public License
16      along with GNUnet; see the file COPYING.  If not, write to the
17      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18      Boston, MA 02111-1307, USA.
19 */
20
21 /**
22  * @file util/common_allocation.c
23  * @brief wrapper around malloc/free
24  * @author Christian Grothoff
25  */
26
27 #include "platform.h"
28 #include "gnunet_common.h"
29
30 #define LOG(kind,...) GNUNET_log_from (kind, "util",__VA_ARGS__)
31
32 #define LOG_STRERROR(kind,syscall) GNUNET_log_from_strerror (kind, "util", syscall)
33
34 #ifndef INT_MAX
35 #define INT_MAX 0x7FFFFFFF
36 #endif
37
38 #if 0
39 #define W32_MEM_LIMIT 200000000
40 #endif
41
42 #ifdef W32_MEM_LIMIT
43 static LONG mem_used = 0;
44 #endif
45
46 /**
47  * Allocate memory. Checks the return value, aborts if no more
48  * memory is available.
49  *
50  * @param size how many bytes of memory to allocate, do NOT use
51  *  this function (or GNUNET_malloc) to allocate more than several MB
52  *  of memory, if you are possibly needing a very large chunk use
53  *  GNUNET_xmalloc_unchecked_ instead.
54  * @param filename where in the code was the call to GNUNET_malloc
55  * @param linenumber where in the code was the call to GNUNET_malloc
56  * @return pointer to size bytes of memory
57  */
58 void *
59 GNUNET_xmalloc_ (size_t size, const char *filename, int linenumber)
60 {
61   void *ret;
62
63   /* As a security precaution, we generally do not allow very large
64    * allocations using the default 'GNUNET_malloc' macro */
65   GNUNET_assert_at (size <= GNUNET_MAX_MALLOC_CHECKED, filename, linenumber);
66   ret = GNUNET_xmalloc_unchecked_ (size, filename, linenumber);
67   if (ret == NULL)
68   {
69     LOG_STRERROR (GNUNET_ERROR_TYPE_ERROR, "malloc");
70     GNUNET_abort ();
71   }
72   return ret;
73 }
74
75
76 /**
77  * Allocate and initialize memory. Checks the return value, aborts if no more
78  * memory is available.  Don't use GNUNET_xmemdup_ directly. Use the
79  * GNUNET_memdup macro.
80  *
81  * @param buf buffer to initialize from (must contain size bytes)
82  * @param size number of bytes to allocate
83  * @param filename where is this call being made (for debugging)
84  * @param linenumber line where this call is being made (for debugging)
85  * @return allocated memory, never NULL
86  */
87 void *
88 GNUNET_xmemdup_ (const void *buf, size_t size, const char *filename,
89                  int linenumber)
90 {
91   void *ret;
92
93   /* As a security precaution, we generally do not allow very large
94    * allocations here */
95   GNUNET_assert_at (size <= GNUNET_MAX_MALLOC_CHECKED, filename, linenumber);
96 #ifdef W32_MEM_LIMIT
97   size += sizeof (size_t);
98   if (mem_used + size > W32_MEM_LIMIT)
99     return NULL;
100 #endif
101   GNUNET_assert_at (size < INT_MAX, filename, linenumber);
102   ret = malloc (size);
103   if (ret == NULL)
104   {
105     LOG_STRERROR (GNUNET_ERROR_TYPE_ERROR, "malloc");
106     GNUNET_abort ();
107   }
108 #ifdef W32_MEM_LIMIT
109   *((size_t *) ret) = size;
110   ret = &((size_t *) ret)[1];
111   mem_used += size;
112 #endif
113   memcpy (ret, buf, size);
114   return ret;
115 }
116
117
118
119 /**
120  * Wrapper around malloc. Allocates size bytes of memory.
121  * The memory will be zero'ed out.
122  *
123  * @param size the number of bytes to allocate
124  * @param filename where in the code was the call to GNUNET_malloc_large
125  * @param linenumber where in the code was the call to GNUNET_malloc_large
126  * @return pointer to size bytes of memory, NULL if we do not have enough memory
127  */
128 void *
129 GNUNET_xmalloc_unchecked_ (size_t size, const char *filename, int linenumber)
130 {
131   void *result;
132
133 #ifdef W32_MEM_LIMIT
134   size += sizeof (size_t);
135   if (mem_used + size > W32_MEM_LIMIT)
136     return NULL;
137 #endif
138
139   GNUNET_assert_at (size < INT_MAX, filename, linenumber);
140   result = malloc (size);
141   if (result == NULL)
142     return NULL;
143   memset (result, 0, size);
144
145 #ifdef W32_MEM_LIMIT
146   *((size_t *) result) = size;
147   result = &((size_t *) result)[1];
148   mem_used += size;
149 #endif
150
151   return result;
152 }
153
154
155 /**
156  * Reallocate memory. Checks the return value, aborts if no more
157  * memory is available.
158  *
159  * @param ptr the pointer to reallocate
160  * @param n how many bytes of memory to allocate
161  * @param filename where in the code was the call to GNUNET_realloc
162  * @param linenumber where in the code was the call to GNUNET_realloc
163  * @return pointer to size bytes of memory
164  */
165 void *
166 GNUNET_xrealloc_ (void *ptr, size_t n, const char *filename, int linenumber)
167 {
168 #ifdef W32_MEM_LIMIT
169   n += sizeof (size_t);
170   ptr = &((size_t *) ptr)[-1];
171   mem_used = mem_used - *((size_t *) ptr) + n;
172 #endif
173   ptr = realloc (ptr, n);
174   if ((NULL == ptr) && (n > 0))
175   {
176     LOG_STRERROR (GNUNET_ERROR_TYPE_ERROR, "realloc");
177     GNUNET_abort ();
178   }
179 #ifdef W32_MEM_LIMIT
180   ptr = &((size_t *) ptr)[1];
181 #endif
182   return ptr;
183 }
184
185
186 /**
187  * Free memory. Merely a wrapper for the case that we
188  * want to keep track of allocations.
189  *
190  * @param ptr the pointer to free
191  * @param filename where in the code was the call to GNUNET_array_grow
192  * @param linenumber where in the code was the call to GNUNET_array_grow
193  */
194 void
195 GNUNET_xfree_ (void *ptr, const char *filename, int linenumber)
196 {
197   GNUNET_assert_at (ptr != NULL, filename, linenumber);
198 #ifdef W32_MEM_LIMIT
199   ptr = &((size_t *) ptr)[-1];
200   mem_used -= *((size_t *) ptr);
201 #endif
202   free (ptr);
203 }
204
205 /**
206  * Dup a string (same semantics as strdup).
207  *
208  * @param str the string to dup
209  * @param filename where in the code was the call to GNUNET_strdup
210  * @param linenumber where in the code was the call to GNUNET_strdup
211  * @return strdup(str)
212  */
213 char *
214 GNUNET_xstrdup_ (const char *str, const char *filename, int linenumber)
215 {
216   char *res;
217
218   GNUNET_assert_at (str != NULL, filename, linenumber);
219   res = GNUNET_xmalloc_ (strlen (str) + 1, filename, linenumber);
220   memcpy (res, str, strlen (str) + 1);
221   return res;
222 }
223
224
225 /**
226  * Dup partially a string (same semantics as strndup).
227  *
228  * @param str the string to dup
229  * @param len the length of the string to dup
230  * @param filename where in the code was the call to GNUNET_strndup
231  * @param linenumber where in the code was the call to GNUNET_strndup
232  * @return strndup(str,len)
233  */
234 char *
235 GNUNET_xstrndup_ (const char *str, size_t len, const char *filename,
236                   int linenumber)
237 {
238   char *res;
239
240   GNUNET_assert_at (str != NULL, filename, linenumber);
241   len = GNUNET_MIN (len, strlen (str));
242   res = GNUNET_xmalloc_ (len + 1, filename, linenumber);
243   memcpy (res, str, len);
244   res[len] = '\0';
245   return res;
246 }
247
248
249 /**
250  * Grow an array.  Grows old by (*oldCount-newCount)*elementSize bytes
251  * and sets *oldCount to newCount.
252  *
253  * @param old address of the pointer to the array
254  *        *old may be NULL
255  * @param elementSize the size of the elements of the array
256  * @param oldCount address of the number of elements in the *old array
257  * @param newCount number of elements in the new array, may be 0
258  * @param filename where in the code was the call to GNUNET_array_grow
259  * @param linenumber where in the code was the call to GNUNET_array_grow
260  */
261 void
262 GNUNET_xgrow_ (void **old, size_t elementSize, unsigned int *oldCount,
263                unsigned int newCount, const char *filename, int linenumber)
264 {
265   void *tmp;
266   size_t size;
267
268   GNUNET_assert_at (INT_MAX / elementSize > newCount, filename, linenumber);
269   size = newCount * elementSize;
270   if (size == 0)
271   {
272     tmp = NULL;
273   }
274   else
275   {
276     tmp = GNUNET_xmalloc_ (size, filename, linenumber);
277     memset (tmp, 0, size);      /* client code should not rely on this, though... */
278     if (*oldCount > newCount)
279       *oldCount = newCount;     /* shrink is also allowed! */
280     memcpy (tmp, *old, elementSize * (*oldCount));
281   }
282
283   if (*old != NULL)
284   {
285     GNUNET_xfree_ (*old, filename, linenumber);
286   }
287   *old = tmp;
288   *oldCount = newCount;
289 }
290
291
292 /**
293  * Like asprintf, just portable.
294  *
295  * @param buf set to a buffer of sufficient size (allocated, caller must free)
296  * @param format format string (see printf, fprintf, etc.)
297  * @param ... data for format string
298  * @return number of bytes in "*buf" excluding 0-termination
299  */
300 int
301 GNUNET_asprintf (char **buf, const char *format, ...)
302 {
303   int ret;
304   va_list args;
305
306   va_start (args, format);
307   ret = VSNPRINTF (NULL, 0, format, args);
308   va_end (args);
309   *buf = GNUNET_malloc (ret + 1);
310   va_start (args, format);
311   ret = VSPRINTF (*buf, format, args);
312   va_end (args);
313   return ret;
314 }
315
316
317 /**
318  * Like snprintf, just aborts if the buffer is of insufficient size.
319  *
320  * @param buf pointer to buffer that is written to
321  * @param size number of bytes in buf
322  * @param format format strings
323  * @param ... data for format string
324  * @return number of bytes written to buf or negative value on error
325  */
326 int
327 GNUNET_snprintf (char *buf, size_t size, const char *format, ...)
328 {
329   int ret;
330   va_list args;
331
332   va_start (args, format);
333   ret = VSNPRINTF (buf, size, format, args);
334   va_end (args);
335   GNUNET_assert (ret <= size);
336   return ret;
337 }
338
339
340 /**
341  * Create a copy of the given message.
342  *
343  * @param msg message to copy
344  * @return duplicate of the message
345  */
346 struct GNUNET_MessageHeader *
347 GNUNET_copy_message (const struct GNUNET_MessageHeader *msg)
348 {
349   struct GNUNET_MessageHeader *ret;
350   uint16_t msize;
351
352   msize = ntohs (msg->size);
353   GNUNET_assert (msize >= sizeof (struct GNUNET_MessageHeader));
354   ret = GNUNET_malloc (msize);
355   memcpy (ret, msg, msize);
356   return ret;
357 }
358
359
360 /* end of common_allocation.c */