s3:rpc_server: make it possible to build mdssvc as a shared module
[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('dmapi', default=None) # None means autodetection
56     opt.SAMBA3_ADD_OPTION('fam', default=None) # None means autodetection
57     opt.SAMBA3_ADD_OPTION('profiling-data', default=False)
58     opt.SAMBA3_ADD_OPTION('libarchive', default=None)
59
60     opt.SAMBA3_ADD_OPTION('cluster-support', default=False)
61
62     opt.SAMBA3_ADD_OPTION('regedit', default=None)
63
64     opt.SAMBA3_ADD_OPTION('fake-kaserver',
65                           help=("Include AFS fake-kaserver support"), default=False)
66
67     opt.add_option('--with-libcephfs',
68                    help=("Directory under which libcephfs is installed"),
69                    action="store", dest='libcephfs_dir', default=None)
70
71     opt.SAMBA3_ADD_OPTION('glusterfs', with_name="enable", without_name="disable", default=True)
72
73     opt.add_option('--enable-vxfs',
74                   help=("enable support for VxFS (default=no)"),
75                   action="store_true", dest='enable_vxfs', default=False)
76
77     opt.SAMBA3_ADD_OPTION('spotlight', with_name="enable", without_name="disable", default=False)
78
79 def configure(conf):
80     from samba_utils import TO_LIST
81
82     default_static_modules = []
83     default_shared_modules = []
84     required_static_modules = []
85     forced_static_modules = []
86     forced_shared_modules = []
87
88     if Options.options.developer:
89         conf.ADD_CFLAGS('-DDEVELOPER -DDEBUG_PASSWORD')
90         conf.env.developer = True
91
92     if sys.platform != 'openbsd5':
93         conf.ADD_LDFLAGS("-Wl,--export-dynamic", testflags=True)
94
95     # We crash without vfs_default
96     required_static_modules.extend(TO_LIST('vfs_default'))
97
98     conf.CHECK_HEADERS('execinfo.h libexc.h libunwind.h netdb.h')
99     conf.CHECK_HEADERS('linux/falloc.h linux/ioctl.h')
100
101     conf.CHECK_FUNCS('getcwd fchown chmod fchmod mknod')
102     conf.CHECK_FUNCS('strtol strchr strupr chflags')
103     conf.CHECK_FUNCS('getrlimit fsync fdatasync setpgid')
104     conf.CHECK_FUNCS('setsid glob strpbrk crypt16 getauthuid')
105     conf.CHECK_FUNCS('innetgr')
106     conf.CHECK_FUNCS('initgroups select poll rdchk getgrnam getgrent pathconf')
107     conf.CHECK_FUNCS('setpriv setgidx setuidx setgroups syscall sysconf')
108     conf.CHECK_FUNCS('atexit grantpt posix_openpt fallocate posix_fallocate')
109     conf.CHECK_FUNCS('fseeko setluid')
110     conf.CHECK_FUNCS('getpwnam', headers='sys/types.h pwd.h')
111     conf.CHECK_FUNCS('fdopendir')
112     conf.CHECK_FUNCS('fstatat')
113     conf.CHECK_FUNCS('getpwent_r setenv strcasecmp fcvt fcvtl')
114     conf.CHECK_FUNCS('syslog vsyslog timegm setlocale')
115     conf.CHECK_FUNCS_IN('nanosleep', 'rt')
116     conf.CHECK_FUNCS('lutimes futimes utimensat futimens')
117     conf.CHECK_FUNCS('mlock munlock mlockall munlockall')
118     conf.CHECK_FUNCS('memalign posix_memalign hstrerror')
119     conf.CHECK_FUNCS('shmget')
120     conf.CHECK_FUNCS_IN('shm_open', 'rt', checklibc=True)
121     #FIXME: for some reason this one still fails
122     conf.CHECK_FUNCS_IN('yp_get_default_domain', 'nsl')
123     conf.CHECK_FUNCS_IN('dn_expand _dn_expand __dn_expand', 'resolv')
124     conf.CHECK_FUNCS_IN('dn_expand', 'inet')
125     conf.CHECK_DECLS('fdatasync', reverse=True)
126     conf.CHECK_DECLS('readahead', reverse=True, headers='fcntl.h')
127
128     if conf.CHECK_CODE('''
129 #if defined(HAVE_UNISTD_H)
130 #include <unistd.h>
131 #endif
132 long ret = splice(0,0,1,0,400,SPLICE_F_MOVE);
133 ''',
134         'HAVE_LINUX_SPLICE',
135         headers='fcntl.h'):
136         conf.CHECK_DECLS('splice', reverse=True, headers='fcntl.h')
137
138     # Check for inotify support
139     conf.CHECK_HEADERS('sys/inotify.h')
140     if "HAVE_SYS_INOTIFY_H" in conf.env:
141         conf.DEFINE('HAVE_INOTIFY', 1)
142
143     # Check for kernel change notify support
144     conf.CHECK_CODE('''
145 #ifndef F_NOTIFY
146 #define F_NOTIFY 1026
147 #endif
148 main() {
149         exit(fcntl(open("/tmp", O_RDONLY), F_NOTIFY, 0) == -1 ?  1 : 0);
150 }''', 'HAVE_KERNEL_CHANGE_NOTIFY', addmain=False, execute=True,
151         headers='fcntl.h signal.h',
152         msg="Checking for kernel change notify support")
153
154     # Check for Linux kernel oplocks
155     conf.CHECK_CODE('''
156 #include <sys/types.h>
157 #include <fcntl.h>
158 #include <signal.h>
159 #ifndef F_NOTIFY
160 #define F_NOTIFY 1026
161 #endif
162 main() {
163         exit(fcntl(open("/tmp", O_RDONLY), F_NOTIFY, 0) == -1 ?  1 : 0);
164 }''', 'HAVE_KERNEL_OPLOCKS_LINUX', addmain=False, execute=True,
165         msg="Checking for Linux kernel oplocks")
166
167     # Check for IRIX kernel oplock types
168     conf.CHECK_CODE('oplock_stat_t t; t.os_state = OP_REVOKE; t.os_dev = 1; t.os_ino = 1;',
169                     'HAVE_KERNEL_OPLOCKS_IRIX', headers='fcntl.h',
170                     msg="Checking for IRIX kernel oplock types")
171
172     # Check for kernel share modes
173     conf.CHECK_CODE('''
174 #include <sys/types.h>
175 #include <fcntl.h>
176 #include <signal.h>
177 #include <sys/file.h>
178 #ifndef LOCK_MAND
179 #define LOCK_MAND        32
180 #define LOCK_READ        64
181 #endif
182 main() {
183         exit(flock(open("/dev/null", O_RDWR), LOCK_MAND|LOCK_READ) != 0);
184 }''', 'HAVE_KERNEL_SHARE_MODES', addmain=False, execute=True,
185         msg="Checking for kernel share modes")
186
187     # check for fam libs
188     samba_fam_libs=None
189     check_for_fam=False
190     if Options.options.with_fam is None:
191         check_for_fam=True
192     elif Options.options.with_fam == True:
193         check_for_fam=True
194
195     if check_for_fam and conf.CHECK_HEADERS('fam.h'):
196         if conf.CHECK_FUNCS_IN('FAMOpen2', 'fam'):
197             samba_fam_libs='fam'
198         elif conf.CHECK_FUNCS_IN('FAMOpen2', 'fam C'):
199             samba_fam_libs='fam C'
200         conf.CHECK_TYPE('enum FAMCodes', headers='fam.h',
201             define='HAVE_FAM_H_FAMCODES_TYPEDEF',
202             msg='Checking whether enum FAMCodes is available')
203         conf.CHECK_FUNCS_IN('FAMNoExists', 'fam')
204
205     if samba_fam_libs is not None:
206         conf.DEFINE('SAMBA_FAM_LIBS', samba_fam_libs)
207         conf.DEFINE('HAVE_FAM', 1)
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.SET_TARGET_TYPE('archive', 'EMPTY')
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_HEADERS('archive.h') and conf.CHECK_LIB('archive', shlib=True):
221             conf.CHECK_FUNCS_IN('archive_read_support_filter_all archive_read_free', 'archive')
222         elif libarchive_mandatory:
223             conf.fatal('libarchive support requested, but not 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 host_os.rfind('linux') > -1:
551         conf.CHECK_FUNCS_IN('io_submit', 'aio')
552         conf.CHECK_CODE('''
553 struct io_event ioev;
554 struct iocb *ioc;
555 io_context_t ctx;
556 struct timespec ts;
557 int fd;
558 char *buf;
559 fd = eventfd(0, EFD_NONBLOCK | EFD_CLOEXEC);
560 io_queue_init(128,&ctx);
561 io_prep_pwrite(ioc, 1, buf, 1, 0);
562 io_prep_pread(ioc, 1, buf, 1, 0);
563 io_set_eventfd(ioc, fd);
564 io_set_callback(ioc, (io_callback_t)(0));
565 io_submit(ctx, 1, &ioc);
566 io_getevents(ctx, 1, 1, &ioev, &ts);
567 ''',
568             'HAVE_LINUX_KERNEL_AIO',
569             msg='Checking for linux kernel asynchronous io support',
570             headers='unistd.h stdlib.h sys/types.h fcntl.h sys/eventfd.h libaio.h',
571             lib='aio')
572
573     conf.CHECK_CODE('''
574 struct msghdr msg;
575 union {
576         struct cmsghdr cm;
577         char control[CMSG_SPACE(sizeof(int))];
578 } control_un;
579 msg.msg_control = control_un.control;
580 msg.msg_controllen = sizeof(control_un.control);
581 ''',
582         'HAVE_STRUCT_MSGHDR_MSG_CONTROL',
583         msg='Checking if we can use msg_control for passing file descriptors',
584         headers='sys/types.h stdlib.h stddef.h sys/socket.h sys/un.h')
585     conf.CHECK_CODE('''
586 struct msghdr msg;
587 int fd;
588 msg.msg_accrights = (caddr_t) &fd;
589 msg.msg_accrightslen = sizeof(fd);
590 ''',
591         'HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS',
592         msg='Checking if we can use msg_accrights for passing file descriptors',
593         headers='sys/types.h stdlib.h stddef.h sys/socket.h sys/un.h')
594
595     if Options.options.with_winbind:
596         conf.env.build_winbind = True
597         conf.DEFINE('WITH_WINBIND', '1')
598
599     conf.find_program('awk', var='AWK')
600
601     conf.CHECK_HEADERS('asm/types.h')
602
603     conf.CHECK_CODE('dev_t dev; int i = major(dev); return 0', "HAVE_DEVICE_MAJOR_FN",
604                     headers='unistd.h sys/types.h',
605                     msg="Checking for major macro")
606
607     conf.CHECK_CODE('dev_t dev; int i = minor(dev); return 0', "HAVE_DEVICE_MINOR_FN",
608                     headers='unistd.h sys/types.h',
609                     msg="Checking for minor macro")
610
611     conf.CHECK_STRUCTURE_MEMBER('struct dirent', 'd_off',
612                                 headers='unistd.h sys/types.h dirent.h',
613                                 define='HAVE_DIRENT_D_OFF')
614
615     conf.CHECK_FUNCS('setnetgrent getnetgrent endnetgrent')
616     if conf.CHECK_CFLAGS('-Werror-implicit-function-declaration'):
617         netgrent_cflags = '-Werror-implicit-function-declaration'
618     else:
619         netgrent_cflags = ''
620     conf.CHECK_CODE('setnetgrent("foo")', 'HAVE_SETNETGRENT_PROTOTYPE',
621                     msg="Checking for setnetgrent prototype",
622                     headers='netdb.h netgroup.h',
623                     cflags=netgrent_cflags)
624     conf.CHECK_CODE('getnetgrent', 'HAVE_GETNETGRENT_PROTOTYPE',
625                     msg="Checking for getnetgrent prototype",
626                     headers='netdb.h netgroup.h',
627                     cflags=netgrent_cflags)
628     conf.CHECK_CODE('endnetgrent', 'HAVE_ENDNETGRENT_PROTOTYPE',
629                     msg="Checking for endnetgrent prototype",
630                     headers='netdb.h netgroup.h',
631                     cflags=netgrent_cflags)
632
633
634     # Look for CUPS
635     if Options.options.with_cups:
636         conf.find_program('cups-config', var='CUPS_CONFIG')
637         if conf.env.CUPS_CONFIG:
638             # we would normally use --libs here, but cups-config incorrectly adds
639             # gssapi_krb5 and other libraries to its --libs output. That breaks the use
640             # of an in-tree heimdal kerberos
641             conf.CHECK_CFG(path=conf.env.CUPS_CONFIG, args="--cflags --ldflags",
642                            package="", uselib_store="CUPS")
643         conf.CHECK_HEADERS('cups/cups.h cups/language.h', lib='cups')
644         conf.CHECK_FUNCS_IN('httpConnect httpConnectEncrypt', 'cups')
645         if conf.CONFIG_SET('HAVE_CUPS_CUPS_H') and conf.CONFIG_SET('HAVE_CUPS_LANGUAGE_H'):
646             conf.DEFINE('HAVE_CUPS', '1')
647         else:
648             conf.undefine('HAVE_CUPS')
649             conf.SET_TARGET_TYPE('cups', 'EMPTY')
650     else:
651         # define an empty subsystem for cups, to allow it to be used as an empty dependency
652         conf.SET_TARGET_TYPE('cups', 'EMPTY')
653
654     if Options.options.with_iprint:
655         if conf.CONFIG_SET('HAVE_CUPS'):
656             conf.DEFINE('HAVE_IPRINT', '1')
657         else:
658             Logs.warn("--enable-iprint=yes but cups support not sufficient")
659     if Options.options.with_syslog:
660         conf.DEFINE('WITH_SYSLOG', '1')
661     if Options.options.with_automount:
662         conf.DEFINE('WITH_AUTOMOUNT', '1')
663
664     # Check for LDAP
665     if Options.options.with_ldap:
666         conf.CHECK_HEADERS('ldap.h lber.h ldap_pvt.h')
667         conf.CHECK_TYPE('ber_tag_t', 'unsigned int', headers='ldap.h lber.h')
668         conf.CHECK_FUNCS_IN('ber_scanf ber_sockbuf_add_io', 'lber')
669         conf.CHECK_VARIABLE('LDAP_OPT_SOCKBUF', headers='ldap.h')
670
671         # if we LBER_OPT_LOG_PRINT_FN we can intercept ldap logging and print it out
672         # for the samba logs
673         conf.CHECK_VARIABLE('LBER_OPT_LOG_PRINT_FN',
674                             define='HAVE_LBER_LOG_PRINT_FN', headers='lber.h')
675
676         conf.CHECK_FUNCS_IN('ldap_init ldap_init_fd ldap_initialize ldap_set_rebind_proc', 'ldap')
677         conf.CHECK_FUNCS_IN('ldap_add_result_entry', 'ldap')
678
679         # Check if ldap_set_rebind_proc() takes three arguments
680         if conf.CHECK_CODE('ldap_set_rebind_proc(0, 0, 0)',
681                            'LDAP_SET_REBIND_PROC_ARGS',
682                            msg="Checking whether ldap_set_rebind_proc takes 3 arguments",
683                            headers='ldap.h lber.h', link=False):
684             conf.DEFINE('LDAP_SET_REBIND_PROC_ARGS', '3')
685         else:
686             conf.DEFINE('LDAP_SET_REBIND_PROC_ARGS', '2')
687
688         # last but not least, if ldap_init() exists, we want to use ldap
689         if conf.CONFIG_SET('HAVE_LDAP_INIT') and conf.CONFIG_SET('HAVE_LDAP_H'):
690             conf.DEFINE('HAVE_LDAP', '1')
691             conf.DEFINE('LDAP_DEPRECATED', '1')
692             conf.env['HAVE_LDAP'] = '1'
693             # if ber_sockbuf_add_io() and LDAP_OPT_SOCKBUF are available, we can add
694             # SASL wrapping hooks
695             if conf.CONFIG_SET('HAVE_BER_SOCKBUF_ADD_IO') and \
696                     conf.CONFIG_SET('HAVE_LDAP_OPT_SOCKBUF'):
697                 conf.DEFINE('HAVE_LDAP_SASL_WRAPPING', '1')
698         else:
699             conf.fatal("LDAP support not found. "
700                        "Try installing libldap2-dev or openldap-devel. "
701                        "Otherwise, use --without-ldap to build without "
702                        "LDAP support. "
703                        "LDAP support is required for the LDAP passdb backend, "
704                        "LDAP idmap backends and ADS. "
705                        "ADS support improves communication with "
706                        "Active Directory domain controllers.")
707     else:
708         conf.SET_TARGET_TYPE('ldap', 'EMPTY')
709         conf.SET_TARGET_TYPE('lber', 'EMPTY')
710
711     if Options.options.with_ads == False:
712         use_ads = False
713         use_ads_krb5 = False
714         use_ads_ldap = False
715     else:
716         use_ads = True
717         use_ads_krb5 = True
718         use_ads_ldap = True
719         if not conf.CONFIG_SET('HAVE_ENCTYPE_ARCFOUR_HMAC_MD5') and \
720            not conf.CONFIG_SET('HAVE_ENCTYPE_ARCFOUR_HMAC'):
721             Logs.warn("arcfour-hmac-md5 encryption type not found in -lkrb5")
722             use_ads_krb5 = False
723         if not conf.CONFIG_SET('HAVE_KRB5_MK_REQ_EXTENDED'):
724             Logs.warn("krb5_mk_req_extended not found in -lkrb5")
725             use_ads_krb5 = False
726         if not conf.CONFIG_SET('HAVE_KRB5_GET_HOST_REALM'):
727             Logs.warn("krb5_get_host_realm not found in -lkrb5")
728             use_ads_krb5 = False
729         if not conf.CONFIG_SET('HAVE_KRB5_FREE_HOST_REALM'):
730             Logs.warn("krb5_free_host_realm not found in -lkrb5")
731             use_ads_krb5 = False
732         if not conf.CONFIG_SET('HAVE_KRB5_FWD_TGT_CREDS'):
733             Logs.warn("krb5_fwd_tgt_creds found in -lkrb5")
734             use_ads_krb5 = False
735         if not conf.CONFIG_SET('HAVE_KRB5_GET_INIT_CREDS_OPT_ALLOC'):
736             Logs.warn("krb5_get_init_creds_opt_alloc not found in -lkrb5")
737             use_ads_krb5 = False
738         if not conf.CONFIG_SET('KRB5_CREDS_OPT_FREE_REQUIRES_CONTEXT'):
739             Logs.warn("krb5_get_init_creds_opt_free was not found or was too old in -lkrb5")
740             use_ads_krb5 = False
741         if not conf.CONFIG_SET('HAVE_KRB5_GET_RENEWED_CREDS'):
742             Logs.warn("krb5_get_renewed_creds not found in -lkrb5")
743             use_ads_krb5 = False
744         if not conf.CONFIG_SET('HAVE_KRB5_PRINCIPAL_COMPARE_ANY_REALM'):
745             Logs.warn("krb5_principal_compare_any_realm not found in -lkrb5")
746             use_ads_krb5 = False
747         if not conf.CONFIG_SET('HAVE_KRB5_C_STRING_TO_KEY') and \
748            not conf.CONFIG_SET('HAVE_KRB5_STRING_TO_KEY_SALT'):
749             Logs.warn("krb5_c_string_to_key not found in -lkrb5")
750             use_ads_krb5 = False
751         if not conf.CONFIG_SET('HAVE_KRB5_PRINCIPAL2SALT') and \
752            not conf.CONFIG_SET('HAVE_KRB5_GET_PW_SALT'):
753             Logs.warn("no CREATE_KEY_FUNCTIONS detected")
754             use_ads_krb5 = False
755         if not conf.CONFIG_SET('HAVE_KRB5_GET_PERMITTED_ENCTYPES') and \
756            not conf.CONFIG_SET('HAVE_KRB5_GET_DEFAULT_IN_TKT_ETYPES'):
757             Logs.warn("no GET_ENCTYPES_FUNCTIONS detected")
758             use_ads_krb5 = False
759         if not conf.CONFIG_SET('HAVE_KRB5_KT_FREE_ENTRY') and \
760            not conf.CONFIG_SET('HAVE_KRB5_FREE_KEYTAB_ENTRY_CONTENTS'):
761             Logs.warn("no KT_FREE_FUNCTION detected")
762             use_ads_krb5 = False
763         if not conf.CONFIG_SET('HAVE_KRB5_C_VERIFY_CHECKSUM'):
764             Logs.warn("krb5_c_verify_checksum_compare not found in -lkrb5")
765             use_ads_krb5 = False
766
767         # We don't actually use
768         # gsskrb5_extract_authz_data_from_sec_context, but it is a
769         # clue that this Heimdal, which does the PAC processing we
770         # need on the standard gss_inquire_sec_context_by_oid
771         if not conf.CONFIG_SET('HAVE_GSS_GET_NAME_ATTRIBUTE') and \
772             not (conf.CONFIG_SET('HAVE_GSSKRB5_EXTRACT_AUTHZ_DATA_FROM_SEC_CONTEXT') and \
773                      conf.CONFIG_SET('HAVE_GSS_INQUIRE_SEC_CONTEXT_BY_OID')):
774             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")
775             use_ads_krb5 = False
776
777         if not conf.CONFIG_SET('HAVE_GSS_KRB5_EXPORT_LUCID_SEC_CONTEXT'):
778             Logs.warn("need gss_krb5_export_lucid_sec_context for SPNEGO and gss_wrap support")
779             use_ads_krb5 = False
780
781         if use_ads_krb5:
782             conf.DEFINE('HAVE_KRB5', '1')
783             conf.env['HAVE_KRB5'] = '1'
784         else:
785             conf.undefine('HAVE_KRB5_H')
786             conf.undefine('HAVE_GSSAPI_H')
787             conf.undefine('HAVE_GSSAPI_GSSAPI_GENERIC_H')
788             conf.undefine('HAVE_GSSAPI_GSSAPI_H')
789             use_ads = False
790
791         if not conf.CONFIG_SET('HAVE_LDAP'):
792             use_ads = False
793             use_ads_ldap = False
794
795     if use_ads:
796         conf.DEFINE('WITH_ADS', '1')
797         conf.env['HAVE_ADS'] = '1'
798         Logs.info("Building with Active Directory support.")
799         # these have broken dependencies
800         forced_shared_modules.extend(TO_LIST('idmap_ad idmap_rfc2307'))
801     elif Options.options.with_ads == False:
802         Logs.info("Building without Active Directory support (--without-ads).")
803     else:
804         if not use_ads_krb5:
805             Logs.warn("Active Directory support not available: krb5 libs don't have all required features")
806         if not use_ads_ldap:
807             Logs.warn("Active Directory support not available: LDAP support is not available.")
808         if Options.options.with_ads:
809             conf.fatal("Active Directory support not found. Use --without-ads "
810                        "for building without Active Directory support. "
811                        "ADS support improves communication with "
812                        "Active Directory domain controllers.")
813         else:
814             # this is the auto-mode case
815             Logs.warn("Building without Active Directory support.")
816
817
818     if Options.options.with_utmp:
819         conf.env.with_utmp = True
820         if not conf.CHECK_HEADERS('utmp.h'): conf.env.with_utmp = False
821         conf.CHECK_FUNCS('pututline pututxline updwtmp updwtmpx getutmpx getutxent')
822         conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_name', headers='utmp.h',
823                                     define='HAVE_UT_UT_NAME')
824         conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_user', headers='utmp.h',
825                                     define='HAVE_UT_UT_USER')
826         conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_id', headers='utmp.h',
827                                     define='HAVE_UT_UT_ID')
828         conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_host', headers='utmp.h',
829                                     define='HAVE_UT_UT_HOST')
830         conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_time', headers='utmp.h',
831                                     define='HAVE_UT_UT_TIME')
832         conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_tv', headers='utmp.h',
833                                     define='HAVE_UT_UT_TV')
834         conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_type', headers='utmp.h',
835                                     define='HAVE_UT_UT_TYPE')
836         conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_pid', headers='utmp.h',
837                                     define='HAVE_UT_UT_PID')
838         conf.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_exit.e_exit', headers='utmp.h',
839                                     define='HAVE_UT_UT_EXIT')
840         conf.CHECK_STRUCTURE_MEMBER('struct utmpx', 'ut_syslen', headers='utmpx.h',
841                                     define='HAVE_UX_UT_SYSLEN')
842         conf.CHECK_CODE('struct utmp utarg; struct utmp *utreturn; utreturn = pututline(&utarg);',
843                         'PUTUTLINE_RETURNS_UTMP', headers='utmp.h',
844                         msg="Checking whether pututline returns pointer")
845         conf.CHECK_SIZEOF(['((struct utmp *)NULL)->ut_line'], headers='utmp.h',
846                           define='SIZEOF_UTMP_UT_LINE', critical=False)
847         if not conf.CONFIG_SET('SIZEOF_UTMP_UT_LINE'):
848             conf.env.with_utmp = False
849         elif int(conf.env.SIZEOF_UTMP_UT_LINE) < 15:
850             conf.env.with_utmp = False
851         if conf.env.with_utmp:
852             conf.DEFINE('WITH_UTMP', 1)
853         else:
854             Logs.warn("--with-utmp but utmp support not sufficient")
855
856     if Options.options.with_avahi:
857         conf.env.with_avahi = True
858         if not conf.CHECK_HEADERS('avahi-common/watch.h avahi-client/client.h'): conf.env.with_avahi = False
859         if not conf.CHECK_FUNCS_IN('avahi_client_new', 'avahi-client'): conf.env.with_avahi = False
860         if not conf.CHECK_FUNCS_IN('avahi_strerror', 'avahi-common'): conf.env.with_avahi = False
861         if conf.env.with_avahi:
862             conf.DEFINE('WITH_AVAHI_SUPPORT', 1)
863     else:
864         conf.SET_TARGET_TYPE('avahi-common', 'EMPTY')
865         conf.SET_TARGET_TYPE('avahi-client', 'EMPTY')
866
867     if Options.options.with_iconv:
868         conf.env.with_iconv = True
869         if not conf.CHECK_FUNCS_IN('iconv_open', 'iconv', headers='iconv.h'):
870             conf.env.with_iconv = False
871         if conf.env.with_iconv:
872             conf.DEFINE('HAVE_ICONV', 1)
873
874     if Options.options.with_pam:
875         use_pam=True
876         conf.CHECK_HEADERS('security/pam_appl.h pam/pam_appl.h')
877         if not conf.CONFIG_SET('HAVE_SECURITY_PAM_APPL_H') and not conf.CONFIG_SET('HAVE_PAM_PAM_APPL_H'):
878             Logs.warn("--with-pam=yes but pam_appl.h not found")
879             use_pam=False
880         conf.CHECK_FUNCS_IN('pam_get_data', 'pam')
881         conf.CHECK_HEADERS('security/pam_modules.h pam/pam_modules.h')
882         if not conf.CONFIG_SET('HAVE_SECURITY_PAM_MODULES_H') and not conf.CONFIG_SET('HAVE_PAM_PAM_MODULES_H'):
883             Logs.warn("--with-pam=yes but pam_modules.h not found")
884             use_pam=False
885         conf.CHECK_HEADERS('security/pam_ext.h security/_pam_macros.h')
886         conf.CHECK_HEADERS('pam/pam_ext.h pam/_pam_macros.h')
887         conf.CHECK_FUNCS_IN('pam_vsyslog', 'pam')
888         conf.CHECK_CODE('''
889 #if defined(HAVE_SECURITY_PAM_APPL_H)
890 #include <security/pam_appl.h>
891 #elif defined(HAVE_PAM_PAM_APPL_H)
892 #include <pam/pam_appl.h>
893 #endif
894 pam_set_item(0, PAM_RHOST, 0);
895 ''',
896             'HAVE_PAM_RHOST',
897             lib='pam',
898             msg="Checking whether PAM_RHOST is available");
899         conf.CHECK_CODE('''
900 #if defined(HAVE_SECURITY_PAM_APPL_H)
901 #include <security/pam_appl.h>
902 #elif defined(HAVE_PAM_PAM_APPL_H)
903 #include <pam/pam_appl.h>
904 #endif
905 pam_set_item(0, PAM_TTY, 0);
906 ''',
907             'HAVE_PAM_TTY',
908             lib='pam',
909             msg="Checking whether PAM_TTY is available");
910         conf.CHECK_CODE('''
911 #if (!defined(LINUX))
912
913 #define PAM_EXTERN extern
914 #if defined(HAVE_SECURITY_PAM_APPL_H)
915 #include <security/pam_appl.h>
916 #elif defined(HAVE_PAM_PAM_APPL_H)
917 #include <pam/pam_appl.h>
918 #endif
919
920 #endif
921
922 #if defined(HAVE_SECURITY_PAM_MODULES_H)
923 #include <security/pam_modules.h>
924 #elif defined(HAVE_PAM_PAM_MODULES_H)
925 #include <pam/pam_modules.h>
926 #endif
927
928 #if defined(HAVE_SECURITY__PAM_MACROS_H)
929 #include <security/_pam_macros.h>
930 #elif defined(HAVE_PAM__PAM_MACROS_H)
931 #include <pam/_pam_macros.h>
932 #endif
933
934 #ifdef HAVE_SECURITY_PAM_EXT_H
935 #include <security/pam_ext.h>
936 #endif
937
938 int i; i = PAM_RADIO_TYPE;
939 ''',
940             'HAVE_PAM_RADIO_TYPE',
941             lib='pam',
942             msg="Checking whether PAM_RADIO_TYPE is available");
943         if use_pam:
944             conf.DEFINE('WITH_PAM', 1)
945             conf.DEFINE('WITH_PAM_MODULES', 1)
946
947     seteuid = False
948
949 #
950 # Ensure we select the correct set of system calls on Linux.
951 #
952     if (host_os.rfind('linux') > -1):
953         conf.CHECK_CODE('''
954 #if defined(HAVE_UNISTD_H)
955 #include <unistd.h>
956 #endif
957 #include <stdlib.h>
958 #include <stdio.h>
959 #include <sys/types.h>
960 #include <errno.h>
961
962 #ifdef HAVE_SYS_PRIV_H
963 #include <sys/priv.h>
964 #endif
965 #ifdef HAVE_SYS_ID_H
966 #include <sys/id.h>
967 #endif
968
969 #if defined(HAVE_SYSCALL_H)
970 #include <syscall.h>
971 #endif
972
973 #if defined(HAVE_SYS_SYSCALL_H)
974 #include <sys/syscall.h>
975 #endif
976
977 syscall(SYS_setresuid32, -1, -1, -1);
978 syscall(SYS_setresgid32, -1, -1, -1);
979 syscall(SYS_setreuid32, -1, -1);
980 syscall(SYS_setregid32, -1, -1);
981 syscall(SYS_setuid32, -1);
982 syscall(SYS_setgid32, -1);
983 syscall(SYS_setgroups32, 0, NULL);
984 ''',
985             'USE_LINUX_32BIT_SYSCALLS',
986             msg="Checking whether Linux should use 32-bit credential calls");
987
988         if (conf.CONFIG_SET('USE_LINUX_32BIT_SYSCALLS')):
989             seteuid = conf.CHECK_CODE('''
990                                 #define AUTOCONF_TEST 1
991                                 #define USE_LINUX_THREAD_CREDENTIALS 1
992                                 #define USE_LINUX_32BIT_SYSCALLS 1
993                                 #include "../lib/util/setid.c"
994                                 #include "./lib/util_sec.c"
995                                 ''',
996                                 'USE_LINUX_THREAD_CREDENTIALS',
997                                 addmain=False,
998                                 execute=True,
999                                 msg="Checking whether we can use Linux thread-specific credentials with 32-bit system calls")
1000         else:
1001             seteuid = conf.CHECK_CODE('''
1002                                 #define AUTOCONF_TEST 1
1003                                 #define USE_LINUX_THREAD_CREDENTIALS 1
1004                                 #include "../lib/util/setid.c"
1005                                 #include "./lib/util_sec.c"
1006                                 ''',
1007                                 'USE_LINUX_THREAD_CREDENTIALS',
1008                                 addmain=False,
1009                                 execute=True,
1010                                 msg="Checking whether we can use Linux thread-specific credentials")
1011     if not seteuid:
1012         seteuid = conf.CHECK_CODE('''
1013                                 #define AUTOCONF_TEST 1
1014                                 #define USE_SETREUID 1
1015                                 #include "../lib/util/setid.c"
1016                                 #include "./lib/util_sec.c"
1017                                 ''',
1018                                 'USE_SETREUID',
1019                                 addmain=False,
1020                                 execute=True,
1021                                 msg="Checking whether setreuid is available")
1022     if not seteuid:
1023         seteuid = conf.CHECK_CODE('''
1024                                 #define AUTOCONF_TEST 1
1025                                 #define USE_SETRESUID 1
1026                                 #include "../lib/util/setid.c"
1027                                 #include "./lib/util_sec.c"
1028                                 ''',
1029                                 'USE_SETRESUID',
1030                                 addmain=False,
1031                                 execute=True,
1032                                 msg="Checking whether setresuid is available")
1033     if not seteuid:
1034         seteuid = conf.CHECK_CODE('''
1035                                 #define AUTOCONF_TEST 1
1036                                 #define USE_SETEUID 1
1037                                 #include "../lib/util/setid.c"
1038                                 #include "./lib/util_sec.c"
1039                                 ''',
1040                                 'USE_SETEUID',
1041                                 addmain=False,
1042                                 execute=True,
1043                                 msg="Checking whether seteuid is available")
1044     if not seteuid:
1045         seteuid = conf.CHECK_CODE('''
1046                                 #define AUTOCONF_TEST 1
1047                                 #define USE_SETUIDX 1
1048                                 #include "../lib/util/setid.c"
1049                                 #include "./lib/util_sec.c"
1050                                 ''',
1051                                 'USE_SETUIDX',
1052                                 addmain=False,
1053                                 execute=True,
1054                                 mandatory=True,
1055                                 msg="Checking whether setuidx is available")
1056     if Options.options.with_dnsupdate:
1057         if not conf.CONFIG_SET('HAVE_KRB5'):
1058             Logs.warn("--with-dnsupdate=yes but gssapi support not sufficient")
1059         else:
1060             conf.DEFINE('WITH_DNS_UPDATES', 1)
1061     conf.CHECK_HEADERS('valgrind.h valgrind/valgrind.h valgrind/memcheck.h')
1062     if Options.options.developer:
1063         if conf.CONFIG_SET('HAVE_VALGRIND_H') or conf.CONFIG_SET('HAVE_VALGRIND_VALGRIND_H'):
1064             conf.DEFINE('VALGRIND', '1')
1065
1066     if conf.CHECK_CODE('''
1067 #include <bits/sockaddr.h>
1068 #include <linux/netlink.h>
1069 ''',
1070                 'HAVE_LINUX_NETLINK_H',
1071                 msg="Checking whether Linux netlink is available"):
1072
1073         conf.CHECK_CODE('''
1074 #include <bits/sockaddr.h>
1075 #include <linux/netlink.h>
1076 #include <linux/rtnetlink.h>
1077 ''',
1078                 'HAVE_LINUX_RTNETLINK_H',
1079                 msg='Checking whether Linux rtnetlink is available')
1080
1081     conf.CHECK_CODE('''
1082 #include "../tests/fcntl_lock.c"
1083 ''',
1084                 'HAVE_FCNTL_LOCK',
1085                 addmain=False,
1086                 execute=True,
1087                 msg='Checking whether fcntl locking is available')
1088
1089 # glibc up to 2.3.6 had dangerously broken posix_fallocate(). DON'T USE IT.
1090     if not conf.CHECK_CODE('''
1091 #define _XOPEN_SOURCE 600
1092 #include <stdlib.h>
1093 #if defined(__GLIBC__) && ((__GLIBC__ < 2) || (__GLIBC__ == 2 && __GLIBC_MINOR__ < 4))
1094 #error probably broken posix_fallocate
1095 #endif
1096 ''',
1097                            '_HAVE_UNBROKEN_POSIX_FALLOCATE',
1098                            msg='Checking for broken posix_fallocate'):
1099         conf.DEFINE('HAVE_BROKEN_POSIX_FALLOCATE', '1')
1100
1101
1102     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_mtim.tv_nsec',
1103                                 define='HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC') # Linux, Solaris
1104     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_mtimensec',
1105                                 define='HAVE_STRUCT_STAT_ST_MTIMENSEC') # BSD, if defined _POSIX_SOURCE
1106     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_mtimespec.tv_nsec',
1107                                 define='HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC') # BSD, if not defined _POSIX_SOURCE
1108     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_mtime_n',
1109                                 define='HAVE_STRUCT_STAT_ST_MTIME_N') # AIX
1110     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_umtime',
1111                                 define='HAVE_STRUCT_STAT_ST_UMTIME') # Tru64
1112     if conf.CONFIG_SET('HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC') or \
1113        conf.CONFIG_SET('HAVE_STRUCT_STAT_ST_MTIMENSEC') or \
1114        conf.CONFIG_SET('HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC') or \
1115        conf.CONFIG_SET('HAVE_STRUCT_STAT_ST_MTIME_N') or \
1116        conf.CONFIG_SET('HAVE_STRUCT_STAT_ST_UMTIME'):
1117         conf.DEFINE('HAVE_STAT_HIRES_TIMESTAMPS', '1')
1118
1119     # recent FreeBSD, NetBSD have creation timestamps called birthtime:
1120     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_birthtime',
1121                                 define='HAVE_STRUCT_STAT_ST_BIRTHTIME')
1122     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_birthtimespec.tv_nsec',
1123                                 define='HAVE_STRUCT_STAT_ST_BIRTHTIMESPEC_TV_NSEC')
1124     conf.CHECK_STRUCTURE_MEMBER('struct stat', 'st_birthtimensec',
1125                                 define='HAVE_STRUCT_STAT_ST_BIRTHTIMENSEC')
1126
1127     conf.CHECK_CODE('''
1128 ssize_t err = posix_fadvise(0,0,0x80000,POSIX_FADV_WILLNEED);
1129 ''',
1130                 'HAVE_POSIX_FADVISE',
1131                 msg='Checking whether posix_fadvise is available',
1132                 headers='unistd.h fcntl.h')
1133
1134     for v in ['_SC_NGROUPS_MAX', '_SC_NPROC_ONLN', '_SC_NPROCESSORS_ONLN', '_SC_PAGESIZE' ]:
1135         conf.CHECK_CODE('''
1136                         #include <unistd.h>
1137                         return sysconf(%s) == -1 ? 1 : 0;
1138                         ''' % v,
1139                         'SYSCONF%s' % v,
1140                         msg='Checking whether sysconf(%s) is available' % v)
1141
1142     conf.CHECK_CODE('''
1143 #include <sys/syscall.h>
1144 #include <unistd.h>
1145 syscall(SYS_initgroups, 16, NULL, NULL, 0);
1146                     ''',
1147                     'HAVE_DARWIN_INITGROUPS',
1148                     msg='Checking whether to use the Darwin-specific initgroups system call')
1149
1150     conf.CHECK_CODE('''struct utimbuf tbuf;  tbuf.actime = 0; tbuf.modtime = 1; exit(utime("foo.c",&tbuf));''',
1151                     'HAVE_UTIMBUF',
1152                     headers='sys/types.h utime.h',
1153                     msg='Checking whether struct utimbuf is available')
1154
1155     if conf.CHECK_CODE('''struct sigevent s;''',
1156                     'HAVE_STRUCT_SIGEVENT',
1157                     headers='sys/types.h stdlib.h stddef.h signal.h',
1158                     msg='Checking whether we have the struct sigevent'):
1159         conf.CHECK_STRUCTURE_MEMBER('struct sigevent', 'sigev_value.sival_ptr',
1160                                     define='HAVE_STRUCT_SIGEVENT_SIGEV_VALUE_SIVAL_PTR',
1161                                     headers='signal.h');
1162         conf.CHECK_STRUCTURE_MEMBER('struct sigevent', 'sigev_value.sigval_ptr',
1163                                     define='HAVE_STRUCT_SIGEVENT_SIGEV_VALUE_SIGVAL_PTR',
1164                                     headers='signal.h');
1165
1166     if os.path.exists('/proc/sys/kernel/core_pattern'):
1167         conf.DEFINE('HAVE_SYS_KERNEL_PROC_CORE_PATTERN', '1')
1168
1169     if conf.CHECK_CODE('''
1170 #include <time.h>
1171 main() {
1172         struct tm *tm;
1173         if (sizeof(time_t) == 8) {
1174                 time_t max_time = 0x7fffffffffffffffll;
1175                 tm = gmtime(&max_time);
1176                 /* This should fail with 32-bit tm_year. */
1177                 if (tm == NULL) {
1178                         /* Max time_t that works with 32-bit int tm_year in struct tm. */
1179                         max_time = 67768036191676799ll;
1180                         tm = gmtime(&max_time);
1181                         if (tm) {
1182                                 exit(0);
1183                         }
1184                 }
1185         }
1186         exit(1);
1187 }''',
1188         '__TIME_T_MAX',
1189         addmain=False,
1190         execute=True,
1191         msg="Checking for the maximum value of the 'time_t' type"):
1192             conf.DEFINE('TIME_T_MAX', '67768036191676799ll')
1193
1194     conf.CHECK_CODE('''
1195 #if defined(HAVE_UNISTD_H)
1196 #include <unistd.h>
1197 #endif
1198 #include <sys/types.h>
1199 main() { dev_t dev = makedev(1,2); return 0; }
1200 ''',
1201         'HAVE_MAKEDEV',
1202         addmain=False,
1203         msg='Checking whether the macro for makedev is available')
1204
1205     conf.CHECK_CODE('''
1206 #include <stdio.h>
1207 #include <limits.h>
1208 #include <signal.h>
1209
1210 void exit_on_core(int ignored) {
1211         exit(1);
1212 }
1213
1214 main() {
1215         char *newpath;
1216         signal(SIGSEGV, exit_on_core);
1217         newpath = realpath("/tmp", NULL);
1218         exit((newpath != NULL) ? 0 : 1);
1219 }
1220 ''',
1221         'REALPATH_TAKES_NULL',
1222         addmain=False,
1223         execute=True,
1224         msg='Checking whether the realpath function allows a NULL argument')
1225
1226     conf.CHECK_CODE('''#include "../tests/ftruncate.c"''',
1227                     'HAVE_FTRUNCATE_EXTEND',
1228                     msg='Checking for ftruncate extend',
1229                     addmain=False,
1230                     execute=True)
1231
1232     if Options.options.with_sendfile_support:
1233         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):
1234             conf.CHECK_CODE('''
1235                             int tofd, fromfd;
1236                             off_t offset;
1237                             size_t total;
1238                             ssize_t nwritten = sendfile(tofd, fromfd, &offset, total);
1239                             ''',
1240                             '_HAVE_SENDFILE',
1241                             headers='sys/sendfile.h',
1242                             msg='Checking for linux sendfile support')
1243
1244             if conf.CONFIG_SET('_HAVE_SENDFILE'):
1245                 conf.DEFINE('HAVE_SENDFILE', '1')
1246                 conf.DEFINE('LINUX_SENDFILE_API', '1')
1247                 conf.DEFINE('WITH_SENDFILE', '1')
1248         elif (host_os.rfind('freebsd') > -1) or (host_os.rfind('dragonfly') > -1):
1249             conf.CHECK_CODE('''
1250                             #include <sys/types.h>
1251                             #include <unistd.h>
1252                             #include <sys/socket.h>
1253                             #include <sys/uio.h>
1254                             int fromfd, tofd, ret, total=0;
1255                             off_t offset, nwritten;
1256                             struct sf_hdtr hdr;
1257                             struct iovec hdtrl;
1258                             hdr.headers = &hdtrl;
1259                             hdr.hdr_cnt = 1;
1260                             hdr.trailers = NULL;
1261                             hdr.trl_cnt = 0;
1262                             hdtrl.iov_base = NULL;
1263                             hdtrl.iov_len = 0;
1264                             ret = sendfile(fromfd, tofd, offset, total, &hdr, &nwritten, 0)
1265                             ''',
1266                             '_HAVE_SENDFILE',
1267                             msg='Checking for freebsd sendfile support')
1268             if conf.CONFIG_SET('_HAVE_SENDFILE'):
1269                 conf.DEFINE('HAVE_SENDFILE', '1')
1270                 conf.DEFINE('FREEBSD_SENDFILE_API', '1')
1271                 conf.DEFINE('WITH_SENDFILE', '1')
1272         elif (host_os.rfind('darwin') > -1):
1273             conf.CHECK_CODE('''
1274                             #include <sys/types.h>
1275                             #include <sys/socket.h>
1276                             #include <sys/uio.h>
1277                             int fromfd, tofd, ret;
1278                             off_t offset, nwritten;
1279                             struct sf_hdtr hdr;
1280                             struct iovec hdtrl;
1281                             hdr.headers = &hdtrl;
1282                             hdr.hdr_cnt = 1;
1283                             hdr.trailers = (void *)0;
1284                             hdr.trl_cnt = 0;
1285                             hdtrl.iov_base = (void *)0;
1286                             hdtrl.iov_len = 0;
1287                             ret = sendfile(fromfd, tofd, offset, &nwritten, &hdr, 0);
1288                             ''',
1289                             '_HAVE_SENDFILE',
1290                             msg='Checking for darwin sendfile support')
1291             if conf.CONFIG_SET('_HAVE_SENDFILE'):
1292                 conf.DEFINE('HAVE_SENDFILE', '1')
1293                 conf.DEFINE('DARWIN_SENDFILE_API', '1')
1294                 conf.DEFINE('WITH_SENDFILE', '1')
1295         elif (host_os.rfind('hpux') > -1) or (host_os.rfind('osf') > -1):
1296             conf.CHECK_CODE('''
1297                             #include <sys/socket.h>
1298                             #include <sys/uio.h>
1299                             int fromfd, tofd;
1300                             size_t total=0;
1301                             struct iovec hdtrl[2];
1302                             ssize_t nwritten;
1303                             off_t offset;
1304                             hdtrl[0].iov_base = 0;
1305                             hdtrl[0].iov_len = 0;
1306                             nwritten = sendfile(tofd, fromfd, offset, total, &hdtrl[0], 0);
1307                             ''',
1308                             '_HAVE_SENDFILE',
1309                             msg='Checking for osf/hpux sendfile support')
1310             if conf.CONFIG_SET('_HAVE_SENDFILE'):
1311                 conf.DEFINE('HAVE_SENDFILE', '1')
1312                 conf.DEFINE('HPUX_SENDFILE_API', '1')
1313                 conf.DEFINE('WITH_SENDFILE', '1')
1314         elif (host_os.rfind('solaris') > -1):
1315             conf.CHECK_FUNCS_IN('sendfile', 'sendfilev')
1316             conf.CHECK_CODE('''
1317                             #include <sys/sendfile.h>,
1318                             int sfvcnt;
1319                             size_t xferred;
1320                             struct sendfilevec vec[2];
1321                             ssize_t nwritten;
1322                             int tofd;
1323                             sfvcnt = 2;
1324                             vec[0].sfv_fd = SFV_FD_SELF;
1325                             vec[0].sfv_flag = 0;
1326                             vec[0].sfv_off = 0;
1327                             vec[0].sfv_len = 0;
1328                             vec[1].sfv_fd = 0;
1329                             vec[1].sfv_flag = 0;
1330                             vec[1].sfv_off = 0;
1331                             vec[1].sfv_len = 0;
1332                             nwritten = sendfilev(tofd, vec, sfvcnt, &xferred);
1333                             ''',
1334                             '_HAVE_SENDFILEV',
1335                             msg='Checking for solaris sendfilev support')
1336             if conf.CONFIG_SET('_HAVE_SENDFILEV'):
1337                 conf.DEFINE('HAVE_SENDFILEV', '1')
1338                 conf.DEFINE('SOLARIS_SENDFILE_API', '1')
1339                 conf.DEFINE('WITH_SENDFILE', '1')
1340         elif (host_os.rfind('aix') > -1):
1341             conf.CHECK_CODE('''
1342                             #include <sys/socket.h>
1343                             int fromfd, tofd;
1344                             size_t total=0;
1345                             struct sf_parms hdtrl;
1346                             ssize_t nwritten;
1347                             hdtrl.header_data = 0;
1348                             hdtrl.header_length = 0;
1349                             hdtrl.file_descriptor = fromfd;
1350                             hdtrl.file_offset = 0;
1351                             hdtrl.file_bytes = 0;
1352                             hdtrl.trailer_data = 0;
1353                             hdtrl.trailer_length = 0;
1354                             nwritten = send_file(&tofd, &hdtrl, 0);
1355                             ''',
1356                             '_HAVE_SENDFILE',
1357                             msg='Checking for AIX send_file support')
1358             if conf.CONFIG_SET('_HAVE_SENDFILE'):
1359                 conf.DEFINE('HAVE_SENDFILE', '1')
1360                 conf.DEFINE('AIX_SENDFILE_API', '1')
1361                 conf.DEFINE('WITH_SENDFILE', '1')
1362
1363     # Check for getcwd allowing a NULL arg.
1364     conf.CHECK_CODE('''
1365 #include <unistd.h>
1366 main() {
1367         char *s = getcwd(NULL,0);
1368         exit(s != NULL ?  0 : 1);
1369 }''', 'GETCWD_TAKES_NULL', addmain=False, execute=True,
1370         msg="getcwd takes a NULL argument")
1371
1372
1373     # UnixWare 7.x has its getspnam in -lgen
1374     conf.CHECK_FUNCS_IN('getspnam', 'gen')
1375     conf.CHECK_FUNCS_IN('getspnam', 'security')
1376     conf.CHECK_FUNCS_IN('getspnam', 'sec')
1377
1378     if Options.options.with_quotas:
1379         # For quotas on Veritas VxFS filesystems
1380         conf.CHECK_HEADERS('sys/fs/vx_quota.h')
1381         # For sys/quota.h and linux/quota.h
1382         conf.CHECK_HEADERS('sys/quota.h')
1383         # For quotas on BSD systems
1384         conf.CHECK_HEADERS('ufs/ufs/quota.h')
1385         # For quotas on Linux XFS filesystems
1386         if conf.CHECK_HEADERS('xfs/xqm.h'):
1387             conf.DEFINE('HAVE_XFS_QUOTAS', '1')
1388         else:
1389             # For Irix XFS
1390             conf.CHECK_CODE('''
1391                 #include "confdefs.h"
1392                 #ifdef HAVE_SYS_TYPES_H
1393                 #include <sys/types.h>
1394                 #endif
1395                 #ifdef HAVE_ASM_TYPES_H
1396                 #include <asm/types.h>
1397                 #endif
1398                 #include <sys/quota.h>
1399                 int i = Q_XGETQUOTA;''',
1400                 define='HAVE_XFS_QUOTAS',
1401                 msg='for XFS QUOTA in <sys/quota.h>',
1402                 execute=False,
1403                 local_include=False)
1404
1405         # For IRIX like dqb_isoftlimit instead of dqb_fsoftlimit in struc dqblk
1406         conf.CHECK_STRUCTURE_MEMBER('struct dqblk', 'dqb_fsoftlimit', define='HAVE_DQB_FSOFTLIMIT',
1407                                 headers='sys/quota.h')
1408         #darwin style quota bytecount
1409         conf.CHECK_STRUCTURE_MEMBER('struct dqblk', 'dqb_curbytes', define='HAVE_STRUCT_DQBLK_DQB_CURBYTES',
1410                                 headers='sys/quota.h')
1411         if conf.CHECK_HEADERS('rpcsvc/rquota.h'):
1412             conf.DEFINE('HAVE_NFS_QUOTAS', '1')
1413             conf.CHECK_STRUCTURE_MEMBER('struct getquota_rslt', 'getquota_rslt_u',
1414                                         define='HAVE_GETQUOTA_RSLT_GETQUOTA_RSLT_U',
1415                                         headers='rpcsvc/rquota.h')
1416
1417         if (host_os.rfind('linux') > -1):
1418             conf.DEFINE('HAVE_QUOTACTL_LINUX', '1')
1419         elif not conf.CONFIG_SET("HAVE_XFS_QUOTAS"):
1420             if not conf.CHECK_CODE('''
1421                 #define HAVE_QUOTACTL_4A 1
1422                 #define AUTOCONF_TEST 1
1423                 #include "../tests/sysquotas.c"
1424                 ''',
1425                                    cflags=conf.env['WERROR_CFLAGS'],
1426                                    define='HAVE_QUOTACTL_4A',
1427                                    msg='for QUOTACTL_4A: long quotactl(int cmd, char *special, qid_t id, caddr_t addr)',
1428                                    execute=True,
1429                                    addmain=False):
1430
1431                 conf.CHECK_CODE('''
1432                 #define HAVE_QUOTACTL_4B 1
1433                 #define AUTOCONF_TEST 1
1434                 #include "../tests/sysquotas.c"
1435                 ''',
1436                                 cflags=conf.env['WERROR_CFLAGS'],
1437                                 define='HAVE_QUOTACTL_4B',
1438                                 msg='for QUOTACTL_4B:  int quotactl(const char *path, int cmd, int id, char *addr)',
1439                                 execute=True,
1440                                 addmain=False)
1441
1442         conf.CHECK_CODE('''
1443                      clnt_create("", RQUOTAPROG, RQUOTAVERS, "udp");
1444 ''',
1445                         headers="rpc/rpc.h rpc/types.h rpcsvc/rquota.h rpc/nettype.h rpc/xdr.h", 
1446                         define='HAVE_NFS_QUOTAS',
1447                         msg='for NFS QUOTAS',
1448                         execute=True,
1449                         local_include=False)
1450
1451         if conf.CONFIG_SET('HAVE_QUOTACTL_LINUX') or \
1452            conf.CONFIG_SET('HAVE_QUOTACTL_4A') or \
1453            conf.CONFIG_SET('HAVE_QUOTACTL_4B') or \
1454            conf.CONFIG_SET('HAVE_XFS_QUOTAS'):
1455             conf.DEFINE('HAVE_SYS_QUOTAS', '1')
1456             conf.DEFINE('WITH_QUOTAS', '1')
1457
1458     #
1459     # cluster support (CTDB)
1460     #
1461     if not Options.options.with_cluster_support:
1462         Logs.info("building without cluster support (--without-cluster-support)")
1463         conf.env.with_ctdb = False
1464     else:
1465         Logs.info("building with cluster support")
1466         conf.env.with_ctdb = True
1467         conf.DEFINE('CLUSTER_SUPPORT', 1)
1468
1469     conf.CHECK_CODE('void seekdir(DIR *d, long loc) { return; }',
1470                     'SEEKDIR_RETURNS_VOID',
1471                     headers='sys/types.h dirent.h',
1472                     msg='Checking whether seekdir returns void')
1473
1474     if Options.options.with_profiling_data:
1475         conf.DEFINE('WITH_PROFILE', 1);
1476         conf.CHECK_FUNCS('getrusage', headers="sys/time.h sys/resource.h")
1477
1478     if Options.options.with_pthreadpool:
1479         if conf.CONFIG_SET('HAVE_PTHREAD'):
1480             conf.DEFINE('WITH_PTHREADPOOL', '1')
1481         else:
1482             Logs.warn("pthreadpool support cannot be enabled when pthread support was not found")
1483             conf.undefine('WITH_PTHREADPOOL')
1484
1485     if (conf.CHECK_HEADERS('linux/ioctl.h sys/ioctl.h linux/fs.h') and
1486         conf.CHECK_DECLS('FS_IOC_GETFLAGS FS_COMPR_FL', headers='linux/fs.h')):
1487             conf.DEFINE('HAVE_LINUX_IOCTL', '1')
1488
1489     conf.env['CCFLAGS_CEPHFS'] = "-D_FILE_OFFSET_BITS=64"
1490     if Options.options.libcephfs_dir:
1491         conf.env['CPPPATH_CEPHFS'] = Options.options.libcephfs_dir + '/include'
1492         conf.env['LIBPATH_CEPHFS'] = Options.options.libcephfs_dir + '/lib'
1493
1494     if conf.CHECK_HEADERS('cephfs/libcephfs.h', False, False, 'cephfs') and conf.CHECK_LIB('cephfs'):
1495         conf.DEFINE('HAVE_CEPH', '1')
1496
1497     if Options.options.with_glusterfs:
1498         conf.CHECK_CFG(package='glusterfs-api', args='"glusterfs-api >= 4" --cflags --libs',
1499                        msg='Checking for glusterfs-api >= 4', uselib_store="GFAPI")
1500         conf.CHECK_HEADERS('api/glfs.h', lib='gfapi')
1501         conf.CHECK_LIB('gfapi', shlib=True)
1502
1503         if conf.CONFIG_SET('HAVE_API_GLFS_H'):
1504             conf.DEFINE('HAVE_GLUSTERFS', '1')
1505         else:
1506             conf.SET_TARGET_TYPE('gfapi', 'EMPTY')
1507             conf.undefine('HAVE_GLUSTERFS')
1508     else:
1509         conf.SET_TARGET_TYPE('gfapi', 'EMPTY')
1510         conf.undefine('HAVE_GLUSTERFS')
1511
1512     if Options.options.enable_vxfs:
1513         conf.DEFINE('HAVE_VXFS', '1')
1514
1515     if conf.CHECK_CFG(package='dbus-1', args='--cflags --libs',
1516                       msg='Checking for dbus', uselib_store="DBUS-1"):
1517         if (conf.CHECK_HEADERS('dbus/dbus.h', lib='dbus-1')
1518                                       and conf.CHECK_LIB('dbus-1', shlib=True)):
1519             conf.DEFINE('HAVE_DBUS', '1')
1520
1521     conf.env.build_regedit = False
1522     if not Options.options.with_regedit == False:
1523         conf.PROCESS_SEPARATE_RULE('system_ncurses')
1524         if conf.CONFIG_SET('HAVE_NCURSES'):
1525             conf.env.build_regedit = True
1526
1527     if conf.env.build_regedit:
1528         Logs.info("building regedit")
1529     else:
1530         if Options.options.with_regedit == False:
1531             Logs.info("not building regedit (--without-regedit)")
1532         elif Options.options.with_regedit == True:
1533             Logs.error("ncurses not available, cannot build regedit")
1534             conf.fatal("ncurses not available, but --with-regedit was specified")
1535         else:
1536             Logs.info("ncurses not available, not building regedit")
1537
1538     conf.CHECK_FUNCS_IN('DES_pcbc_encrypt', 'crypto')
1539     if Options.options.with_fake_kaserver == True:
1540         conf.CHECK_HEADERS('afs/param.h afs/stds.h', together=True)
1541         conf.CHECK_HEADERS('afs/param.h afs/stds.h', together=True)
1542         if (conf.CONFIG_SET('HAVE_AFS_PARAM_H') and conf.CONFIG_SET('HAVE_AFS_STDS_H') and conf.CONFIG_SET('HAVE_DES_PCBC_ENCRYPT')):
1543             conf.DEFINE('WITH_FAKE_KASERVER', '1')
1544         else:
1545             conf.fatal('AFS headers not available, but --with-fake-kaserver was specified')
1546
1547     conf.env['libtracker']=''
1548     conf.env.with_spotlight = False
1549     if Options.options.with_spotlight:
1550         versions = ['1.0', '0.16', '0.14']
1551         for version in versions:
1552             testlib = 'tracker-sparql-' + version
1553             if conf.CHECK_CFG(package=testlib,
1554                               args='--cflags --libs',
1555                               mandatory=False):
1556                 conf.SET_TARGET_TYPE(testlib, 'SYSLIB')
1557                 conf.env['libtracker'] = testlib
1558                 conf.env.with_spotlight = True
1559                 conf.DEFINE('WITH_SPOTLIGHT', '1')
1560                 break
1561
1562         if not conf.env.with_spotlight:
1563             conf.fatal("Spotlight support requested but tracker-sparql library missing")
1564         Logs.info("building with Spotlight support")
1565         default_static_modules.extend(TO_LIST('rpc_mdssvc_module'))
1566
1567     forced_static_modules.extend(TO_LIST('auth_domain auth_builtin auth_sam auth_winbind'))
1568     default_static_modules.extend(TO_LIST('''pdb_smbpasswd pdb_tdbsam pdb_wbc_sam
1569                                       auth_unix auth_wbc
1570                                       nss_info_template idmap_tdb idmap_passdb
1571                                       idmap_nss'''))
1572
1573     default_shared_modules.extend(TO_LIST('''
1574                                       vfs_recycle vfs_audit vfs_extd_audit vfs_full_audit vfs_netatalk
1575                                       vfs_fake_perms vfs_default_quota vfs_readonly vfs_cap
1576                                       vfs_expand_msdfs vfs_shadow_copy vfs_shadow_copy2
1577                                       vfs_readahead vfs_xattr_tdb vfs_posix_eadb
1578                                       vfs_streams_xattr vfs_streams_depot vfs_acl_xattr vfs_acl_tdb
1579                                       vfs_preopen vfs_catia
1580                                       vfs_media_harmony vfs_unityed_media vfs_fruit vfs_shell_snap
1581                                       vfs_commit vfs_worm vfs_crossrename vfs_linux_xfs_sgid
1582                                       vfs_time_audit vfs_offline
1583                                   '''))
1584     default_shared_modules.extend(TO_LIST('auth_script idmap_tdb2 idmap_script'))
1585     # these have broken dependencies
1586     forced_shared_modules.extend(TO_LIST('idmap_autorid idmap_rid idmap_hash'))
1587
1588     if Options.options.developer:
1589         default_static_modules.extend(TO_LIST('charset_weird'))
1590         default_shared_modules.extend(TO_LIST('perfcount_test'))
1591         default_shared_modules.extend(TO_LIST('vfs_skel_opaque vfs_skel_transparent vfs_shadow_copy_test'))
1592         default_shared_modules.extend(TO_LIST('auth_skel pdb_test'))
1593         default_shared_modules.extend(TO_LIST('vfs_fake_dfq'))
1594
1595     if Options.options.enable_selftest or Options.options.developer:
1596         default_shared_modules.extend(TO_LIST('vfs_fake_acls vfs_nfs4acl_xattr'))
1597
1598     if conf.CONFIG_SET('AD_DC_BUILD_IS_ENABLED'):
1599         default_static_modules.extend(TO_LIST('pdb_samba_dsdb auth_samba4 vfs_dfs_samba4'))
1600
1601     if conf.CONFIG_SET('HAVE_FREEBSD_SUNACL_H'):
1602         default_shared_modules.extend(TO_LIST('vfs_zfsacl'))
1603
1604     if conf.CONFIG_SET('HAVE_DIRFD_DECL'):
1605         default_shared_modules.extend(TO_LIST('vfs_syncops vfs_dirsort'))
1606
1607     if conf.CONFIG_SET('HAVE_STATFS_F_FSID'):
1608         default_shared_modules.extend(TO_LIST('vfs_fileid'))
1609
1610     if (conf.CONFIG_SET('HAVE_STRUCT_MSGHDR_MSG_CONTROL') or conf.CONFIG_SET('HAVE_STRUCT_MSGHDR_MSG_ACCRIGHTS')):
1611         default_shared_modules.extend(TO_LIST('vfs_aio_fork'))
1612
1613     if Options.options.with_pthreadpool:
1614         default_shared_modules.extend(TO_LIST('vfs_aio_pthread'))
1615
1616     if conf.CONFIG_SET('HAVE_LINUX_KERNEL_AIO'):
1617         default_shared_modules.extend(TO_LIST('vfs_aio_linux'))
1618
1619     if conf.CONFIG_SET('HAVE_LDAP'):
1620         default_static_modules.extend(TO_LIST('pdb_ldapsam idmap_ldap'))
1621
1622     if conf.CONFIG_SET('DARWINOS'):
1623         default_static_modules.extend(TO_LIST('charset_macosxfs'))
1624
1625     if conf.CONFIG_SET('HAVE_GPFS'):
1626         default_shared_modules.extend(TO_LIST('vfs_gpfs'))
1627
1628     if (conf.CONFIG_SET('HAVE_LINUX_IOCTL')
1629       and conf.CONFIG_SET('HAVE_BASENAME') and conf.CONFIG_SET('HAVE_DIRNAME')):
1630         default_shared_modules.extend(TO_LIST('vfs_btrfs'))
1631
1632     if conf.CONFIG_SET("HAVE_CEPH"):
1633         default_shared_modules.extend(TO_LIST('vfs_ceph'))
1634
1635     if conf.CONFIG_SET('HAVE_GLUSTERFS'):
1636         default_shared_modules.extend(TO_LIST('vfs_glusterfs'))
1637
1638     if conf.CONFIG_SET('HAVE_VXFS'):
1639         default_shared_modules.extend(TO_LIST('vfs_vxfs'))
1640
1641     if conf.CONFIG_SET('HAVE_DBUS'):
1642         default_shared_modules.extend(TO_LIST('vfs_snapper'))
1643
1644     explicit_shared_modules = TO_LIST(Options.options.shared_modules, delimiter=',')
1645     explicit_static_modules = TO_LIST(Options.options.static_modules, delimiter=',')
1646
1647     def replace_list_item(lst, item, value):
1648         try:
1649             idx = lst.index(item)
1650             lst[idx] = value
1651         except:
1652             pass
1653     # PDB module file name should have the same name as module registers itself
1654     # In Autoconf build we export LDAP passdb module as ldapsam but WAF build
1655     # was always exporting pdb_ldap. In order to support existing packages
1656     # allow referring to pdb_ldapsam as pdb_ldap but use proper name internally.
1657     replace_list_item(explicit_shared_modules, 'pdb_ldap', 'pdb_ldapsam')
1658     replace_list_item(explicit_static_modules, 'pdb_ldap', 'pdb_ldapsam')
1659
1660     final_static_modules = []
1661     final_static_modules.extend(TO_LIST(required_static_modules))
1662     final_shared_modules = []
1663
1664     if '!FORCED' not in explicit_static_modules:
1665         final_static_modules.extend(TO_LIST(forced_static_modules))
1666     if '!FORCED' not in explicit_shared_modules:
1667         final_shared_modules.extend(TO_LIST(forced_shared_modules))
1668     if '!DEFAULT' not in explicit_static_modules:
1669         final_static_modules.extend(TO_LIST(default_static_modules))
1670     if '!DEFAULT' not in explicit_shared_modules:
1671         final_shared_modules.extend(TO_LIST(default_shared_modules))
1672
1673     if 'ALL' in explicit_static_modules:
1674         for m in default_shared_modules:
1675             if m in final_shared_modules:
1676                 final_shared_modules.remove(m)
1677             final_static_modules.append(m)
1678     if 'ALL' in explicit_shared_modules:
1679         for m in default_static_modules:
1680             if m in final_static_modules:
1681                 final_static_modules.remove(m)
1682             final_shared_modules.append(m)
1683
1684     for m in explicit_static_modules:
1685         if m in ['ALL','!DEFAULT','!FORCED']:
1686             continue
1687         if m.startswith('!'):
1688             m = m[1:]
1689             if m in required_static_modules:
1690                 raise Utils.WafError('These modules are REQUIRED as static modules: %s' %
1691                                      ' '.join(required_static_modules))
1692             if m in final_static_modules:
1693                 final_static_modules.remove(m)
1694             continue
1695         if m in forced_shared_modules:
1696             raise Utils.WafError('These modules MUST be configured as shared modules: %s' %
1697                                  ' '.join(forced_shared_modules))
1698         if m in final_shared_modules:
1699             final_shared_modules.remove(m)
1700         if m not in final_static_modules:
1701             final_static_modules.append(m)
1702     for m in explicit_shared_modules:
1703         if m in ['ALL','!DEFAULT','!FORCED']:
1704             continue
1705         if m.startswith('!'):
1706             m = m[1:]
1707             if m in final_shared_modules:
1708                 final_shared_modules.remove(m)
1709             continue
1710         if m in required_static_modules:
1711             raise Utils.WafError('These modules are REQUIRED as static modules: %s' %
1712                                  ' '.join(required_static_modules))
1713         if m in forced_static_modules:
1714             raise Utils.WafError('These module MUST be configured as static modules: %s' %
1715                                  ' '.join(forced_static_modules))
1716         if m in final_static_modules:
1717             final_static_modules.remove(m)
1718         if m not in final_shared_modules:
1719             final_shared_modules.append(m)
1720
1721     conf.env['static_modules'] = final_static_modules
1722     conf.env['shared_modules'] = final_shared_modules
1723
1724     conf.DEFINE('STRING_STATIC_MODULES', ' '.join(final_static_modules), quote=True)
1725
1726     static_list = {}
1727     shared_list = {}
1728
1729     prefixes = ['vfs', 'pdb', 'auth', 'nss_info', 'charset', 'idmap', 'gpext', 'perfcount', 'rpc']
1730     conf.env['MODULE_PREFIXES'] = prefixes
1731     for p in prefixes:
1732         for m in final_static_modules:
1733             if m.find(p) == 0:
1734                 if not p in static_list:
1735                     static_list[p] = []
1736                 static_list[p].append(m)
1737         for m in final_shared_modules:
1738             if m.find(p) == 0:
1739                 if not p in shared_list:
1740                     shared_list[p] = []
1741                 shared_list[p].append(m)
1742
1743     for p in prefixes:
1744         static_env = "%s_STATIC" % p.upper()
1745         shared_env = "%s_SHARED" % p.upper()
1746         conf.env[static_env] = []
1747         conf.env[shared_env] = []
1748         if p in static_list:
1749             decl_list=""
1750             for entry in static_list[p]:
1751                 decl_list += "extern NTSTATUS %s_init(void); " % entry
1752                 conf.env[static_env].append('%s' % entry)
1753             decl_list = decl_list.rstrip()
1754             conf.DEFINE('static_decl_%s' % p, decl_list)
1755             conf.DEFINE('static_init_%s' % p, '{ %s_init(); }' % '_init();  '.join(static_list[p]))
1756         else:
1757             conf.DEFINE('static_decl_%s' % p, '')
1758             conf.DEFINE('static_init_%s' % p, '{}')
1759         if p in shared_list:
1760             for entry in shared_list[p]:
1761                 conf.DEFINE('%s_init' % entry, 'samba_init_module')
1762                 conf.env[shared_env].append('%s' % entry)
1763         Logs.info("%s: %s" % (static_env, ','.join(conf.env[static_env])))
1764         Logs.info("%s: %s" % (shared_env, ','.join(conf.env[shared_env])))
1765
1766     conf.SAMBA_CONFIG_H('include/config.h')
1767
1768 def ctags(ctx):
1769     "build 'tags' file using ctags"
1770     import Utils
1771     source_root = os.path.dirname(Utils.g_module.root_path)
1772     cmd = 'ctags $(find %s/.. -name "*.[ch]" | grep -v "*_proto\.h")' % source_root
1773     print("Running: %s" % cmd)
1774     os.system(cmd)
1775