vfs: Remove smb_traffic_analyzer
[samba.git] / source3 / wscript
1 #!/usr/bin/env python
2
3 srcdir=".."
4
5 import sys, os
6 from optparse import SUPPRESS_HELP
7 sys.path.insert(0, srcdir+"/buildtools/wafsamba")
8 sys.path.insert(0, "source3")
9 import wafsamba, Options, Logs, Utils, Scripting
10 import build.charset
11 import samba_utils, samba_version
12 import samba3
13
14 default_prefix = Options.default_prefix = '/usr/local/samba'
15
16 def set_options(opt):
17
18     opt.add_option('--with-static-modules',
19                    help=("Comma-separated list of names of modules to statically link in. "+
20                          "May include !module to disable 'module'. "+
21                          "Can be '!FORCED' to disable all non-required static only modules. "+
22                          "Can be '!DEFAULT' to disable all modules defaulting to a static build. "+
23                          "Can be 'ALL' to build all default shared modules static. "+
24                          "The most specific one wins, while the order is ignored "+
25                          "and --with-static-modules is evaluated before "+
26                          "--with-shared-modules"),
27                    action="store", dest='static_modules', default=None)
28     opt.add_option('--with-shared-modules',
29                    help=("Comma-separated list of names of modules to build shared. "+
30                          "May include !module to disable 'module'. "+
31                          "Can be '!FORCED' to disable all non-required shared only modules. "+
32                          "Can be '!DEFAULT' to disable all modules defaulting to a shared build. "+
33                          "Can be 'ALL' to build all default static modules shared. "+
34                          "The most specific one wins, while the order is ignored "+
35                          "and --with-static-modules is evaluated before "+
36                          "--with-shared-modules"),
37                    action="store", dest='shared_modules', default=None)
38
39     opt.SAMBA3_ADD_OPTION('winbind')
40     opt.SAMBA3_ADD_OPTION('ads')
41     opt.SAMBA3_ADD_OPTION('ldap')
42     opt.SAMBA3_ADD_OPTION('cups', with_name="enable", without_name="disable")
43     opt.SAMBA3_ADD_OPTION('iprint', with_name="enable", without_name="disable")
44     opt.SAMBA3_ADD_OPTION('pam')
45     opt.SAMBA3_ADD_OPTION('quotas')
46     opt.SAMBA3_ADD_OPTION('sendfile-support')
47     opt.SAMBA3_ADD_OPTION('utmp')
48     opt.SAMBA3_ADD_OPTION('pthreadpool', with_name="enable", without_name="disable", default=True)
49     opt.SAMBA3_ADD_OPTION('avahi', with_name="enable", without_name="disable")
50     opt.SAMBA3_ADD_OPTION('iconv')
51     opt.SAMBA3_ADD_OPTION('acl-support')
52     opt.SAMBA3_ADD_OPTION('dnsupdate')
53     opt.SAMBA3_ADD_OPTION('syslog')
54     opt.SAMBA3_ADD_OPTION('automount')
55     opt.SAMBA3_ADD_OPTION('aio-support')
56     opt.SAMBA3_ADD_OPTION('dmapi', default=None) # None means autodetection
57     opt.SAMBA3_ADD_OPTION('fam', default=None) # None means autodetection
58     opt.SAMBA3_ADD_OPTION('profiling-data', default=False)
59     opt.SAMBA3_ADD_OPTION('libarchive', default=None)
60
61     opt.SAMBA3_ADD_OPTION('cluster-support', default=None)
62
63     opt.SAMBA3_ADD_OPTION('regedit', default=None)
64
65     opt.SAMBA3_ADD_OPTION('fake-kaserver',
66                           help=("Include AFS fake-kaserver support"), default=False)
67
68     opt.add_option('--with-libcephfs',
69                    help=("Directory under which libcephfs is installed"),
70                    action="store", dest='libcephfs_dir', default=None)
71
72     opt.SAMBA3_ADD_OPTION('glusterfs', with_name="enable", without_name="disable", default=True)
73
74     opt.add_option('--enable-vxfs',
75                   help=("enable support for VxFS (default=no)"),
76                   action="store_true", dest='enable_vxfs', default=False)
77
78     opt.SAMBA3_ADD_OPTION('spotlight', with_name="enable", without_name="disable", default=False)
79
80 def configure(conf):
81     from samba_utils import TO_LIST
82
83     default_static_modules = []
84     default_shared_modules = []
85     required_static_modules = []
86     forced_static_modules = []
87     forced_shared_modules = []
88
89     if Options.options.developer:
90         conf.ADD_CFLAGS('-DDEVELOPER -DDEBUG_PASSWORD')
91         conf.env.developer = True
92
93     if sys.platform != 'openbsd5':
94         conf.ADD_LDFLAGS("-Wl,--export-dynamic", testflags=True)
95
96     # We crash without vfs_default
97     required_static_modules.extend(TO_LIST('vfs_default'))
98
99     conf.CHECK_HEADERS('execinfo.h libexc.h libunwind.h netdb.h')
100     conf.CHECK_HEADERS('linux/falloc.h linux/ioctl.h')
101
102     conf.CHECK_FUNCS('getcwd fchown chmod fchmod mknod')
103     conf.CHECK_FUNCS('strtol strchr strupr chflags')
104     conf.CHECK_FUNCS('getrlimit fsync fdatasync setpgid')
105     conf.CHECK_FUNCS('setsid glob strpbrk crypt16 getauthuid')
106     conf.CHECK_FUNCS('innetgr')
107     conf.CHECK_FUNCS('initgroups select poll rdchk getgrnam getgrent pathconf')
108     conf.CHECK_FUNCS('setpriv setgidx setuidx setgroups syscall sysconf')
109     conf.CHECK_FUNCS('atexit grantpt posix_openpt fallocate posix_fallocate')
110     conf.CHECK_FUNCS('fseeko setluid')
111     conf.CHECK_FUNCS('getpwnam', headers='sys/types.h pwd.h')
112     conf.CHECK_FUNCS('fdopendir')
113     conf.CHECK_FUNCS('fstatat')
114     conf.CHECK_FUNCS('getpwent_r setenv strcasecmp fcvt fcvtl')
115     conf.CHECK_FUNCS('syslog vsyslog timegm setlocale')
116     conf.CHECK_FUNCS_IN('nanosleep', 'rt')
117     conf.CHECK_FUNCS('lutimes futimes utimensat futimens')
118     conf.CHECK_FUNCS('mlock munlock mlockall munlockall')
119     conf.CHECK_FUNCS('memalign posix_memalign hstrerror')
120     conf.CHECK_FUNCS('shmget')
121     conf.CHECK_FUNCS_IN('shm_open', 'rt', checklibc=True)
122     #FIXME: for some reason this one still fails
123     conf.CHECK_FUNCS_IN('yp_get_default_domain', 'nsl')
124     conf.CHECK_FUNCS_IN('dn_expand _dn_expand __dn_expand', 'resolv')
125     conf.CHECK_FUNCS_IN('dn_expand', 'inet')
126     conf.CHECK_DECLS('fdatasync', reverse=True)
127     conf.CHECK_DECLS('readahead', reverse=True, headers='fcntl.h')
128
129     if conf.CHECK_CODE('''
130 #if defined(HAVE_UNISTD_H)
131 #include <unistd.h>
132 #endif
133 long ret = splice(0,0,1,0,400,SPLICE_F_MOVE);
134 ''',
135         'HAVE_LINUX_SPLICE',
136         headers='fcntl.h'):
137         conf.CHECK_DECLS('splice', reverse=True, headers='fcntl.h')
138
139     # Check for inotify support
140     conf.CHECK_HEADERS('sys/inotify.h')
141     if "HAVE_SYS_INOTIFY_H" in conf.env:
142         conf.DEFINE('HAVE_INOTIFY', 1)
143
144     # Check for kernel change notify support
145     conf.CHECK_CODE('''
146 #ifndef F_NOTIFY
147 #define F_NOTIFY 1026
148 #endif
149 main() {
150         exit(fcntl(open("/tmp", O_RDONLY), F_NOTIFY, 0) == -1 ?  1 : 0);
151 }''', 'HAVE_KERNEL_CHANGE_NOTIFY', addmain=False, execute=True,
152         headers='fcntl.h signal.h',
153         msg="Checking for kernel change notify support")
154
155     # Check for Linux kernel oplocks
156     conf.CHECK_CODE('''
157 #include <sys/types.h>
158 #include <fcntl.h>
159 #include <signal.h>
160 #ifndef F_NOTIFY
161 #define F_NOTIFY 1026
162 #endif
163 main() {
164         exit(fcntl(open("/tmp", O_RDONLY), F_NOTIFY, 0) == -1 ?  1 : 0);
165 }''', 'HAVE_KERNEL_OPLOCKS_LINUX', addmain=False, execute=True,
166         msg="Checking for Linux kernel oplocks")
167
168     # Check for IRIX kernel oplock types
169     conf.CHECK_CODE('oplock_stat_t t; t.os_state = OP_REVOKE; t.os_dev = 1; t.os_ino = 1;',
170                     'HAVE_KERNEL_OPLOCKS_IRIX', headers='fcntl.h',
171                     msg="Checking for IRIX kernel oplock types")
172
173     # Check for kernel share modes
174     conf.CHECK_CODE('''
175 #include <sys/types.h>
176 #include <fcntl.h>
177 #include <signal.h>
178 #include <sys/file.h>
179 #ifndef LOCK_MAND
180 #define LOCK_MAND        32
181 #define LOCK_READ        64
182 #endif
183 main() {
184         exit(flock(open("/dev/null", O_RDWR), LOCK_MAND|LOCK_READ) != 0);
185 }''', 'HAVE_KERNEL_SHARE_MODES', addmain=False, execute=True,
186         msg="Checking for kernel share modes")
187
188     # check for fam libs
189     samba_fam_libs=None
190     check_for_fam=False
191     if Options.options.with_fam is None:
192         check_for_fam=True
193     elif Options.options.with_fam == True:
194         check_for_fam=True
195
196     if check_for_fam and conf.CHECK_HEADERS('fam.h'):
197         if conf.CHECK_FUNCS_IN('FAMOpen2', 'fam'):
198             samba_fam_libs='fam'
199         elif conf.CHECK_FUNCS_IN('FAMOpen2', 'fam C'):
200             samba_fam_libs='fam C'
201         conf.CHECK_TYPE('enum FAMCodes', headers='fam.h',
202             define='HAVE_FAM_H_FAMCODES_TYPEDEF',
203             msg='Checking whether enum FAMCodes is available')
204         conf.CHECK_FUNCS_IN('FAMNoExists', 'fam')
205
206     if samba_fam_libs is not None:
207         conf.DEFINE('SAMBA_FAM_LIBS', samba_fam_libs)
208     else:
209         if Options.options.with_fam == True:
210             conf.fatal('FAM support requested, but no suitable FAM library found')
211         elif check_for_fam:
212             Logs.warn('no suitable FAM library found')
213
214     # check for libarchive (tar command in smbclient)
215     # None means autodetect, True/False means enable/disable
216     conf.env['archive_lib'] = ''
217     if Options.options.with_libarchive is not False:
218         libarchive_mandatory = Options.options.with_libarchive == True
219         Logs.info("Checking for libarchive existence")
220         if conf.CHECK_BUNDLED_SYSTEM('libarchive', minversion='3.1.2'):
221             conf.env['archive_lib'] = 'libarchive'
222         elif libarchive_mandatory:
223             conf.fatal('libarchive support requested, but no suitable pkgconfig found')
224
225     # check for DMAPI libs
226     if Options.options.with_dmapi == False:
227         have_dmapi = False
228     else:
229         have_dmapi = True
230         Logs.info("Checking for DMAPI library existence")
231         samba_dmapi_lib = ''
232         if conf.CHECK_FUNCS_IN('dm_get_eventlist', 'dm'):
233             samba_dmapi_lib = 'dm'
234         else:
235             if conf.CHECK_FUNCS_IN('dm_get_eventlist', 'jfsdm'):
236                 samba_dmapi_lib = 'jfsdm'
237             else:
238                 if conf.CHECK_FUNCS_IN('dm_get_eventlist', 'dmapi'):
239                     samba_dmapi_lib = 'dmapi'
240                 else:
241                     if conf.CHECK_FUNCS_IN('dm_get_eventlist', 'xdsm'):
242                         samba_dmapi_lib = 'xdsm'
243         # only bother to test headers and compilation when a candidate
244         # library has been found
245         if samba_dmapi_lib == '':
246             have_dmapi = False
247             broken_dmapi = "no suitable DMAPI library found"
248
249         if have_dmapi:
250             conf.CHECK_HEADERS('sys/dmi.h xfs/dmapi.h sys/jfsdmapi.h sys/dmapi.h dmapi.h')
251             conf.CHECK_CODE('''
252 #include <time.h>      /* needed by Tru64 */
253 #include <sys/types.h> /* needed by AIX */
254 #ifdef HAVE_XFS_DMAPI_H
255 #include <xfs/dmapi.h>
256 #elif defined(HAVE_SYS_DMI_H)
257 #include <sys/dmi.h>
258 #elif defined(HAVE_SYS_JFSDMAPI_H)
259 #include <sys/jfsdmapi.h>
260 #elif defined(HAVE_SYS_DMAPI_H)
261 #include <sys/dmapi.h>
262 #elif defined(HAVE_DMAPI_H)
263 #include <dmapi.h>
264 #endif
265
266 /* This link test is designed to fail on IRI 6.4, but should
267  * succeed on Linux, IRIX 6.5 and AIX.
268  */
269 int main(int argc, char **argv)
270 {
271         char * version;
272         dm_eventset_t events;
273         /* This doesn't take an argument on IRIX 6.4. */
274         dm_init_service(&version);
275         /* IRIX 6.4 expects events to be a pointer. */
276         DMEV_ISSET(DM_EVENT_READ, events);
277
278         return 0;
279 }
280 ''',
281             'USEABLE_DMAPI_LIBRARY',
282             addmain=False,
283             execute=False,
284             lib=samba_dmapi_lib,
285             msg='Checking whether DMAPI lib '+samba_dmapi_lib+' can be used')
286             if not conf.CONFIG_SET('USEABLE_DMAPI_LIBRARY'):
287                 have_dmapi = False
288                 broken_dmapi = "no usable DMAPI library found"
289
290     if have_dmapi:
291         Logs.info("Building with DMAPI support.")
292         conf.env['dmapi_lib'] = samba_dmapi_lib
293         conf.DEFINE('USE_DMAPI', 1)
294     else:
295         if Options.options.with_dmapi == False:
296             Logs.info("Building without DMAPI support (--without-dmapi).")
297         elif Options.options.with_dmapi == True:
298             Logs.error("DMAPI support not available: " + broken_dmapi)
299             conf.fatal('DMAPI support requested but not found.');
300         else:
301             Logs.warn("Building without DMAPI support: " + broken_dmapi)
302         conf.env['dmapi_lib'] = ''
303
304     # Check for various members of the stat structure
305     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_blocks', define='HAVE_STAT_ST_BLOCKS',
306                                 headers='sys/stat.h')
307     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_blksize', define='HAVE_STAT_ST_BLKSIZE',
308                                 headers='sys/stat.h')
309     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_flags', define='HAVE_STAT_ST_FLAGS',
310                                 headers='sys/types.h sys/stat.h unistd.h')
311
312     if "HAVE_BLKCNT_T" in conf.env:
313         conf.CHECK_CODE('''
314         static int test_array[1 - 2 * !(((long int)(sizeof(blkcnt_t))) <= 4)];''',
315                 'SIZEOF_BLKCNT_T_4',
316                 headers='replace.h sys/types.h sys/stat.h unistd.h',
317                 msg="Checking whether blkcnt_t is 32 bit")
318
319     # If sizeof is 4 it can't be 8
320     if "HAVE_BLKCNT_T" in conf.env:
321         if not conf.CONFIG_SET('SIZEOF_BLKCNT_T_4'):
322             conf.CHECK_CODE('''
323             static int test_array[1 - 2 * !(((long int)(sizeof(blkcnt_t))) <= 8)];''',
324                     'SIZEOF_BLKCNT_T_8',
325                     headers='replace.h sys/types.h sys/stat.h unistd.h',
326                     msg="Checking whether blkcnt_t is 64 bit")
327
328     # Check for POSIX capability support
329     conf.CHECK_FUNCS_IN('cap_get_proc', 'cap', headers='sys/capability.h')
330
331     if "HAVE_SYS_CAPABILITY_H" in conf.env:
332         conf.CHECK_CODE('''
333         cap_t cap;
334         cap_value_t vals[1];
335         if (!(cap = cap_get_proc())) exit(1);
336         vals[0] = CAP_CHOWN;
337         cap_set_flag(cap, CAP_INHERITABLE, 1, vals, CAP_CLEAR);
338         cap_set_proc(cap);''',
339                         'HAVE_POSIX_CAPABILITIES', execute=True, lib="cap",
340                         headers='sys/capability.h',
341                         msg="Checking whether POSIX capabilities are available")
342
343     conf.CHECK_CODE('int i;', 'BROKEN_NISPLUS_INCLUDE_FILES',
344                     headers='sys/types.h sys/acl.h rpcsvc/nis.h',
345                     msg="Checking for broken nisplus include files")
346
347     # Check if the compiler will optimize out functions
348     conf.CHECK_CODE('''
349 #include <sys/types.h>
350 size_t __unsafe_string_function_usage_here_size_t__(void);
351 #define CHECK_STRING_SIZE(d, len) (sizeof(d) != (len) && sizeof(d) != sizeof(char *))
352 static size_t push_string_check_fn(void *dest, const char *src, size_t dest_len) {
353         return 0;
354 }
355
356 #define push_string_check(dest, src, dest_len) \
357     (CHECK_STRING_SIZE(dest, dest_len) \
358     ? __unsafe_string_function_usage_here_size_t__()    \
359     : push_string_check_fn(dest, src, dest_len))
360
361 int main(int argc, char **argv) {
362     char outbuf[1024];
363     char *p = outbuf;
364     const char *foo = "bar";
365     p += 31 + push_string_check(p + 31, foo, sizeof(outbuf) - (p + 31 - outbuf));
366     return 0;
367 }''', 'HAVE_COMPILER_WILL_OPTIMIZE_OUT_FNS',
368             addmain=False,
369             add_headers=False,
370             msg="Checking if the compiler will optimize out functions")
371
372     # Check if the compiler supports the LL suffix on long long integers
373     # AIX needs this
374     conf.CHECK_CODE('long long i = 0x8000000000LL', 'COMPILER_SUPPORTS_LL',
375                     headers='stdio.h',
376                     msg="Checking for LL suffix on long long integers")
377
378     conf.CHECK_FUNCS('''
379 _acl __acl atexit 
380  _chdir __chdir chflags chmod _close __close _closedir
381 __closedir crypt16 devnm dirfd
382 DNSServiceRegister _dup __dup _dup2 __dup2 endmntent execl
383 _facl __facl _fchdir
384 __fchdir fchmod fchown _fcntl __fcntl fcvt fcvtl fdatasync
385 _fork __fork fseeko
386 fsetxattr _fstat __fstat fsync
387 futimens futimes __fxstat getauthuid
388 getcwd _getcwd __getcwd getdents __getdents getdirentries
389 getgrent getgrnam getgrouplist getgrset getmntent getpagesize
390 getpwanam getpwent_r getrlimit
391 glob grantpt hstrerror initgroups innetgr
392 llseek _llseek __llseek _lseek __lseek
393 _lstat __lstat lutimes
394 __lxstat memalign mknod mlock mlockall munlock munlockall
395 _open __open _opendir __opendir
396 pathconf poll posix_fallocate
397 posix_memalign pread _pread __pread
398 pwrite _pwrite __pwrite
399 rdchk _read __read _readdir __readdir
400 _seekdir __seekdir
401 select setenv setgidx setgroups setlocale setluid
402 setmntent setpgid setpriv setsid setuidx
403 shmget shm_open
404 _stat __stat statvfs
405 strcasecmp strchr strpbrk strsignal strtol strupr sysconf sysctl sysctlbyname
406 __sys_llseek syslog _telldir __telldir timegm
407 utimensat vsyslog _write __write __xstat
408 ''')
409
410     conf.CHECK_SAMBA3_CHARSET() # see build/charset.py
411
412     # FIXME: these should be tests for features, but the old build system just
413     # checks for OSes.
414     host_os = sys.platform
415     Logs.info("building on %s" % host_os)
416
417     # Python doesn't have case switches... :/
418     # FIXME: original was *linux* | gnu* | k*bsd*-gnu | kopensolaris*-gnu | *qnx*)
419     # the search for .rfind('gnu') covers gnu* and *-gnu is that too broad?
420
421     conf.SET_TARGET_TYPE('sunacl', 'EMPTY')
422     if (host_os.rfind('linux') > -1) or (host_os.rfind('gnu') > -1) or (host_os.rfind('qnx') > -1):
423         if host_os.rfind('linux') > -1:
424             conf.DEFINE('LINUX', '1')
425         elif host_os.rfind('qnx') > -1:
426             conf.DEFINE('QNX', '1')
427         conf.DEFINE('STAT_ST_BLOCKSIZE', '512')
428     elif (host_os.rfind('darwin') > -1):
429         conf.DEFINE('DARWINOS', 1)
430         conf.ADD_CFLAGS('-fno-common')
431         conf.DEFINE('STAT_ST_BLOCKSIZE', '512')
432     elif (host_os.rfind('freebsd') > -1):
433         conf.DEFINE('FREEBSD', 1)
434         if conf.CHECK_HEADERS('sunacl.h'):
435             conf.DEFINE('HAVE_FREEBSD_SUNACL_H', '1')
436             conf.CHECK_FUNCS_IN(['acl'], 'sunacl')
437         conf.DEFINE('STAT_ST_BLOCKSIZE', '512')
438     elif (host_os.rfind('irix') > -1):
439         conf.DEFINE('IRIX', 1)
440         conf.DEFINE('STAT_ST_BLOCKSIZE', '512')
441     elif (host_os.rfind('aix') > -1):
442         conf.DEFINE('AIX', 1)
443         conf.DEFINE('STAT_ST_BLOCKSIZE', 'DEV_BSIZE')
444     elif (host_os.rfind('hpux') > -1):
445         conf.DEFINE('HPUX', 1)
446         conf.DEFINE('STAT_ST_BLOCKSIZE', '8192')
447     elif (host_os.rfind('osf') > -1):
448         conf.DEFINE('OSF1', 1)
449         conf.DEFINE('STAT_ST_BLOCKSIZE', '512')
450
451     # FIXME: Add more checks here.
452     else:
453         conf.DEFINE('STAT_ST_BLOCKSIZE', '512')
454
455     if Options.options.with_acl_support:
456         if (host_os.rfind('hpux') > -1):
457                 Logs.info('Using HPUX ACLs')
458                 conf.DEFINE('HAVE_HPUX_ACLS',1)
459                 conf.DEFINE('POSIX_ACL_NEEDS_MASK',1)
460                 default_static_modules.extend(TO_LIST('vfs_hpuxacl'))
461         elif (host_os.rfind('aix') > -1):
462                 Logs.info('Using AIX ACLs')
463                 conf.DEFINE('HAVE_AIX_ACLS',1)
464                 default_static_modules.extend(TO_LIST('vfs_aixacl vfs_aixacl2'))
465         elif (host_os.rfind('darwin') > -1):
466             Logs.warn('ACLs on Darwin currently not supported')
467             conf.fatal("ACL support not available on Darwin/MacOS. "
468                        "Use --without-acl-support for building without "
469                        "ACL support. "
470                        "ACL support is required to change permissions "
471                        "from Windows clients.")
472         else:
473             conf.CHECK_FUNCS_IN(['acl_get_file'], 'acl')
474             if conf.CHECK_CODE('''
475 acl_t acl;
476 int entry_id;
477 acl_entry_t *entry_p;
478 return acl_get_entry(acl, entry_id, entry_p);
479 ''',
480                         'HAVE_POSIX_ACLS',
481                         headers='sys/types.h sys/acl.h', link=False,
482                         msg="Checking for POSIX ACL support") :
483                 conf.CHECK_CODE('''
484 acl_permset_t permset_d;
485 acl_perm_t perm;
486 return acl_get_perm_np(permset_d, perm);
487 ''',
488                         'HAVE_ACL_GET_PERM_NP',
489                         headers='sys/types.h sys/acl.h', link=True,
490                         msg="Checking whether acl_get_perm_np() is available")
491                 # source3/lib/sysacls.c calls posixacl_sys_acl_get_file()
492                 required_static_modules.extend(TO_LIST('vfs_posixacl'))
493                 conf.CHECK_VARIABLE('ACL_EVERYONE', headers='sys/acl.h')
494             elif conf.CHECK_FUNCS_IN(['facl'], 'sec'):
495                 Logs.info('Using solaris or UnixWare ACLs')
496                 conf.DEFINE('HAVE_SOLARIS_UNIXWARE_ACLS',1)
497                 default_static_modules.extend(TO_LIST('vfs_solarisacl'))
498             elif conf.CHECK_FUNCS_IN(['acl_get_fd'], 'pacl'):
499                 Logs.info('Using Tru64 ACLs')
500                 conf.DEFINE('HAVE_TRU64_ACLS',1)
501                 default_static_modules.extend(TO_LIST('vfs_tru64acl'))
502             else:
503                 conf.fatal("ACL support not found. Try installing libacl1-dev "
504                            "or libacl-devel.  "
505                            "Otherwise, use --without-acl-support to build "
506                            "without ACL support. "
507                            "ACL support is required to change permissions from "
508                            "Windows clients.")
509
510     if conf.CHECK_FUNCS('dirfd'):
511         conf.DEFINE('HAVE_DIRFD_DECL', 1)
512
513     conf.CHECK_CODE('struct statfs fsd; fsid_t fsid = fsd.f_fsid; return statfs(".", &fsd);',
514                     'HAVE_STATFS_F_FSID',
515                     msg="vfs_fileid checking for statfs() and struct statfs.f_fsid",
516                     headers='sys/types.h sys/statfs.h',
517                     execute=True)
518
519     if conf.CONFIG_SET('HAVE_FALLOCATE'):
520         conf.CHECK_CODE('''
521                 int ret = fallocate(0, FALLOC_FL_KEEP_SIZE, 0, 10);''',
522                 'HAVE_LINUX_FALLOCATE',
523                 msg="Checking whether the Linux 'fallocate' function is available",
524                 headers='unistd.h sys/types.h fcntl.h linux/falloc.h')
525         conf.CHECK_CODE('''
526                 int ret = fallocate(0, FALLOC_FL_PUNCH_HOLE, 0, 10);''',
527                 'HAVE_FALLOC_FL_PUNCH_HOLE',
528                 msg="Checking whether Linux 'fallocate' supports hole-punching",
529                 headers='unistd.h sys/types.h fcntl.h linux/falloc.h')
530
531     conf.CHECK_CODE('''
532             int ret = lseek(0, 0, SEEK_HOLE);
533             ret = lseek(0, 0, SEEK_DATA);''',
534             'HAVE_LSEEK_HOLE_DATA',
535             msg="Checking whether lseek supports hole/data seeking",
536             headers='unistd.h sys/types.h')
537
538     conf.CHECK_CODE('''
539                 ssize_t err = readahead(0,0,0x80000);''',
540                 'HAVE_LINUX_READAHEAD',
541                 msg="Checking whether Linux readahead is available",
542                 headers='unistd.h fcntl.h')
543     conf.CHECK_DECLS('readahead', headers='fcntl.h', always=True)
544
545     conf.CHECK_CODE('int fd = openat(AT_FDCWD, ".", O_RDONLY);',
546                 'HAVE_OPENAT',
547                 msg='Checking for openat',
548                 headers='fcntl.h')
549
550     if Options.options.with_aio_support:
551         conf.CHECK_FUNCS_IN('aio_read', 'aio')
552         conf.CHECK_FUNCS_IN('aio_read', 'rt')
553         conf.CHECK_CODE('struct aiocb a; return aio_read(&a);',
554                         'HAVE_AIO',
555                         msg='Checking for asynchronous io support',
556                         headers='sys/types.h aio.h',
557                         lib='aio rt')
558         if conf.CONFIG_SET('HAVE_AIO'):
559             conf.CHECK_CODE('struct aiocb a; return aio_read(&a);', 'HAVE_AIO_READ', msg='Checking for aio_read', headers='aio.h', lib='aio rt')
560             conf.CHECK_CODE('struct aiocb a; return aio_write(&a);', 'HAVE_AIO_WRITE', msg='Checking for aio_write', headers='aio.h', lib='aio rt')
561             conf.CHECK_CODE('struct aiocb a; return aio_fsync(1, &a);', 'HAVE_AIO_FSYNC', msg='Checking for aio_fsync', headers='aio.h', lib='aio rt')
562             conf.CHECK_CODE('struct aiocb a; return aio_return(&a);', 'HAVE_AIO_RETURN', msg='Checking for aio_return', headers='aio.h', lib='aio rt')
563             conf.CHECK_CODE('struct aiocb a; return aio_error(&a);', 'HAVE_AIO_ERROR', msg='Checking for aio_error', headers='aio.h', lib='aio rt')
564             conf.CHECK_CODE('struct aiocb a; return aio_cancel(1, &a);', 'HAVE_AIO_CANCEL', msg='Checking for aio_cancel', headers='aio.h', lib='aio rt')
565             conf.CHECK_CODE('const struct aiocb * const a[1]; struct timespec t; return aio_suspend(a, 1, &t);', 'HAVE_AIO_SUSPEND', msg='Checking for aio_suspend', headers='aio.h', lib='aio rt')
566         if not conf.CONFIG_SET('HAVE_AIO'):
567             conf.DEFINE('HAVE_NO_AIO', '1')
568     else:
569         conf.DEFINE('HAVE_NO_AIO', '1')
570
571     if host_os.rfind('linux') > -1:
572         conf.CHECK_FUNCS_IN('io_submit', 'aio')
573         conf.CHECK_CODE('''
574 struct io_event ioev;
575 struct iocb *ioc;
576 io_context_t ctx;
577 struct timespec ts;
578 int fd;
579 char *buf;
580 fd = eventfd(0, EFD_NONBLOCK | EFD_CLOEXEC);
581 io_queue_init(128,&ctx);
582 io_prep_pwrite(ioc, 1, buf, 1, 0);
583 io_prep_pread(ioc, 1, buf, 1, 0);
584 io_set_eventfd(ioc, fd);
585 io_set_callback(ioc, (io_callback_t)(0));
586 io_submit(ctx, 1, &ioc);
587 io_getevents(ctx, 1, 1, &ioev, &ts);
588 ''',
589                         'HAVE_LINUX_KERNEL_AIO',
590                         msg='Checking for linux kernel asynchronous io support',
591                         headers='unistd.h stdlib.h sys/types.h fcntl.h sys/eventfd.h libaio.h',
592                         lib='aio')
593
594     conf.CHECK_CODE('''
595 struct msghdr msg;
596 union {
597         struct cmsghdr cm;
598         char control[CMSG_SPACE(sizeof(int))];
599 } control_un;
600 msg.msg_control = control_un.control;
601 msg.msg_controllen = sizeof(control_un.control);
602 ''',
603         'HAVE_STRUCT_MSGHDR_MSG_CONTROL',
604         msg='Checking if we can use msg_control for passing file descriptors',
605         headers='sys/types.h stdlib.h stddef.h sys/socket.h sys/un.h')
606     conf.CHECK_CODE('''
607 struct msghdr msg;
608 int fd;
609 msg.msg_accrights = (caddr_t) &fd;
610 msg.msg_accrightslen = sizeof(fd);
611 ''',
612         'HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS',
613         msg='Checking if we can use msg_accrights for passing file descriptors',
614         headers='sys/types.h stdlib.h stddef.h sys/socket.h sys/un.h')
615
616     if Options.options.with_winbind:
617         conf.env.build_winbind = True
618         conf.DEFINE('WITH_WINBIND', '1')
619
620     conf.find_program('awk', var='AWK')
621
622     conf.CHECK_HEADERS('asm/types.h')
623
624     conf.CHECK_CODE('dev_t dev; int i = major(dev); return 0', "HAVE_DEVICE_MAJOR_FN",
625                     headers='unistd.h sys/types.h',
626                     msg="Checking for major macro")
627
628     conf.CHECK_CODE('dev_t dev; int i = minor(dev); return 0', "HAVE_DEVICE_MINOR_FN",
629                     headers='unistd.h sys/types.h',
630                     msg="Checking for minor macro")
631
632     conf.CHECK_STRUCTURE_MEMBER('struct dirent', 'd_off',
633                                 headers='unistd.h sys/types.h dirent.h',
634                                 define='HAVE_DIRENT_D_OFF')
635
636     conf.CHECK_FUNCS('setnetgrent getnetgrent endnetgrent')
637     if conf.CHECK_CFLAGS('-Werror-implicit-function-declaration'):
638         netgrent_cflags = '-Werror-implicit-function-declaration'
639     else:
640         netgrent_cflags = ''
641     conf.CHECK_CODE('setnetgrent("foo")', 'HAVE_SETNETGRENT_PROTOTYPE',
642                     msg="Checking for setnetgrent prototype",
643                     headers='netdb.h netgroup.h',
644                     cflags=netgrent_cflags)
645     conf.CHECK_CODE('getnetgrent', 'HAVE_GETNETGRENT_PROTOTYPE',
646                     msg="Checking for getnetgrent prototype",
647                     headers='netdb.h netgroup.h',
648                     cflags=netgrent_cflags)
649     conf.CHECK_CODE('endnetgrent', 'HAVE_ENDNETGRENT_PROTOTYPE',
650                     msg="Checking for endnetgrent prototype",
651                     headers='netdb.h netgroup.h',
652                     cflags=netgrent_cflags)
653
654
655     # Look for CUPS
656     if Options.options.with_cups:
657         conf.find_program('cups-config', var='CUPS_CONFIG')
658         if conf.env.CUPS_CONFIG:
659             # we would normally use --libs here, but cups-config incorrectly adds
660             # gssapi_krb5 and other libraries to its --libs output. That breaks the use
661             # of an in-tree heimdal kerberos
662             conf.CHECK_CFG(path=conf.env.CUPS_CONFIG, args="--cflags --ldflags",
663                            package="", uselib_store="CUPS")
664         conf.CHECK_HEADERS('cups/cups.h cups/language.h', lib='cups')
665         conf.CHECK_FUNCS_IN('httpConnect httpConnectEncrypt', 'cups')
666         if conf.CONFIG_SET('HAVE_CUPS_CUPS_H') and conf.CONFIG_SET('HAVE_CUPS_LANGUAGE_H'):
667             conf.DEFINE('HAVE_CUPS', '1')
668         else:
669             conf.undefine('HAVE_CUPS')
670             conf.SET_TARGET_TYPE('cups', 'EMPTY')
671     else:
672         # define an empty subsystem for cups, to allow it to be used as an empty dependency
673         conf.SET_TARGET_TYPE('cups', 'EMPTY')
674
675     if Options.options.with_iprint:
676         if conf.CONFIG_SET('HAVE_CUPS'):
677             conf.DEFINE('HAVE_IPRINT', '1')
678         else:
679             Logs.warn("--enable-iprint=yes but cups support not sufficient")
680     if Options.options.with_syslog:
681         conf.DEFINE('WITH_SYSLOG', '1')
682     if Options.options.with_automount:
683         conf.DEFINE('WITH_AUTOMOUNT', '1')
684
685     # Check for LDAP
686     if Options.options.with_ldap:
687         conf.CHECK_HEADERS('ldap.h lber.h ldap_pvt.h')
688         conf.CHECK_TYPE('ber_tag_t', 'unsigned int', headers='ldap.h lber.h')
689         conf.CHECK_FUNCS_IN('ber_scanf ber_sockbuf_add_io', 'lber')
690         conf.CHECK_VARIABLE('LDAP_OPT_SOCKBUF', headers='ldap.h')
691
692         # if we LBER_OPT_LOG_PRINT_FN we can intercept ldap logging and print it out
693         # for the samba logs
694         conf.CHECK_VARIABLE('LBER_OPT_LOG_PRINT_FN',
695                             define='HAVE_LBER_LOG_PRINT_FN', headers='lber.h')
696
697         conf.CHECK_FUNCS_IN('ldap_init ldap_init_fd ldap_initialize ldap_set_rebind_proc', 'ldap')
698         conf.CHECK_FUNCS_IN('ldap_add_result_entry', 'ldap')
699
700         # Check if ldap_set_rebind_proc() takes three arguments
701         if conf.CHECK_CODE('ldap_set_rebind_proc(0, 0, 0)',
702                            'LDAP_SET_REBIND_PROC_ARGS',
703                            msg="Checking whether ldap_set_rebind_proc takes 3 arguments",
704                            headers='ldap.h lber.h', link=False):
705             conf.DEFINE('LDAP_SET_REBIND_PROC_ARGS', '3')
706         else:
707             conf.DEFINE('LDAP_SET_REBIND_PROC_ARGS', '2')
708
709         # last but not least, if ldap_init() exists, we want to use ldap
710         if conf.CONFIG_SET('HAVE_LDAP_INIT') and conf.CONFIG_SET('HAVE_LDAP_H'):
711             conf.DEFINE('HAVE_LDAP', '1')
712             conf.DEFINE('LDAP_DEPRECATED', '1')
713             conf.env['HAVE_LDAP'] = '1'
714             # if ber_sockbuf_add_io() and LDAP_OPT_SOCKBUF are available, we can add
715             # SASL wrapping hooks
716             if conf.CONFIG_SET('HAVE_BER_SOCKBUF_ADD_IO') and \
717                     conf.CONFIG_SET('HAVE_LDAP_OPT_SOCKBUF'):
718                 conf.DEFINE('HAVE_LDAP_SASL_WRAPPING', '1')
719         else:
720             conf.fatal("LDAP support not found. "
721                        "Try installing libldap2-dev or openldap-devel. "
722                        "Otherwise, use --without-ldap to build without "
723                        "LDAP support. "
724                        "LDAP support is required for the LDAP passdb backend, "
725                        "LDAP idmap backends and ADS. "
726                        "ADS support improves communication with "
727                        "Active Directory domain controllers.")
728     else:
729         conf.SET_TARGET_TYPE('ldap', 'EMPTY')
730         conf.SET_TARGET_TYPE('lber', 'EMPTY')
731
732     if Options.options.with_ads == False:
733         use_ads = False
734         use_ads_krb5 = False
735         use_ads_ldap = False
736     else:
737         use_ads = True
738         use_ads_krb5 = True
739         use_ads_ldap = True
740         if not conf.CONFIG_SET('HAVE_ENCTYPE_ARCFOUR_HMAC_MD5') and \
741            not conf.CONFIG_SET('HAVE_ENCTYPE_ARCFOUR_HMAC'):
742             Logs.warn("arcfour-hmac-md5 encryption type not found in -lkrb5")
743             use_ads_krb5 = False
744         if not conf.CONFIG_SET('HAVE_KRB5_MK_REQ_EXTENDED'):
745             Logs.warn("krb5_mk_req_extended not found in -lkrb5")
746             use_ads_krb5 = False
747         if not conf.CONFIG_SET('HAVE_KRB5_GET_HOST_REALM'):
748             Logs.warn("krb5_get_host_realm not found in -lkrb5")
749             use_ads_krb5 = False
750         if not conf.CONFIG_SET('HAVE_KRB5_FREE_HOST_REALM'):
751             Logs.warn("krb5_free_host_realm not found in -lkrb5")
752             use_ads_krb5 = False
753         if not conf.CONFIG_SET('HAVE_KRB5_FWD_TGT_CREDS'):
754             Logs.warn("krb5_fwd_tgt_creds found in -lkrb5")
755             use_ads_krb5 = False
756         if not conf.CONFIG_SET('HAVE_KRB5_GET_INIT_CREDS_OPT_ALLOC'):
757             Logs.warn("krb5_get_init_creds_opt_alloc not found in -lkrb5")
758             use_ads_krb5 = False
759         if not conf.CONFIG_SET('KRB5_CREDS_OPT_FREE_REQUIRES_CONTEXT'):
760             Logs.warn("krb5_get_init_creds_opt_free was not found or was too old in -lkrb5")
761             use_ads_krb5 = False
762         if not conf.CONFIG_SET('HAVE_KRB5_GET_RENEWED_CREDS'):
763             Logs.warn("krb5_get_renewed_creds not found in -lkrb5")
764             use_ads_krb5 = False
765         if not conf.CONFIG_SET('HAVE_KRB5_PRINCIPAL_COMPARE_ANY_REALM'):
766             Logs.warn("krb5_principal_compare_any_realm not found in -lkrb5")
767             use_ads_krb5 = False
768         if not conf.CONFIG_SET('HAVE_KRB5_C_STRING_TO_KEY') and \
769            not conf.CONFIG_SET('HAVE_KRB5_STRING_TO_KEY_SALT'):
770             Logs.warn("krb5_c_string_to_key not found in -lkrb5")
771             use_ads_krb5 = False
772         if not conf.CONFIG_SET('HAVE_KRB5_PRINCIPAL2SALT') and \
773            not conf.CONFIG_SET('HAVE_KRB5_GET_PW_SALT'):
774             Logs.warn("no CREATE_KEY_FUNCTIONS detected")
775             use_ads_krb5 = False
776         if not conf.CONFIG_SET('HAVE_KRB5_GET_PERMITTED_ENCTYPES') and \
777            not conf.CONFIG_SET('HAVE_KRB5_GET_DEFAULT_IN_TKT_ETYPES'):
778             Logs.warn("no GET_ENCTYPES_FUNCTIONS detected")
779             use_ads_krb5 = False
780         if not conf.CONFIG_SET('HAVE_KRB5_KT_FREE_ENTRY') and \
781            not conf.CONFIG_SET('HAVE_KRB5_FREE_KEYTAB_ENTRY_CONTENTS'):
782             Logs.warn("no KT_FREE_FUNCTION detected")
783             use_ads_krb5 = False
784         if not conf.CONFIG_SET('HAVE_KRB5_C_VERIFY_CHECKSUM'):
785             Logs.warn("krb5_c_verify_checksum_compare not found in -lkrb5")
786             use_ads_krb5 = False
787
788         # We don't actually use
789         # gsskrb5_extract_authz_data_from_sec_context, but it is a
790         # clue that this Heimdal, which does the PAC processing we
791         # need on the standard gss_inquire_sec_context_by_oid
792         if not conf.CONFIG_SET('HAVE_GSS_GET_NAME_ATTRIBUTE') and \
793             not (conf.CONFIG_SET('HAVE_GSSKRB5_EXTRACT_AUTHZ_DATA_FROM_SEC_CONTEXT') and \
794                      conf.CONFIG_SET('HAVE_GSS_INQUIRE_SEC_CONTEXT_BY_OID')):
795             Logs.warn("need either gss_get_name_attribute or gsskrb5_extract_authz_data_from_sec_context and gss_inquire_sec_context_by_oid in -lgssapi for PAC support")
796             use_ads_krb5 = False
797
798         if not conf.CONFIG_SET('HAVE_GSS_KRB5_EXPORT_LUCID_SEC_CONTEXT'):
799             Logs.warn("need gss_krb5_export_lucid_sec_context for SPNEGO and gss_wrap support")
800             use_ads_krb5 = False
801
802         if use_ads_krb5:
803             conf.DEFINE('HAVE_KRB5', '1')
804             conf.env['HAVE_KRB5'] = '1'
805         else:
806             conf.undefine('HAVE_KRB5_H')
807             conf.undefine('HAVE_GSSAPI_H')
808             conf.undefine('HAVE_GSSAPI_GSSAPI_GENERIC_H')
809             conf.undefine('HAVE_GSSAPI_GSSAPI_H')
810             use_ads = False
811
812         if not conf.CONFIG_SET('HAVE_LDAP'):
813             use_ads = False
814             use_ads_ldap = False
815
816     if use_ads:
817         conf.DEFINE('WITH_ADS', '1')
818         conf.env['HAVE_ADS'] = '1'
819         Logs.info("Building with Active Directory support.")
820         # these have broken dependencies
821         forced_shared_modules.extend(TO_LIST('idmap_ad idmap_rfc2307'))
822     elif Options.options.with_ads == False:
823         Logs.info("Building without Active Directory support (--without-ads).")
824     else:
825         if not use_ads_krb5:
826             Logs.warn("Active Directory support not available: krb5 libs don't have all required features")
827         if not use_ads_ldap:
828             Logs.warn("Active Directory support not available: LDAP support is not available.")
829         if Options.options.with_ads:
830             conf.fatal("Active Directory support not found. Use --without-ads "
831                        "for building without Active Directory support. "
832                        "ADS support improves communication with "
833                        "Active Directory domain controllers.")
834         else:
835             # this is the auto-mode case
836             Logs.warn("Building without Active Directory support.")
837
838
839     if Options.options.with_utmp:
840         conf.env.with_utmp = True
841         if not conf.CHECK_HEADERS('utmp.h'): conf.env.with_utmp = False
842         conf.CHECK_FUNCS('pututline pututxline updwtmp updwtmpx getutmpx getutxent')
843         conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_name', headers='utmp.h',
844                                     define='HAVE_UT_UT_NAME')
845         conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_user', headers='utmp.h',
846                                     define='HAVE_UT_UT_USER')
847         conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_id', headers='utmp.h',
848                                     define='HAVE_UT_UT_ID')
849         conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_host', headers='utmp.h',
850                                     define='HAVE_UT_UT_HOST')
851         conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_time', headers='utmp.h',
852                                     define='HAVE_UT_UT_TIME')
853         conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_tv', headers='utmp.h',
854                                     define='HAVE_UT_UT_TV')
855         conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_type', headers='utmp.h',
856                                     define='HAVE_UT_UT_TYPE')
857         conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_pid', headers='utmp.h',
858                                     define='HAVE_UT_UT_PID')
859         conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_exit.e_exit', headers='utmp.h',
860                                     define='HAVE_UT_UT_EXIT')
861         conf.CHECK_STRUCTURE_MEMBER('struct utmpx', 'ut_syslen', headers='utmpx.h',
862                                     define='HAVE_UX_UT_SYSLEN')
863         conf.CHECK_CODE('struct utmp utarg; struct utmp *utreturn; utreturn = pututline(&utarg);',
864                         'PUTUTLINE_RETURNS_UTMP', headers='utmp.h',
865                         msg="Checking whether pututline returns pointer")
866         conf.CHECK_SIZEOF(['((struct utmp *)NULL)->ut_line'], headers='utmp.h',
867                           define='SIZEOF_UTMP_UT_LINE', critical=False)
868         if not conf.CONFIG_SET('SIZEOF_UTMP_UT_LINE'):
869             conf.env.with_utmp = False
870         elif int(conf.env.SIZEOF_UTMP_UT_LINE) < 15:
871             conf.env.with_utmp = False
872         if conf.env.with_utmp:
873             conf.DEFINE('WITH_UTMP', 1)
874         else:
875             Logs.warn("--with-utmp but utmp support not sufficient")
876
877     if Options.options.with_avahi:
878         conf.env.with_avahi = True
879         if not conf.CHECK_HEADERS('avahi-common/watch.h avahi-client/client.h'): conf.env.with_avahi = False
880         if not conf.CHECK_FUNCS_IN('avahi_client_new', 'avahi-client'): conf.env.with_avahi = False
881         if not conf.CHECK_FUNCS_IN('avahi_strerror', 'avahi-common'): conf.env.with_avahi = False
882         if conf.env.with_avahi:
883             conf.DEFINE('WITH_AVAHI_SUPPORT', 1)
884     else:
885         conf.SET_TARGET_TYPE('avahi-common', 'EMPTY')
886         conf.SET_TARGET_TYPE('avahi-client', 'EMPTY')
887
888     if Options.options.with_iconv:
889         conf.env.with_iconv = True
890         if not conf.CHECK_FUNCS_IN('iconv_open', 'iconv', headers='iconv.h'):
891             conf.env.with_iconv = False
892         if conf.env.with_iconv:
893             conf.DEFINE('HAVE_ICONV', 1)
894
895     if Options.options.with_pam:
896         use_pam=True
897         conf.CHECK_HEADERS('security/pam_appl.h pam/pam_appl.h')
898         if not conf.CONFIG_SET('HAVE_SECURITY_PAM_APPL_H') and not conf.CONFIG_SET('HAVE_PAM_PAM_APPL_H'):
899             Logs.warn("--with-pam=yes but pam_appl.h not found")
900             use_pam=False
901         conf.CHECK_FUNCS_IN('pam_get_data', 'pam')
902         conf.CHECK_HEADERS('security/pam_modules.h pam/pam_modules.h')
903         if not conf.CONFIG_SET('HAVE_SECURITY_PAM_MODULES_H') and not conf.CONFIG_SET('HAVE_PAM_PAM_MODULES_H'):
904             Logs.warn("--with-pam=yes but pam_modules.h not found")
905             use_pam=False
906         conf.CHECK_HEADERS('security/pam_ext.h security/_pam_macros.h')
907         conf.CHECK_HEADERS('pam/pam_ext.h pam/_pam_macros.h')
908         conf.CHECK_FUNCS_IN('pam_vsyslog', 'pam')
909         conf.CHECK_CODE('''
910 #if defined(HAVE_SECURITY_PAM_APPL_H)
911 #include <security/pam_appl.h>
912 #elif defined(HAVE_PAM_PAM_APPL_H)
913 #include <pam/pam_appl.h>
914 #endif
915 pam_set_item(0, PAM_RHOST, 0);
916 ''',
917             'HAVE_PAM_RHOST',
918             lib='pam',
919             msg="Checking whether PAM_RHOST is available");
920         conf.CHECK_CODE('''
921 #if defined(HAVE_SECURITY_PAM_APPL_H)
922 #include <security/pam_appl.h>
923 #elif defined(HAVE_PAM_PAM_APPL_H)
924 #include <pam/pam_appl.h>
925 #endif
926 pam_set_item(0, PAM_TTY, 0);
927 ''',
928             'HAVE_PAM_TTY',
929             lib='pam',
930             msg="Checking whether PAM_TTY is available");
931         conf.CHECK_CODE('''
932 #if (!defined(LINUX))
933
934 #define PAM_EXTERN extern
935 #if defined(HAVE_SECURITY_PAM_APPL_H)
936 #include <security/pam_appl.h>
937 #elif defined(HAVE_PAM_PAM_APPL_H)
938 #include <pam/pam_appl.h>
939 #endif
940
941 #endif
942
943 #if defined(HAVE_SECURITY_PAM_MODULES_H)
944 #include <security/pam_modules.h>
945 #elif defined(HAVE_PAM_PAM_MODULES_H)
946 #include <pam/pam_modules.h>
947 #endif
948
949 #if defined(HAVE_SECURITY__PAM_MACROS_H)
950 #include <security/_pam_macros.h>
951 #elif defined(HAVE_PAM__PAM_MACROS_H)
952 #include <pam/_pam_macros.h>
953 #endif
954
955 #ifdef HAVE_SECURITY_PAM_EXT_H
956 #include <security/pam_ext.h>
957 #endif
958
959 int i; i = PAM_RADIO_TYPE;
960 ''',
961             'HAVE_PAM_RADIO_TYPE',
962             lib='pam',
963             msg="Checking whether PAM_RADIO_TYPE is available");
964         if use_pam:
965             conf.DEFINE('WITH_PAM', 1)
966             conf.DEFINE('WITH_PAM_MODULES', 1)
967
968     seteuid = False
969
970 #
971 # Ensure we select the correct set of system calls on Linux.
972 #
973     if (host_os.rfind('linux') > -1):
974         conf.CHECK_CODE('''
975 #if defined(HAVE_UNISTD_H)
976 #include <unistd.h>
977 #endif
978 #include <stdlib.h>
979 #include <stdio.h>
980 #include <sys/types.h>
981 #include <errno.h>
982
983 #ifdef HAVE_SYS_PRIV_H
984 #include <sys/priv.h>
985 #endif
986 #ifdef HAVE_SYS_ID_H
987 #include <sys/id.h>
988 #endif
989
990 #if defined(HAVE_SYSCALL_H)
991 #include <syscall.h>
992 #endif
993
994 #if defined(HAVE_SYS_SYSCALL_H)
995 #include <sys/syscall.h>
996 #endif
997
998 syscall(SYS_setresuid32, -1, -1, -1);
999 syscall(SYS_setresgid32, -1, -1, -1);
1000 syscall(SYS_setreuid32, -1, -1);
1001 syscall(SYS_setregid32, -1, -1);
1002 syscall(SYS_setuid32, -1);
1003 syscall(SYS_setgid32, -1);
1004 syscall(SYS_setgroups32, 0, NULL);
1005 ''',
1006             'USE_LINUX_32BIT_SYSCALLS',
1007             msg="Checking whether Linux should use 32-bit credential calls");
1008
1009         if (conf.CONFIG_SET('USE_LINUX_32BIT_SYSCALLS')):
1010             seteuid = conf.CHECK_CODE('''
1011                                 #define AUTOCONF_TEST 1
1012                                 #define USE_LINUX_THREAD_CREDENTIALS 1
1013                                 #define USE_LINUX_32BIT_SYSCALLS 1
1014                                 #include "../lib/util/setid.c"
1015                                 #include "./lib/util_sec.c"
1016                                 ''',
1017                                 'USE_LINUX_THREAD_CREDENTIALS',
1018                                 addmain=False,
1019                                 execute=True,
1020                                 msg="Checking whether we can use Linux thread-specific credentials with 32-bit system calls")
1021         else:
1022             seteuid = conf.CHECK_CODE('''
1023                                 #define AUTOCONF_TEST 1
1024                                 #define USE_LINUX_THREAD_CREDENTIALS 1
1025                                 #include "../lib/util/setid.c"
1026                                 #include "./lib/util_sec.c"
1027                                 ''',
1028                                 'USE_LINUX_THREAD_CREDENTIALS',
1029                                 addmain=False,
1030                                 execute=True,
1031                                 msg="Checking whether we can use Linux thread-specific credentials")
1032     if not seteuid:
1033         seteuid = conf.CHECK_CODE('''
1034                                 #define AUTOCONF_TEST 1
1035                                 #define USE_SETREUID 1
1036                                 #include "../lib/util/setid.c"
1037                                 #include "./lib/util_sec.c"
1038                                 ''',
1039                                 'USE_SETREUID',
1040                                 addmain=False,
1041                                 execute=True,
1042                                 msg="Checking whether setreuid is available")
1043     if not seteuid:
1044         seteuid = conf.CHECK_CODE('''
1045                                 #define AUTOCONF_TEST 1
1046                                 #define USE_SETRESUID 1
1047                                 #include "../lib/util/setid.c"
1048                                 #include "./lib/util_sec.c"
1049                                 ''',
1050                                 'USE_SETRESUID',
1051                                 addmain=False,
1052                                 execute=True,
1053                                 msg="Checking whether setresuid is available")
1054     if not seteuid:
1055         seteuid = conf.CHECK_CODE('''
1056                                 #define AUTOCONF_TEST 1
1057                                 #define USE_SETEUID 1
1058                                 #include "../lib/util/setid.c"
1059                                 #include "./lib/util_sec.c"
1060                                 ''',
1061                                 'USE_SETEUID',
1062                                 addmain=False,
1063                                 execute=True,
1064                                 msg="Checking whether seteuid is available")
1065     if not seteuid:
1066         seteuid = conf.CHECK_CODE('''
1067                                 #define AUTOCONF_TEST 1
1068                                 #define USE_SETUIDX 1
1069                                 #include "../lib/util/setid.c"
1070                                 #include "./lib/util_sec.c"
1071                                 ''',
1072                                 'USE_SETUIDX',
1073                                 addmain=False,
1074                                 execute=True,
1075                                 mandatory=True,
1076                                 msg="Checking whether setuidx is available")
1077     if Options.options.with_dnsupdate:
1078         if not conf.CONFIG_SET('HAVE_KRB5'):
1079             Logs.warn("--with-dnsupdate=yes but gssapi support not sufficient")
1080         else:
1081             conf.DEFINE('WITH_DNS_UPDATES', 1)
1082     conf.CHECK_HEADERS('valgrind.h valgrind/valgrind.h valgrind/memcheck.h')
1083     if Options.options.developer:
1084         if conf.CONFIG_SET('HAVE_VALGRIND_H') or conf.CONFIG_SET('HAVE_VALGRIND_VALGRIND_H'):
1085             conf.DEFINE('VALGRIND', '1')
1086
1087     if conf.CHECK_CODE('''
1088 #include <bits/sockaddr.h>
1089 #include <linux/netlink.h>
1090 ''',
1091                 'HAVE_LINUX_NETLINK_H',
1092                 msg="Checking whether Linux netlink is available"):
1093
1094         conf.CHECK_CODE('''
1095 #include <bits/sockaddr.h>
1096 #include <linux/netlink.h>
1097 #include <linux/rtnetlink.h>
1098 ''',
1099                 'HAVE_LINUX_RTNETLINK_H',
1100                 msg='Checking whether Linux rtnetlink is available')
1101
1102     conf.CHECK_CODE('''
1103 #include "../tests/fcntl_lock.c"
1104 ''',
1105                 'HAVE_FCNTL_LOCK',
1106                 addmain=False,
1107                 execute=True,
1108                 msg='Checking whether fcntl locking is available')
1109
1110 # glibc up to 2.3.6 had dangerously broken posix_fallocate(). DON'T USE IT.
1111     if not conf.CHECK_CODE('''
1112 #define _XOPEN_SOURCE 600
1113 #include <stdlib.h>
1114 #if defined(__GLIBC__) && ((__GLIBC__ < 2) || (__GLIBC__ == 2 && __GLIBC_MINOR__ < 4))
1115 #error probably broken posix_fallocate
1116 #endif
1117 ''',
1118                            '_HAVE_UNBROKEN_POSIX_FALLOCATE',
1119                            msg='Checking for broken posix_fallocate'):
1120         conf.DEFINE('HAVE_BROKEN_POSIX_FALLOCATE', '1')
1121
1122
1123     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_mtim.tv_nsec',
1124                                 define='HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC') # Linux, Solaris
1125     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_mtimensec',
1126                                 define='HAVE_STRUCT_STAT_ST_MTIMENSEC') # BSD, if defined _POSIX_SOURCE
1127     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_mtimespec.tv_nsec',
1128                                 define='HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC') # BSD, if not defined _POSIX_SOURCE
1129     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_mtime_n',
1130                                 define='HAVE_STRUCT_STAT_ST_MTIME_N') # AIX
1131     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_umtime',
1132                                 define='HAVE_STRUCT_STAT_ST_UMTIME') # Tru64
1133     if conf.CONFIG_SET('HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC') or \
1134        conf.CONFIG_SET('HAVE_STRUCT_STAT_ST_MTIMENSEC') or \
1135        conf.CONFIG_SET('HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC') or \
1136        conf.CONFIG_SET('HAVE_STRUCT_STAT_ST_MTIME_N') or \
1137        conf.CONFIG_SET('HAVE_STRUCT_STAT_ST_UMTIME'):
1138         conf.DEFINE('HAVE_STAT_HIRES_TIMESTAMPS', '1')
1139
1140     # recent FreeBSD, NetBSD have creation timestamps called birthtime:
1141     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_birthtime',
1142                                 define='HAVE_STRUCT_STAT_ST_BIRTHTIME')
1143     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_birthtimespec.tv_nsec',
1144                                 define='HAVE_STRUCT_STAT_ST_BIRTHTIMESPEC_TV_NSEC')
1145     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_birthtimensec',
1146                                 define='HAVE_STRUCT_STAT_ST_BIRTHTIMENSEC')
1147
1148     conf.CHECK_CODE('''
1149 ssize_t err = posix_fadvise(0,0,0x80000,POSIX_FADV_WILLNEED);
1150 ''',
1151                 'HAVE_POSIX_FADVISE',
1152                 msg='Checking whether posix_fadvise is available',
1153                 headers='unistd.h fcntl.h')
1154
1155     for v in ['_SC_NGROUPS_MAX', '_SC_NPROC_ONLN', '_SC_NPROCESSORS_ONLN', '_SC_PAGESIZE' ]:
1156         conf.CHECK_CODE('''
1157                         #include <unistd.h>
1158                         return sysconf(%s) == -1 ? 1 : 0;
1159                         ''' % v,
1160                         'SYSCONF%s' % v,
1161                         msg='Checking whether sysconf(%s) is available' % v)
1162
1163     conf.CHECK_CODE('''
1164 #include <sys/syscall.h>
1165 #include <unistd.h>
1166 syscall(SYS_initgroups, 16, NULL, NULL, 0);
1167                     ''',
1168                     'HAVE_DARWIN_INITGROUPS',
1169                     msg='Checking whether to use the Darwin-specific initgroups system call')
1170
1171     conf.CHECK_CODE('''struct utimbuf tbuf;  tbuf.actime = 0; tbuf.modtime = 1; exit(utime("foo.c",&tbuf));''',
1172                     'HAVE_UTIMBUF',
1173                     headers='sys/types.h utime.h',
1174                     msg='Checking whether struct utimbuf is available')
1175
1176     if conf.CHECK_CODE('''struct sigevent s;''',
1177                     'HAVE_STRUCT_SIGEVENT',
1178                     headers='sys/types.h stdlib.h stddef.h signal.h',
1179                     msg='Checking whether we have the struct sigevent'):
1180         conf.CHECK_STRUCTURE_MEMBER('struct sigevent', 'sigev_value.sival_ptr',
1181                                     define='HAVE_STRUCT_SIGEVENT_SIGEV_VALUE_SIVAL_PTR',
1182                                     headers='signal.h');
1183         conf.CHECK_STRUCTURE_MEMBER('struct sigevent', 'sigev_value.sigval_ptr',
1184                                     define='HAVE_STRUCT_SIGEVENT_SIGEV_VALUE_SIGVAL_PTR',
1185                                     headers='signal.h');
1186
1187     if os.path.exists('/proc/sys/kernel/core_pattern'):
1188         conf.DEFINE('HAVE_SYS_KERNEL_PROC_CORE_PATTERN', '1')
1189
1190     if conf.CHECK_CODE('''
1191 #include <time.h>
1192 main() {
1193         struct tm *tm;
1194         if (sizeof(time_t) == 8) {
1195                 time_t max_time = 0x7fffffffffffffffll;
1196                 tm = gmtime(&max_time);
1197                 /* This should fail with 32-bit tm_year. */
1198                 if (tm == NULL) {
1199                         /* Max time_t that works with 32-bit int tm_year in struct tm. */
1200                         max_time = 67768036191676799ll;
1201                         tm = gmtime(&max_time);
1202                         if (tm) {
1203                                 exit(0);
1204                         }
1205                 }
1206         }
1207         exit(1);
1208 }''',
1209         '__TIME_T_MAX',
1210         addmain=False,
1211         execute=True,
1212         msg="Checking for the maximum value of the 'time_t' type"):
1213             conf.DEFINE('TIME_T_MAX', '67768036191676799ll')
1214
1215     conf.CHECK_CODE('''
1216 #if defined(HAVE_UNISTD_H)
1217 #include <unistd.h>
1218 #endif
1219 #include <sys/types.h>
1220 main() { dev_t dev = makedev(1,2); return 0; }
1221 ''',
1222         'HAVE_MAKEDEV',
1223         addmain=False,
1224         msg='Checking whether the macro for makedev is available')
1225
1226     conf.CHECK_CODE('''
1227 #include <stdio.h>
1228 #include <limits.h>
1229 #include <signal.h>
1230
1231 void exit_on_core(int ignored) {
1232         exit(1);
1233 }
1234
1235 main() {
1236         char *newpath;
1237         signal(SIGSEGV, exit_on_core);
1238         newpath = realpath("/tmp", NULL);
1239         exit((newpath != NULL) ? 0 : 1);
1240 }
1241 ''',
1242         'REALPATH_TAKES_NULL',
1243         addmain=False,
1244         execute=True,
1245         msg='Checking whether the realpath function allows a NULL argument')
1246
1247     conf.CHECK_CODE('''#include "../tests/ftruncate.c"''',
1248                     'HAVE_FTRUNCATE_EXTEND',
1249                     msg='Checking for ftruncate extend',
1250                     addmain=False,
1251                     execute=True)
1252
1253     if Options.options.with_sendfile_support:
1254         if (host_os.rfind('linux') > -1) or (host_os.rfind('gnu') > -1) or (host_os.rfind('k*bsd*-gnu') > -1) or (host_os.rfind('kopensolaris*-gnu') > -1):
1255             conf.CHECK_CODE('''
1256                             int tofd, fromfd;
1257                             off_t offset;
1258                             size_t total;
1259                             ssize_t nwritten = sendfile(tofd, fromfd, &offset, total);
1260                             ''',
1261                             '_HAVE_SENDFILE',
1262                             headers='sys/sendfile.h',
1263                             msg='Checking for linux sendfile support')
1264
1265             if conf.CONFIG_SET('_HAVE_SENDFILE'):
1266                 conf.DEFINE('HAVE_SENDFILE', '1')
1267                 conf.DEFINE('LINUX_SENDFILE_API', '1')
1268                 conf.DEFINE('WITH_SENDFILE', '1')
1269         elif (host_os.rfind('freebsd') > -1) or (host_os.rfind('dragonfly') > -1):
1270             conf.CHECK_CODE('''
1271                             #include <sys/types.h>
1272                             #include <unistd.h>
1273                             #include <sys/socket.h>
1274                             #include <sys/uio.h>
1275                             int fromfd, tofd, ret, total=0;
1276                             off_t offset, nwritten;
1277                             struct sf_hdtr hdr;
1278                             struct iovec hdtrl;
1279                             hdr.headers = &hdtrl;
1280                             hdr.hdr_cnt = 1;
1281                             hdr.trailers = NULL;
1282                             hdr.trl_cnt = 0;
1283                             hdtrl.iov_base = NULL;
1284                             hdtrl.iov_len = 0;
1285                             ret = sendfile(fromfd, tofd, offset, total, &hdr, &nwritten, 0)
1286                             ''',
1287                             '_HAVE_SENDFILE',
1288                             msg='Checking for freebsd sendfile support')
1289             if conf.CONFIG_SET('_HAVE_SENDFILE'):
1290                 conf.DEFINE('HAVE_SENDFILE', '1')
1291                 conf.DEFINE('FREEBSD_SENDFILE_API', '1')
1292                 conf.DEFINE('WITH_SENDFILE', '1')
1293         elif (host_os.rfind('darwin') > -1):
1294             conf.CHECK_CODE('''
1295                             #include <sys/types.h>
1296                             #include <sys/socket.h>
1297                             #include <sys/uio.h>
1298                             int fromfd, tofd, ret;
1299                             off_t offset, nwritten;
1300                             struct sf_hdtr hdr;
1301                             struct iovec hdtrl;
1302                             hdr.headers = &hdtrl;
1303                             hdr.hdr_cnt = 1;
1304                             hdr.trailers = (void *)0;
1305                             hdr.trl_cnt = 0;
1306                             hdtrl.iov_base = (void *)0;
1307                             hdtrl.iov_len = 0;
1308                             ret = sendfile(fromfd, tofd, offset, &nwritten, &hdr, 0);
1309                             ''',
1310                             '_HAVE_SENDFILE',
1311                             msg='Checking for darwin sendfile support')
1312             if conf.CONFIG_SET('_HAVE_SENDFILE'):
1313                 conf.DEFINE('HAVE_SENDFILE', '1')
1314                 conf.DEFINE('DARWIN_SENDFILE_API', '1')
1315                 conf.DEFINE('WITH_SENDFILE', '1')
1316         elif (host_os.rfind('hpux') > -1) or (host_os.rfind('osf') > -1):
1317             conf.CHECK_CODE('''
1318                             #include <sys/socket.h>
1319                             #include <sys/uio.h>
1320                             int fromfd, tofd;
1321                             size_t total=0;
1322                             struct iovec hdtrl[2];
1323                             ssize_t nwritten;
1324                             off_t offset;
1325                             hdtrl[0].iov_base = 0;
1326                             hdtrl[0].iov_len = 0;
1327                             nwritten = sendfile(tofd, fromfd, offset, total, &hdtrl[0], 0);
1328                             ''',
1329                             '_HAVE_SENDFILE',
1330                             msg='Checking for osf/hpux sendfile support')
1331             if conf.CONFIG_SET('_HAVE_SENDFILE'):
1332                 conf.DEFINE('HAVE_SENDFILE', '1')
1333                 conf.DEFINE('HPUX_SENDFILE_API', '1')
1334                 conf.DEFINE('WITH_SENDFILE', '1')
1335         elif (host_os.rfind('solaris') > -1):
1336             conf.CHECK_FUNCS_IN('sendfile', 'sendfilev')
1337             conf.CHECK_CODE('''
1338                             #include <sys/sendfile.h>,
1339                             int sfvcnt;
1340                             size_t xferred;
1341                             struct sendfilevec vec[2];
1342                             ssize_t nwritten;
1343                             int tofd;
1344                             sfvcnt = 2;
1345                             vec[0].sfv_fd = SFV_FD_SELF;
1346                             vec[0].sfv_flag = 0;
1347                             vec[0].sfv_off = 0;
1348                             vec[0].sfv_len = 0;
1349                             vec[1].sfv_fd = 0;
1350                             vec[1].sfv_flag = 0;
1351                             vec[1].sfv_off = 0;
1352                             vec[1].sfv_len = 0;
1353                             nwritten = sendfilev(tofd, vec, sfvcnt, &xferred);
1354                             ''',
1355                             '_HAVE_SENDFILEV',
1356                             msg='Checking for solaris sendfilev support')
1357             if conf.CONFIG_SET('_HAVE_SENDFILEV'):
1358                 conf.DEFINE('HAVE_SENDFILEV', '1')
1359                 conf.DEFINE('SOLARIS_SENDFILE_API', '1')
1360                 conf.DEFINE('WITH_SENDFILE', '1')
1361         elif (host_os.rfind('aix') > -1):
1362             conf.CHECK_CODE('''
1363                             #include <sys/socket.h>
1364                             int fromfd, tofd;
1365                             size_t total=0;
1366                             struct sf_parms hdtrl;
1367                             ssize_t nwritten;
1368                             hdtrl.header_data = 0;
1369                             hdtrl.header_length = 0;
1370                             hdtrl.file_descriptor = fromfd;
1371                             hdtrl.file_offset = 0;
1372                             hdtrl.file_bytes = 0;
1373                             hdtrl.trailer_data = 0;
1374                             hdtrl.trailer_length = 0;
1375                             nwritten = send_file(&tofd, &hdtrl, 0);
1376                             ''',
1377                             '_HAVE_SENDFILE',
1378                             msg='Checking for AIX send_file support')
1379             if conf.CONFIG_SET('_HAVE_SENDFILE'):
1380                 conf.DEFINE('HAVE_SENDFILE', '1')
1381                 conf.DEFINE('AIX_SENDFILE_API', '1')
1382                 conf.DEFINE('WITH_SENDFILE', '1')
1383
1384     # Check for getcwd allowing a NULL arg.
1385     conf.CHECK_CODE('''
1386 #include <unistd.h>
1387 main() {
1388         char *s = getcwd(NULL,0);
1389         exit(s != NULL ?  0 : 1);
1390 }''', 'GETCWD_TAKES_NULL', addmain=False, execute=True,
1391         msg="getcwd takes a NULL argument")
1392
1393
1394     # UnixWare 7.x has its getspnam in -lgen
1395     conf.CHECK_FUNCS_IN('getspnam', 'gen')
1396     conf.CHECK_FUNCS_IN('getspnam', 'security')
1397     conf.CHECK_FUNCS_IN('getspnam', 'sec')
1398
1399     if Options.options.with_quotas:
1400         # For quotas on Veritas VxFS filesystems
1401         conf.CHECK_HEADERS('sys/fs/vx_quota.h')
1402         # For sys/quota.h and linux/quota.h
1403         conf.CHECK_HEADERS('sys/quota.h')
1404         # For quotas on BSD systems
1405         conf.CHECK_HEADERS('ufs/ufs/quota.h')
1406         # For quotas on Linux XFS filesystems
1407         if conf.CHECK_HEADERS('xfs/xqm.h'):
1408             conf.DEFINE('HAVE_XFS_QUOTAS', '1')
1409         else:
1410             # For Irix XFS
1411             conf.CHECK_CODE('''
1412                 #include "confdefs.h"
1413                 #ifdef HAVE_SYS_TYPES_H
1414                 #include <sys/types.h>
1415                 #endif
1416                 #ifdef HAVE_ASM_TYPES_H
1417                 #include <asm/types.h>
1418                 #endif
1419                 #include <sys/quota.h>
1420                 int i = Q_XGETQUOTA;''',
1421                 define='HAVE_XFS_QUOTAS',
1422                 msg='for XFS QUOTA in <sys/quota.h>',
1423                 execute=False,
1424                 local_include=False)
1425         
1426         # For IRIX like dqb_isoftlimit instead of dqb_fsoftlimit in struc dqblk
1427         conf.CHECK_STRUCTURE_MEMBER('struct dqblk', 'dqb_fsoftlimit', define='HAVE_DQB_FSOFTLIMIT',
1428                                 headers='sys/quota.h')
1429         #darwin style quota bytecount
1430         conf.CHECK_STRUCTURE_MEMBER('struct dqblk', 'dqb_curbytes', define='HAVE_STRUCT_DQBLK_DQB_CURBYTES',
1431                                 headers='sys/quota.h')
1432         if conf.CHECK_HEADERS('rpcsvc/rquota.h'):
1433             conf.DEFINE('HAVE_NFS_QUOTAS', '1')
1434             conf.CHECK_STRUCTURE_MEMBER('struct getquota_rslt', 'getquota_rslt_u',
1435                                         define='HAVE_GETQUOTA_RSLT_GETQUOTA_RSLT_U',
1436                                         headers='rpcsvc/rquota.h')
1437
1438         if (host_os.rfind('linux') > -1):
1439             conf.DEFINE('HAVE_QUOTACTL_LINUX', '1')
1440         elif not conf.CONFIG_SET("HAVE_XFS_QUOTAS"):
1441             if not conf.CHECK_CODE('''
1442                 #define HAVE_QUOTACTL_4A 1
1443                 #define AUTOCONF_TEST 1
1444                 #include "../tests/sysquotas.c"
1445                 ''',
1446                                    cflags=conf.env['WERROR_CFLAGS'],
1447                                    define='HAVE_QUOTACTL_4A',
1448                                    msg='for QUOTACTL_4A: long quotactl(int cmd, char *special, qid_t id, caddr_t addr)',
1449                                    execute=True,
1450                                    addmain=False):
1451
1452                 conf.CHECK_CODE('''
1453                 #define HAVE_QUOTACTL_4B 1
1454                 #define AUTOCONF_TEST 1
1455                 #include "../tests/sysquotas.c"
1456                 ''',
1457                                 cflags=conf.env['WERROR_CFLAGS'],
1458                                 define='HAVE_QUOTACTL_4B',
1459                                 msg='for QUOTACTL_4B:  int quotactl(const char *path, int cmd, int id, char *addr)',
1460                                 execute=True,
1461                                 addmain=False)
1462
1463         conf.CHECK_CODE('''
1464                      clnt_create("", RQUOTAPROG, RQUOTAVERS, "udp");
1465 ''', 
1466                         headers="rpc/rpc.h rpc/types.h rpcsvc/rquota.h rpc/nettype.h rpc/xdr.h", 
1467                         define='HAVE_NFS_QUOTAS',
1468                         msg='for NFS QUOTAS',
1469                         execute=True,
1470                         local_include=False)
1471
1472         if conf.CONFIG_SET('HAVE_QUOTACTL_LINUX') or \
1473            conf.CONFIG_SET('HAVE_QUOTACTL_4A') or \
1474            conf.CONFIG_SET('HAVE_QUOTACTL_4B') or \
1475            conf.CONFIG_SET('HAVE_XFS_QUOTAS'):
1476             conf.DEFINE('HAVE_SYS_QUOTAS', '1')
1477             conf.DEFINE('WITH_QUOTAS', '1')
1478
1479     #
1480     # cluster support (CTDB)
1481     #
1482     if not Options.options.with_cluster_support:
1483         Logs.info("building without cluster support (--without-cluster-support)")
1484         conf.env.with_ctdb = False
1485     else:
1486         Logs.info("building with cluster support")
1487         conf.env.with_ctdb = True
1488         conf.DEFINE('CLUSTER_SUPPORT', 1)
1489
1490     conf.CHECK_CODE('void seekdir(DIR *d, long loc) { return; }',
1491                     'SEEKDIR_RETURNS_VOID',
1492                     headers='sys/types.h dirent.h',
1493                     msg='Checking whether seekdir returns void')
1494
1495     if Options.options.with_profiling_data:
1496         conf.DEFINE('WITH_PROFILE', 1);
1497         conf.CHECK_FUNCS('getrusage', headers="sys/time.h sys/resource.h")
1498
1499     if Options.options.with_pthreadpool:
1500         if conf.CONFIG_SET('HAVE_PTHREAD'):
1501             conf.DEFINE('WITH_PTHREADPOOL', '1')
1502         else:
1503             Logs.warn("pthreadpool support cannot be enabled when pthread support was not found")
1504             conf.undefine('WITH_PTHREADPOOL')
1505
1506     if (conf.CHECK_HEADERS('linux/ioctl.h sys/ioctl.h linux/fs.h') and
1507         conf.CHECK_DECLS('FS_IOC_GETFLAGS FS_COMPR_FL', headers='linux/fs.h')):
1508             conf.DEFINE('HAVE_LINUX_IOCTL', '1')
1509
1510     conf.env['CCFLAGS_CEPHFS'] = "-D_FILE_OFFSET_BITS=64"
1511     if Options.options.libcephfs_dir:
1512         conf.env['CPPPATH_CEPHFS'] = Options.options.libcephfs_dir + '/include'
1513         conf.env['LIBPATH_CEPHFS'] = Options.options.libcephfs_dir + '/lib'
1514
1515     if conf.CHECK_HEADERS('cephfs/libcephfs.h', False, False, 'cephfs') and conf.CHECK_LIB('cephfs'):
1516         conf.DEFINE('HAVE_CEPH', '1')
1517
1518     if Options.options.with_glusterfs:
1519         conf.CHECK_CFG(package='glusterfs-api', args='"glusterfs-api >= 4" --cflags --libs',
1520                        msg='Checking for glusterfs-api >= 4', uselib_store="GFAPI")
1521         conf.CHECK_HEADERS('api/glfs.h', lib='gfapi')
1522         conf.CHECK_LIB('gfapi', shlib=True)
1523
1524         if conf.CONFIG_SET('HAVE_API_GLFS_H'):
1525             conf.DEFINE('HAVE_GLUSTERFS', '1')
1526         else:
1527             conf.SET_TARGET_TYPE('gfapi', 'EMPTY')
1528             conf.undefine('HAVE_GLUSTERFS')
1529     else:
1530         conf.SET_TARGET_TYPE('gfapi', 'EMPTY')
1531         conf.undefine('HAVE_GLUSTERFS')
1532
1533     if Options.options.enable_vxfs:
1534         conf.DEFINE('HAVE_VXFS', '1')
1535
1536     if conf.CHECK_CFG(package='dbus-1', args='--cflags --libs',
1537                       msg='Checking for dbus', uselib_store="DBUS-1"):
1538         if (conf.CHECK_HEADERS('dbus/dbus.h', lib='dbus-1')
1539                                       and conf.CHECK_LIB('dbus-1', shlib=True)):
1540             conf.DEFINE('HAVE_DBUS', '1')
1541
1542     conf.env.build_regedit = False
1543     if not Options.options.with_regedit == False:
1544         conf.PROCESS_SEPARATE_RULE('system_ncurses')
1545         if conf.CONFIG_SET('HAVE_NCURSES'):
1546             conf.env.build_regedit = True
1547
1548     if conf.env.build_regedit:
1549         Logs.info("building regedit")
1550     else:
1551         if Options.options.with_regedit == False:
1552             Logs.info("not building regedit (--without-regedit)")
1553         elif Options.options.with_regedit == True:
1554             Logs.error("ncurses not available, cannot build regedit")
1555             conf.fatal("ncurses not available, but --with-regedit was specified")
1556         else:
1557             Logs.info("ncurses not available, not building regedit")
1558
1559     conf.CHECK_FUNCS_IN('DES_pcbc_encrypt', 'crypto')
1560     if Options.options.with_fake_kaserver == True:
1561         conf.CHECK_HEADERS('afs/param.h afs/stds.h', together=True)
1562         conf.CHECK_HEADERS('afs/param.h afs/stds.h', together=True)
1563         if (conf.CONFIG_SET('HAVE_AFS_PARAM_H') and conf.CONFIG_SET('HAVE_AFS_STDS_H') and conf.CONFIG_SET('HAVE_DES_PCBC_ENCRYPT')):
1564             conf.DEFINE('WITH_FAKE_KASERVER', '1')
1565         else:
1566             conf.fatal('AFS headers not available, but --with-fake-kaserver was specified')
1567
1568     conf.env['libtracker']=''
1569     conf.env.with_spotlight = False
1570     if Options.options.with_spotlight:
1571         versions = ['1.0', '0.16', '0.14']
1572         for version in versions:
1573             testlib = 'tracker-sparql-' + version
1574             if conf.CHECK_CFG(package=testlib,
1575                               args='--cflags --libs',
1576                               mandatory=False):
1577                 conf.SET_TARGET_TYPE(testlib, 'SYSLIB')
1578                 conf.env['libtracker'] = testlib
1579                 conf.env.with_spotlight = True
1580                 conf.DEFINE('WITH_SPOTLIGHT', '1')
1581                 break
1582
1583         if not conf.env.with_spotlight:
1584             conf.fatal("Spotlight support requested but tracker-sparql library missing")
1585         Logs.info("building with Spotlight support")
1586
1587     forced_static_modules.extend(TO_LIST('auth_domain auth_builtin auth_sam auth_winbind'))
1588     default_static_modules.extend(TO_LIST('''pdb_smbpasswd pdb_tdbsam pdb_wbc_sam
1589                                       auth_unix auth_wbc
1590                                       nss_info_template idmap_tdb idmap_passdb
1591                                       idmap_nss'''))
1592
1593     default_shared_modules.extend(TO_LIST('''
1594                                       vfs_recycle vfs_audit vfs_extd_audit vfs_full_audit vfs_netatalk
1595                                       vfs_fake_perms vfs_default_quota vfs_readonly vfs_cap
1596                                       vfs_expand_msdfs vfs_shadow_copy vfs_shadow_copy2
1597                                       vfs_readahead vfs_xattr_tdb vfs_posix_eadb
1598                                       vfs_streams_xattr vfs_streams_depot vfs_acl_xattr vfs_acl_tdb
1599                                       vfs_preopen vfs_catia
1600                                       vfs_media_harmony vfs_unityed_media vfs_fruit vfs_shell_snap
1601                                       vfs_commit vfs_worm vfs_crossrename vfs_linux_xfs_sgid
1602                                       vfs_time_audit vfs_offline
1603                                   '''))
1604     default_shared_modules.extend(TO_LIST('auth_script idmap_tdb2 idmap_script'))
1605     # these have broken dependencies
1606     forced_shared_modules.extend(TO_LIST('idmap_autorid idmap_rid idmap_hash'))
1607
1608     if Options.options.developer:
1609         default_static_modules.extend(TO_LIST('charset_weird'))
1610         default_shared_modules.extend(TO_LIST('perfcount_test'))
1611         default_shared_modules.extend(TO_LIST('vfs_skel_opaque vfs_skel_transparent vfs_shadow_copy_test'))
1612         default_shared_modules.extend(TO_LIST('auth_skel pdb_test'))
1613
1614     if Options.options.enable_selftest or Options.options.developer:
1615         default_shared_modules.extend(TO_LIST('vfs_fake_acls vfs_nfs4acl_xattr'))
1616         
1617
1618     if conf.CONFIG_SET('AD_DC_BUILD_IS_ENABLED'):
1619         default_static_modules.extend(TO_LIST('pdb_samba_dsdb auth_samba4 vfs_dfs_samba4'))
1620
1621     if conf.CONFIG_SET('HAVE_FREEBSD_SUNACL_H'):
1622         default_shared_modules.extend(TO_LIST('vfs_zfsacl'))
1623
1624     if conf.CONFIG_SET('HAVE_DIRFD_DECL'):
1625         default_shared_modules.extend(TO_LIST('vfs_syncops vfs_dirsort'))
1626
1627     if conf.CONFIG_SET('HAVE_STATFS_F_FSID'):
1628         default_shared_modules.extend(TO_LIST('vfs_fileid'))
1629
1630     if (conf.CONFIG_SET('HAVE_STRUCT_MSGHDR_MSG_CONTROL') or conf.CONFIG_SET('HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS')):
1631         default_shared_modules.extend(TO_LIST('vfs_aio_fork'))
1632
1633     if Options.options.with_pthreadpool:
1634         default_shared_modules.extend(TO_LIST('vfs_aio_pthread'))
1635
1636     if conf.CONFIG_SET('HAVE_AIO'):
1637         default_shared_modules.extend(TO_LIST('vfs_aio_posix'))
1638
1639     if conf.CONFIG_SET('HAVE_LINUX_KERNEL_AIO'):
1640         default_shared_modules.extend(TO_LIST('vfs_aio_linux'))
1641
1642     if conf.CONFIG_SET('HAVE_LDAP'):
1643         default_static_modules.extend(TO_LIST('pdb_ldapsam idmap_ldap'))
1644
1645     if conf.CONFIG_SET('DARWINOS'):
1646         default_static_modules.extend(TO_LIST('charset_macosxfs'))
1647
1648     if conf.CONFIG_SET('HAVE_GPFS'):
1649         default_shared_modules.extend(TO_LIST('vfs_gpfs'))
1650
1651     if (conf.CONFIG_SET('HAVE_LINUX_IOCTL')
1652       and conf.CONFIG_SET('HAVE_BASENAME') and conf.CONFIG_SET('HAVE_DIRNAME')):
1653         default_shared_modules.extend(TO_LIST('vfs_btrfs'))
1654
1655     if conf.CONFIG_SET("HAVE_CEPH"):
1656         default_shared_modules.extend(TO_LIST('vfs_ceph'))
1657
1658     if conf.CONFIG_SET('HAVE_GLUSTERFS'):
1659         default_shared_modules.extend(TO_LIST('vfs_glusterfs'))
1660
1661     if conf.CONFIG_SET('HAVE_VXFS'):
1662         default_shared_modules.extend(TO_LIST('vfs_vxfs'))
1663
1664     if conf.CONFIG_SET('HAVE_DBUS'):
1665         default_shared_modules.extend(TO_LIST('vfs_snapper'))
1666
1667     explicit_shared_modules = TO_LIST(Options.options.shared_modules, delimiter=',')
1668     explicit_static_modules = TO_LIST(Options.options.static_modules, delimiter=',')
1669
1670     def replace_list_item(lst, item, value):
1671         try:
1672             idx = lst.index(item)
1673             lst[idx] = value
1674         except:
1675             pass
1676     # PDB module file name should have the same name as module registers itself
1677     # In Autoconf build we export LDAP passdb module as ldapsam but WAF build
1678     # was always exporting pdb_ldap. In order to support existing packages
1679     # allow referring to pdb_ldapsam as pdb_ldap but use proper name internally.
1680     replace_list_item(explicit_shared_modules, 'pdb_ldap', 'pdb_ldapsam')
1681     replace_list_item(explicit_static_modules, 'pdb_ldap', 'pdb_ldapsam')
1682
1683     final_static_modules = []
1684     final_static_modules.extend(TO_LIST(required_static_modules))
1685     final_shared_modules = []
1686
1687     if '!FORCED' not in explicit_static_modules:
1688         final_static_modules.extend(TO_LIST(forced_static_modules))
1689     if '!FORCED' not in explicit_shared_modules:
1690         final_shared_modules.extend(TO_LIST(forced_shared_modules))
1691     if '!DEFAULT' not in explicit_static_modules:
1692         final_static_modules.extend(TO_LIST(default_static_modules))
1693     if '!DEFAULT' not in explicit_shared_modules:
1694         final_shared_modules.extend(TO_LIST(default_shared_modules))
1695
1696     if 'ALL' in explicit_static_modules:
1697         for m in default_shared_modules:
1698             if m in final_shared_modules:
1699                 final_shared_modules.remove(m)
1700             final_static_modules.append(m)
1701     if 'ALL' in explicit_shared_modules:
1702         for m in default_static_modules:
1703             if m in final_static_modules:
1704                 final_static_modules.remove(m)
1705             final_shared_modules.append(m)
1706
1707     for m in explicit_static_modules:
1708         if m in ['ALL','!DEFAULT','!FORCED']:
1709             continue
1710         if m.startswith('!'):
1711             m = m[1:]
1712             if m in required_static_modules:
1713                 raise Utils.WafError('These modules are REQUIRED as static modules: %s' %
1714                                      ' '.join(required_static_modules))
1715             if m in final_static_modules:
1716                 final_static_modules.remove(m)
1717             continue
1718         if m in forced_shared_modules:
1719             raise Utils.WafError('These modules MUST be configured as shared modules: %s' %
1720                                  ' '.join(forced_shared_modules))
1721         if m in final_shared_modules:
1722             final_shared_modules.remove(m)
1723         if m not in final_static_modules:
1724             final_static_modules.append(m)
1725     for m in explicit_shared_modules:
1726         if m in ['ALL','!DEFAULT','!FORCED']:
1727             continue
1728         if m.startswith('!'):
1729             m = m[1:]
1730             if m in final_shared_modules:
1731                 final_shared_modules.remove(m)
1732             continue
1733         if m in required_static_modules:
1734             raise Utils.WafError('These modules are REQUIRED as static modules: %s' %
1735                                  ' '.join(required_static_modules))
1736         if m in forced_static_modules:
1737             raise Utils.WafError('These module MUST be configured as static modules: %s' %
1738                                  ' '.join(forced_static_modules))
1739         if m in final_static_modules:
1740             final_static_modules.remove(m)
1741         if m not in final_shared_modules:
1742             final_shared_modules.append(m)
1743
1744     conf.env['static_modules'] = final_static_modules
1745     conf.env['shared_modules'] = final_shared_modules
1746
1747     conf.DEFINE('STRING_STATIC_MODULES', ' '.join(final_static_modules), quote=True)
1748
1749     static_list = {}
1750     shared_list = {}
1751
1752     prefixes = ['vfs', 'pdb', 'auth', 'nss_info', 'charset', 'idmap', 'gpext', 'perfcount']
1753     conf.env['MODULE_PREFIXES'] = prefixes
1754     for p in prefixes:
1755         for m in final_static_modules:
1756             if m.find(p) == 0:
1757                 if not p in static_list:
1758                     static_list[p] = []
1759                 static_list[p].append(m)
1760         for m in final_shared_modules:
1761             if m.find(p) == 0:
1762                 if not p in shared_list:
1763                     shared_list[p] = []
1764                 shared_list[p].append(m)
1765
1766     for p in prefixes:
1767         static_env = "%s_STATIC" % p.upper()
1768         shared_env = "%s_SHARED" % p.upper()
1769         conf.env[static_env] = []
1770         conf.env[shared_env] = []
1771         if p in static_list:
1772             decl_list=""
1773             for entry in static_list[p]:
1774                 decl_list += "extern NTSTATUS %s_init(void); " % entry
1775                 conf.env[static_env].append('%s' % entry)
1776             decl_list = decl_list.rstrip()
1777             conf.DEFINE('static_decl_%s' % p, decl_list)
1778             conf.DEFINE('static_init_%s' % p, '{ %s_init(); }' % '_init();  '.join(static_list[p]))
1779         else:
1780             conf.DEFINE('static_decl_%s' % p, '')
1781             conf.DEFINE('static_init_%s' % p, '{}')
1782         if p in shared_list:
1783             for entry in shared_list[p]:
1784                 conf.DEFINE('%s_init' % entry, 'samba_init_module')
1785                 conf.env[shared_env].append('%s' % entry)
1786         Logs.info("%s: %s" % (static_env, ','.join(conf.env[static_env])))
1787         Logs.info("%s: %s" % (shared_env, ','.join(conf.env[shared_env])))
1788
1789     conf.SAMBA_CONFIG_H('include/config.h')
1790
1791 def ctags(ctx):
1792     "build 'tags' file using ctags"
1793     import Utils
1794     source_root = os.path.dirname(Utils.g_module.root_path)
1795     cmd = 'ctags $(find %s/.. -name "*.[ch]" | grep -v "*_proto\.h")' % source_root
1796     print("Running: %s" % cmd)
1797     os.system(cmd)
1798