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