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