- port AUTH and PASSDB subsystems to new
[kamenim/samba.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 #endif
27
28 #include "local.h"
29
30 #ifdef AIX
31 #define DEFAULT_PRINTING PRINT_AIX
32 #define PRINTCAP_NAME "/etc/qconfig"
33 #endif
34
35 #ifdef HPUX
36 #define DEFAULT_PRINTING PRINT_HPUX
37 #endif
38
39 #ifdef QNX
40 #define DEFAULT_PRINTING PRINT_QNX
41 #endif
42
43 #ifdef SUNOS4
44 /* on SUNOS4 termios.h conflicts with sys/ioctl.h */
45 #undef HAVE_TERMIOS_H
46 #endif
47
48 #ifndef DEFAULT_PRINTING
49 #define DEFAULT_PRINTING PRINT_BSD
50 #endif
51 #ifndef PRINTCAP_NAME
52 #define PRINTCAP_NAME "/etc/printcap"
53 #endif
54
55 #ifdef __GNUC__
56 /** Use gcc attribute to check printf fns.  a1 is the 1-based index of
57  * the parameter containing the format, and a2 the index of the first
58  * argument.  **/
59 #define PRINTF_ATTRIBUTE(a1, a2) __attribute__ ((format (__printf__, a1, a2)))
60 #else
61 #define PRINTF_ATTRIBUTE(a1, a2)
62 #endif
63
64 #ifdef __GNUC__
65 /** gcc attribute used on function parameters so that it does not emit
66  * warnings about them being unused. **/
67 #  define UNUSED(param) param __attribute__ ((unused))
68 #else
69 #  define UNUSED(param) param
70 /** Feel free to add definitions for other compilers here. */
71 #endif
72
73 #ifdef RELIANTUNIX
74 /*
75  * <unistd.h> has to be included before any other to get
76  * large file support on Reliant UNIX. Yes, it's broken :-).
77  */
78 #ifdef HAVE_UNISTD_H
79 #include <unistd.h>
80 #endif
81 #endif /* RELIANTUNIX */
82
83 #include <sys/types.h>
84
85 #ifdef TIME_WITH_SYS_TIME
86 #include <sys/time.h>
87 #include <time.h>
88 #else
89 #ifdef HAVE_SYS_TIME_H
90 #include <sys/time.h>
91 #else
92 #include <time.h>
93 #endif
94 #endif
95
96 #ifdef HAVE_SYS_RESOURCE_H
97 #include <sys/resource.h>
98 #endif
99
100 #ifdef HAVE_UNISTD_H
101 #include <unistd.h>
102 #endif
103
104 #include <stdio.h>
105 #include <stddef.h>
106
107 #ifdef HAVE_SYS_PARAM_H
108 #include <sys/param.h>
109 #endif
110
111 #ifdef HAVE_STDLIB_H
112 #include <stdlib.h>
113 #endif
114
115 #ifdef HAVE_SYS_SOCKET_H
116 #include <sys/socket.h>
117 #endif
118
119 #ifdef HAVE_UNIXSOCKET
120 #include <sys/un.h>
121 #endif
122
123 #ifdef HAVE_SYS_SYSCALL_H
124 #include <sys/syscall.h>
125 #elif HAVE_SYSCALL_H
126 #include <syscall.h>
127 #endif
128
129 #ifdef HAVE_STRING_H
130 #include <string.h>
131 #endif
132
133 #ifdef HAVE_STRINGS_H
134 #include <strings.h>
135 #endif
136
137 #ifdef HAVE_MEMORY_H
138 #include <memory.h>
139 #endif
140
141 #ifdef HAVE_MALLOC_H
142 #include <malloc.h>
143 #endif
144
145 #ifdef HAVE_FCNTL_H
146 #include <fcntl.h>
147 #else
148 #ifdef HAVE_SYS_FCNTL_H
149 #include <sys/fcntl.h>
150 #endif
151 #endif
152
153 #include <sys/stat.h>
154
155 #ifdef HAVE_LIMITS_H
156 #include <limits.h>
157 #endif
158
159 #ifdef HAVE_SYS_IOCTL_H
160 #include <sys/ioctl.h>
161 #endif
162
163 #ifdef HAVE_SYS_FILIO_H
164 #include <sys/filio.h>
165 #endif
166
167 #include <signal.h>
168
169 #ifdef HAVE_SYS_WAIT_H
170 #include <sys/wait.h>
171 #endif
172 #ifdef HAVE_CTYPE_H
173 #include <ctype.h>
174 #endif
175 #ifdef HAVE_GRP_H
176 #include <grp.h>
177 #endif
178 #ifdef HAVE_SYS_PRIV_H
179 #include <sys/priv.h>
180 #endif
181 #ifdef HAVE_SYS_ID_H
182 #include <sys/id.h>
183 #endif
184
185 #include <errno.h>
186
187 #ifdef HAVE_UTIME_H
188 #include <utime.h>
189 #endif
190
191 #ifdef HAVE_SYS_SELECT_H
192 #include <sys/select.h>
193 #endif
194
195 #ifdef HAVE_SYS_MODE_H
196 /* apparently AIX needs this for S_ISLNK */
197 #ifndef S_ISLNK
198 #include <sys/mode.h>
199 #endif
200 #endif
201
202 #ifdef HAVE_GLOB_H
203 #include <glob.h>
204 #endif
205
206 #include <pwd.h>
207
208 #ifdef HAVE_STDARG_H
209 #include <stdarg.h>
210 #else
211 #include <varargs.h>
212 #endif
213
214 #include <netinet/in.h>
215 #include <arpa/inet.h>
216 #include <netdb.h>
217
218 #ifdef HAVE_SYSLOG_H
219 #include <syslog.h>
220 #else
221 #ifdef HAVE_SYS_SYSLOG_H
222 #include <sys/syslog.h>
223 #endif
224 #endif
225
226 #include <sys/file.h>
227
228 #ifdef HAVE_NETINET_TCP_H
229 #include <netinet/tcp.h>
230 #endif
231
232 /*
233  * The next three defines are needed to access the IPTOS_* options
234  * on some systems.
235  */
236
237 #ifdef HAVE_NETINET_IN_SYSTM_H
238 #include <netinet/in_systm.h>
239 #endif
240
241 #ifdef HAVE_NETINET_IN_IP_H
242 #include <netinet/in_ip.h>
243 #endif
244
245 #ifdef HAVE_NETINET_IP_H
246 #include <netinet/ip.h>
247 #endif
248
249 #if defined(HAVE_TERMIOS_H)
250 /* POSIX terminal handling. */
251 #include <termios.h>
252 #elif defined(HAVE_TERMIO_H)
253 /* Older SYSV terminal handling - don't use if we can avoid it. */
254 #include <termio.h>
255 #elif defined(HAVE_SYS_TERMIO_H)
256 /* Older SYSV terminal handling - don't use if we can avoid it. */
257 #include <sys/termio.h>
258 #endif
259
260 #if HAVE_DIRENT_H
261 # include <dirent.h>
262 # define NAMLEN(dirent) strlen((dirent)->d_name)
263 #else
264 # define dirent direct
265 # define NAMLEN(dirent) (dirent)->d_namlen
266 # if HAVE_SYS_NDIR_H
267 #  include <sys/ndir.h>
268 # endif
269 # if HAVE_SYS_DIR_H
270 #  include <sys/dir.h>
271 # endif
272 # if HAVE_NDIR_H
273 #  include <ndir.h>
274 # endif
275 #endif
276
277 #ifdef HAVE_SYS_MMAN_H
278 #include <sys/mman.h>
279 #endif
280
281 #ifdef HAVE_NET_IF_H
282 #include <net/if.h>
283 #endif
284
285
286 #ifdef HAVE_SYS_MOUNT_H
287 #include <sys/mount.h>
288 #endif
289
290 #ifdef HAVE_SYS_VFS_H
291 #include <sys/vfs.h>
292 #endif
293
294 #ifdef HAVE_SYS_ACL_H
295 #include <sys/acl.h>
296 #endif
297
298 #ifdef HAVE_SYS_FS_S5PARAM_H 
299 #include <sys/fs/s5param.h>
300 #endif
301
302 #if defined (HAVE_SYS_FILSYS_H) && !defined (_CRAY)
303 #include <sys/filsys.h> 
304 #endif
305
306 #ifdef HAVE_SYS_STATFS_H
307 # include <sys/statfs.h>
308 #endif
309
310 #ifdef HAVE_DUSTAT_H              
311 #include <sys/dustat.h>
312 #endif
313
314 #ifdef HAVE_SYS_STATVFS_H          
315 #include <sys/statvfs.h>
316 #endif
317
318 #ifdef HAVE_SHADOW_H
319 #include <shadow.h>
320 #endif
321
322 #ifdef HAVE_GETPWANAM
323 #include <sys/label.h>
324 #include <sys/audit.h>
325 #include <pwdadj.h>
326 #endif
327
328 #ifdef HAVE_SYS_SECURITY_H
329 #include <sys/security.h>
330 #include <prot.h>
331 #define PASSWORD_LENGTH 16
332 #endif  /* HAVE_SYS_SECURITY_H */
333
334 #ifdef HAVE_COMPAT_H
335 #include <compat.h>
336 #endif
337
338 #ifdef HAVE_STROPTS_H
339 #include <stropts.h>
340 #endif
341
342 #ifdef HAVE_SYS_CAPABILITY_H
343
344 #if defined(BROKEN_REDHAT_7_SYSTEM_HEADERS) && !defined(_I386_STATFS_H)
345 #define _I386_STATFS_H
346 #define BROKEN_REDHAT_7_STATFS_WORKAROUND
347 #endif
348
349 #include <sys/capability.h>
350
351 #ifdef BROKEN_REDHAT_7_STATFS_WORKAROUND
352 #undef _I386_STATFS_H
353 #undef BROKEN_REDHAT_7_STATFS_WORKAROUND
354 #endif
355
356 #endif
357
358 #if defined(HAVE_RPC_RPC_H)
359 /*
360  * Check for AUTH_ERROR define conflict with rpc/rpc.h in prot.h.
361  */
362 #if defined(HAVE_SYS_SECURITY_H) && defined(HAVE_RPC_AUTH_ERROR_CONFLICT)
363 #undef AUTH_ERROR
364 #endif
365 #include <rpc/rpc.h>
366 #endif
367
368 #if defined(HAVE_YP_GET_DEFAULT_DOMAIN) && defined(HAVE_SETNETGRENT) && defined(HAVE_ENDNETGRENT) && defined(HAVE_GETNETGRENT)
369 #define HAVE_NETGROUP 1
370 #endif
371
372 #if defined (HAVE_NETGROUP)
373 #if defined(HAVE_RPCSVC_YP_PROT_H)
374 #include <rpcsvc/yp_prot.h>
375 #endif
376 #if defined(HAVE_RPCSVC_YPCLNT_H)
377 #include <rpcsvc/ypclnt.h>
378 #endif
379 #endif /* HAVE_NETGROUP */
380
381 #if defined(HAVE_SYS_IPC_H)
382 #include <sys/ipc.h>
383 #endif /* HAVE_SYS_IPC_H */
384
385 #if defined(HAVE_SYS_SHM_H)
386 #include <sys/shm.h>
387 #endif /* HAVE_SYS_SHM_H */
388
389 #ifdef HAVE_NATIVE_ICONV
390 #ifdef HAVE_ICONV
391 #include <iconv.h>
392 #endif
393 #ifdef HAVE_GICONV
394 #include <giconv.h>
395 #endif
396 #endif
397
398 #if HAVE_KRB5_H
399 #include <krb5.h>
400 #else
401 #undef HAVE_KRB5
402 #endif
403
404 #if HAVE_LBER_H
405 #include <lber.h>
406 #endif
407
408 #if HAVE_LDAP_H
409 #include <ldap.h>
410 #else
411 #undef HAVE_LDAP
412 #endif
413
414 #if HAVE_GSSAPI_H
415 #include <gssapi.h>
416 #endif
417
418 #if HAVE_GSSAPI_GSSAPI_H
419 #include <gssapi/gssapi.h>
420 #endif
421
422 #if HAVE_GSSAPI_GSSAPI_GENERIC_H
423 #include <gssapi/gssapi_generic.h>
424 #endif
425
426 #if HAVE_COM_ERR_H
427 #include <com_err.h>
428 #endif
429
430 /* we support ADS if we want it and have krb5 and ldap libs */
431 #if defined(WITH_ADS) && defined(HAVE_KRB5) && defined(HAVE_LDAP)
432 #define HAVE_ADS
433 #endif
434
435 /*
436  * Define VOLATILE if needed.
437  */
438
439 #if defined(HAVE_VOLATILE)
440 #define VOLATILE volatile
441 #else
442 #define VOLATILE
443 #endif
444
445 /*
446  * Define additional missing types
447  */
448 #if defined(HAVE_SIG_ATOMIC_T_TYPE)
449 typedef sig_atomic_t SIG_ATOMIC_T;
450 #else
451 typedef int SIG_ATOMIC_T;
452 #endif
453
454 #ifndef HAVE_SOCKLEN_T_TYPE
455 typedef int socklen_t;
456 #endif
457
458
459 #ifndef uchar
460 #define uchar unsigned char
461 #endif
462
463 #ifdef HAVE_UNSIGNED_CHAR
464 #define schar signed char
465 #else
466 #define schar char
467 #endif
468
469 /*
470    Samba needs type definitions for int16, int32, uint16 and uint32.
471
472    Normally these are signed and unsigned 16 and 32 bit integers, but
473    they actually only need to be at least 16 and 32 bits
474    respectively. Thus if your word size is 8 bytes just defining them
475    as signed and unsigned int will work.
476 */
477
478 #ifndef uint8
479 #define uint8 unsigned char
480 #endif
481
482 #if !defined(int16) && !defined(HAVE_INT16_FROM_RPC_RPC_H)
483 #if (SIZEOF_SHORT == 4)
484 #define int16 __ERROR___CANNOT_DETERMINE_TYPE_FOR_INT16;
485 #else /* SIZEOF_SHORT != 4 */
486 #define int16 short
487 #endif /* SIZEOF_SHORT != 4 */
488 #endif
489
490 /*
491  * Note we duplicate the size tests in the unsigned 
492  * case as int16 may be a typedef from rpc/rpc.h
493  */
494
495 #if !defined(uint16) && !defined(HAVE_UINT16_FROM_RPC_RPC_H)
496 #if (SIZEOF_SHORT == 4)
497 #define uint16 __ERROR___CANNOT_DETERMINE_TYPE_FOR_INT16;
498 #else /* SIZEOF_SHORT != 4 */
499 #define uint16 unsigned short
500 #endif /* SIZEOF_SHORT != 4 */
501 #endif
502
503 #if !defined(int32) && !defined(HAVE_INT32_FROM_RPC_RPC_H)
504 #if (SIZEOF_INT == 4)
505 #define int32 int
506 #elif (SIZEOF_LONG == 4)
507 #define int32 long
508 #elif (SIZEOF_SHORT == 4)
509 #define int32 short
510 #else
511 /* uggh - no 32 bit type?? probably a CRAY. just hope this works ... */
512 #define int32 int
513 #endif
514 #endif
515
516 /*
517  * Note we duplicate the size tests in the unsigned 
518  * case as int32 may be a typedef from rpc/rpc.h
519  */
520
521 #if !defined(uint32) && !defined(HAVE_UINT32_FROM_RPC_RPC_H)
522 #if (SIZEOF_INT == 4)
523 #define uint32 unsigned int
524 #elif (SIZEOF_LONG == 4)
525 #define uint32 unsigned long
526 #elif (SIZEOF_SHORT == 4)
527 #define uint32 unsigned short
528 #else
529 /* uggh - no 32 bit type?? probably a CRAY. just hope this works ... */
530 #define uint32 unsigned
531 #endif
532 #endif
533
534 /*
535  * Types for devices, inodes and offsets.
536  */
537
538 #ifndef SMB_DEV_T
539 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_DEV64_T)
540 #    define SMB_DEV_T dev64_t
541 #  else
542 #    define SMB_DEV_T dev_t
543 #  endif
544 #endif
545
546 /*
547  * Setup the correctly sized inode type.
548  */
549
550 #ifndef SMB_INO_T
551 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_INO64_T)
552 #    define SMB_INO_T ino64_t
553 #  else
554 #    define SMB_INO_T ino_t
555 #  endif
556 #endif
557
558 #ifndef LARGE_SMB_INO_T
559 #  if (defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_INO64_T)) || (defined(SIZEOF_INO_T) && (SIZEOF_INO_T == 8))
560 #    define LARGE_SMB_INO_T 1
561 #  endif
562 #endif
563
564 #ifdef LARGE_SMB_INO_T
565 #define SINO_T(p, ofs, v) (SIVAL(p,ofs,(v)&0xFFFFFFFF), SIVAL(p,(ofs)+4,(v)>>32))
566 #else 
567 #define SINO_T(p, ofs, v) (SIVAL(p,ofs,v),SIVAL(p,(ofs)+4,0))
568 #endif
569
570 #ifndef SMB_OFF_T
571 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_OFF64_T)
572 #    define SMB_OFF_T off64_t
573 #  else
574 #    define SMB_OFF_T off_t
575 #  endif
576 #endif
577
578 /* this should really be a 64 bit type if possible */
579 #define br_off SMB_BIG_UINT
580
581 #define SMB_OFF_T_BITS (sizeof(SMB_OFF_T)*8)
582
583 /*
584  * Set the define that tells us if we can do 64 bit
585  * NT SMB calls.
586  */
587
588 #ifndef LARGE_SMB_OFF_T
589 #  if (defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_OFF64_T)) || (defined(SIZEOF_OFF_T) && (SIZEOF_OFF_T == 8))
590 #    define LARGE_SMB_OFF_T 1
591 #  endif
592 #endif
593
594 #ifdef LARGE_SMB_OFF_T
595 #define SOFF_T(p, ofs, v) (SIVAL(p,ofs,(v)&0xFFFFFFFF), SIVAL(p,(ofs)+4,(v)>>32))
596 #define SOFF_T_R(p, ofs, v) (SIVAL(p,(ofs)+4,(v)&0xFFFFFFFF), SIVAL(p,ofs,(v)>>32))
597 #define IVAL_TO_SMB_OFF_T(buf,off) ((SMB_OFF_T)(( ((SMB_BIG_UINT)(IVAL((buf),(off)))) & ((SMB_BIG_UINT)0xFFFFFFFF) )))
598 #define IVAL2_TO_SMB_BIG_UINT(buf,off) ( (((SMB_BIG_UINT)(IVAL((buf),(off)))) & ((SMB_BIG_UINT)0xFFFFFFFF)) | \
599                 (( ((SMB_BIG_UINT)(IVAL((buf),(off+4)))) & ((SMB_BIG_UINT)0xFFFFFFFF) ) << 32 ) )
600 #else 
601 #define SOFF_T(p, ofs, v) (SIVAL(p,ofs,v),SIVAL(p,(ofs)+4,0))
602 #define SOFF_T_R(p, ofs, v) (SIVAL(p,(ofs)+4,v),SIVAL(p,ofs,0))
603 #define IVAL_TO_SMB_OFF_T(buf,off) ((SMB_OFF_T)(( ((uint32)(IVAL((buf),(off)))) & 0xFFFFFFFF )))
604 #define IVAL2_TO_SMB_BIG_UINT(buf,off) ( (((SMB_BIG_UINT)(IVAL((buf),(off)))) & ((SMB_BIG_UINT)0xFFFFFFFF)) | \
605                                 (( ((SMB_BIG_UINT)(IVAL((buf),(off+4)))) & ((SMB_BIG_UINT)0xFFFFFFFF) ) << 32 ) )
606 #endif
607
608 /*
609  * Type for stat structure.
610  */
611
612 #ifndef SMB_STRUCT_STAT
613 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STAT64) && defined(HAVE_OFF64_T)
614 #    define SMB_STRUCT_STAT struct stat64
615 #  else
616 #    define SMB_STRUCT_STAT struct stat
617 #  endif
618 #endif
619
620 /*
621  * Type for dirent structure.
622  */
623
624 #ifndef SMB_STRUCT_DIRENT
625 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_DIRENT64)
626 #    define smb_dirent dirent64
627 #  else
628 #    define smb_dirent dirent
629 #  endif
630 #endif
631
632 /*
633  * Defines for 64 bit fcntl locks.
634  */
635
636 #ifndef SMB_STRUCT_FLOCK
637 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
638 #    define SMB_STRUCT_FLOCK struct flock64
639 #  else
640 #    define SMB_STRUCT_FLOCK struct flock
641 #  endif
642 #endif
643
644 #ifndef SMB_F_SETLKW
645 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
646 #    define SMB_F_SETLKW F_SETLKW64
647 #  else
648 #    define SMB_F_SETLKW F_SETLKW
649 #  endif
650 #endif
651
652 #ifndef SMB_F_SETLK
653 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
654 #    define SMB_F_SETLK F_SETLK64
655 #  else
656 #    define SMB_F_SETLK F_SETLK
657 #  endif
658 #endif
659
660 #ifndef SMB_F_GETLK
661 #  if defined(HAVE_EXPLICIT_LARGEFILE_SUPPORT) && defined(HAVE_STRUCT_FLOCK64) && defined(HAVE_OFF64_T)
662 #    define SMB_F_GETLK F_GETLK64
663 #  else
664 #    define SMB_F_GETLK F_GETLK
665 #  endif
666 #endif
667
668 #if defined(HAVE_LONGLONG)
669 #define SMB_BIG_UINT unsigned long long
670 #define SMB_BIG_INT long long
671 #define SBVAL(p, ofs, v) (SIVAL(p,ofs,(v)&0xFFFFFFFF), SIVAL(p,(ofs)+4,(v)>>32))
672 #define BVAL(p, ofs) (IVAL(p,ofs) | (((SMB_BIG_UINT)IVAL(p,(ofs)+4)) << 32))
673 #else
674 #define SMB_BIG_UINT unsigned long
675 #define SMB_BIG_INT long
676 #define SBVAL(p, ofs, v) (SIVAL(p,ofs,v),SIVAL(p,(ofs)+4,0))
677 #define BVAL(p, ofs) IVAL(p,ofs)
678 #endif
679
680 #define SMB_BIG_UINT_BITS (sizeof(SMB_BIG_UINT)*8)
681
682 #ifndef MIN
683 #define MIN(a,b) ((a)<(b)?(a):(b))
684 #endif
685
686 #ifndef MAX
687 #define MAX(a,b) ((a)>(b)?(a):(b))
688 #endif
689
690 #ifndef HAVE_STRERROR
691 extern char *sys_errlist[];
692 #define strerror(i) sys_errlist[i]
693 #endif
694
695 #ifndef HAVE_ERRNO_DECL
696 extern int errno;
697 #endif
698
699 #ifdef HAVE_BROKEN_GETGROUPS
700 #define GID_T int
701 #else
702 #define GID_T gid_t
703 #endif
704
705 #ifndef NGROUPS_MAX
706 #define NGROUPS_MAX 32 /* Guess... */
707 #endif
708
709 /* Our own pstrings and fstrings */
710 #include "pstring.h"
711
712 /* Lists, trees, caching, database... */
713 #include "xfile.h"
714 #include "dlinklist.h"
715 #include "../tdb/tdb.h"
716 #include "../tdb/spinlock.h"
717 #include "../tdb/tdbutil.h"
718 #include "talloc.h"
719 #include "nt_status.h"
720 #include "interfaces.h"
721 #include "trans2.h"
722 #include "ioctl.h"
723 #include "nterr.h"
724 #include "messages.h"
725 #include "charset.h"
726 #include "dynconfig.h"
727
728 #include "util_getent.h"
729
730 #include "version.h"
731 #include "smb.h"
732 #include "ads.h"
733 #include "nameserv.h"
734 #include "secrets.h"
735
736 #include "byteorder.h"
737
738 #include "msdfs.h"
739
740 #include "md5.h"
741 #include "hmacmd5.h"
742
743 #include "libcli/auth/ntlmssp.h"
744
745 #include "auth/auth.h"
746 #include "passdb/passdb.h"
747
748 #include "module.h"
749
750 #include "asn_1.h"
751
752 #include "popt.h"
753
754 #include "mangle.h"
755
756 #include "nsswitch/winbind_client.h"
757
758 #include "mutex.h"
759
760 #include "librpc/rpc/dcerpc.h"
761
762 #include "rpc_server/dcerpc_server.h"
763 #include "context.h"
764 #include "ntvfs.h"
765 #include "cli_context.h"
766
767
768 /* used in net.c */
769 struct functable {
770         const char *funcname;
771         int (*fn)(int argc, const char **argv);
772 };
773
774
775 #include "nsswitch/nss.h"
776
777 /***** automatically generated prototypes *****/
778 #include "proto.h"
779
780 /* String routines */
781
782 #include "safe_string.h"
783
784 #ifdef __COMPAR_FN_T
785 #define QSORT_CAST (__compar_fn_t)
786 #endif
787
788 #ifndef QSORT_CAST
789 #define QSORT_CAST (int (*)(const void *, const void *))
790 #endif
791
792 #ifndef SIGCLD
793 #define SIGCLD SIGCHLD
794 #endif
795
796 #ifndef MAP_FILE
797 #define MAP_FILE 0
798 #endif
799
800 #if (!defined(WITH_NISPLUS) && !defined(WITH_LDAP) && !defined(WITH_TDB_SAM))
801 #define USE_SMBPASS_DB 1
802 #endif
803
804 #if defined(HAVE_PUTPRPWNAM) && defined(AUTH_CLEARTEXT_SEG_CHARS)
805 #define OSF1_ENH_SEC 1
806 #endif
807
808 #ifndef ALLOW_CHANGE_PASSWORD
809 #if (defined(HAVE_TERMIOS_H) && defined(HAVE_DUP2) && defined(HAVE_SETSID))
810 #define ALLOW_CHANGE_PASSWORD 1
811 #endif
812 #endif
813
814 /* what is the longest significant password available on your system? 
815  Knowing this speeds up password searches a lot */
816 #ifndef PASSWORD_LENGTH
817 #define PASSWORD_LENGTH 8
818 #endif
819
820 #ifdef REPLACE_INET_NTOA
821 #define inet_ntoa rep_inet_ntoa
822 #endif
823
824 #ifndef HAVE_PIPE
825 #define SYNC_DNS 1
826 #endif
827
828 #ifndef MAXPATHLEN
829 #define MAXPATHLEN 256
830 #endif
831
832 #ifndef SEEK_SET
833 #define SEEK_SET 0
834 #endif
835
836 #ifndef INADDR_LOOPBACK
837 #define INADDR_LOOPBACK 0x7f000001
838 #endif
839
840 #ifndef INADDR_NONE
841 #define INADDR_NONE 0xffffffff
842 #endif
843
844 #ifndef HAVE_CRYPT
845 #define crypt ufc_crypt
846 #endif
847
848 #ifndef O_ACCMODE
849 #define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR)
850 #endif
851
852 #if defined(HAVE_CRYPT16) && defined(HAVE_GETAUTHUID)
853 #define ULTRIX_AUTH 1
854 #endif
855
856 #ifndef HAVE_STRDUP
857 char *strdup(const char *s);
858 #endif
859
860 #ifndef HAVE_MEMMOVE
861 void *memmove(void *dest,const void *src,int size);
862 #endif
863
864 #ifndef HAVE_INITGROUPS
865 int initgroups(char *name,gid_t id);
866 #endif
867
868 #ifndef HAVE_RENAME
869 int rename(const char *zfrom, const char *zto);
870 #endif
871
872 #ifndef HAVE_MKTIME
873 time_t mktime(struct tm *t);
874 #endif
875
876 #ifndef HAVE_STRLCPY
877 size_t strlcpy(char *d, const char *s, size_t bufsize);
878 #endif
879
880 #ifndef HAVE_STRLCAT
881 size_t strlcat(char *d, const char *s, size_t bufsize);
882 #endif
883
884 #ifndef HAVE_FTRUNCATE
885 int ftruncate(int f,long l);
886 #endif
887
888 #ifndef HAVE_STRNDUP
889 char *strndup(const char *s, size_t n);
890 #endif
891
892 #ifndef HAVE_STRNLEN
893 size_t strnlen(const char *s, size_t n);
894 #endif
895
896 #ifndef HAVE_STRTOUL
897 unsigned long strtoul(const char *nptr, char **endptr, int base);
898 #endif
899
900 #ifndef HAVE_SETENV
901 int setenv(const char *name, const char *value, int overwrite); 
902 #endif
903
904 #if (defined(USE_SETRESUID) && !defined(HAVE_SETRESUID_DECL))
905 /* stupid glibc */
906 int setresuid(uid_t ruid, uid_t euid, uid_t suid);
907 #endif
908 #if (defined(USE_SETRESUID) && !defined(HAVE_SETRESGID_DECL))
909 int setresgid(gid_t rgid, gid_t egid, gid_t sgid);
910 #endif
911 #ifndef HAVE_VASPRINTF_DECL
912 int vasprintf(char **ptr, const char *format, va_list ap);
913 #endif
914
915 #if !defined(HAVE_BZERO) && defined(HAVE_MEMSET)
916 #define bzero(a,b) memset((a),'\0',(b))
917 #endif
918
919 #ifdef REPLACE_GETPASS
920 #define getpass(prompt) getsmbpass((prompt))
921 #endif
922
923 /*
924  * Some older systems seem not to have MAXHOSTNAMELEN
925  * defined.
926  */
927 #ifndef MAXHOSTNAMELEN
928 #define MAXHOSTNAMELEN 254
929 #endif
930
931 /* yuck, I'd like a better way of doing this */
932 #define DIRP_SIZE (256 + 32)
933
934 /*
935  * glibc on linux doesn't seem to have MSG_WAITALL
936  * defined. I think the kernel has it though..
937  */
938
939 #ifndef MSG_WAITALL
940 #define MSG_WAITALL 0
941 #endif
942
943 /* default socket options. Dave Miller thinks we should default to TCP_NODELAY
944    given the socket IO pattern that Samba uses */
945 #ifdef TCP_NODELAY
946 #define DEFAULT_SOCKET_OPTIONS "TCP_NODELAY"
947 #else
948 #define DEFAULT_SOCKET_OPTIONS ""
949 #endif
950
951 /* Load header file for dynamic linking stuff */
952
953 #ifdef HAVE_DLFCN_H
954 #include <dlfcn.h>
955 #endif
956
957 /* dmalloc -- free heap debugger (dmalloc.org).  This should be near
958  * the *bottom* of include files so as not to conflict. */
959 #ifdef ENABLE_DMALLOC
960 #  include <dmalloc.h>
961 #endif
962
963
964 /* Some POSIX definitions for those without */
965  
966 #ifndef S_IFDIR
967 #define S_IFDIR         0x4000
968 #endif
969 #ifndef S_ISDIR
970 #define S_ISDIR(mode)   ((mode & 0xF000) == S_IFDIR)
971 #endif
972 #ifndef S_IRWXU
973 #define S_IRWXU 00700           /* read, write, execute: owner */
974 #endif
975 #ifndef S_IRUSR
976 #define S_IRUSR 00400           /* read permission: owner */
977 #endif
978 #ifndef S_IWUSR
979 #define S_IWUSR 00200           /* write permission: owner */
980 #endif
981 #ifndef S_IXUSR
982 #define S_IXUSR 00100           /* execute permission: owner */
983 #endif
984 #ifndef S_IRWXG
985 #define S_IRWXG 00070           /* read, write, execute: group */
986 #endif
987 #ifndef S_IRGRP
988 #define S_IRGRP 00040           /* read permission: group */
989 #endif
990 #ifndef S_IWGRP
991 #define S_IWGRP 00020           /* write permission: group */
992 #endif
993 #ifndef S_IXGRP
994 #define S_IXGRP 00010           /* execute permission: group */
995 #endif
996 #ifndef S_IRWXO
997 #define S_IRWXO 00007           /* read, write, execute: other */
998 #endif
999 #ifndef S_IROTH
1000 #define S_IROTH 00004           /* read permission: other */
1001 #endif
1002 #ifndef S_IWOTH
1003 #define S_IWOTH 00002           /* write permission: other */
1004 #endif
1005 #ifndef S_IXOTH
1006 #define S_IXOTH 00001           /* execute permission: other */
1007 #endif
1008
1009 /* For sys_adminlog(). */
1010 #ifndef LOG_EMERG
1011 #define LOG_EMERG       0       /* system is unusable */
1012 #endif
1013
1014 #ifndef LOG_ALERT
1015 #define LOG_ALERT       1       /* action must be taken immediately */
1016 #endif
1017
1018 #ifndef LOG_CRIT
1019 #define LOG_CRIT        2       /* critical conditions */
1020 #endif
1021
1022 #ifndef LOG_ERR
1023 #define LOG_ERR         3       /* error conditions */
1024 #endif
1025
1026 #ifndef LOG_WARNING
1027 #define LOG_WARNING     4       /* warning conditions */
1028 #endif
1029
1030 #ifndef LOG_NOTICE
1031 #define LOG_NOTICE      5       /* normal but significant condition */
1032 #endif
1033
1034 #ifndef LOG_INFO
1035 #define LOG_INFO        6       /* informational */
1036 #endif
1037
1038 #ifndef LOG_DEBUG
1039 #define LOG_DEBUG       7       /* debug-level messages */
1040 #endif
1041
1042 /* NetBSD doesn't have these */
1043 #ifndef SHM_R
1044 #define SHM_R 0400
1045 #endif
1046
1047 #ifndef SHM_W
1048 #define SHM_W 0200
1049 #endif
1050
1051 #if HAVE_KERNEL_SHARE_MODES
1052 #ifndef LOCK_MAND 
1053 #define LOCK_MAND       32      /* This is a mandatory flock */
1054 #define LOCK_READ       64      /* ... Which allows concurrent read operations */
1055 #define LOCK_WRITE      128     /* ... Which allows concurrent write operations */
1056 #define LOCK_RW         192     /* ... Which allows concurrent read & write ops */
1057 #endif
1058 #endif
1059
1060 extern int DEBUGLEVEL;
1061
1062 #define MAX_SEC_CTX_DEPTH 8    /* Maximum number of security contexts */
1063
1064
1065 #ifdef GLIBC_HACK_FCNTL64
1066 /* this is a gross hack. 64 bit locking is completely screwed up on
1067    i386 Linux in glibc 2.1.95 (which ships with RedHat 7.0). This hack
1068    "fixes" the problem with the current 2.4.0test kernels 
1069 */
1070 #define fcntl fcntl64
1071 #undef F_SETLKW 
1072 #undef F_SETLK 
1073 #define F_SETLK 13
1074 #define F_SETLKW 14
1075 #endif
1076
1077
1078 /* Needed for sys_dlopen/sys_dlsym/sys_dlclose */
1079 #ifndef RTLD_GLOBAL
1080 #define RTLD_GLOBAL 0
1081 #endif
1082
1083 #ifndef RTLD_LAZY
1084 #define RTLD_LAZY 0
1085 #endif
1086
1087 #ifndef RTLD_NOW
1088 #define RTLD_NOW 0
1089 #endif
1090
1091 /* needed for some systems without iconv. Doesn't really matter
1092    what error code we use */
1093 #ifndef EILSEQ
1094 #define EILSEQ EIO
1095 #endif
1096
1097 /* add varargs prototypes with printf checking */
1098 int fdprintf(int , const char *, ...) PRINTF_ATTRIBUTE(2,3);
1099 int d_printf(const char *, ...) PRINTF_ATTRIBUTE(1,2);
1100 int d_fprintf(FILE *f, const char *, ...) PRINTF_ATTRIBUTE(2,3);
1101 #ifndef HAVE_SNPRINTF_DECL
1102 int snprintf(char *,size_t ,const char *, ...) PRINTF_ATTRIBUTE(3,4);
1103 #endif
1104 #ifndef HAVE_ASPRINTF_DECL
1105 int asprintf(char **,const char *, ...) PRINTF_ATTRIBUTE(2,3);
1106 #endif
1107
1108 void sys_adminlog(int priority, const char *format_str, ...) PRINTF_ATTRIBUTE(2,3);
1109
1110 int pstr_sprintf(pstring s, const char *fmt, ...) PRINTF_ATTRIBUTE(2,3);
1111 int fstr_sprintf(fstring s, const char *fmt, ...) PRINTF_ATTRIBUTE(2,3);
1112
1113 int d_vfprintf(FILE *f, const char *format, va_list ap) PRINTF_ATTRIBUTE(2,0);
1114
1115 int smb_xvasprintf(char **ptr, const char *format, va_list ap) PRINTF_ATTRIBUTE(2,0);
1116
1117 /* we used to use these fns, but now we have good replacements
1118    for snprintf and vsnprintf */
1119 #define slprintf snprintf
1120 #define vslprintf vsnprintf
1121
1122
1123 /* we need to use __va_copy() on some platforms */
1124 #ifdef HAVE_VA_COPY
1125 #define VA_COPY(dest, src) __va_copy(dest, src)
1126 #else
1127 #define VA_COPY(dest, src) (dest) = (src)
1128 #endif
1129
1130 #ifndef HAVE_TIMEGM
1131 time_t timegm(struct tm *tm);
1132 #endif
1133
1134 #if defined(VALGRIND)
1135 #define strlen(x) valgrind_strlen(x)
1136 #endif
1137
1138 /*
1139  * Veritas File System.  Often in addition to native.
1140  * Quotas different.
1141  */
1142 #if defined(HAVE_SYS_FS_VX_QUOTA_H)
1143 #define VXFS_QUOTA
1144 #endif
1145
1146 #endif /* _INCLUDES_H */
1147