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