7b6b2014e66c3f77d005fd615b339d01cb4d1509
[sfrench/samba-autobuild/.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 #ifdef __GNUC__
32 /** gcc attribute used on function parameters so that it does not emit
33  * warnings about them being unused. **/
34 #  define UNUSED(param) param __attribute__ ((unused))
35 #else
36 #  define UNUSED(param) param
37 /** Feel free to add definitions for other compilers here. */
38 #endif
39
40 #include <sys/types.h>
41 #include <stdio.h>
42 #include <stdlib.h>
43 #include <stddef.h>
44 #include <sys/time.h>
45
46 #ifdef HAVE_STDINT_H
47 #include <stdint.h>
48 #endif
49
50 #ifdef HAVE_INTTYPES_H
51 #include <inttypes.h>
52 #endif
53
54 #ifdef HAVE_STRING_H
55 #include <string.h>
56 #endif
57
58 #include <signal.h>
59 #include <errno.h>
60
61 #ifdef HAVE_STDARG_H
62 #include <stdarg.h>
63 #else
64 #include <varargs.h>
65 #endif
66
67 #ifdef HAVE_WINSOCK2_H
68 #include <winsock2.h>
69 #endif
70
71 #ifdef HAVE_WS2TCPIP_H
72 #include <ws2tcpip.h>
73 #endif
74
75 #ifdef HAVE_WINDOWS_H
76 #include <windows.h>
77 #endif
78
79 #if defined(_MSC_VER) || defined(__MINGW32__)
80 #include "lib/replace/win32/replace.h"
81 #endif
82
83 /* we support ADS if we want it and have krb5 and ldap libs */
84 #if defined(WITH_ADS) && defined(HAVE_KRB5) && defined(HAVE_LDAP)
85 #define HAVE_ADS
86 #endif
87
88 /* tell ldb we have the internal ldap code */
89 #define HAVE_ILDAP 1
90
91 /*
92  * Define VOLATILE if needed.
93  */
94
95 #define False (0)
96 #define True (1)
97 #define Auto (2)
98
99 typedef int BOOL;
100
101 /*
102   we use struct ipv4_addr to avoid having to include all the
103   system networking headers everywhere
104 */
105 struct ipv4_addr {
106         uint32_t addr;
107 };
108
109 #ifndef HAVE_STRERROR
110 extern char *sys_errlist[];
111 #define strerror(i) sys_errlist[i]
112 #endif
113
114 #ifndef HAVE_ERRNO_DECL
115 extern int errno;
116 #endif
117
118 #include "lib/replace/replace.h"
119
120 /* Lists, trees, caching, database... */
121 #include "xfile.h"
122 #include "lib/talloc/talloc.h"
123 #include "nt_status.h"
124 #include "structs.h"
125 #include "trans2.h"
126 #include "nterr.h"
127 #include "charset.h"
128 #include "debug.h"
129 #include "doserr.h"
130 #include "enums.h"
131 #include "smb_macros.h"
132 #include "smb.h"
133 #include "byteorder.h"
134 #include "module.h"
135 #include "librpc/ndr/libndr.h"
136 #include "librpc/gen_ndr/misc.h"
137 #include "librpc/gen_ndr/dcerpc.h"
138 #include "librpc/ndr/ndr_orpc.h"
139 #include "librpc/gen_ndr/orpc.h"
140 #include "librpc/rpc/dcerpc.h"
141 #include "smb_interfaces.h"
142 #include "ntvfs/ntvfs.h"
143 #include "cli_context.h"
144 #include "lib/com/com.h"
145 #include "credentials.h"
146
147
148
149 #define malloc_p(type) (type *)malloc(sizeof(type))
150 #define malloc_array_p(type, count) (type *)realloc_array(NULL, sizeof(type), count)
151 #define realloc_p(p, type, count) (type *)realloc_array(p, sizeof(type), count)
152
153 /***** automatically generated prototypes *****/
154 #define _PRINTF_ATTRIBUTE(a1, a2) PRINTF_ATTRIBUTE(a1, a2)
155 #include "include/proto.h"
156 #undef _PRINTF_ATTRIBUTE
157 #define _PRINTF_ATTRIBUTE(a1, a2)
158
159 /* String routines */
160
161 #include "safe_string.h"
162
163 #ifndef HAVE_PIPE
164 #define SYNC_DNS 1
165 #endif
166
167 extern int DEBUGLEVEL;
168
169 #if defined(VALGRIND)
170 #define strlen(x) valgrind_strlen(x)
171 #endif
172
173 #if 0
174 /* darn, we can't do this now that we don't link the ldb tools to all the smb libs */
175 #define TALLOC_ABORT(reason) smb_panic(reason)
176 #endif
177
178 /*
179   this is a warning hack. The idea is to use this everywhere that we
180   get the "discarding const" warning from gcc. That doesn't actually
181   fix the problem of course, but it means that when we do get to
182   cleaning them up we can do it by searching the code for
183   discard_const.
184
185   It also means that other error types aren't as swamped by the noise
186   of hundreds of const warnings, so we are more likely to notice when
187   we get new errors.
188
189   Please only add more uses of this macro when you find it
190   _really_ hard to fix const warnings. Our aim is to eventually use
191   this function in only a very few places.
192
193   Also, please call this via the discard_const_p() macro interface, as that
194   makes the return type safe.
195 */
196 #ifdef HAVE_INTPTR_T
197 #define discard_const(ptr) ((void *)((intptr_t)(ptr)))
198 #else
199 #define discard_const(ptr) ((void *)(ptr))
200 #endif
201 #define discard_const_p(type, ptr) ((type *)discard_const(ptr))
202
203 #ifndef HAVE_SSIZE_T
204 #define ssize_t int
205 #endif
206
207 #ifndef UINT16_MAX
208 #define UINT16_MAX 65535
209 #endif
210
211 /*
212   type safe varient of smb_xmalloc()
213 */
214 #define smb_xmalloc_p(type) (type *)smb_xmalloc(sizeof(type))
215
216 #endif /* _INCLUDES_H */
217