r21076: Two pieces of infrastructure from Samba4: An API-compatible messaging wrapper
[sfrench/samba-autobuild/.git] / source / 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
8
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
12    
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.
17
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.
22
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
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 #if defined(_MSC_VER) || defined(__MINGW32__)
45 #include "win32_replace.h"
46 #endif
47
48 #ifdef __COMPAR_FN_T
49 #define QSORT_CAST (__compar_fn_t)
50 #endif
51
52 #ifndef QSORT_CAST
53 #define QSORT_CAST (int (*)(const void *, const void *))
54 #endif
55
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
64
65 #ifdef HAVE_STRING_H
66 #include <string.h>
67 #endif
68
69 #ifdef HAVE_STRINGS_H
70 #include <strings.h>
71 #endif
72
73 #ifdef HAVE_SYS_TYPES_H
74 #include <sys/types.h>
75 #endif
76
77 #if STDC_HEADERS
78 #include <stdlib.h>
79 #include <stddef.h>
80 #endif
81
82 #ifndef HAVE_STRERROR
83 extern char *sys_errlist[];
84 #define strerror(i) sys_errlist[i]
85 #endif
86
87 #ifndef HAVE_ERRNO_DECL
88 extern int errno;
89 #endif
90
91 #ifndef HAVE_STRDUP
92 #define strdup rep_strdup
93 char *rep_strdup(const char *s);
94 #endif
95
96 #ifndef HAVE_MEMMOVE
97 #define memmove rep_memmove
98 void *rep_memmove(void *dest,const void *src,int size);
99 #endif
100
101 #if !defined(HAVE_MKTIME) || !defined(HAVE_TIMEGM)
102 #include "system/time.h"
103 #endif
104
105 #ifndef HAVE_MKTIME
106 #define mktime rep_mktime
107 time_t rep_mktime(struct tm *t);
108 #endif
109
110 #ifndef HAVE_TIMEGM
111 struct tm;
112 #define timegm rep_timegm
113 time_t rep_timegm(struct tm *tm);
114 #endif
115
116 #ifndef HAVE_STRLCPY
117 #define strlcpy rep_strlcpy
118 size_t rep_strlcpy(char *d, const char *s, size_t bufsize);
119 #endif
120
121 #ifndef HAVE_STRLCAT
122 #define strlcat rep_strlcat
123 size_t rep_strlcat(char *d, const char *s, size_t bufsize);
124 #endif
125
126 #if (defined(BROKEN_STRNDUP) || !defined(HAVE_STRNDUP))
127 #undef HAVE_STRNDUP
128 #define strndup rep_strndup
129 char *rep_strndup(const char *s, size_t n);
130 #endif
131
132 #if (defined(BROKEN_STRNLEN) || !defined(HAVE_STRNLEN))
133 #undef HAVE_STRNLEN
134 #define strnlen rep_strnlen
135 size_t rep_strnlen(const char *s, size_t n);
136 #endif
137
138 #ifndef HAVE_SETENV
139 #define setenv rep_setenv
140 int rep_setenv(const char *name, const char *value, int overwrite); 
141 #endif
142
143 #ifndef HAVE_SETEUID
144 #define seteuid rep_seteuid
145 int rep_seteuid(uid_t);
146 #endif
147
148 #ifndef HAVE_SETEGID
149 #define setegid rep_setegid
150 int rep_setegid(gid_t);
151 #endif
152
153 #ifndef HAVE_SETLINEBUF
154 #define setlinebuf rep_setlinebuf
155 void rep_setlinebuf(FILE *);
156 #endif
157
158 #ifndef HAVE_STRCASESTR
159 #define strcasestr rep_strcasestr
160 char *rep_strcasestr(const char *haystack, const char *needle);
161 #endif
162
163 #ifndef HAVE_STRTOK_R
164 #define strtok_r rep_strtok_r 
165 char *rep_strtok_r(char *s, const char *delim, char **save_ptr);
166 #endif
167
168 #ifndef HAVE_STRTOLL
169 #define strtoll rep_strtoll
170 long long int rep_strtoll(const char *str, char **endptr, int base);
171 #endif
172
173 #ifndef HAVE_STRTOULL
174 #define strtoull rep_strtoull
175 unsigned long long int rep_strtoull(const char *str, char **endptr, int base);
176 #endif
177
178 #ifndef HAVE_FTRUNCATE
179 #define ftruncate rep_ftruncate
180 int rep_ftruncate(int,off_t);
181 #endif
182
183 #ifndef HAVE_INITGROUPS
184 #define ftruncate rep_ftruncate
185 int rep_initgroups(char *name, gid_t id);
186 #endif
187
188 #if !defined(HAVE_BZERO) && defined(HAVE_MEMSET)
189 #define bzero(a,b) memset((a),'\0',(b))
190 #endif
191
192 #ifndef HAVE_DLERROR
193 #define dlerror rep_dlerror
194 char *rep_dlerror(void);
195 #endif
196
197 #ifndef HAVE_DLOPEN
198 #define dlopen rep_dlopen
199 void *rep_dlopen(const char *name, int flags);
200 #endif
201
202 #ifndef HAVE_DLSYM
203 #define dlsym rep_dlsym
204 void *rep_dlsym(void *handle, const char *symbol);
205 #endif
206
207 #ifndef HAVE_DLCLOSE
208 #define dlclose rep_dlclose
209 int rep_dlclose(void *handle);
210 #endif
211
212 #ifndef HAVE_SOCKETPAIR
213 #define socketpair rep_socketpair
214 int rep_socketpair(int d, int type, int protocol, int sv[2]);
215 #endif
216
217 #ifndef PRINTF_ATTRIBUTE
218 #if (__GNUC__ >= 3) && (__GNUC_MINOR__ >= 1 )
219 /** Use gcc attribute to check printf fns.  a1 is the 1-based index of
220  * the parameter containing the format, and a2 the index of the first
221  * argument. Note that some gcc 2.x versions don't handle this
222  * properly **/
223 #define PRINTF_ATTRIBUTE(a1, a2) __attribute__ ((format (__printf__, a1, a2)))
224 #else
225 #define PRINTF_ATTRIBUTE(a1, a2)
226 #endif
227 #endif
228
229 #ifndef HAVE_VASPRINTF
230 #define vasprintf rep_vasprintf
231 int rep_vasprintf(char **ptr, const char *format, va_list ap) PRINTF_ATTRIBUTE(2,0);
232 #endif
233
234 #if !defined(HAVE_SNPRINTF) || !defined(HAVE_C99_VSNPRINTF)
235 #define snprintf rep_snprintf
236 int rep_snprintf(char *,size_t ,const char *, ...) PRINTF_ATTRIBUTE(3,4);
237 #endif
238
239 #if !defined(HAVE_VSNPRINTF) || !defined(HAVE_C99_VSNPRINTF)
240 #define vsnprintf rep_vsnprintf
241 int rep_vsnprintf(char *,size_t ,const char *, va_list ap) PRINTF_ATTRIBUTE(3,0);
242 #endif
243
244 #ifndef HAVE_ASPRINTF
245 #define asprintf rep_asprintf
246 int rep_asprintf(char **,const char *, ...) PRINTF_ATTRIBUTE(2,3);
247 #endif
248
249 #ifndef HAVE_VSYSLOG
250 #ifdef HAVE_SYSLOG
251 #define vsyslog rep_vsyslog
252 void rep_vsyslog (int facility_priority, const char *format, va_list arglist) PRINTF_ATTRIBUTE(2,0);
253 #endif
254 #endif
255
256 /* we used to use these fns, but now we have good replacements
257    for snprintf and vsnprintf */
258 #define slprintf snprintf
259
260
261 #ifndef HAVE_VA_COPY
262 #undef va_copy
263 #ifdef HAVE___VA_COPY
264 #define va_copy(dest, src) __va_copy(dest, src)
265 #else
266 #define va_copy(dest, src) (dest) = (src)
267 #endif
268 #endif
269
270 #ifndef HAVE_VOLATILE
271 #define volatile
272 #endif
273
274 #ifndef HAVE_COMPARISON_FN_T
275 typedef int (*comparison_fn_t)(const void *, const void *);
276 #endif
277
278 /* Load header file for dynamic linking stuff */
279 #ifdef HAVE_DLFCN_H
280 #include <dlfcn.h>
281 #endif
282
283 #ifndef RTLD_LAZY
284 #define RTLD_LAZY 0
285 #endif
286
287 #ifndef HAVE_SECURE_MKSTEMP
288 #define mkstemp(path) rep_mkstemp(path)
289 int rep_mkstemp(char *temp);
290 #endif
291
292 #ifndef HAVE_MKDTEMP
293 #define mkdtemp rep_mkdtemp
294 char *rep_mkdtemp(char *template);
295 #endif
296
297 #ifdef HAVE_LIMITS_H
298 #include <limits.h>
299 #endif
300
301 /* The extra casts work around common compiler bugs.  */
302 #define _TYPE_SIGNED(t) (! ((t) 0 < (t) -1))
303 /* The outer cast is needed to work around a bug in Cray C 5.0.3.0.
304    It is necessary at least when t == time_t.  */
305 #define _TYPE_MINIMUM(t) ((t) (_TYPE_SIGNED (t) \
306                               ? ~ (t) 0 << (sizeof (t) * CHAR_BIT - 1) : (t) 0))
307 #define _TYPE_MAXIMUM(t) ((t) (~ (t) 0 - _TYPE_MINIMUM (t)))
308
309 #ifndef HOST_NAME_MAX
310 #define HOST_NAME_MAX 64
311 #endif
312
313 #ifndef UINT16_MAX
314 #define UINT16_MAX 65535
315 #endif
316
317 #ifndef UINT32_MAX
318 #define UINT32_MAX (4294967295U)
319 #endif
320
321 #ifndef UINT64_MAX
322 #define UINT64_MAX ((uint64_t)-1)
323 #endif
324
325 #ifndef CHAR_BIT
326 #define CHAR_BIT 8
327 #endif
328
329 #ifndef INT32_MAX
330 #define INT32_MAX _TYPE_MAXIMUM(int32_t)
331 #endif
332
333 #ifdef HAVE_STDBOOL_H
334 #include <stdbool.h>
335 #endif
336
337 #if !defined(HAVE_BOOL)
338 #ifdef HAVE__Bool
339 #define bool _Bool
340 #else
341 typedef int bool;
342 #endif
343 #endif
344
345 /*
346  * to prevent <rpcsvc/yp_prot.h> from doing a redefine of 'bool'
347  *
348  * IRIX, HPUX, MacOS 10 and Solaris need BOOL_DEFINED
349  * Tru64 needs _BOOL_EXISTS
350  * AIX needs _BOOL,_TRUE,_FALSE
351  */
352 #ifndef BOOL_DEFINED
353 #define BOOL_DEFINED
354 #endif
355 #ifndef _BOOL_EXISTS
356 #define _BOOL_EXISTS
357 #endif
358 #ifndef _BOOL
359 #define _BOOL
360 #endif
361
362 #ifndef __bool_true_false_are_defined
363 #define __bool_true_false_are_defined
364 #endif
365
366 #ifndef true
367 #define true (1)
368 #endif
369 #ifndef false
370 #define false (0)
371 #endif
372
373 #ifndef _TRUE
374 #define _TRUE true
375 #endif
376 #ifndef _FALSE
377 #define _FALSE false
378 #endif
379
380 #ifndef HAVE_FUNCTION_MACRO
381 #ifdef HAVE_func_MACRO
382 #define __FUNCTION__ __func__
383 #else
384 #define __FUNCTION__ ("")
385 #endif
386 #endif
387
388 #ifdef HAVE_SYS_PARAM_H
389 #include <sys/param.h>
390 #endif
391
392 #ifndef MIN
393 #define MIN(a,b) ((a)<(b)?(a):(b))
394 #endif
395
396 #ifndef MAX
397 #define MAX(a,b) ((a)>(b)?(a):(b))
398 #endif
399
400 #ifndef __STRING
401 #define __STRING(x)    #x
402 #endif
403
404 #if MMAP_BLACKLIST
405 #undef HAVE_MMAP
406 #endif
407
408 #endif /* _LIBREPLACE_REPLACE_H */