[GLUE] Rsync SAMBA_3_0 SVN r25598 in order to create the v3-0-test branch.
[Samba.git] / source / lib / replace / replace.h
blobb96356ac4670c2e4b76e0458986f8fdf50629a30
1 /*
2 Unix SMB/CIFS implementation.
4 macros to go along with the lib/replace/ portability layer code
6 Copyright (C) Andrew Tridgell 2005
7 Copyright (C) Jelmer Vernooij 2006
9 ** NOTE! The following LGPL license applies to the replace
10 ** library. This does NOT imply that all of Samba is released
11 ** under the LGPL
13 This library is free software; you can redistribute it and/or
14 modify it under the terms of the GNU Lesser General Public
15 License as published by the Free Software Foundation; either
16 version 2 of the License, or (at your option) any later version.
18 This library is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 Lesser General Public License for more details.
23 You should have received a copy of the GNU Lesser General Public
24 License along with this library; if not, write to the Free Software
25 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
28 #ifndef _LIBREPLACE_REPLACE_H
29 #define _LIBREPLACE_REPLACE_H
31 #ifndef NO_CONFIG_H
32 #include "config.h"
33 #endif
35 #ifdef HAVE_STANDARDS_H
36 #include <standards.h>
37 #endif
39 #include <stdio.h>
40 #include <stdlib.h>
41 #include <stdarg.h>
42 #include <errno.h>
44 #if defined(_MSC_VER) || defined(__MINGW32__)
45 #include "win32_replace.h"
46 #endif
48 #ifdef __COMPAR_FN_T
49 #define QSORT_CAST (__compar_fn_t)
50 #endif
52 #ifndef QSORT_CAST
53 #define QSORT_CAST (int (*)(const void *, const void *))
54 #endif
56 #ifdef HAVE_STDINT_H
57 #include <stdint.h>
58 /* force off HAVE_INTTYPES_H so that roken doesn't try to include both,
59 which causes a warning storm on irix */
60 #undef HAVE_INTTYPES_H
61 #elif HAVE_INTTYPES_H
62 #include <inttypes.h>
63 #endif
65 #ifdef HAVE_STRING_H
66 #include <string.h>
67 #endif
69 #ifdef HAVE_STRINGS_H
70 #include <strings.h>
71 #endif
73 #ifdef HAVE_SYS_TYPES_H
74 #include <sys/types.h>
75 #endif
77 #if STDC_HEADERS
78 #include <stdlib.h>
79 #include <stddef.h>
80 #endif
82 /**
83 this is a warning hack. The idea is to use this everywhere that we
84 get the "discarding const" warning from gcc. That doesn't actually
85 fix the problem of course, but it means that when we do get to
86 cleaning them up we can do it by searching the code for
87 discard_const.
89 It also means that other error types aren't as swamped by the noise
90 of hundreds of const warnings, so we are more likely to notice when
91 we get new errors.
93 Please only add more uses of this macro when you find it
94 _really_ hard to fix const warnings. Our aim is to eventually use
95 this function in only a very few places.
97 Also, please call this via the discard_const_p() macro interface, as that
98 makes the return type safe.
100 #define discard_const(ptr) ((void *)((intptr_t)(ptr)))
102 /** Type-safe version of discard_const */
103 #define discard_const_p(type, ptr) ((type *)discard_const(ptr))
105 #ifndef HAVE_STRERROR
106 extern char *sys_errlist[];
107 #define strerror(i) sys_errlist[i]
108 #endif
110 #ifndef HAVE_ERRNO_DECL
111 extern int errno;
112 #endif
114 #ifndef HAVE_STRDUP
115 #define strdup rep_strdup
116 char *rep_strdup(const char *s);
117 #endif
119 #ifndef HAVE_MEMMOVE
120 #define memmove rep_memmove
121 void *rep_memmove(void *dest,const void *src,int size);
122 #endif
124 #if !defined(HAVE_MKTIME) || !defined(HAVE_TIMEGM)
125 #include "system/time.h"
126 #endif
128 #ifndef HAVE_MKTIME
129 #define mktime rep_mktime
130 time_t rep_mktime(struct tm *t);
131 #endif
133 #ifndef HAVE_TIMEGM
134 struct tm;
135 #define timegm rep_timegm
136 time_t rep_timegm(struct tm *tm);
137 #endif
139 #ifndef HAVE_STRLCPY
140 #define strlcpy rep_strlcpy
141 size_t rep_strlcpy(char *d, const char *s, size_t bufsize);
142 #endif
144 #ifndef HAVE_STRLCAT
145 #define strlcat rep_strlcat
146 size_t rep_strlcat(char *d, const char *s, size_t bufsize);
147 #endif
149 #if (defined(BROKEN_STRNDUP) || !defined(HAVE_STRNDUP))
150 #undef HAVE_STRNDUP
151 #define strndup rep_strndup
152 char *rep_strndup(const char *s, size_t n);
153 #endif
155 #if (defined(BROKEN_STRNLEN) || !defined(HAVE_STRNLEN))
156 #undef HAVE_STRNLEN
157 #define strnlen rep_strnlen
158 size_t rep_strnlen(const char *s, size_t n);
159 #endif
161 #ifndef HAVE_SETENV
162 #define setenv rep_setenv
163 int rep_setenv(const char *name, const char *value, int overwrite);
164 #else
165 #ifndef HAVE_SETENV_DECL
166 int setenv(const char *name, const char *value, int overwrite);
167 #endif
168 #endif
170 #ifndef HAVE_UNSETENV
171 #define unsetenv rep_unsetenv
172 int rep_unsetenv(const char *name);
173 #endif
175 #ifndef HAVE_SETEUID
176 #define seteuid rep_seteuid
177 int rep_seteuid(uid_t);
178 #endif
180 #ifndef HAVE_SETEGID
181 #define setegid rep_setegid
182 int rep_setegid(gid_t);
183 #endif
185 #ifndef HAVE_SETLINEBUF
186 #define setlinebuf rep_setlinebuf
187 void rep_setlinebuf(FILE *);
188 #endif
190 #ifndef HAVE_STRCASESTR
191 #define strcasestr rep_strcasestr
192 char *rep_strcasestr(const char *haystack, const char *needle);
193 #endif
195 #ifndef HAVE_STRTOK_R
196 #define strtok_r rep_strtok_r
197 char *rep_strtok_r(char *s, const char *delim, char **save_ptr);
198 #endif
200 #ifndef HAVE_STRTOLL
201 #define strtoll rep_strtoll
202 long long int rep_strtoll(const char *str, char **endptr, int base);
203 #endif
205 #ifndef HAVE_STRTOULL
206 #define strtoull rep_strtoull
207 unsigned long long int rep_strtoull(const char *str, char **endptr, int base);
208 #endif
210 #ifndef HAVE_FTRUNCATE
211 #define ftruncate rep_ftruncate
212 int rep_ftruncate(int,off_t);
213 #endif
215 #ifndef HAVE_INITGROUPS
216 #define initgroups rep_initgroups
217 int rep_initgroups(char *name, gid_t id);
218 #endif
220 #if !defined(HAVE_BZERO) && defined(HAVE_MEMSET)
221 #define bzero(a,b) memset((a),'\0',(b))
222 #endif
224 #ifndef HAVE_DLERROR
225 #define dlerror rep_dlerror
226 char *rep_dlerror(void);
227 #endif
229 #ifndef HAVE_DLOPEN
230 #define dlopen rep_dlopen
231 void *rep_dlopen(const char *name, int flags);
232 #endif
234 #ifndef HAVE_DLSYM
235 #define dlsym rep_dlsym
236 void *rep_dlsym(void *handle, const char *symbol);
237 #endif
239 #ifndef HAVE_DLCLOSE
240 #define dlclose rep_dlclose
241 int rep_dlclose(void *handle);
242 #endif
244 #ifndef HAVE_SOCKETPAIR
245 #define socketpair rep_socketpair
246 int rep_socketpair(int d, int type, int protocol, int sv[2]);
247 #endif
249 #ifndef PRINTF_ATTRIBUTE
250 #if (__GNUC__ >= 3) && (__GNUC_MINOR__ >= 1 )
251 /** Use gcc attribute to check printf fns. a1 is the 1-based index of
252 * the parameter containing the format, and a2 the index of the first
253 * argument. Note that some gcc 2.x versions don't handle this
254 * properly **/
255 #define PRINTF_ATTRIBUTE(a1, a2) __attribute__ ((format (__printf__, a1, a2)))
256 #else
257 #define PRINTF_ATTRIBUTE(a1, a2)
258 #endif
259 #endif
261 #ifndef HAVE_VASPRINTF
262 #define vasprintf rep_vasprintf
263 int rep_vasprintf(char **ptr, const char *format, va_list ap) PRINTF_ATTRIBUTE(2,0);
264 #endif
266 #if !defined(HAVE_SNPRINTF) || !defined(HAVE_C99_VSNPRINTF)
267 #define snprintf rep_snprintf
268 int rep_snprintf(char *,size_t ,const char *, ...) PRINTF_ATTRIBUTE(3,4);
269 #endif
271 #if !defined(HAVE_VSNPRINTF) || !defined(HAVE_C99_VSNPRINTF)
272 #define vsnprintf rep_vsnprintf
273 int rep_vsnprintf(char *,size_t ,const char *, va_list ap) PRINTF_ATTRIBUTE(3,0);
274 #endif
276 #ifndef HAVE_ASPRINTF
277 #define asprintf rep_asprintf
278 int rep_asprintf(char **,const char *, ...) PRINTF_ATTRIBUTE(2,3);
279 #endif
281 #ifndef HAVE_VSYSLOG
282 #ifdef HAVE_SYSLOG
283 #define vsyslog rep_vsyslog
284 void rep_vsyslog (int facility_priority, const char *format, va_list arglist) PRINTF_ATTRIBUTE(2,0);
285 #endif
286 #endif
288 /* we used to use these fns, but now we have good replacements
289 for snprintf and vsnprintf */
290 #define slprintf snprintf
293 #ifndef HAVE_VA_COPY
294 #undef va_copy
295 #ifdef HAVE___VA_COPY
296 #define va_copy(dest, src) __va_copy(dest, src)
297 #else
298 #define va_copy(dest, src) (dest) = (src)
299 #endif
300 #endif
302 #ifndef HAVE_VOLATILE
303 #define volatile
304 #endif
306 #ifndef HAVE_COMPARISON_FN_T
307 typedef int (*comparison_fn_t)(const void *, const void *);
308 #endif
310 #ifdef REPLACE_STRPTIME
311 #define strptime rep_strptime
312 struct tm;
313 char *rep_strptime(const char *buf, const char *format, struct tm *tm);
314 #endif
316 /* Load header file for dynamic linking stuff */
317 #ifdef HAVE_DLFCN_H
318 #include <dlfcn.h>
319 #endif
321 #ifndef RTLD_LAZY
322 #define RTLD_LAZY 0
323 #endif
325 #ifndef HAVE_SECURE_MKSTEMP
326 #define mkstemp(path) rep_mkstemp(path)
327 int rep_mkstemp(char *temp);
328 #endif
330 #ifndef HAVE_MKDTEMP
331 #define mkdtemp rep_mkdtemp
332 char *rep_mkdtemp(char *template);
333 #endif
335 #ifdef HAVE_LIMITS_H
336 #include <limits.h>
337 #endif
339 /* The extra casts work around common compiler bugs. */
340 #define _TYPE_SIGNED(t) (! ((t) 0 < (t) -1))
341 /* The outer cast is needed to work around a bug in Cray C 5.0.3.0.
342 It is necessary at least when t == time_t. */
343 #define _TYPE_MINIMUM(t) ((t) (_TYPE_SIGNED (t) \
344 ? ~ (t) 0 << (sizeof (t) * CHAR_BIT - 1) : (t) 0))
345 #define _TYPE_MAXIMUM(t) ((t) (~ (t) 0 - _TYPE_MINIMUM (t)))
347 #ifndef HOST_NAME_MAX
348 #define HOST_NAME_MAX 64
349 #endif
351 #ifndef UINT16_MAX
352 #define UINT16_MAX 65535
353 #endif
355 #ifndef UINT32_MAX
356 #define UINT32_MAX (4294967295U)
357 #endif
359 #ifndef UINT64_MAX
360 #define UINT64_MAX ((uint64_t)-1)
361 #endif
363 #ifndef CHAR_BIT
364 #define CHAR_BIT 8
365 #endif
367 #ifndef INT32_MAX
368 #define INT32_MAX _TYPE_MAXIMUM(int32_t)
369 #endif
371 #ifdef HAVE_STDBOOL_H
372 #include <stdbool.h>
373 #endif
375 #if !defined(HAVE_BOOL)
376 #ifdef HAVE__Bool
377 #define bool _Bool
378 #else
379 typedef int bool;
380 #endif
381 #endif
384 * to prevent <rpcsvc/yp_prot.h> from doing a redefine of 'bool'
386 * IRIX, HPUX, MacOS 10 and Solaris need BOOL_DEFINED
387 * Tru64 needs _BOOL_EXISTS
388 * AIX needs _BOOL,_TRUE,_FALSE
390 #ifndef BOOL_DEFINED
391 #define BOOL_DEFINED
392 #endif
393 #ifndef _BOOL_EXISTS
394 #define _BOOL_EXISTS
395 #endif
396 #ifndef _BOOL
397 #define _BOOL
398 #endif
400 #ifndef __bool_true_false_are_defined
401 #define __bool_true_false_are_defined
402 #endif
404 #ifndef true
405 #define true (1)
406 #endif
407 #ifndef false
408 #define false (0)
409 #endif
411 #ifndef _TRUE
412 #define _TRUE true
413 #endif
414 #ifndef _FALSE
415 #define _FALSE false
416 #endif
418 #ifndef HAVE_FUNCTION_MACRO
419 #ifdef HAVE_func_MACRO
420 #define __FUNCTION__ __func__
421 #else
422 #define __FUNCTION__ ("")
423 #endif
424 #endif
426 #ifdef HAVE_SYS_PARAM_H
427 #include <sys/param.h>
428 #endif
430 #ifndef MIN
431 #define MIN(a,b) ((a)<(b)?(a):(b))
432 #endif
434 #ifndef MAX
435 #define MAX(a,b) ((a)>(b)?(a):(b))
436 #endif
438 #ifndef __STRING
439 #define __STRING(x) #x
440 #endif
442 #ifndef _STRINGSTRING
443 #define __STRINGSTRING(x) __STRING(x)
444 #endif
446 #ifndef __LINESTR__
447 #define __LINESTR__ __STRINGSTRING(__LINE__)
448 #endif
450 #ifndef __location__
451 #define __location__ __FILE__ ":" __LINESTR__
452 #endif
454 /**
455 * zero a structure
457 #define ZERO_STRUCT(x) memset((char *)&(x), 0, sizeof(x))
459 /**
460 * zero a structure given a pointer to the structure
462 #define ZERO_STRUCTP(x) do { if ((x) != NULL) memset((char *)(x), 0, sizeof(*(x))); } while(0)
464 /**
465 * zero a structure given a pointer to the structure - no zero check
467 #define ZERO_STRUCTPN(x) memset((char *)(x), 0, sizeof(*(x)))
469 /* zero an array - note that sizeof(array) must work - ie. it must not be a
470 pointer */
471 #define ZERO_ARRAY(x) memset((char *)(x), 0, sizeof(x))
474 * work out how many elements there are in a static array
476 #define ARRAY_SIZE(a) (sizeof(a)/sizeof(a[0]))
478 /**
479 * pointer difference macro
481 #define PTR_DIFF(p1,p2) ((ptrdiff_t)(((const char *)(p1)) - (const char *)(p2)))
483 #if MMAP_BLACKLIST
484 #undef HAVE_MMAP
485 #endif
487 #endif /* _LIBREPLACE_REPLACE_H */