replace: Remove superfluous check for gcrypt header.
[sfrench/samba-autobuild/.git] / lib / replace / replace.h
1 /*
2    Unix SMB/CIFS implementation.
3
4    macros to go along with the lib/replace/ portability layer code
5
6    Copyright (C) Andrew Tridgell 2005
7    Copyright (C) Jelmer Vernooij 2006-2008
8    Copyright (C) Jeremy Allison 2007.
9
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
13
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.
18
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.
23
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/>.
26 */
27
28 #ifndef _LIBREPLACE_REPLACE_H
29 #define _LIBREPLACE_REPLACE_H
30
31 #ifndef NO_CONFIG_H
32 #include "config.h"
33 #endif
34
35 #ifdef HAVE_STANDARDS_H
36 #include <standards.h>
37 #endif
38
39 #include <stdio.h>
40 #include <stdlib.h>
41 #include <stdarg.h>
42 #include <errno.h>
43
44 #ifndef HAVE_DECL_EWOULDBLOCK
45 #define EWOULDBLOCK EAGAIN
46 #endif
47
48 #if defined(_MSC_VER) || defined(__MINGW32__)
49 #include "win32_replace.h"
50 #endif
51
52
53 #ifdef HAVE_INTTYPES_H
54 #define __STDC_FORMAT_MACROS
55 #include <inttypes.h>
56 #elif 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 #endif
62
63 #ifdef HAVE_MALLOC_H
64 #include <malloc.h>
65 #endif
66
67 #ifndef __PRI64_PREFIX
68 # if __WORDSIZE == 64 && ! defined __APPLE__
69 #  define __PRI64_PREFIX        "l"
70 # else
71 #  define __PRI64_PREFIX        "ll"
72 # endif
73 #endif
74
75 /* Decimal notation.  */
76 #ifndef PRId8
77 # define PRId8          "d"
78 #endif
79 #ifndef PRId16
80 # define PRId16         "d"
81 #endif
82 #ifndef PRId32
83 # define PRId32         "d"
84 #endif
85 #ifndef PRId64
86 # define PRId64         __PRI64_PREFIX "d"
87 #endif
88
89 #ifndef PRIi8
90 # define PRIi8          "i"
91 #endif
92 #ifndef PRIi16
93 # define PRIi16         "i"
94 #endif
95 #ifndef PRIi32
96 # define PRIi32         "i"
97 #endif
98 #ifndef PRIi64
99 # define PRIi64         __PRI64_PREFIX "i"
100 #endif
101
102 #ifndef PRIu8
103 # define PRIu8          "u"
104 #endif
105 #ifndef PRIu16
106 # define PRIu16         "u"
107 #endif
108 #ifndef PRIu32
109 # define PRIu32         "u"
110 #endif
111 #ifndef PRIu64
112 # define PRIu64         __PRI64_PREFIX "u"
113 #endif
114
115 #ifndef SCNd8
116 # define SCNd8          "hhd"
117 #endif
118 #ifndef SCNd16
119 # define SCNd16         "hd"
120 #endif
121 #ifndef SCNd32
122 # define SCNd32         "d"
123 #endif
124 #ifndef SCNd64
125 # define SCNd64         __PRI64_PREFIX "d"
126 #endif
127
128 #ifndef SCNi8
129 # define SCNi8          "hhi"
130 #endif
131 #ifndef SCNi16
132 # define SCNi16         "hi"
133 #endif
134 #ifndef SCNi32
135 # define SCNi32         "i"
136 #endif
137 #ifndef SCNi64
138 # define SCNi64         __PRI64_PREFIX "i"
139 #endif
140
141 #ifndef SCNu8
142 # define SCNu8          "hhu"
143 #endif
144 #ifndef SCNu16
145 # define SCNu16         "hu"
146 #endif
147 #ifndef SCNu32
148 # define SCNu32         "u"
149 #endif
150 #ifndef SCNu64
151 # define SCNu64         __PRI64_PREFIX "u"
152 #endif
153
154 #ifdef HAVE_BSD_STRING_H
155 #include <bsd/string.h>
156 #endif
157
158 #ifdef HAVE_BSD_UNISTD_H
159 #include <bsd/unistd.h>
160 #endif
161
162 #ifdef HAVE_STRING_H
163 #include <string.h>
164 #endif
165
166 #ifdef HAVE_STRINGS_H
167 #include <strings.h>
168 #endif
169
170 #ifdef HAVE_SYS_TYPES_H
171 #include <sys/types.h>
172 #endif
173
174 #ifdef HAVE_SETPROCTITLE_H
175 #include <setproctitle.h>
176 #endif
177
178 #if STDC_HEADERS
179 #include <stdlib.h>
180 #include <stddef.h>
181 #endif
182
183 #ifdef HAVE_LINUX_TYPES_H
184 /*
185  * This is needed as some broken header files require this to be included early
186  */
187 #include <linux/types.h>
188 #endif
189
190 #ifndef HAVE_STRERROR
191 extern char *sys_errlist[];
192 #define strerror(i) sys_errlist[i]
193 #endif
194
195 #ifndef HAVE_ERRNO_DECL
196 extern int errno;
197 #endif
198
199 #ifndef HAVE_STRDUP
200 #define strdup rep_strdup
201 char *rep_strdup(const char *s);
202 #endif
203
204 #ifndef HAVE_MEMMOVE
205 #define memmove rep_memmove
206 void *rep_memmove(void *dest,const void *src,int size);
207 #endif
208
209 #ifndef HAVE_MEMMEM
210 #define memmem rep_memmem
211 void *rep_memmem(const void *haystack, size_t haystacklen,
212                  const void *needle, size_t needlelen);
213 #endif
214
215 #ifndef HAVE_MEMALIGN
216 #define memalign rep_memalign
217 void *rep_memalign(size_t boundary, size_t size);
218 #endif
219
220 #ifndef HAVE_MKTIME
221 #define mktime rep_mktime
222 /* prototype is in "system/time.h" */
223 #endif
224
225 #ifndef HAVE_TIMEGM
226 #define timegm rep_timegm
227 /* prototype is in "system/time.h" */
228 #endif
229
230 #ifndef HAVE_UTIME
231 #define utime rep_utime
232 /* prototype is in "system/time.h" */
233 #endif
234
235 #ifndef HAVE_UTIMES
236 #define utimes rep_utimes
237 /* prototype is in "system/time.h" */
238 #endif
239
240 #ifndef HAVE_STRLCPY
241 #define strlcpy rep_strlcpy
242 size_t rep_strlcpy(char *d, const char *s, size_t bufsize);
243 #endif
244
245 #ifndef HAVE_STRLCAT
246 #define strlcat rep_strlcat
247 size_t rep_strlcat(char *d, const char *s, size_t bufsize);
248 #endif
249
250 #if (defined(BROKEN_STRNDUP) || !defined(HAVE_STRNDUP))
251 #undef HAVE_STRNDUP
252 #define strndup rep_strndup
253 char *rep_strndup(const char *s, size_t n);
254 #endif
255
256 #if (defined(BROKEN_STRNLEN) || !defined(HAVE_STRNLEN))
257 #undef HAVE_STRNLEN
258 #define strnlen rep_strnlen
259 size_t rep_strnlen(const char *s, size_t n);
260 #endif
261
262 #if !HAVE_DECL_ENVIRON
263 #ifdef __APPLE__
264 #include <crt_externs.h>
265 #define environ (*_NSGetEnviron())
266 #else
267 extern char **environ;
268 #endif
269 #endif
270
271 #ifndef HAVE_SETENV
272 #define setenv rep_setenv
273 int rep_setenv(const char *name, const char *value, int overwrite);
274 #else
275 #ifndef HAVE_SETENV_DECL
276 int setenv(const char *name, const char *value, int overwrite);
277 #endif
278 #endif
279
280 #ifndef HAVE_UNSETENV
281 #define unsetenv rep_unsetenv
282 int rep_unsetenv(const char *name);
283 #endif
284
285 #ifndef HAVE_SETEUID
286 #define seteuid rep_seteuid
287 int rep_seteuid(uid_t);
288 #endif
289
290 #ifndef HAVE_SETEGID
291 #define setegid rep_setegid
292 int rep_setegid(gid_t);
293 #endif
294
295 #if (defined(USE_SETRESUID) && !defined(HAVE_SETRESUID_DECL))
296 /* stupid glibc */
297 int setresuid(uid_t ruid, uid_t euid, uid_t suid);
298 #endif
299 #if (defined(USE_SETRESUID) && !defined(HAVE_SETRESGID_DECL))
300 int setresgid(gid_t rgid, gid_t egid, gid_t sgid);
301 #endif
302
303 #ifndef HAVE_CHOWN
304 #define chown rep_chown
305 int rep_chown(const char *path, uid_t uid, gid_t gid);
306 #endif
307
308 #ifndef HAVE_CHROOT
309 #define chroot rep_chroot
310 int rep_chroot(const char *dirname);
311 #endif
312
313 #ifndef HAVE_LINK
314 #define link rep_link
315 int rep_link(const char *oldpath, const char *newpath);
316 #endif
317
318 #ifndef HAVE_READLINK
319 #define readlink rep_readlink
320 ssize_t rep_readlink(const char *path, char *buf, size_t bufsize);
321 #endif
322
323 #ifndef HAVE_SYMLINK
324 #define symlink rep_symlink
325 int rep_symlink(const char *oldpath, const char *newpath);
326 #endif
327
328 #ifndef HAVE_REALPATH
329 #define realpath rep_realpath
330 char *rep_realpath(const char *path, char *resolved_path);
331 #endif
332
333 #ifndef HAVE_LCHOWN
334 #define lchown rep_lchown
335 int rep_lchown(const char *fname,uid_t uid,gid_t gid);
336 #endif
337
338 #ifdef HAVE_UNIX_H
339 #include <unix.h>
340 #endif
341
342 #ifndef HAVE_SETLINEBUF
343 #define setlinebuf rep_setlinebuf
344 void rep_setlinebuf(FILE *);
345 #endif
346
347 #ifndef HAVE_STRCASESTR
348 #define strcasestr rep_strcasestr
349 char *rep_strcasestr(const char *haystack, const char *needle);
350 #endif
351
352 #ifndef HAVE_STRTOK_R
353 #define strtok_r rep_strtok_r
354 char *rep_strtok_r(char *s, const char *delim, char **save_ptr);
355 #endif
356
357
358
359 #ifndef HAVE_STRTOLL
360 #define strtoll rep_strtoll
361 long long int rep_strtoll(const char *str, char **endptr, int base);
362 #else
363 #ifdef HAVE_BSD_STRTOLL
364 #define strtoll rep_strtoll
365 long long int rep_strtoll(const char *str, char **endptr, int base);
366 #endif
367 #endif
368
369 #ifndef HAVE_STRTOULL
370 #define strtoull rep_strtoull
371 unsigned long long int rep_strtoull(const char *str, char **endptr, int base);
372 #else
373 #ifdef HAVE_BSD_STRTOLL /* yes, it's not HAVE_BSD_STRTOULL */
374 #define strtoull rep_strtoull
375 unsigned long long int rep_strtoull(const char *str, char **endptr, int base);
376 #endif
377 #endif
378
379 #ifndef HAVE_FTRUNCATE
380 #define ftruncate rep_ftruncate
381 int rep_ftruncate(int,off_t);
382 #endif
383
384 #ifndef HAVE_INITGROUPS
385 #define initgroups rep_initgroups
386 int rep_initgroups(char *name, gid_t id);
387 #endif
388
389 #if !defined(HAVE_BZERO) && defined(HAVE_MEMSET)
390 #define bzero(a,b) memset((a),'\0',(b))
391 #endif
392
393 #ifndef HAVE_DLERROR
394 #define dlerror rep_dlerror
395 char *rep_dlerror(void);
396 #endif
397
398 #ifndef HAVE_DLOPEN
399 #define dlopen rep_dlopen
400 #ifdef DLOPEN_TAKES_UNSIGNED_FLAGS
401 void *rep_dlopen(const char *name, unsigned int flags);
402 #else
403 void *rep_dlopen(const char *name, int flags);
404 #endif
405 #endif
406
407 #ifndef HAVE_DLSYM
408 #define dlsym rep_dlsym
409 void *rep_dlsym(void *handle, const char *symbol);
410 #endif
411
412 #ifndef HAVE_DLCLOSE
413 #define dlclose rep_dlclose
414 int rep_dlclose(void *handle);
415 #endif
416
417 #ifndef HAVE_SOCKETPAIR
418 #define socketpair rep_socketpair
419 /* prototype is in system/network.h */
420 #endif
421
422 #ifndef PRINTF_ATTRIBUTE
423 #if (__GNUC__ >= 3) && (__GNUC_MINOR__ >= 1 )
424 /** Use gcc attribute to check printf fns.  a1 is the 1-based index of
425  * the parameter containing the format, and a2 the index of the first
426  * argument. Note that some gcc 2.x versions don't handle this
427  * properly **/
428 #define PRINTF_ATTRIBUTE(a1, a2) __attribute__ ((format (__printf__, a1, a2)))
429 #else
430 #define PRINTF_ATTRIBUTE(a1, a2)
431 #endif
432 #endif
433
434 #ifndef _DEPRECATED_
435 #if (__GNUC__ >= 3) && (__GNUC_MINOR__ >= 1 )
436 #define _DEPRECATED_ __attribute__ ((deprecated))
437 #else
438 #define _DEPRECATED_
439 #endif
440 #endif
441
442 #if !defined(HAVE_VDPRINTF) || !defined(HAVE_C99_VSNPRINTF)
443 #define vdprintf rep_vdprintf
444 int rep_vdprintf(int fd, const char *format, va_list ap) PRINTF_ATTRIBUTE(2,0);
445 #endif
446
447 #if !defined(HAVE_DPRINTF) || !defined(HAVE_C99_VSNPRINTF)
448 #define dprintf rep_dprintf
449 int rep_dprintf(int fd, const char *format, ...) PRINTF_ATTRIBUTE(2,3);
450 #endif
451
452 #if !defined(HAVE_VASPRINTF) || !defined(HAVE_C99_VSNPRINTF)
453 #define vasprintf rep_vasprintf
454 int rep_vasprintf(char **ptr, const char *format, va_list ap) PRINTF_ATTRIBUTE(2,0);
455 #endif
456
457 #if !defined(HAVE_SNPRINTF) || !defined(HAVE_C99_VSNPRINTF)
458 #define snprintf rep_snprintf
459 int rep_snprintf(char *,size_t ,const char *, ...) PRINTF_ATTRIBUTE(3,4);
460 #endif
461
462 #if !defined(HAVE_VSNPRINTF) || !defined(HAVE_C99_VSNPRINTF)
463 #define vsnprintf rep_vsnprintf
464 int rep_vsnprintf(char *,size_t ,const char *, va_list ap) PRINTF_ATTRIBUTE(3,0);
465 #endif
466
467 #if !defined(HAVE_ASPRINTF) || !defined(HAVE_C99_VSNPRINTF)
468 #define asprintf rep_asprintf
469 int rep_asprintf(char **,const char *, ...) PRINTF_ATTRIBUTE(2,3);
470 #endif
471
472 #if !defined(HAVE_C99_VSNPRINTF)
473 #ifdef REPLACE_BROKEN_PRINTF
474 /*
475  * We do not redefine printf by default
476  * as it breaks the build if system headers
477  * use __attribute__((format(printf, 3, 0)))
478  * instead of __attribute__((format(__printf__, 3, 0)))
479  */
480 #define printf rep_printf
481 #endif
482 int rep_printf(const char *, ...) PRINTF_ATTRIBUTE(1,2);
483 #endif
484
485 #if !defined(HAVE_C99_VSNPRINTF)
486 #define fprintf rep_fprintf
487 int rep_fprintf(FILE *stream, const char *, ...) PRINTF_ATTRIBUTE(2,3);
488 #endif
489
490 #ifndef HAVE_VSYSLOG
491 #ifdef HAVE_SYSLOG
492 #define vsyslog rep_vsyslog
493 void rep_vsyslog (int facility_priority, const char *format, va_list arglist) PRINTF_ATTRIBUTE(2,0);
494 #endif
495 #endif
496
497 /* we used to use these fns, but now we have good replacements
498    for snprintf and vsnprintf */
499 #define slprintf snprintf
500
501
502 #ifndef HAVE_VA_COPY
503 #undef va_copy
504 #ifdef HAVE___VA_COPY
505 #define va_copy(dest, src) __va_copy(dest, src)
506 #else
507 #define va_copy(dest, src) (dest) = (src)
508 #endif
509 #endif
510
511 #ifndef HAVE_VOLATILE
512 #define volatile
513 #endif
514
515 #ifndef HAVE_COMPARISON_FN_T
516 typedef int (*comparison_fn_t)(const void *, const void *);
517 #endif
518
519 #ifndef HAVE_WORKING_STRPTIME
520 #define strptime rep_strptime
521 struct tm;
522 char *rep_strptime(const char *buf, const char *format, struct tm *tm);
523 #endif
524
525 #ifndef HAVE_DUP2
526 #define dup2 rep_dup2
527 int rep_dup2(int oldfd, int newfd);
528 #endif
529
530 /* Load header file for dynamic linking stuff */
531 #ifdef HAVE_DLFCN_H
532 #include <dlfcn.h>
533 #endif
534
535 #ifndef RTLD_LAZY
536 #define RTLD_LAZY 0
537 #endif
538 #ifndef RTLD_NOW
539 #define RTLD_NOW 0
540 #endif
541 #ifndef RTLD_GLOBAL
542 #define RTLD_GLOBAL 0
543 #endif
544
545 #ifndef HAVE_SECURE_MKSTEMP
546 #define mkstemp(path) rep_mkstemp(path)
547 int rep_mkstemp(char *temp);
548 #endif
549
550 #ifndef HAVE_MKDTEMP
551 #define mkdtemp rep_mkdtemp
552 char *rep_mkdtemp(char *template);
553 #endif
554
555 #ifndef HAVE_PREAD
556 #define pread rep_pread
557 ssize_t rep_pread(int __fd, void *__buf, size_t __nbytes, off_t __offset);
558 #define LIBREPLACE_PREAD_REPLACED 1
559 #else
560 #define LIBREPLACE_PREAD_NOT_REPLACED 1
561 #endif
562
563 #ifndef HAVE_PWRITE
564 #define pwrite rep_pwrite
565 ssize_t rep_pwrite(int __fd, const void *__buf, size_t __nbytes, off_t __offset);
566 #define LIBREPLACE_PWRITE_REPLACED 1
567 #else
568 #define LIBREPLACE_PWRITE_NOT_REPLACED 1
569 #endif
570
571 #if !defined(HAVE_INET_NTOA) || defined(REPLACE_INET_NTOA)
572 #define inet_ntoa rep_inet_ntoa
573 /* prototype is in "system/network.h" */
574 #endif
575
576 #ifndef HAVE_INET_PTON
577 #define inet_pton rep_inet_pton
578 /* prototype is in "system/network.h" */
579 #endif
580
581 #ifndef HAVE_INET_NTOP
582 #define inet_ntop rep_inet_ntop
583 /* prototype is in "system/network.h" */
584 #endif
585
586 #ifndef HAVE_INET_ATON
587 #define inet_aton rep_inet_aton
588 /* prototype is in "system/network.h" */
589 #endif
590
591 #ifndef HAVE_CONNECT
592 #define connect rep_connect
593 /* prototype is in "system/network.h" */
594 #endif
595
596 #ifndef HAVE_GETHOSTBYNAME
597 #define gethostbyname rep_gethostbyname
598 /* prototype is in "system/network.h" */
599 #endif
600
601 #ifndef HAVE_GETIFADDRS
602 #define getifaddrs rep_getifaddrs
603 /* prototype is in "system/network.h" */
604 #endif
605
606 #ifndef HAVE_FREEIFADDRS
607 #define freeifaddrs rep_freeifaddrs
608 /* prototype is in "system/network.h" */
609 #endif
610
611 #ifndef HAVE_GET_CURRENT_DIR_NAME
612 #define get_current_dir_name rep_get_current_dir_name
613 char *rep_get_current_dir_name(void);
614 #endif
615
616 #ifndef HAVE_STRERROR_R
617 #define strerror_r rep_strerror_r
618 int rep_strerror_r(int errnum, char *buf, size_t buflen);
619 #endif
620
621 #if !defined(HAVE_CLOCK_GETTIME)
622 #define clock_gettime rep_clock_gettime
623 #endif
624
625 #ifdef HAVE_LIMITS_H
626 #include <limits.h>
627 #endif
628
629 #ifdef HAVE_SYS_PARAM_H
630 #include <sys/param.h>
631 #endif
632
633 /* The extra casts work around common compiler bugs.  */
634 #define _TYPE_SIGNED(t) (! ((t) 0 < (t) -1))
635 /* The outer cast is needed to work around a bug in Cray C 5.0.3.0.
636    It is necessary at least when t == time_t.  */
637 #define _TYPE_MINIMUM(t) ((t) (_TYPE_SIGNED (t) \
638                               ? ~ (t) 0 << (sizeof (t) * CHAR_BIT - 1) : (t) 0))
639 #define _TYPE_MAXIMUM(t) ((t) (~ (t) 0 - _TYPE_MINIMUM (t)))
640
641 #ifndef UINT16_MAX
642 #define UINT16_MAX 65535
643 #endif
644
645 #ifndef UINT32_MAX
646 #define UINT32_MAX (4294967295U)
647 #endif
648
649 #ifndef UINT64_MAX
650 #define UINT64_MAX ((uint64_t)-1)
651 #endif
652
653 #ifndef INT64_MAX
654 #define INT64_MAX 9223372036854775807LL
655 #endif
656
657 #ifndef CHAR_BIT
658 #define CHAR_BIT 8
659 #endif
660
661 #ifndef INT32_MAX
662 #define INT32_MAX _TYPE_MAXIMUM(int32_t)
663 #endif
664
665 #ifdef HAVE_STDBOOL_H
666 #include <stdbool.h>
667 #endif
668
669 #if !defined(HAVE_BOOL)
670 #ifdef HAVE__Bool
671 #define bool _Bool
672 #else
673 typedef int bool;
674 #endif
675 #endif
676
677 #if !defined(HAVE_INTPTR_T)
678 typedef long long intptr_t ;
679 #endif
680
681 #if !defined(HAVE_UINTPTR_T)
682 typedef unsigned long long uintptr_t ;
683 #endif
684
685 #if !defined(HAVE_PTRDIFF_T)
686 typedef unsigned long long ptrdiff_t ;
687 #endif
688
689 /*
690  * to prevent <rpcsvc/yp_prot.h> from doing a redefine of 'bool'
691  *
692  * IRIX, HPUX, MacOS 10 and Solaris need BOOL_DEFINED
693  * Tru64 needs _BOOL_EXISTS
694  * AIX needs _BOOL,_TRUE,_FALSE
695  */
696 #ifndef BOOL_DEFINED
697 #define BOOL_DEFINED
698 #endif
699 #ifndef _BOOL_EXISTS
700 #define _BOOL_EXISTS
701 #endif
702 #ifndef _BOOL
703 #define _BOOL
704 #endif
705
706 #ifndef __bool_true_false_are_defined
707 #define __bool_true_false_are_defined
708 #endif
709
710 #ifndef true
711 #define true (1)
712 #endif
713 #ifndef false
714 #define false (0)
715 #endif
716
717 #ifndef _TRUE
718 #define _TRUE true
719 #endif
720 #ifndef _FALSE
721 #define _FALSE false
722 #endif
723
724 #ifndef HAVE_FUNCTION_MACRO
725 #ifdef HAVE_func_MACRO
726 #define __FUNCTION__ __func__
727 #else
728 #define __FUNCTION__ ("")
729 #endif
730 #endif
731
732
733 #ifndef MIN
734 #define MIN(a,b) ((a)<(b)?(a):(b))
735 #endif
736
737 #ifndef MAX
738 #define MAX(a,b) ((a)>(b)?(a):(b))
739 #endif
740
741 #if !defined(HAVE_VOLATILE)
742 #define volatile
743 #endif
744
745 /**
746   this is a warning hack. The idea is to use this everywhere that we
747   get the "discarding const" warning from gcc. That doesn't actually
748   fix the problem of course, but it means that when we do get to
749   cleaning them up we can do it by searching the code for
750   discard_const.
751
752   It also means that other error types aren't as swamped by the noise
753   of hundreds of const warnings, so we are more likely to notice when
754   we get new errors.
755
756   Please only add more uses of this macro when you find it
757   _really_ hard to fix const warnings. Our aim is to eventually use
758   this function in only a very few places.
759
760   Also, please call this via the discard_const_p() macro interface, as that
761   makes the return type safe.
762 */
763 #define discard_const(ptr) ((void *)((uintptr_t)(ptr)))
764
765 /** Type-safe version of discard_const */
766 #define discard_const_p(type, ptr) ((type *)discard_const(ptr))
767
768 #ifndef __STRING
769 #define __STRING(x)    #x
770 #endif
771
772 #ifndef __STRINGSTRING
773 #define __STRINGSTRING(x) __STRING(x)
774 #endif
775
776 #ifndef __LINESTR__
777 #define __LINESTR__ __STRINGSTRING(__LINE__)
778 #endif
779
780 #ifndef __location__
781 #define __location__ __FILE__ ":" __LINESTR__
782 #endif
783
784 /** 
785  * zero a structure 
786  */
787 #define ZERO_STRUCT(x) memset((char *)&(x), 0, sizeof(x))
788
789 /** 
790  * zero a structure given a pointer to the structure 
791  */
792 #define ZERO_STRUCTP(x) do { if ((x) != NULL) memset((char *)(x), 0, sizeof(*(x))); } while(0)
793
794 /** 
795  * zero a structure given a pointer to the structure - no zero check 
796  */
797 #define ZERO_STRUCTPN(x) memset((char *)(x), 0, sizeof(*(x)))
798
799 /* zero an array - note that sizeof(array) must work - ie. it must not be a
800    pointer */
801 #define ZERO_ARRAY(x) memset((char *)(x), 0, sizeof(x))
802
803 /**
804  * work out how many elements there are in a static array 
805  */
806 #define ARRAY_SIZE(a) (sizeof(a)/sizeof(a[0]))
807
808 /** 
809  * pointer difference macro 
810  */
811 #define PTR_DIFF(p1,p2) ((ptrdiff_t)(((const char *)(p1)) - (const char *)(p2)))
812
813 #if MMAP_BLACKLIST
814 #undef HAVE_MMAP
815 #endif
816
817 #ifdef __COMPAR_FN_T
818 #define QSORT_CAST (__compar_fn_t)
819 #endif
820
821 #ifndef QSORT_CAST
822 #define QSORT_CAST (int (*)(const void *, const void *))
823 #endif
824
825 #ifndef PATH_MAX
826 #define PATH_MAX 1024
827 #endif
828
829 #ifndef MAX_DNS_NAME_LENGTH
830 #define MAX_DNS_NAME_LENGTH 256 /* Actually 255 but +1 for terminating null. */
831 #endif
832
833 #ifndef HAVE_CRYPT
834 char *ufc_crypt(const char *key, const char *salt);
835 #define crypt ufc_crypt
836 #else
837 #ifdef HAVE_CRYPT_H
838 #include <crypt.h>
839 #endif
840 #endif
841
842 /* these macros gain us a few percent of speed on gcc */
843 #if (__GNUC__ >= 3)
844 /* the strange !! is to ensure that __builtin_expect() takes either 0 or 1
845    as its first argument */
846 #ifndef likely
847 #define likely(x)   __builtin_expect(!!(x), 1)
848 #endif
849 #ifndef unlikely
850 #define unlikely(x) __builtin_expect(!!(x), 0)
851 #endif
852 #else
853 #ifndef likely
854 #define likely(x) (x)
855 #endif
856 #ifndef unlikely
857 #define unlikely(x) (x)
858 #endif
859 #endif
860
861 #ifndef HAVE_FDATASYNC
862 #define fdatasync(fd) fsync(fd)
863 #elif !defined(HAVE_DECL_FDATASYNC)
864 int fdatasync(int );
865 #endif
866
867 /* these are used to mark symbols as local to a shared lib, or
868  * publicly available via the shared lib API */
869 #ifndef _PUBLIC_
870 #ifdef HAVE_VISIBILITY_ATTR
871 #define _PUBLIC_ __attribute__((visibility("default")))
872 #else
873 #define _PUBLIC_
874 #endif
875 #endif
876
877 #ifndef _PRIVATE_
878 #ifdef HAVE_VISIBILITY_ATTR
879 #  define _PRIVATE_ __attribute__((visibility("hidden")))
880 #else
881 #  define _PRIVATE_
882 #endif
883 #endif
884
885 #ifndef HAVE_POLL
886 #define poll rep_poll
887 /* prototype is in "system/network.h" */
888 #endif
889
890 #ifndef HAVE_GETPEEREID
891 #define getpeereid rep_getpeereid
892 int rep_getpeereid(int s, uid_t *uid, gid_t *gid);
893 #endif
894
895 #ifndef HAVE_USLEEP
896 #define usleep rep_usleep
897 typedef long useconds_t;
898 int usleep(useconds_t);
899 #endif
900
901 #ifndef HAVE_SETPROCTITLE
902 #define setproctitle rep_setproctitle
903 void rep_setproctitle(const char *fmt, ...) PRINTF_ATTRIBUTE(1, 2);
904 #endif
905
906 bool nss_wrapper_enabled(void);
907 bool nss_wrapper_hosts_enabled(void);
908 bool socket_wrapper_enabled(void);
909 bool uid_wrapper_enabled(void);
910
911 /* Needed for Solaris atomic_add_XX functions. */
912 #if defined(HAVE_SYS_ATOMIC_H)
913 #include <sys/atomic.h>
914 #endif
915
916 #endif /* _LIBREPLACE_REPLACE_H */