r7668: - setup HAVE_ILDAP to enable the ildap backend in ldb
[abartlet/samba.git/.git] / source4 / include / includes.h
1 #ifndef _INCLUDES_H
2 #define _INCLUDES_H
3 /* 
4    Unix SMB/CIFS implementation.
5    Machine customisation and include handling
6    Copyright (C) Andrew Tridgell 1994-1998
7    Copyright (C) 2002 by Martin Pool <mbp@samba.org>
8    
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 2 of the License, or
12    (at your option) any later version.
13    
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18    
19    You should have received a copy of the GNU General Public License
20    along with this program; if not, write to the Free Software
21    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 */
23
24 #ifndef NO_CONFIG_H /* for some tests */
25 #include "config.h"
26 #include "smb_build.h"
27 #endif
28
29 #include "local.h"
30
31 #if (__GNUC__ >= 3)
32 /** Use gcc attribute to check printf fns.  a1 is the 1-based index of
33  * the parameter containing the format, and a2 the index of the first
34  * argument. Note that some gcc 2.x versions don't handle this
35  * properly **/
36 #define PRINTF_ATTRIBUTE(a1, a2) __attribute__ ((format (__printf__, a1, a2)))
37 #else
38 #define PRINTF_ATTRIBUTE(a1, a2)
39 #endif
40
41 #ifdef __GNUC__
42 /** gcc attribute used on function parameters so that it does not emit
43  * warnings about them being unused. **/
44 #  define UNUSED(param) param __attribute__ ((unused))
45 #else
46 #  define UNUSED(param) param
47 /** Feel free to add definitions for other compilers here. */
48 #endif
49
50 #include <sys/types.h>
51 #include <stdio.h>
52 #include <stdlib.h>
53 #include <stddef.h>
54 #include <sys/time.h>
55
56 #ifdef HAVE_STDINT_H
57 #include <stdint.h>
58 #endif
59
60 #ifdef HAVE_STRING_H
61 #include <string.h>
62 #endif
63
64 #include <signal.h>
65 #include <errno.h>
66
67 #ifdef HAVE_STDARG_H
68 #include <stdarg.h>
69 #else
70 #include <varargs.h>
71 #endif
72
73 #ifdef HAVE_WINSOCK2_H
74 #include <winsock2.h>
75 #endif
76
77 #ifdef HAVE_WINDOWS_H
78 #include <windows.h>
79 #endif
80
81 /* we support ADS if we want it and have krb5 and ldap libs */
82 #if defined(WITH_ADS) && defined(HAVE_KRB5) && defined(HAVE_LDAP)
83 #define HAVE_ADS
84 #endif
85
86 /* tell ldb we have the internal ldap code */
87 #define HAVE_ILDAP 1
88
89 /*
90  * Define VOLATILE if needed.
91  */
92
93 #define False (0)
94 #define True (1)
95 #define Auto (2)
96
97 typedef int BOOL;
98
99 /*
100   we use struct ipv4_addr to avoid having to include all the
101   system networking headers everywhere
102 */
103 struct ipv4_addr {
104         uint32_t addr;
105 };
106
107 #ifndef HAVE_STRERROR
108 extern char *sys_errlist[];
109 #define strerror(i) sys_errlist[i]
110 #endif
111
112 #ifndef HAVE_ERRNO_DECL
113 extern int errno;
114 #endif
115
116 /* Lists, trees, caching, database... */
117 #include "xfile.h"
118 #include "lib/talloc/talloc.h"
119 #include "nt_status.h"
120 #include "structs.h"
121 #include "trans2.h"
122 #include "nterr.h"
123 #include "charset.h"
124 #include "debug.h"
125 #include "doserr.h"
126 #include "enums.h"
127 #include "smb_macros.h"
128 #include "smb.h"
129 #include "byteorder.h"
130 #include "module.h"
131 #include "librpc/ndr/libndr.h"
132 #include "librpc/gen_ndr/ndr_misc.h"
133 #include "librpc/gen_ndr/ndr_dcerpc.h"
134 #include "librpc/ndr/ndr_orpc.h"
135 #include "librpc/gen_ndr/ndr_orpc.h"
136 #include "librpc/rpc/dcerpc.h"
137 #include "smb_interfaces.h"
138 #include "ntvfs/ntvfs.h"
139 #include "cli_context.h"
140 #include "lib/com/com.h"
141 #include "credentials.h"
142
143 #include "lib/replace/replace.h"
144
145
146 #define malloc_p(type) (type *)malloc(sizeof(type))
147 #define malloc_array_p(type, count) (type *)realloc_array(NULL, sizeof(type), count)
148 #define realloc_p(p, type, count) (type *)realloc_array(p, sizeof(type), count)
149
150 /***** automatically generated prototypes *****/
151 #define _PRINTF_ATTRIBUTE(a1, a2) PRINTF_ATTRIBUTE(a1, a2)
152 #include "proto.h"
153 #undef _PRINTF_ATTRIBUTE
154 #define _PRINTF_ATTRIBUTE(a1, a2)
155
156 /* String routines */
157
158 #include "safe_string.h"
159
160 #ifndef HAVE_PIPE
161 #define SYNC_DNS 1
162 #endif
163
164 extern int DEBUGLEVEL;
165
166 #if defined(VALGRIND)
167 #define strlen(x) valgrind_strlen(x)
168 #endif
169
170 #if 0
171 /* darn, we can't do this now that we don't link the ldb tools to all the smb libs */
172 #define TALLOC_ABORT(reason) smb_panic(reason)
173 #endif
174
175 /*
176   this is a warning hack. The idea is to use this everywhere that we
177   get the "discarding const" warning from gcc. That doesn't actually
178   fix the problem of course, but it means that when we do get to
179   cleaning them up we can do it by searching the code for
180   discard_const.
181
182   It also means that other error types aren't as swamped by the noise
183   of hundreds of const warnings, so we are more likely to notice when
184   we get new errors.
185
186   Please only add more uses of this macro when you find it
187   _really_ hard to fix const warnings. Our aim is to eventually use
188   this function in only a very few places.
189
190   Also, please call this via the discard_const_p() macro interface, as that
191   makes the return type safe.
192 */
193 #ifdef HAVE_INTPTR_T
194 #define discard_const(ptr) ((void *)((intptr_t)(ptr)))
195 #else
196 #define discard_const(ptr) ((void *)(ptr))
197 #endif
198 #define discard_const_p(type, ptr) ((type *)discard_const(ptr))
199
200 /*
201   type safe varient of smb_xmalloc()
202 */
203 #define smb_xmalloc_p(type) (type *)smb_xmalloc(sizeof(type))
204
205 #endif /* _INCLUDES_H */
206