Fix more POSIX path lstat calls. Fix bug where close can return
[Samba.git] / source / lib / replace / replace.h
blob3fba1c01ac8e1d7d57f017eaa2f601113eb3ed45
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
8 Copyright (C) Jeremy Allison 2007.
10 ** NOTE! The following LGPL license applies to the replace
11 ** library. This does NOT imply that all of Samba is released
12 ** under the LGPL
14 This library is free software; you can redistribute it and/or
15 modify it under the terms of the GNU Lesser General Public
16 License as published by the Free Software Foundation; either
17 version 3 of the License, or (at your option) any later version.
19 This library is distributed in the hope that it will be useful,
20 but WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 Lesser General Public License for more details.
24 You should have received a copy of the GNU Lesser General Public
25 License along with this library; if not, see <http://www.gnu.org/licenses/>.
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
49 #ifdef HAVE_STDINT_H
50 #include <stdint.h>
51 /* force off HAVE_INTTYPES_H so that roken doesn't try to include both,
52 which causes a warning storm on irix */
53 #undef HAVE_INTTYPES_H
54 #elif HAVE_INTTYPES_H
55 #include <inttypes.h>
56 #endif
58 #ifdef HAVE_STRING_H
59 #include <string.h>
60 #endif
62 #ifdef HAVE_STRINGS_H
63 #include <strings.h>
64 #endif
66 #ifdef HAVE_SYS_TYPES_H
67 #include <sys/types.h>
68 #endif
70 #if STDC_HEADERS
71 #include <stdlib.h>
72 #include <stddef.h>
73 #endif
75 #ifndef HAVE_STRERROR
76 extern char *sys_errlist[];
77 #define strerror(i) sys_errlist[i]
78 #endif
80 #ifndef HAVE_ERRNO_DECL
81 extern int errno;
82 #endif
84 #ifndef HAVE_STRDUP
85 #define strdup rep_strdup
86 char *rep_strdup(const char *s);
87 #endif
89 #ifndef HAVE_MEMMOVE
90 #define memmove rep_memmove
91 void *rep_memmove(void *dest,const void *src,int size);
92 #endif
94 #ifndef HAVE_MKTIME
95 #define mktime rep_mktime
96 /* prototype is in "system/time.h" */
97 #endif
99 #ifndef HAVE_TIMEGM
100 #define timegm rep_timegm
101 /* prototype is in "system/time.h" */
102 #endif
104 #ifndef HAVE_UTIME
105 #define utime rep_utime
106 /* prototype is in "system/time.h" */
107 #endif
109 #ifndef HAVE_UTIMES
110 #define utimes rep_utimes
111 /* prototype is in "system/time.h" */
112 #endif
114 #ifndef HAVE_STRLCPY
115 #define strlcpy rep_strlcpy
116 size_t rep_strlcpy(char *d, const char *s, size_t bufsize);
117 #endif
119 #ifndef HAVE_STRLCAT
120 #define strlcat rep_strlcat
121 size_t rep_strlcat(char *d, const char *s, size_t bufsize);
122 #endif
124 #if (defined(BROKEN_STRNDUP) || !defined(HAVE_STRNDUP))
125 #undef HAVE_STRNDUP
126 #define strndup rep_strndup
127 char *rep_strndup(const char *s, size_t n);
128 #endif
130 #if (defined(BROKEN_STRNLEN) || !defined(HAVE_STRNLEN))
131 #undef HAVE_STRNLEN
132 #define strnlen rep_strnlen
133 size_t rep_strnlen(const char *s, size_t n);
134 #endif
136 #ifndef HAVE_SETENV
137 #define setenv rep_setenv
138 int rep_setenv(const char *name, const char *value, int overwrite);
139 #else
140 #ifndef HAVE_SETENV_DECL
141 int setenv(const char *name, const char *value, int overwrite);
142 #endif
143 #endif
145 #ifndef HAVE_UNSETENV
146 #define unsetenv rep_unsetenv
147 int rep_unsetenv(const char *name);
148 #endif
150 #ifndef HAVE_SETEUID
151 #define seteuid rep_seteuid
152 int rep_seteuid(uid_t);
153 #endif
155 #ifndef HAVE_SETEGID
156 #define setegid rep_setegid
157 int rep_setegid(gid_t);
158 #endif
160 #ifndef HAVE_SETLINEBUF
161 #define setlinebuf rep_setlinebuf
162 void rep_setlinebuf(FILE *);
163 #endif
165 #ifndef HAVE_STRCASESTR
166 #define strcasestr rep_strcasestr
167 char *rep_strcasestr(const char *haystack, const char *needle);
168 #endif
170 #ifndef HAVE_STRTOK_R
171 #define strtok_r rep_strtok_r
172 char *rep_strtok_r(char *s, const char *delim, char **save_ptr);
173 #endif
175 #ifndef HAVE_STRTOLL
176 #define strtoll rep_strtoll
177 long long int rep_strtoll(const char *str, char **endptr, int base);
178 #endif
180 #ifndef HAVE_STRTOULL
181 #define strtoull rep_strtoull
182 unsigned long long int rep_strtoull(const char *str, char **endptr, int base);
183 #endif
185 #ifndef HAVE_FTRUNCATE
186 #define ftruncate rep_ftruncate
187 int rep_ftruncate(int,off_t);
188 #endif
190 #ifndef HAVE_INITGROUPS
191 #define initgroups rep_initgroups
192 int rep_initgroups(char *name, gid_t id);
193 #endif
195 #if !defined(HAVE_BZERO) && defined(HAVE_MEMSET)
196 #define bzero(a,b) memset((a),'\0',(b))
197 #endif
199 #ifndef HAVE_DLERROR
200 #define dlerror rep_dlerror
201 char *rep_dlerror(void);
202 #endif
204 #ifndef HAVE_DLOPEN
205 #define dlopen rep_dlopen
206 #ifdef DLOPEN_TAKES_UNSIGNED_FLAGS
207 void *rep_dlopen(const char *name, unsigned int flags);
208 #else
209 void *rep_dlopen(const char *name, int flags);
210 #endif
211 #endif
213 #ifndef HAVE_DLSYM
214 #define dlsym rep_dlsym
215 void *rep_dlsym(void *handle, const char *symbol);
216 #endif
218 #ifndef HAVE_DLCLOSE
219 #define dlclose rep_dlclose
220 int rep_dlclose(void *handle);
221 #endif
223 #ifndef HAVE_SOCKETPAIR
224 #define socketpair rep_socketpair
225 /* prototype is in system/network.h */
226 #endif
228 #ifndef PRINTF_ATTRIBUTE
229 #if (__GNUC__ >= 3) && (__GNUC_MINOR__ >= 1 )
230 /** Use gcc attribute to check printf fns. a1 is the 1-based index of
231 * the parameter containing the format, and a2 the index of the first
232 * argument. Note that some gcc 2.x versions don't handle this
233 * properly **/
234 #define PRINTF_ATTRIBUTE(a1, a2) __attribute__ ((format (__printf__, a1, a2)))
235 #else
236 #define PRINTF_ATTRIBUTE(a1, a2)
237 #endif
238 #endif
240 #ifndef _DEPRECATED_
241 #if (__GNUC__ >= 3) && (__GNUC_MINOR__ >= 1 )
242 #define _DEPRECATED_ __attribute__ ((deprecated))
243 #else
244 #define _DEPRECATED_
245 #endif
246 #endif
248 #ifndef HAVE_VASPRINTF
249 #define vasprintf rep_vasprintf
250 int rep_vasprintf(char **ptr, const char *format, va_list ap) PRINTF_ATTRIBUTE(2,0);
251 #endif
253 #if !defined(HAVE_SNPRINTF) || !defined(HAVE_C99_VSNPRINTF)
254 #define snprintf rep_snprintf
255 int rep_snprintf(char *,size_t ,const char *, ...) PRINTF_ATTRIBUTE(3,4);
256 #endif
258 #if !defined(HAVE_VSNPRINTF) || !defined(HAVE_C99_VSNPRINTF)
259 #define vsnprintf rep_vsnprintf
260 int rep_vsnprintf(char *,size_t ,const char *, va_list ap) PRINTF_ATTRIBUTE(3,0);
261 #endif
263 #ifndef HAVE_ASPRINTF
264 #define asprintf rep_asprintf
265 int rep_asprintf(char **,const char *, ...) PRINTF_ATTRIBUTE(2,3);
266 #endif
268 #ifndef HAVE_VSYSLOG
269 #ifdef HAVE_SYSLOG
270 #define vsyslog rep_vsyslog
271 void rep_vsyslog (int facility_priority, const char *format, va_list arglist) PRINTF_ATTRIBUTE(2,0);
272 #endif
273 #endif
275 /* we used to use these fns, but now we have good replacements
276 for snprintf and vsnprintf */
277 #define slprintf snprintf
280 #ifndef HAVE_VA_COPY
281 #undef va_copy
282 #ifdef HAVE___VA_COPY
283 #define va_copy(dest, src) __va_copy(dest, src)
284 #else
285 #define va_copy(dest, src) (dest) = (src)
286 #endif
287 #endif
289 #ifndef HAVE_VOLATILE
290 #define volatile
291 #endif
293 #ifndef HAVE_COMPARISON_FN_T
294 typedef int (*comparison_fn_t)(const void *, const void *);
295 #endif
297 #ifdef REPLACE_STRPTIME
298 #define strptime rep_strptime
299 struct tm;
300 char *rep_strptime(const char *buf, const char *format, struct tm *tm);
301 #endif
303 /* Load header file for dynamic linking stuff */
304 #ifdef HAVE_DLFCN_H
305 #include <dlfcn.h>
306 #endif
308 #ifndef RTLD_LAZY
309 #define RTLD_LAZY 0
310 #endif
311 #ifndef RTLD_NOW
312 #define RTLD_NOW 0
313 #endif
314 #ifndef RTLD_GLOBAL
315 #define RTLD_GLOBAL 0
316 #endif
318 #ifndef HAVE_SECURE_MKSTEMP
319 #define mkstemp(path) rep_mkstemp(path)
320 int rep_mkstemp(char *temp);
321 #endif
323 #ifndef HAVE_MKDTEMP
324 #define mkdtemp rep_mkdtemp
325 char *rep_mkdtemp(char *template);
326 #endif
328 #ifndef HAVE_PREAD
329 #define pread rep_pread
330 ssize_t rep_pread(int __fd, void *__buf, size_t __nbytes, off_t __offset);
331 #define LIBREPLACE_PREAD_REPLACED 1
332 #else
333 #define LIBREPLACE_PREAD_NOT_REPLACED 1
334 #endif
336 #ifndef HAVE_PWRITE
337 #define pwrite rep_pwrite
338 ssize_t rep_pwrite(int __fd, const void *__buf, size_t __nbytes, off_t __offset);
339 #define LIBREPLACE_PWRITE_REPLACED 1
340 #else
341 #define LIBREPLACE_PWRITE_NOT_REPLACED 1
342 #endif
344 #if !defined(HAVE_INET_NTOA) || defined(REPLACE_INET_NTOA)
345 #define inet_ntoa rep_inet_ntoa
346 /* prototype is in "system/network.h" */
347 #endif
349 #ifndef HAVE_INET_PTON
350 #define inet_pton rep_inet_pton
351 /* prototype is in "system/network.h" */
352 #endif
354 #ifndef HAVE_INET_NTOP
355 #define inet_ntop rep_inet_ntop
356 /* prototype is in "system/network.h" */
357 #endif
359 #ifndef HAVE_INET_ATON
360 #define inet_aton rep_inet_aton
361 /* prototype is in "system/network.h" */
362 #endif
364 #ifndef HAVE_CONNECT
365 #define connect rep_connect
366 /* prototype is in "system/network.h" */
367 #endif
369 #ifndef HAVE_GETHOSTBYNAME
370 #define gethostbyname rep_gethostbyname
371 /* prototype is in "system/network.h" */
372 #endif
374 #ifndef HAVE_GETIFADDRS
375 #define getifaddrs rep_getifaddrs
376 /* prototype is in "system/network.h" */
377 #endif
379 #ifndef HAVE_FREEIFADDRS
380 #define freeifaddrs rep_freeifaddrs
381 /* prototype is in "system/network.h" */
382 #endif
384 #ifdef HAVE_LIMITS_H
385 #include <limits.h>
386 #endif
388 #ifdef HAVE_SYS_PARAM_H
389 #include <sys/param.h>
390 #endif
392 /* The extra casts work around common compiler bugs. */
393 #define _TYPE_SIGNED(t) (! ((t) 0 < (t) -1))
394 /* The outer cast is needed to work around a bug in Cray C 5.0.3.0.
395 It is necessary at least when t == time_t. */
396 #define _TYPE_MINIMUM(t) ((t) (_TYPE_SIGNED (t) \
397 ? ~ (t) 0 << (sizeof (t) * CHAR_BIT - 1) : (t) 0))
398 #define _TYPE_MAXIMUM(t) ((t) (~ (t) 0 - _TYPE_MINIMUM (t)))
400 #ifndef HOST_NAME_MAX
401 #define HOST_NAME_MAX 255
402 #endif
405 * Some older systems seem not to have MAXHOSTNAMELEN
406 * defined.
408 #ifndef MAXHOSTNAMELEN
409 #define MAXHOSTNAMELEN HOST_NAME_MAX
410 #endif
412 #ifndef UINT16_MAX
413 #define UINT16_MAX 65535
414 #endif
416 #ifndef UINT32_MAX
417 #define UINT32_MAX (4294967295U)
418 #endif
420 #ifndef UINT64_MAX
421 #define UINT64_MAX ((uint64_t)-1)
422 #endif
424 #ifndef CHAR_BIT
425 #define CHAR_BIT 8
426 #endif
428 #ifndef INT32_MAX
429 #define INT32_MAX _TYPE_MAXIMUM(int32_t)
430 #endif
432 #ifdef HAVE_STDBOOL_H
433 #include <stdbool.h>
434 #endif
436 #if !defined(HAVE_BOOL)
437 #ifdef HAVE__Bool
438 #define bool _Bool
439 #else
440 typedef int bool;
441 #endif
442 #endif
445 * to prevent <rpcsvc/yp_prot.h> from doing a redefine of 'bool'
447 * IRIX, HPUX, MacOS 10 and Solaris need BOOL_DEFINED
448 * Tru64 needs _BOOL_EXISTS
449 * AIX needs _BOOL,_TRUE,_FALSE
451 #ifndef BOOL_DEFINED
452 #define BOOL_DEFINED
453 #endif
454 #ifndef _BOOL_EXISTS
455 #define _BOOL_EXISTS
456 #endif
457 #ifndef _BOOL
458 #define _BOOL
459 #endif
461 #ifndef __bool_true_false_are_defined
462 #define __bool_true_false_are_defined
463 #endif
465 #ifndef true
466 #define true (1)
467 #endif
468 #ifndef false
469 #define false (0)
470 #endif
472 #ifndef _TRUE
473 #define _TRUE true
474 #endif
475 #ifndef _FALSE
476 #define _FALSE false
477 #endif
479 #ifndef HAVE_FUNCTION_MACRO
480 #ifdef HAVE_func_MACRO
481 #define __FUNCTION__ __func__
482 #else
483 #define __FUNCTION__ ("")
484 #endif
485 #endif
488 #ifndef MIN
489 #define MIN(a,b) ((a)<(b)?(a):(b))
490 #endif
492 #ifndef MAX
493 #define MAX(a,b) ((a)>(b)?(a):(b))
494 #endif
496 #if !defined(HAVE_VOLATILE)
497 #define volatile
498 #endif
501 this is a warning hack. The idea is to use this everywhere that we
502 get the "discarding const" warning from gcc. That doesn't actually
503 fix the problem of course, but it means that when we do get to
504 cleaning them up we can do it by searching the code for
505 discard_const.
507 It also means that other error types aren't as swamped by the noise
508 of hundreds of const warnings, so we are more likely to notice when
509 we get new errors.
511 Please only add more uses of this macro when you find it
512 _really_ hard to fix const warnings. Our aim is to eventually use
513 this function in only a very few places.
515 Also, please call this via the discard_const_p() macro interface, as that
516 makes the return type safe.
518 #define discard_const(ptr) ((void *)((uintptr_t)(ptr)))
520 /** Type-safe version of discard_const */
521 #define discard_const_p(type, ptr) ((type *)discard_const(ptr))
523 #ifndef __STRING
524 #define __STRING(x) #x
525 #endif
527 #ifndef __STRINGSTRING
528 #define __STRINGSTRING(x) __STRING(x)
529 #endif
531 #ifndef __LINESTR__
532 #define __LINESTR__ __STRINGSTRING(__LINE__)
533 #endif
535 #ifndef __location__
536 #define __location__ __FILE__ ":" __LINESTR__
537 #endif
539 /**
540 * zero a structure
542 #define ZERO_STRUCT(x) memset((char *)&(x), 0, sizeof(x))
544 /**
545 * zero a structure given a pointer to the structure
547 #define ZERO_STRUCTP(x) do { if ((x) != NULL) memset((char *)(x), 0, sizeof(*(x))); } while(0)
549 /**
550 * zero a structure given a pointer to the structure - no zero check
552 #define ZERO_STRUCTPN(x) memset((char *)(x), 0, sizeof(*(x)))
554 /* zero an array - note that sizeof(array) must work - ie. it must not be a
555 pointer */
556 #define ZERO_ARRAY(x) memset((char *)(x), 0, sizeof(x))
559 * work out how many elements there are in a static array
561 #define ARRAY_SIZE(a) (sizeof(a)/sizeof(a[0]))
563 /**
564 * pointer difference macro
566 #define PTR_DIFF(p1,p2) ((ptrdiff_t)(((const char *)(p1)) - (const char *)(p2)))
568 #if MMAP_BLACKLIST
569 #undef HAVE_MMAP
570 #endif
572 #ifdef __COMPAR_FN_T
573 #define QSORT_CAST (__compar_fn_t)
574 #endif
576 #ifndef QSORT_CAST
577 #define QSORT_CAST (int (*)(const void *, const void *))
578 #endif
580 #ifndef PATH_MAX
581 #define PATH_MAX 1024
582 #endif
584 #ifndef MAX_DNS_NAME_LENGTH
585 #define MAX_DNS_NAME_LENGTH 256 /* Actually 255 but +1 for terminating null. */
586 #endif
588 #endif /* _LIBREPLACE_REPLACE_H */