examples: Fix shellcheck error in VampireDriversFunctions
[Samba.git] / source3 / include / includes.h
blobbb93aad02a00791fd705322b4923d8ab1ba060e1
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>
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 3 of the License, or
12 (at your option) any later version.
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.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #include "../replace/replace.h"
25 /* make sure we have included the correct config.h */
26 #ifndef NO_CONFIG_H /* for some tests */
27 #ifndef CONFIG_H_IS_FROM_SAMBA
28 #error "make sure you have removed all config.h files from standalone builds!"
29 #error "the included config.h isn't from samba!"
30 #endif
31 #endif /* NO_CONFIG_H */
33 /* only do the C++ reserved word check when we compile
34 to include --with-developer since too many systems
35 still have comflicts with their header files (e.g. IRIX 6.4) */
37 #if !defined(__cplusplus) && defined(DEVELOPER) && defined(__linux__)
38 #define class #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
39 #define private #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
40 #define public #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
41 #define protected #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
42 #define template #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
43 #define this #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
44 #define new #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
45 #define delete #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
46 #define friend #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
47 #endif
49 #include "local.h"
51 #ifdef SUNOS4
52 /* on SUNOS4 termios.h conflicts with sys/ioctl.h */
53 #undef HAVE_TERMIOS_H
54 #endif
56 #ifdef RELIANTUNIX
58 * <unistd.h> has to be included before any other to get
59 * large file support on Reliant UNIX. Yes, it's broken :-).
61 #ifdef HAVE_UNISTD_H
62 #include <unistd.h>
63 #endif
64 #endif /* RELIANTUNIX */
66 #include "system/dir.h"
67 #include "system/locale.h"
68 #include "system/time.h"
69 #include "system/wait.h"
71 #ifndef HAVE_KRB5_H
72 #undef HAVE_KRB5
73 #endif
75 #ifndef HAVE_LDAP_H
76 #undef HAVE_LDAP
77 #endif
79 #ifdef HAVE_SYS_ATTRIBUTES_H
80 #include <sys/attributes.h>
81 #endif
83 #ifndef ENOATTR
84 #if defined(ENODATA)
85 #define ENOATTR ENODATA
86 #else
87 #define ENOATTR ENOENT
88 #endif
89 #endif
91 #ifdef HAVE_SYS_UIO_H
92 #include <sys/uio.h>
93 #endif
95 #ifdef HAVE_LANGINFO_H
96 #include <langinfo.h>
97 #endif
99 /* Special macros that are no-ops except when run under Valgrind on
100 * x86. They've moved a little bit from valgrind 1.0.4 to 1.9.4 */
101 #ifdef HAVE_VALGRIND_MEMCHECK_H
102 /* memcheck.h includes valgrind.h */
103 #include <valgrind/memcheck.h>
104 #elif defined(HAVE_VALGRIND_H)
105 #include <valgrind.h>
106 #endif
108 /* we support ADS if we want it and have krb5 and ldap libs */
109 #if defined(WITH_ADS) && defined(HAVE_KRB5) && defined(HAVE_LDAP)
110 #define HAVE_ADS
111 #endif
114 * Define additional missing types
116 #if defined(AIX)
117 typedef sig_atomic_t SIG_ATOMIC_T;
118 #else
119 typedef sig_atomic_t volatile SIG_ATOMIC_T;
120 #endif
122 #ifndef uchar
123 #define uchar unsigned char
124 #endif
127 * Types for devices, inodes and offsets.
130 #ifndef SMB_DEV_T
131 # define SMB_DEV_T dev_t
132 #endif
134 #ifndef LARGE_SMB_DEV_T
135 # if (defined(SIZEOF_DEV_T) && (SIZEOF_DEV_T == 8))
136 # define LARGE_SMB_DEV_T 1
137 # endif
138 #endif
140 #ifdef LARGE_SMB_DEV_T
141 #define SDEV_T_VAL(p, ofs, v) (SIVAL((p),(ofs),(v)&0xFFFFFFFF), SIVAL((p),(ofs)+4,(v)>>32))
142 #define DEV_T_VAL(p, ofs) ((SMB_DEV_T)(((uint64_t)(IVAL((p),(ofs))))| (((uint64_t)(IVAL((p),(ofs)+4))) << 32)))
143 #else
144 #define SDEV_T_VAL(p, ofs, v) (SIVAL((p),(ofs),v),SIVAL((p),(ofs)+4,0))
145 #define DEV_T_VAL(p, ofs) ((SMB_DEV_T)(IVAL((p),(ofs))))
146 #endif
149 * Setup the correctly sized inode type.
152 #ifndef SMB_INO_T
153 # define SMB_INO_T ino_t
154 #endif
156 #ifndef LARGE_SMB_INO_T
157 # if (defined(SIZEOF_INO_T) && (SIZEOF_INO_T == 8))
158 # define LARGE_SMB_INO_T 1
159 # endif
160 #endif
162 #ifdef LARGE_SMB_INO_T
163 #define SINO_T_VAL(p, ofs, v) SBVAL(p, ofs, v)
164 #define INO_T_VAL(p, ofs) ((SMB_INO_T)BVAL(p, ofs))
165 #else
166 #define SINO_T_VAL(p, ofs, v) SBVAL(p, ofs, ((uint64_t)(v)) & UINT32_MAX)
167 #define INO_T_VAL(p, ofs) ((SMB_INO_T)(IVAL((p),(ofs))))
168 #endif
170 /* TODO: remove this macros */
171 #define SBIG_UINT(p, ofs, v) SBVAL(p, ofs, v)
172 #define BIG_UINT(p, ofs) BVAL(p, ofs)
173 #define IVAL2_TO_SMB_BIG_UINT(p, ofs) BVAL(p, ofs)
176 * Set the define that tells us if we can do 64 bit
177 * NT SMB calls.
180 #define SOFF_T(p, ofs, v) (SIVAL(p,ofs,(v)&0xFFFFFFFF), SIVAL(p,(ofs)+4,(v)>>32))
181 #define SOFF_T_R(p, ofs, v) (SIVAL(p,(ofs)+4,(v)&0xFFFFFFFF), SIVAL(p,ofs,(v)>>32))
182 #define IVAL_TO_SMB_OFF_T(buf,off) ((off_t)(( ((uint64_t)(IVAL((buf),(off)))) & ((uint64_t)0xFFFFFFFF) )))
184 /* Is birthtime real, or was it calculated ? */
185 #define ST_EX_IFLAG_CALCULATED_BTIME (1 << 0)
188 * Type for stat structure.
191 struct stat_ex {
192 dev_t st_ex_dev;
193 ino_t st_ex_ino;
194 mode_t st_ex_mode;
195 nlink_t st_ex_nlink;
196 uid_t st_ex_uid;
197 gid_t st_ex_gid;
198 dev_t st_ex_rdev;
199 off_t st_ex_size;
200 struct timespec st_ex_atime;
201 struct timespec st_ex_mtime;
202 struct timespec st_ex_ctime;
203 struct timespec st_ex_btime; /* birthtime */
205 blksize_t st_ex_blksize;
206 blkcnt_t st_ex_blocks;
208 uint32_t st_ex_flags;
209 uint32_t st_ex_iflags;
212 typedef struct stat_ex SMB_STRUCT_STAT;
214 enum timestamp_set_resolution {
215 TIMESTAMP_SET_SECONDS = 0,
216 TIMESTAMP_SET_MSEC,
217 TIMESTAMP_SET_NT_OR_BETTER
220 /* Our own fstrings */
223 --------------
225 / REST \
226 / IN \
227 / PEACE \
229 | The infamous pstring |
232 | 7 December |
234 | 2007 |
235 *| * * * | *
236 _________)/\\_//(\/(/\)/\//\/\///|_)_______
239 #ifndef FSTRING_LEN
240 #define FSTRING_LEN 256
241 typedef char fstring[FSTRING_LEN];
242 #endif
244 /* debug.h need to be included before samba_util.h for the macro SMB_ASSERT */
245 #include "../lib/util/debug.h"
247 /* Lists, trees, caching, database... */
248 #include "../lib/util/samba_util.h"
249 #include "../lib/util/util_net.h"
250 #include "../lib/util/attr.h"
251 #include "../lib/util/tsort.h"
252 #include "../lib/util/dlinklist.h"
254 #include <talloc.h>
255 #include <tevent.h>
257 #include "../lib/util/data_blob.h"
258 #include "../lib/util/time.h"
259 #include "../lib/util/debug_s3.h"
261 #include "../libcli/util/ntstatus.h"
262 #include "../libcli/util/error.h"
263 #include "../lib/util/charset/charset.h"
264 #include "dynconfig/dynconfig.h"
265 #include "locking.h"
266 #include "smb_perfcount.h"
267 #include "smb.h"
268 #include "../lib/util/byteorder.h"
270 #include "../lib/util/samba_modules.h"
271 #include "../lib/util/talloc_stack.h"
273 /* samba_setXXid functions. */
274 #include "../lib/util/setid.h"
276 /***** prototypes *****/
277 #ifndef NO_PROTO_H
278 #include "proto.h"
279 #endif
281 #include "lib/param/loadparm.h"
282 #include "source3/param/loadparm.h"
283 /* Automatically generated by generate_param.py. */
284 #include "source3/param/param_proto.h"
286 /* String routines */
288 #include "srvstr.h"
289 #include "lib/util/safe_string.h"
291 #ifndef SIGCLD
292 #define SIGCLD SIGCHLD
293 #endif
295 #ifndef SIGRTMIN
296 #define SIGRTMIN NSIG
297 #endif
300 #if defined(HAVE_CRYPT16) && defined(HAVE_GETAUTHUID)
301 #define ULTRIX_AUTH 1
302 #endif
304 /* yuck, I'd like a better way of doing this */
305 #define DIRP_SIZE (256 + 32)
307 /* default socket options. Dave Miller thinks we should default to TCP_NODELAY
308 given the socket IO pattern that Samba uses */
309 #ifdef TCP_NODELAY
310 #define DEFAULT_SOCKET_OPTIONS "TCP_NODELAY"
311 #else
312 #define DEFAULT_SOCKET_OPTIONS ""
313 #endif
315 /* dmalloc -- free heap debugger (dmalloc.org). This should be near
316 * the *bottom* of include files so as not to conflict. */
317 #ifdef ENABLE_DMALLOC
318 # include <dmalloc.h>
319 #endif
322 #define MAX_SEC_CTX_DEPTH 8 /* Maximum number of security contexts */
325 /* add varargs prototypes with printf checking */
326 /*PRINTFLIKE1 */
327 int d_printf(const char *, ...) PRINTF_ATTRIBUTE(1,2);
328 /*PRINTFLIKE2 */
329 int d_fprintf(FILE *f, const char *, ...) PRINTF_ATTRIBUTE(2,3);
331 /* PRINTFLIKE2 */
332 int fstr_sprintf(fstring s, const char *fmt, ...) PRINTF_ATTRIBUTE(2,3);
334 char *talloc_asprintf_strupper_m(TALLOC_CTX *t, const char *fmt, ...) PRINTF_ATTRIBUTE(2,3);
337 * Veritas File System. Often in addition to native.
338 * Quotas different.
340 #if defined(HAVE_SYS_FS_VX_QUOTA_H)
341 #define VXFS_QUOTA
342 #endif
344 #ifdef TRUE
345 #undef TRUE
346 #endif
347 #define TRUE __ERROR__XX__DONT_USE_TRUE
349 #ifdef FALSE
350 #undef FALSE
351 #endif
352 #define FALSE __ERROR__XX__DONT_USE_FALSE
354 void dump_core(void) _NORETURN_;
355 void exit_server(const char *const reason) _NORETURN_;
356 void exit_server_cleanly(const char *const reason) _NORETURN_;
358 #define BASE_RID (0x000003E8L)
360 #endif /* _INCLUDES_H */