Remove defines already provided by the system or libreplace.
[amitay/samba.git] / source3 / 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 3 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, see <http://www.gnu.org/licenses/>.
21 */
22
23 /* work around broken krb5.h on sles9 */
24 #ifdef SIZEOF_LONG
25 #undef SIZEOF_LONG
26 #endif
27
28 #include "../replace/replace.h"
29
30 /* make sure we have included the correct config.h */
31 #ifndef NO_CONFIG_H /* for some tests */
32 #ifndef CONFIG_H_IS_FROM_SAMBA
33 #error "make sure you have removed all config.h files from standalone builds!"
34 #error "the included config.h isn't from samba!"
35 #endif
36 #endif /* NO_CONFIG_H */
37
38 /* only do the C++ reserved word check when we compile
39    to include --with-developer since too many systems
40    still have comflicts with their header files (e.g. IRIX 6.4) */
41
42 #if !defined(__cplusplus) && defined(DEVELOPER)
43 #define class #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
44 #define private #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
45 #define public #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
46 #define protected #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
47 #define template #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
48 #define this #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
49 #define new #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
50 #define delete #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
51 #define friend #error DONT_USE_CPLUSPLUS_RESERVED_NAMES
52 #endif
53
54 #include "local.h"
55
56 #ifdef AIX
57 #define DEFAULT_PRINTING PRINT_AIX
58 #define PRINTCAP_NAME "/etc/qconfig"
59 #endif
60
61 #ifdef HPUX
62 #define DEFAULT_PRINTING PRINT_HPUX
63 #endif
64
65 #ifdef QNX
66 #define DEFAULT_PRINTING PRINT_QNX
67 #endif
68
69 #ifdef SUNOS4
70 /* on SUNOS4 termios.h conflicts with sys/ioctl.h */
71 #undef HAVE_TERMIOS_H
72 #endif
73
74 #ifndef _PUBLIC_
75 #ifdef HAVE_VISIBILITY_ATTR
76 #  define _PUBLIC_ __attribute__((visibility("default")))
77 #else
78 #  define _PUBLIC_
79 #endif
80 #endif
81
82 #if defined(__GNUC__) && !defined(__cplusplus)
83 /** gcc attribute used on function parameters so that it does not emit
84  * warnings about them being unused. **/
85 #  define UNUSED(param) param __attribute__ ((unused))
86 #else
87 #  define UNUSED(param) param
88 /** Feel free to add definitions for other compilers here. */
89 #endif
90
91 #ifdef RELIANTUNIX
92 /*
93  * <unistd.h> has to be included before any other to get
94  * large file support on Reliant UNIX. Yes, it's broken :-).
95  */
96 #ifdef HAVE_UNISTD_H
97 #include <unistd.h>
98 #endif
99 #endif /* RELIANTUNIX */
100
101 #include "system/capability.h"
102 #include "system/dir.h"
103 #include "system/filesys.h"
104 #include "system/glob.h"
105 #include "system/iconv.h"
106 #include "system/locale.h"
107 #include "system/network.h"
108 #include "system/passwd.h"
109 #include "system/readline.h"
110 #include "system/select.h"
111 #include "system/shmem.h"
112 #include "system/syslog.h"
113 #include "system/terminal.h"
114 #include "system/time.h"
115 #include "system/wait.h"
116
117 #if defined(HAVE_RPC_RPC_H)
118 /*
119  * Check for AUTH_ERROR define conflict with rpc/rpc.h in prot.h.
120  */
121 #if defined(HAVE_SYS_SECURITY_H) && defined(HAVE_RPC_AUTH_ERROR_CONFLICT)
122 #undef AUTH_ERROR
123 #endif
124 /*
125  * HP-UX 11.X has TCP_NODELAY and TCP_MAXSEG defined in <netinet/tcp.h> which
126  * was included above.  However <rpc/rpc.h> includes <sys/xti.h> which defines
127  * them again without checking if they already exsist.  This generates
128  * two "Redefinition of macro" warnings for every single .c file that is
129  * compiled.
130  */
131 #if defined(HPUX) && defined(TCP_NODELAY)
132 #undef TCP_NODELAY
133 #endif
134 #if defined(HPUX) && defined(TCP_MAXSEG)
135 #undef TCP_MAXSEG
136 #endif
137 #include <rpc/rpc.h>
138 #endif
139
140 #if defined(HAVE_YP_GET_DEFAULT_DOMAIN) && defined(HAVE_SETNETGRENT) && defined(HAVE_ENDNETGRENT) && defined(HAVE_GETNETGRENT)
141 #define HAVE_NETGROUP 1
142 #endif
143
144 #if defined (HAVE_NETGROUP)
145 #if defined(HAVE_RPCSVC_YP_PROT_H)
146 /*
147  * HP-UX 11.X has TCP_NODELAY and TCP_MAXSEG defined in <netinet/tcp.h> which
148  * was included above.  However <rpc/rpc.h> includes <sys/xti.h> which defines
149  * them again without checking if they already exsist.  This generates
150  * two "Redefinition of macro" warnings for every single .c file that is
151  * compiled.
152  */
153 #if defined(HPUX) && defined(TCP_NODELAY)
154 #undef TCP_NODELAY
155 #endif
156 #if defined(HPUX) && defined(TCP_MAXSEG)
157 #undef TCP_MAXSEG
158 #endif
159 #include <rpcsvc/yp_prot.h>
160 #endif
161 #if defined(HAVE_RPCSVC_YPCLNT_H)
162 #include <rpcsvc/ypclnt.h>
163 #endif
164 #endif /* HAVE_NETGROUP */
165
166 #if HAVE_KRB5_H
167 #include <krb5.h>
168 #else
169 #undef HAVE_KRB5
170 #endif
171
172 #if HAVE_LBER_H
173 #include <lber.h>
174 #if defined(HPUX) && !defined(_LBER_TYPES_H)
175 /* Define ber_tag_t and ber_int_t for using
176  * HP LDAP-UX Integration products' LDAP libraries.
177 */
178 #ifndef ber_tag_t
179 typedef unsigned long ber_tag_t;
180 typedef int ber_int_t;
181 #endif
182 #endif /* defined(HPUX) && !defined(_LBER_TYPES_H) */
183 #ifndef LBER_USE_DER
184 #define LBER_USE_DER 0x01
185 #endif
186 #endif
187
188 #if HAVE_LDAP_H
189 #include <ldap.h>
190 #ifndef LDAP_CONST
191 #define LDAP_CONST const
192 #endif
193 #ifndef LDAP_OPT_SUCCESS
194 #define LDAP_OPT_SUCCESS 0
195 #endif
196 /* Solaris 8 and maybe other LDAP implementations spell this "..._INPROGRESS": */
197 #if defined(LDAP_SASL_BIND_INPROGRESS) && !defined(LDAP_SASL_BIND_IN_PROGRESS)
198 #define LDAP_SASL_BIND_IN_PROGRESS LDAP_SASL_BIND_INPROGRESS
199 #endif
200 /* Solaris 8 defines SSL_LDAP_PORT, not LDAPS_PORT and it only does so if
201    LDAP_SSL is defined - but SSL is not working. We just want the
202    port number! Let's just define LDAPS_PORT correct. */
203 #if !defined(LDAPS_PORT)
204 #define LDAPS_PORT 636
205 #endif
206 #else
207 #undef HAVE_LDAP
208 #endif
209
210 #if HAVE_GSSAPI_H
211 #include <gssapi.h>
212 #elif HAVE_GSSAPI_GSSAPI_H
213 #include <gssapi/gssapi.h>
214 #elif HAVE_GSSAPI_GSSAPI_GENERIC_H
215 #include <gssapi/gssapi_generic.h>
216 #endif
217
218 #if HAVE_COM_ERR_H
219 #include <com_err.h>
220 #endif
221
222 #if HAVE_SYS_ATTRIBUTES_H
223 #include <sys/attributes.h>
224 #endif
225
226 #ifndef ENOATTR
227 #define ENOATTR ENODATA
228 #endif
229
230 /* mutually exclusive (SuSE 8.2) */
231 #if HAVE_ATTR_XATTR_H
232 #include <attr/xattr.h>
233 #elif HAVE_SYS_XATTR_H
234 #include <sys/xattr.h>
235 #endif
236
237 #ifdef HAVE_SYS_EA_H
238 #include <sys/ea.h>
239 #endif
240
241 #ifdef HAVE_SYS_EXTATTR_H
242 #include <sys/extattr.h>
243 #endif
244
245 #ifdef HAVE_SYS_UIO_H
246 #include <sys/uio.h>
247 #endif
248
249 #if HAVE_LANGINFO_H
250 #include <langinfo.h>
251 #endif
252
253 #if HAVE_NETGROUP_H
254 #include <netgroup.h>
255 #endif
256
257 #if defined(HAVE_AIO_H) && defined(WITH_AIO)
258 #include <aio.h>
259 #endif
260
261 /* skip valgrind headers on 64bit AMD boxes */
262 #ifndef HAVE_64BIT_LINUX
263 /* Special macros that are no-ops except when run under Valgrind on
264  * x86.  They've moved a little bit from valgrind 1.0.4 to 1.9.4 */
265 #if HAVE_VALGRIND_MEMCHECK_H
266         /* memcheck.h includes valgrind.h */
267 #include <valgrind/memcheck.h>
268 #elif HAVE_VALGRIND_H
269 #include <valgrind.h>
270 #endif
271 #endif
272
273 /* If we have --enable-developer and the valgrind header is present,
274  * then we're OK to use it.  Set a macro so this logic can be done only
275  * once. */
276 #if defined(DEVELOPER) && !defined(HAVE_64BIT_LINUX)
277 #if (HAVE_VALGRIND_H || HAVE_VALGRIND_VALGRIND_H)
278 #define VALGRIND
279 #endif
280 #endif
281
282
283 /* we support ADS if we want it and have krb5 and ldap libs */
284 #if defined(WITH_ADS) && defined(HAVE_KRB5) && defined(HAVE_LDAP)
285 #define HAVE_ADS
286 #endif
287
288 /*
289  * Define additional missing types
290  */
291 #if defined(HAVE_SIG_ATOMIC_T_TYPE) && defined(AIX)
292 typedef sig_atomic_t SIG_ATOMIC_T;
293 #elif defined(HAVE_SIG_ATOMIC_T_TYPE) && !defined(AIX)
294 typedef sig_atomic_t volatile SIG_ATOMIC_T;
295 #else
296 typedef int volatile SIG_ATOMIC_T;
297 #endif
298
299 #ifndef uchar
300 #define uchar unsigned char
301 #endif
302
303 /*
304    Samba needs type definitions for int16, int32, uint16 and uint32.
305
306    Normally these are signed and unsigned 16 and 32 bit integers, but
307    they actually only need to be at least 16 and 32 bits
308    respectively. Thus if your word size is 8 bytes just defining them
309    as signed and unsigned int will work.
310 */
311
312 #ifndef uint8
313 #define uint8 uint8_t
314 #endif
315
316 #if !defined(int16) && !defined(HAVE_INT16_FROM_RPC_RPC_H)
317 #  define int16 int16_t
318    /* needed to work around compile issue on HP-UX 11.x */
319 #  define _INT16        1
320 #endif
321
322 /*
323  * Note we duplicate the size tests in the unsigned 
324  * case as int16 may be a typedef from rpc/rpc.h
325  */
326
327
328 #if !defined(uint16) && !defined(HAVE_UINT16_FROM_RPC_RPC_H)
329 #  define uint16 uint16_t
330 #endif
331
332 #if !defined(int32) && !defined(HAVE_INT32_FROM_RPC_RPC_H)
333 #  define int32 int32_t
334    /* needed to work around compile issue on HP-UX 11.x */
335 #  define _INT32        1
336 #endif
337
338 /*
339  * Note we duplicate the size tests in the unsigned 
340  * case as int32 may be a typedef from rpc/rpc.h
341  */
342
343 #if !defined(uint32) && !defined(HAVE_UINT32_FROM_RPC_RPC_H)
344 #  define uint32 uint32_t
345 #endif
346
347 /*
348  * check for 8 byte long long
349  */
350
351 #if !defined(uint64)
352 #  define uint64 uint64_t
353 #endif
354
355 #if !defined(int64)
356 #  define int64 int64_t
357 #endif
358
359
360 /*
361  * Types for devices, inodes and offsets.
362  */
363
364 #ifndef SMB_DEV_T
365 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_DEV64_T)
366 #    define SMB_DEV_T dev64_t
367 #  else
368 #    define SMB_DEV_T dev_t
369 #  endif
370 #endif
371
372 #ifndef LARGE_SMB_DEV_T
373 #  if (defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_DEV64_T)) || (defined(SIZEOF_DEV_T) && (SIZEOF_DEV_T == 8))
374 #    define LARGE_SMB_DEV_T 1
375 #  endif
376 #endif
377
378 #ifdef LARGE_SMB_DEV_T
379 #define SDEV_T_VAL(p, ofs, v) (SIVAL((p),(ofs),(v)&0xFFFFFFFF), SIVAL((p),(ofs)+4,(v)>>32))
380 #define DEV_T_VAL(p, ofs) ((SMB_DEV_T)(((uint64_t)(IVAL((p),(ofs))))| (((uint64_t)(IVAL((p),(ofs)+4))) << 32)))
381 #else 
382 #define SDEV_T_VAL(p, ofs, v) (SIVAL((p),(ofs),v),SIVAL((p),(ofs)+4,0))
383 #define DEV_T_VAL(p, ofs) ((SMB_DEV_T)(IVAL((p),(ofs))))
384 #endif
385
386 /*
387  * Setup the correctly sized inode type.
388  */
389
390 #ifndef SMB_INO_T
391 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_INO64_T)
392 #    define SMB_INO_T ino64_t
393 #  else
394 #    define SMB_INO_T ino_t
395 #  endif
396 #endif
397
398 #ifndef LARGE_SMB_INO_T
399 #  if (defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_INO64_T)) || (defined(SIZEOF_INO_T) && (SIZEOF_INO_T == 8))
400 #    define LARGE_SMB_INO_T 1
401 #  endif
402 #endif
403
404 #ifdef LARGE_SMB_INO_T
405 #define SINO_T_VAL(p, ofs, v) (SIVAL((p),(ofs),(v)&0xFFFFFFFF), SIVAL((p),(ofs)+4,(v)>>32))
406 #define INO_T_VAL(p, ofs) ((SMB_INO_T)(((uint64_t)(IVAL(p,ofs)))| (((uint64_t)(IVAL(p,(ofs)+4))) << 32)))
407 #else 
408 #define SINO_T_VAL(p, ofs, v) (SIVAL(p,ofs,v),SIVAL(p,(ofs)+4,0))
409 #define INO_T_VAL(p, ofs) ((SMB_INO_T)(IVAL((p),(ofs))))
410 #endif
411
412 #ifndef SMB_OFF_T
413 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_OFF64_T)
414 #    define SMB_OFF_T off64_t
415 #  else
416 #    define SMB_OFF_T off_t
417 #  endif
418 #endif
419
420 #define SBIG_UINT(p, ofs, v) (SIVAL(p,ofs,(v)&0xFFFFFFFF), SIVAL(p,(ofs)+4,(v)>>32))
421 #define IVAL2_TO_SMB_BIG_UINT(buf,off) ( (((uint64_t)(IVAL((buf),(off)))) & ((uint64_t)0xFFFFFFFF)) | \
422                 (( ((uint64_t)(IVAL((buf),(off+4)))) & ((uint64_t)0xFFFFFFFF) ) << 32 ) )
423
424
425 /* this should really be a 64 bit type if possible */
426 typedef uint64_t br_off;
427
428 #define SMB_OFF_T_BITS (sizeof(SMB_OFF_T)*8)
429
430 /*
431  * Set the define that tells us if we can do 64 bit
432  * NT SMB calls.
433  */
434
435 #ifndef LARGE_SMB_OFF_T
436 #  if (defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_OFF64_T)) || (defined(SIZEOF_OFF_T) && (SIZEOF_OFF_T == 8))
437 #    define LARGE_SMB_OFF_T 1
438 #  endif
439 #endif
440
441 #ifdef LARGE_SMB_OFF_T
442 #define SOFF_T(p, ofs, v) (SIVAL(p,ofs,(v)&0xFFFFFFFF), SIVAL(p,(ofs)+4,(v)>>32))
443 #define SOFF_T_R(p, ofs, v) (SIVAL(p,(ofs)+4,(v)&0xFFFFFFFF), SIVAL(p,ofs,(v)>>32))
444 #define IVAL_TO_SMB_OFF_T(buf,off) ((SMB_OFF_T)(( ((uint64_t)(IVAL((buf),(off)))) & ((uint64_t)0xFFFFFFFF) )))
445 #else 
446 #define SOFF_T(p, ofs, v) (SIVAL(p,ofs,v),SIVAL(p,(ofs)+4,0))
447 #define SOFF_T_R(p, ofs, v) (SIVAL(p,(ofs)+4,v),SIVAL(p,ofs,0))
448 #define IVAL_TO_SMB_OFF_T(buf,off) ((SMB_OFF_T)(( ((uint32)(IVAL((buf),(off)))) & 0xFFFFFFFF )))
449 #endif
450
451 /*
452  * Type for stat structure.
453  */
454
455 #ifndef SMB_STRUCT_STAT
456 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STAT64) && defined(HAVE_OFF64_T)
457 #    define SMB_STRUCT_STAT struct stat64
458 #  else
459 #    define SMB_STRUCT_STAT struct stat
460 #  endif
461 #endif
462
463 /*
464  * Type for dirent structure.
465  */
466
467 #ifndef SMB_STRUCT_DIRENT
468 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_DIRENT64)
469 #    define SMB_STRUCT_DIRENT struct dirent64
470 #  else
471 #    define SMB_STRUCT_DIRENT struct dirent
472 #  endif
473 #endif
474
475 /*
476  * Type for DIR structure.
477  */
478
479 #ifndef SMB_STRUCT_DIR
480 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_DIR64)
481 #    define SMB_STRUCT_DIR DIR64
482 #  else
483 #    define SMB_STRUCT_DIR DIR
484 #  endif
485 #endif
486
487 /*
488  * Defines for 64 bit fcntl locks.
489  */
490
491 #ifndef SMB_STRUCT_FLOCK
492 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
493 #    define SMB_STRUCT_FLOCK struct flock64
494 #  else
495 #    define SMB_STRUCT_FLOCK struct flock
496 #  endif
497 #endif
498
499 #ifndef SMB_F_SETLKW
500 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
501 #    define SMB_F_SETLKW F_SETLKW64
502 #  else
503 #    define SMB_F_SETLKW F_SETLKW
504 #  endif
505 #endif
506
507 #ifndef SMB_F_SETLK
508 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
509 #    define SMB_F_SETLK F_SETLK64
510 #  else
511 #    define SMB_F_SETLK F_SETLK
512 #  endif
513 #endif
514
515 #ifndef SMB_F_GETLK
516 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
517 #    define SMB_F_GETLK F_GETLK64
518 #  else
519 #    define SMB_F_GETLK F_GETLK
520 #  endif
521 #endif
522
523 /*
524  * Type for aiocb structure.
525  */
526
527 #ifndef SMB_STRUCT_AIOCB
528 #  if defined(WITH_AIO)
529 #    if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_AIOCB64)
530 #      define SMB_STRUCT_AIOCB struct aiocb64
531 #    else
532 #      define SMB_STRUCT_AIOCB struct aiocb
533 #    endif
534 #  else
535 #    define SMB_STRUCT_AIOCB int /* AIO not being used but we still need the define.... */
536 #  endif
537 #endif
538
539 #ifndef HAVE_STRUCT_TIMESPEC
540 struct timespec {
541         time_t tv_sec;            /* Seconds.  */
542         long tv_nsec;           /* Nanoseconds.  */
543 };
544 #endif
545
546 #ifndef MIN
547 #define MIN(a,b) ((a)<(b)?(a):(b))
548 #endif
549
550 #ifndef MAX
551 #define MAX(a,b) ((a)>(b)?(a):(b))
552 #endif
553
554 #ifdef HAVE_BROKEN_GETGROUPS
555 #define GID_T int
556 #else
557 #define GID_T gid_t
558 #endif
559
560 #ifndef NGROUPS_MAX
561 #define NGROUPS_MAX 32 /* Guess... */
562 #endif
563
564 /* Our own fstrings */
565
566 /*
567                   --------------
568                  /              \
569                 /      REST      \
570                /        IN        \
571               /       PEACE        \
572              /                      \
573              | The infamous pstring |
574              |                      |
575              |                      |
576              |      7 December      |
577              |                      |
578              |         2007         |
579             *|     *  *  *          | *
580    _________)/\\_//(\/(/\)/\//\/\///|_)_______
581 */
582
583 #ifndef FSTRING_LEN
584 #define FSTRING_LEN 256
585 typedef char fstring[FSTRING_LEN];
586 #endif
587
588 /* Samba 3 doesn't use iconv_convenience: */
589 extern void *global_loadparm;
590 extern void *cmdline_lp_ctx;
591 struct smb_iconv_convenience *lp_iconv_convenience(void *lp_ctx);
592
593 /* Lists, trees, caching, database... */
594 #include "../lib/util/xfile.h"
595 #include "../lib/util/memory.h"
596 #include "intl.h"
597 #include "../lib/util/dlinklist.h"
598 #include "tdb.h"
599 #include "util_tdb.h"
600
601 #include "../talloc/talloc.h"
602
603 #include "../lib/util/data_blob.h"
604 #include "../lib/util/time.h"
605 /* And a little extension. Abort on type mismatch */
606 #define talloc_get_type_abort(ptr, type) \
607         (type *)talloc_check_name_abort(ptr, #type)
608
609 #include "nt_status.h"
610 #include "ads.h"
611 #include "ads_dns.h"
612 #include "interfaces.h"
613 #include "trans2.h"
614 #include "nterr.h"
615 #include "ntioctl.h"
616 #include "charset.h"
617 #include "dynconfig.h"
618 #include "util_getent.h"
619 #include "debugparse.h"
620 #include "version.h"
621 #include "privileges.h"
622 #include "messages.h"
623 #include "locking.h"
624 #include "smb.h"
625 #include "nameserv.h"
626 #include "secrets.h"
627 #include "../lib/util/byteorder.h"
628 #include "privileges.h"
629 #include "rpc_misc.h"
630 #include "rpc_dce.h"
631 #include "mapping.h"
632 #include "passdb.h"
633 #include "rpc_secdes.h"
634 #include "gpo.h"
635 #include "authdata.h"
636 #include "msdfs.h"
637 #include "rap.h"
638 #include "../lib/crypto/md5.h"
639 #include "../lib/crypto/arcfour.h"
640 #include "../lib/crypto/crc32.h"
641 #include "../lib/crypto/hmacmd5.h"
642 #include "ntlmssp.h"
643 #include "auth.h"
644 #include "ntdomain.h"
645 #include "rpc_svcctl.h"
646 #include "rpc_ntsvcs.h"
647 #include "rpc_lsa.h"
648 #include "reg_objects.h"
649 #include "reg_db.h"
650 #include "rpc_spoolss.h"
651 #include "rpc_eventlog.h"
652 #include "rpc_perfcount.h"
653 #include "rpc_perfcount_defs.h"
654 #include "librpc/gen_ndr/notify.h"
655 #include "librpc/gen_ndr/xattr.h"
656 #include "librpc/gen_ndr/messaging.h"
657 #include "librpc/gen_ndr/ndr_nbt.h"
658 #include "librpc/rpc/dcerpc.h"
659 #include "nt_printing.h"
660 #include "idmap.h"
661 #include "client.h"
662
663 #include "session.h"
664 #include "asn_1.h"
665 #include "popt.h"
666 #include "mangle.h"
667 #include "module.h"
668 #include "nsswitch/winbind_client.h"
669 #include "spnego.h"
670 #include "rpc_client.h"
671 #include "event.h"
672 #include "dbwrap.h"
673 #include "packet.h"
674 #include "ctdbd_conn.h"
675 #include "talloc_stack.h"
676 #include "memcache.h"
677 #include "async_req.h"
678 #include "async_smb.h"
679 #include "async_sock.h"
680
681 #include "lib/smbconf/smbconf.h"
682
683 /* Defines for wisXXX functions. */
684 #define UNI_UPPER    0x1
685 #define UNI_LOWER    0x2
686 #define UNI_DIGIT    0x4
687 #define UNI_XDIGIT   0x8
688 #define UNI_SPACE    0x10
689
690 #include "nsswitch/winbind_nss.h"
691
692 /* forward declaration from printing.h to get around 
693    header file dependencies */
694
695 struct printjob;
696
697 /* forward declarations from smbldap.c */
698
699 #include "smbldap.h"
700
701 #include "smb_ldap.h"
702
703 struct dns_reg_state;
704
705 void dns_register_smbd(struct dns_reg_state ** dns_state_ptr,
706                 unsigned port,
707                 int *maxfd,
708                 fd_set *listen_set,
709                 struct timeval *timeout);
710
711 void dns_register_close(struct dns_reg_state ** dns_state_ptr);
712
713
714 bool dns_register_smbd_reply(struct dns_reg_state *dns_state,
715                 fd_set *lfds, struct timeval *timeout);
716
717 /*
718  * Reasons for cache flush.
719  */
720
721 enum flush_reason_enum {
722     SEEK_FLUSH,
723     READ_FLUSH,
724     WRITE_FLUSH,
725     READRAW_FLUSH,
726     OPLOCK_RELEASE_FLUSH,
727     CLOSE_FLUSH,
728     SYNC_FLUSH,
729     SIZECHANGE_FLUSH,
730     /* NUM_FLUSH_REASONS must remain the last value in the enumeration. */
731     NUM_FLUSH_REASONS};
732
733 #include "nss_info.h"
734 #include "modules/nfs4_acls.h"
735 #include "nsswitch/libwbclient/wbclient.h"
736
737 /* generated rpc server implementation functions */
738 #include "librpc/gen_ndr/srv_echo.h"
739 #include "librpc/gen_ndr/srv_svcctl.h"
740 #include "librpc/gen_ndr/srv_lsa.h"
741 #include "librpc/gen_ndr/srv_eventlog.h"
742 #include "librpc/gen_ndr/srv_winreg.h"
743 #include "librpc/gen_ndr/srv_initshutdown.h"
744
745 /***** automatically generated prototypes *****/
746 #ifndef NO_PROTO_H
747 #include "proto.h"
748 #endif
749
750 #if defined(HAVE_POSIX_ACLS)
751 #include "modules/vfs_posixacl.h"
752 #endif
753
754 #if defined(HAVE_TRU64_ACLS)
755 #include "modules/vfs_tru64acl.h"
756 #endif
757
758 #if defined(HAVE_SOLARIS_ACLS) || defined(HAVE_UNIXWARE_ACLS)
759 #include "modules/vfs_solarisacl.h"
760 #endif
761
762 #if defined(HAVE_HPUX_ACLS)
763 #include "modules/vfs_hpuxacl.h"
764 #endif
765
766 #if defined(HAVE_IRIX_ACLS)
767 #include "modules/vfs_irixacl.h"
768 #endif
769
770 #ifdef HAVE_LDAP
771 #include "ads_protos.h"
772 #endif
773
774 /* We need this after proto.h to reference GetTimeOfDay(). */
775 #include "smbprofile.h"
776
777 /* String routines */
778
779 #include "srvstr.h"
780 #include "safe_string.h"
781
782 /* prototypes from lib/util_transfer_file.c */
783 #include "transfer_file.h"
784
785 #ifdef __COMPAR_FN_T
786 #define QSORT_CAST (__compar_fn_t)
787 #endif
788
789 #ifndef QSORT_CAST
790 #define QSORT_CAST (int (*)(const void *, const void *))
791 #endif
792
793 #ifndef DEFAULT_PRINTING
794 #ifdef HAVE_CUPS
795 #define DEFAULT_PRINTING PRINT_CUPS
796 #define PRINTCAP_NAME "cups"
797 #elif defined(SYSV)
798 #define DEFAULT_PRINTING PRINT_SYSV
799 #define PRINTCAP_NAME "lpstat"
800 #else
801 #define DEFAULT_PRINTING PRINT_BSD
802 #define PRINTCAP_NAME "/etc/printcap"
803 #endif
804 #endif
805
806 #ifndef PRINTCAP_NAME
807 #define PRINTCAP_NAME "/etc/printcap"
808 #endif
809
810 #ifndef SIGCLD
811 #define SIGCLD SIGCHLD
812 #endif
813
814 #ifndef SIGRTMIN
815 #define SIGRTMIN 32
816 #endif
817
818 #ifndef MAP_FILE
819 #define MAP_FILE 0
820 #endif
821
822 #if defined(HAVE_PUTPRPWNAM) && defined(AUTH_CLEARTEXT_SEG_CHARS)
823 #define OSF1_ENH_SEC 1
824 #endif
825
826 #ifndef ALLOW_CHANGE_PASSWORD
827 #if (defined(HAVE_TERMIOS_H) && defined(HAVE_DUP2) && defined(HAVE_SETSID))
828 #define ALLOW_CHANGE_PASSWORD 1
829 #endif
830 #endif
831
832 /* what is the longest significant password available on your system? 
833  Knowing this speeds up password searches a lot */
834 #ifndef PASSWORD_LENGTH
835 #define PASSWORD_LENGTH 8
836 #endif
837
838 #ifndef HAVE_PIPE
839 #define SYNC_DNS 1
840 #endif
841
842 #ifndef HAVE_CRYPT
843 #define crypt ufc_crypt
844 #endif
845
846 #if defined(HAVE_CRYPT16) && defined(HAVE_GETAUTHUID)
847 #define ULTRIX_AUTH 1
848 #endif
849
850 #if (defined(USE_SETRESUID) && !defined(HAVE_SETRESUID_DECL))
851 /* stupid glibc */
852 int setresuid(uid_t ruid, uid_t euid, uid_t suid);
853 #endif
854 #if (defined(USE_SETRESUID) && !defined(HAVE_SETRESGID_DECL))
855 int setresgid(gid_t rgid, gid_t egid, gid_t sgid);
856 #endif
857
858 /* yuck, I'd like a better way of doing this */
859 #define DIRP_SIZE (256 + 32)
860
861 /* default socket options. Dave Miller thinks we should default to TCP_NODELAY
862    given the socket IO pattern that Samba uses */
863 #ifdef TCP_NODELAY
864 #define DEFAULT_SOCKET_OPTIONS "TCP_NODELAY"
865 #else
866 #define DEFAULT_SOCKET_OPTIONS ""
867 #endif
868
869 /* dmalloc -- free heap debugger (dmalloc.org).  This should be near
870  * the *bottom* of include files so as not to conflict. */
871 #ifdef ENABLE_DMALLOC
872 #  include <dmalloc.h>
873 #endif
874
875
876 #if HAVE_KERNEL_SHARE_MODES
877 #ifndef LOCK_MAND 
878 #define LOCK_MAND       32      /* This is a mandatory flock */
879 #define LOCK_READ       64      /* ... Which allows concurrent read operations */
880 #define LOCK_WRITE      128     /* ... Which allows concurrent write operations */
881 #define LOCK_RW         192     /* ... Which allows concurrent read & write ops */
882 #endif
883 #endif
884
885 extern int DEBUGLEVEL;
886
887 #define MAX_SEC_CTX_DEPTH 8    /* Maximum number of security contexts */
888
889
890 #ifdef GLIBC_HACK_FCNTL64
891 /* this is a gross hack. 64 bit locking is completely screwed up on
892    i386 Linux in glibc 2.1.95 (which ships with RedHat 7.0). This hack
893    "fixes" the problem with the current 2.4.0test kernels 
894 */
895 #define fcntl fcntl64
896 #undef F_SETLKW 
897 #undef F_SETLK 
898 #define F_SETLK 13
899 #define F_SETLKW 14
900 #endif
901
902
903 /* needed for some systems without iconv. Doesn't really matter
904    what error code we use */
905 #ifndef EILSEQ
906 #define EILSEQ EIO
907 #endif
908
909 /* add varargs prototypes with printf checking */
910 /*PRINTFLIKE2 */
911 int fdprintf(int , const char *, ...) PRINTF_ATTRIBUTE(2,3);
912 /*PRINTFLIKE1 */
913 int d_printf(const char *, ...) PRINTF_ATTRIBUTE(1,2);
914 /*PRINTFLIKE2 */
915 int d_fprintf(FILE *f, const char *, ...) PRINTF_ATTRIBUTE(2,3);
916
917 /* PRINTFLIKE2 */
918 void sys_adminlog(int priority, const char *format_str, ...) PRINTF_ATTRIBUTE(2,3);
919
920 /* PRINTFLIKE2 */
921 int fstr_sprintf(fstring s, const char *fmt, ...) PRINTF_ATTRIBUTE(2,3);
922
923 int d_vfprintf(FILE *f, const char *format, va_list ap) PRINTF_ATTRIBUTE(2,0);
924
925 int smb_xvasprintf(char **ptr, const char *format, va_list ap) PRINTF_ATTRIBUTE(2,0);
926
927 int asprintf_strupper_m(char **strp, const char *fmt, ...) PRINTF_ATTRIBUTE(2,3);
928 char *talloc_asprintf_strupper_m(TALLOC_CTX *t, const char *fmt, ...) PRINTF_ATTRIBUTE(2,3);
929
930 /* we used to use these fns, but now we have good replacements
931    for snprintf and vsnprintf */
932 #define slprintf snprintf
933 #define vslprintf vsnprintf
934
935 /*
936  * Veritas File System.  Often in addition to native.
937  * Quotas different.
938  */
939 #if defined(HAVE_SYS_FS_VX_QUOTA_H)
940 #define VXFS_QUOTA
941 #endif
942
943 #ifndef XATTR_CREATE
944 #define XATTR_CREATE  0x1       /* set value, fail if attr already exists */
945 #endif
946
947 #ifndef XATTR_REPLACE
948 #define XATTR_REPLACE 0x2       /* set value, fail if attr does not exist */
949 #endif
950
951 #if defined(HAVE_KRB5)
952
953 krb5_error_code smb_krb5_parse_name(krb5_context context,
954                                 const char *name, /* in unix charset */
955                                 krb5_principal *principal);
956
957 krb5_error_code smb_krb5_unparse_name(krb5_context context,
958                                 krb5_const_principal principal,
959                                 char **unix_name);
960
961 #ifndef HAVE_KRB5_SET_REAL_TIME
962 krb5_error_code krb5_set_real_time(krb5_context context, int32_t seconds, int32_t microseconds);
963 #endif
964
965 krb5_error_code krb5_set_default_tgs_ktypes(krb5_context ctx, const krb5_enctype *enc);
966
967 #if defined(HAVE_KRB5_AUTH_CON_SETKEY) && !defined(HAVE_KRB5_AUTH_CON_SETUSERUSERKEY)
968 krb5_error_code krb5_auth_con_setuseruserkey(krb5_context context, krb5_auth_context auth_context, krb5_keyblock *keyblock);
969 #endif
970
971 #ifndef HAVE_KRB5_FREE_UNPARSED_NAME
972 void krb5_free_unparsed_name(krb5_context ctx, char *val);
973 #endif
974
975 /* Stub out initialize_krb5_error_table since it is not present in all
976  * Kerberos implementations. If it's not present, it's not necessary to
977  * call it.
978  */
979 #ifndef HAVE_INITIALIZE_KRB5_ERROR_TABLE
980 #define initialize_krb5_error_table()
981 #endif
982
983 /* Samba wrapper function for krb5 functionality. */
984 bool setup_kaddr( krb5_address *pkaddr, struct sockaddr_storage *paddr);
985 int create_kerberos_key_from_string(krb5_context context, krb5_principal host_princ, krb5_data *password, krb5_keyblock *key, krb5_enctype enctype, bool no_salt);
986 bool get_auth_data_from_tkt(TALLOC_CTX *mem_ctx, DATA_BLOB *auth_data, krb5_ticket *tkt);
987 krb5_const_principal get_principal_from_tkt(krb5_ticket *tkt);
988 krb5_error_code smb_krb5_locate_kdc(krb5_context ctx, const krb5_data *realm, struct sockaddr **addr_pp, int *naddrs, int get_masters);
989 #if defined(HAVE_KRB5_LOCATE_KDC)
990 krb5_error_code krb5_locate_kdc(krb5_context ctx, const krb5_data *realm, struct sockaddr **addr_pp, int *naddrs, int get_masters);
991 #endif
992 krb5_error_code get_kerberos_allowed_etypes(krb5_context context, krb5_enctype **enctypes);
993 bool get_krb5_smb_session_key(krb5_context context, krb5_auth_context auth_context, DATA_BLOB *session_key, bool remote);
994 krb5_error_code smb_krb5_kt_free_entry(krb5_context context, krb5_keytab_entry *kt_entry);
995 krb5_principal kerberos_fetch_salt_princ_for_host_princ(krb5_context context, krb5_principal host_princ, int enctype);
996 void kerberos_set_creds_enctype(krb5_creds *pcreds, int enctype);
997 bool kerberos_compatible_enctypes(krb5_context context, krb5_enctype enctype1, krb5_enctype enctype2);
998 void kerberos_free_data_contents(krb5_context context, krb5_data *pdata);
999 NTSTATUS decode_pac_data(TALLOC_CTX *mem_ctx,
1000                          DATA_BLOB *pac_data_blob,
1001                          krb5_context context,
1002                          krb5_keyblock *service_keyblock,
1003                          krb5_const_principal client_principal,
1004                          time_t tgs_authtime,
1005                          struct PAC_DATA **pac_data_out);
1006 void smb_krb5_checksum_from_pac_sig(krb5_checksum *cksum, 
1007                                     struct PAC_SIGNATURE_DATA *sig);
1008 krb5_error_code smb_krb5_verify_checksum(krb5_context context,
1009                                          const krb5_keyblock *keyblock,
1010                                          krb5_keyusage usage,
1011                                          krb5_checksum *cksum,
1012                                          uint8 *data,
1013                                          size_t length);
1014 time_t get_authtime_from_tkt(krb5_ticket *tkt);
1015 void smb_krb5_free_ap_req(krb5_context context, 
1016                           krb5_ap_req *ap_req);
1017 krb5_error_code smb_krb5_get_keyinfo_from_ap_req(krb5_context context, 
1018                                                  const krb5_data *inbuf, 
1019                                                  krb5_kvno *kvno, 
1020                                                  krb5_enctype *enctype);
1021 krb5_error_code krb5_rd_req_return_keyblock_from_keytab(krb5_context context,
1022                                                         krb5_auth_context *auth_context,
1023                                                         const krb5_data *inbuf,
1024                                                         krb5_const_principal server,
1025                                                         krb5_keytab keytab,
1026                                                         krb5_flags *ap_req_options,
1027                                                         krb5_ticket **ticket, 
1028                                                         krb5_keyblock **keyblock);
1029 krb5_error_code smb_krb5_parse_name_norealm(krb5_context context, 
1030                                             const char *name, 
1031                                             krb5_principal *principal);
1032 bool smb_krb5_principal_compare_any_realm(krb5_context context, 
1033                                           krb5_const_principal princ1, 
1034                                           krb5_const_principal princ2);
1035 int cli_krb5_get_ticket(const char *principal, time_t time_offset, 
1036                         DATA_BLOB *ticket, DATA_BLOB *session_key_krb5, uint32 extra_ap_opts, const char *ccname, time_t *tgs_expire);
1037 krb5_error_code smb_krb5_renew_ticket(const char *ccache_string, const char *client_string, const char *service_string, time_t *expire_time);
1038 krb5_error_code kpasswd_err_to_krb5_err(krb5_error_code res_code);
1039 krb5_error_code smb_krb5_gen_netbios_krb5_address(smb_krb5_addresses **kerb_addr);
1040 krb5_error_code smb_krb5_free_addresses(krb5_context context, smb_krb5_addresses *addr);
1041 NTSTATUS krb5_to_nt_status(krb5_error_code kerberos_error);
1042 krb5_error_code nt_status_to_krb5(NTSTATUS nt_status);
1043 void smb_krb5_free_error(krb5_context context, krb5_error *krberror);
1044 krb5_error_code handle_krberror_packet(krb5_context context,
1045                                          krb5_data *packet);
1046
1047 void smb_krb5_get_init_creds_opt_free(krb5_context context,
1048                                     krb5_get_init_creds_opt *opt);
1049 krb5_error_code smb_krb5_get_init_creds_opt_alloc(krb5_context context,
1050                                     krb5_get_init_creds_opt **opt);
1051 krb5_error_code smb_krb5_mk_error(krb5_context context,
1052                                         krb5_error_code error_code,
1053                                         const krb5_principal server,
1054                                         krb5_data *reply);
1055 krb5_enctype smb_get_enctype_from_kt_entry(krb5_keytab_entry *kt_entry);
1056 krb5_error_code smb_krb5_enctype_to_string(krb5_context context, 
1057                                             krb5_enctype enctype, 
1058                                             char **etype_s);
1059 krb5_error_code smb_krb5_open_keytab(krb5_context context, 
1060                                       const char *keytab_name, 
1061                                       bool write_access, 
1062                                       krb5_keytab *keytab);
1063 krb5_error_code smb_krb5_keytab_name(TALLOC_CTX *mem_ctx,
1064                                      krb5_context context,
1065                                      krb5_keytab keytab,
1066                                      const char **keytab_name);
1067 int smb_krb5_kt_add_entry_ext(krb5_context context,
1068                               krb5_keytab keytab,
1069                               krb5_kvno kvno,
1070                               const char *princ_s,
1071                               krb5_enctype *enctypes,
1072                               krb5_data password,
1073                               bool no_salt,
1074                               bool keep_old_entries);
1075
1076 #endif /* HAVE_KRB5 */
1077
1078
1079 #ifdef HAVE_LDAP
1080
1081 /* function declarations not included in proto.h */
1082 LDAP *ldap_open_with_timeout(const char *server, int port, unsigned int to);
1083
1084 #endif  /* HAVE_LDAP */
1085
1086 #if defined(HAVE_LINUX_READAHEAD) && ! defined(HAVE_READAHEAD_DECL)
1087 ssize_t readahead(int fd, off64_t offset, size_t count);
1088 #endif
1089
1090 /* TRUE and FALSE are part of the C99 standard and gcc, but
1091    unfortunately many vendor compilers don't support them.  Use True
1092    and False instead. */
1093
1094 #ifdef TRUE
1095 #undef TRUE
1096 #endif
1097 #define TRUE __ERROR__XX__DONT_USE_TRUE
1098
1099 #ifdef FALSE
1100 #undef FALSE
1101 #endif
1102 #define FALSE __ERROR__XX__DONT_USE_FALSE
1103
1104 /* If we have blacklisted mmap() try to avoid using it accidentally by
1105    undefining the HAVE_MMAP symbol. */
1106
1107 #ifdef MMAP_BLACKLIST
1108 #undef HAVE_MMAP
1109 #endif
1110
1111 #define CONST_DISCARD(type, ptr)      ((type) ((void *) (ptr)))
1112 #define CONST_ADD(type, ptr)          ((type) ((const void *) (ptr)))
1113
1114 #ifndef NORETURN_ATTRIBUTE
1115 #if (__GNUC__ >= 3)
1116 #define NORETURN_ATTRIBUTE __attribute__ ((noreturn))
1117 #else
1118 #define NORETURN_ATTRIBUTE
1119 #endif
1120 #endif
1121
1122 void smb_panic( const char *why ) NORETURN_ATTRIBUTE ;
1123 void dump_core(void) NORETURN_ATTRIBUTE ;
1124 void exit_server(const char *const reason) NORETURN_ATTRIBUTE ;
1125 void exit_server_cleanly(const char *const reason) NORETURN_ATTRIBUTE ;
1126 void exit_server_fault(void) NORETURN_ATTRIBUTE ;
1127
1128 #ifdef HAVE_LIBNSCD
1129 #include "libnscd.h"
1130 #endif
1131
1132 #if defined(HAVE_IPV6)
1133 void in6_addr_to_sockaddr_storage(struct sockaddr_storage *ss,
1134                                   struct in6_addr ip);
1135 #endif
1136
1137 #endif /* _INCLUDES_H */