10 from optparse
import SUPPRESS_HELP
11 sys
.path
.insert(0, srcdir
+"/buildtools/wafsamba")
12 sys
.path
.insert(0, "source3")
13 import wafsamba
, Options
, Logs
, Utils
, Scripting
15 import samba_utils
, samba_version
19 if not os
.getenv('TOPLEVEL_BUILD'):
20 opt
.BUILTIN_DEFAULT('NONE')
21 opt
.PRIVATE_EXTENSION_DEFAULT('s3')
22 opt
.RECURSE('../lib/replace')
24 opt
.RECURSE('selftest')
25 opt
.RECURSE('../lib/nss_wrapper')
26 opt
.RECURSE('../lib/socket_wrapper')
27 opt
.RECURSE('../lib/tevent')
28 opt
.RECURSE('../lib/tdb')
30 opt
.add_option('--with-static-modules',
31 help=("Comma-separated list of names of modules to statically link in"),
32 action
="store", dest
='static_modules', default
=None)
33 opt
.add_option('--with-shared-modules',
34 help=("Comma-separated list of names of modules to build shared"),
35 action
="store", dest
='shared_modules', default
=None)
36 opt
.add_option('--enable-selftest',
37 help=("enable options necessary for selftest"),
38 action
="store_true", dest
='enable_selftest', default
=False)
40 opt
.SAMBA3_ADD_OPTION('winbind')
41 opt
.SAMBA3_ADD_OPTION('swat')
42 opt
.SAMBA3_ADD_OPTION('ads')
43 opt
.SAMBA3_ADD_OPTION('krb5')
44 opt
.SAMBA3_ADD_OPTION('ldap')
45 opt
.SAMBA3_ADD_OPTION('cups', with_name
="enable", without_name
="disable")
46 opt
.SAMBA3_ADD_OPTION('iprint', with_name
="enable", without_name
="disable")
47 opt
.SAMBA3_ADD_OPTION('merged-build', with_name
="enable", without_name
="disable")
48 opt
.SAMBA3_ADD_OPTION('pam')
49 opt
.SAMBA3_ADD_OPTION('pam_smbpass')
50 opt
.SAMBA3_ADD_OPTION('quotas')
51 opt
.SAMBA3_ADD_OPTION('sys-quotas')
52 opt
.SAMBA3_ADD_OPTION('sendfile-support')
53 opt
.SAMBA3_ADD_OPTION('utmp')
54 opt
.SAMBA3_ADD_OPTION('pthreadpool', with_name
="enable", without_name
="disable")
55 opt
.SAMBA3_ADD_OPTION('avahi', with_name
="enable", without_name
="disable")
56 opt
.SAMBA3_ADD_OPTION('iconv')
57 opt
.SAMBA3_ADD_OPTION('acl-support')
58 opt
.SAMBA3_ADD_OPTION('dnsupdate')
59 opt
.SAMBA3_ADD_OPTION('syslog')
60 opt
.SAMBA3_ADD_OPTION('automount')
61 opt
.SAMBA3_ADD_OPTION('aio-support')
62 opt
.SAMBA3_ADD_OPTION('profiling-data')
64 opt
.SAMBA3_ADD_OPTION('cluster-support')
66 opt
.add_option('--with-ctdb-dir',
67 help=("Directory under which ctdb is installed"),
68 action
="store", dest
='ctdb_dir', default
=None)
69 opt
.add_option('--enable-old-ctdb',
70 help=("enable building against (too) old version of ctdb (default=false)"),
71 action
="store_true", dest
='enable_old_ctdb', default
=False)
76 from samba_utils
import TO_LIST
78 if not conf
.env
.toplevel_build
:
79 version
= samba_version
.load_version(env
=conf
.env
)
80 conf
.DEFINE('CONFIG_H_IS_FROM_SAMBA', 1)
81 conf
.DEFINE('_SAMBA_BUILD_', version
.MAJOR
, add_to_cflags
=True)
82 conf
.DEFINE('HAVE_CONFIG_H', 1, add_to_cflags
=True)
84 if Options
.options
.developer
:
85 conf
.ADD_CFLAGS('-DDEVELOPER -DDEBUG_PASSWORD')
86 conf
.env
.developer
= True
88 if Options
.options
.with_swat
:
89 conf
.env
['build_swat'] = True
91 if not conf
.env
.toplevel_build
:
92 conf
.RECURSE('../lib/replace')
94 conf
.RECURSE('../lib/tdb')
95 conf
.RECURSE('../lib/talloc')
96 conf
.RECURSE('../lib/tevent')
97 conf
.RECURSE('../lib/popt')
98 conf
.RECURSE('../lib/nss_wrapper')
99 conf
.RECURSE('../lib/socket_wrapper')
100 conf
.RECURSE('../lib/zlib')
101 conf
.RECURSE('../libcli/smbreadline')
102 conf
.RECURSE('../lib/util')
104 conf
.ADD_EXTRA_INCLUDES('''#source3 #source3/include #lib/replace''')
105 if not conf
.env
.USING_SYSTEM_TDB
:
106 conf
.ADD_EXTRA_INCLUDES('#lib/tdb/include')
107 if not conf
.env
.USING_SYSTEM_TEVENT
:
108 conf
.ADD_EXTRA_INCLUDES('#lib/tevent')
109 if not conf
.env
.USING_SYSTEM_TALLOC
:
110 conf
.ADD_EXTRA_INCLUDES('#lib/talloc')
111 if not conf
.env
.USING_SYSTEM_POPT
:
112 conf
.ADD_EXTRA_INCLUDES('#lib/popt')
114 conf
.ADD_LDFLAGS("-Wl,--export-dynamic", testflags
=True)
116 conf
.CHECK_HEADERS('execinfo.h libexc.h libunwind.h netdb.h')
117 conf
.CHECK_HEADERS('linux/falloc.h')
119 conf
.CHECK_FUNCS('getcwd fchown chmod fchmod mknod mknod64')
120 conf
.CHECK_FUNCS('strtol strchr strupr chflags')
121 conf
.CHECK_FUNCS('getrlimit fsync fdatasync setpgid')
122 conf
.CHECK_FUNCS('setsid glob strpbrk crypt16 getauthuid')
123 conf
.CHECK_FUNCS('sigprocmask sigblock sigaction sigset innetgr')
124 conf
.CHECK_FUNCS('initgroups select poll rdchk getgrnam getgrent pathconf')
125 conf
.CHECK_FUNCS('setpriv setgidx setuidx setgroups sysconf stat64 fstat64')
126 conf
.CHECK_FUNCS('lstat64 fopen64 atexit grantpt lseek64 ftruncate64 fallocate fallocate64 posix_fallocate posix_fallocate64')
127 conf
.CHECK_FUNCS('fseeko fseek64 fseeko64 ftell64 ftello64 setluid')
128 conf
.CHECK_FUNCS('getpwnam', headers
='sys/types.h pwd.h')
129 conf
.CHECK_FUNCS('opendir64 readdir64 seekdir64 telldir64 rewinddir64 closedir64')
130 conf
.CHECK_FUNCS('fdopendir fdopendir64')
131 conf
.CHECK_FUNCS('getpwent_r getdents64 setenv strcasecmp fcvt fcvtl')
132 conf
.CHECK_FUNCS('syslog vsyslog timegm setlocale nl_langinfo')
133 conf
.CHECK_FUNCS_IN('nanosleep', 'rt')
134 conf
.CHECK_FUNCS('lutimes futimes utimensat futimens')
135 conf
.CHECK_FUNCS('mlock munlock mlockall munlockall')
136 conf
.CHECK_FUNCS('memalign posix_memalign hstrerror')
137 conf
.CHECK_FUNCS('shmget')
138 conf
.CHECK_FUNCS_IN('shm_open', 'rt', checklibc
=True)
139 conf
.CHECK_FUNCS('gettext dgettext bindtextdomain textdomain')
140 #FIXME: for some reason this one still fails
141 conf
.CHECK_FUNCS_IN('yp_get_default_domain', 'nsl')
142 conf
.CHECK_FUNCS_IN('dn_expand _dn_expand __dn_expand', 'resolv')
143 conf
.CHECK_DECLS('fdatasync', reverse
=True)
144 conf
.CHECK_DECLS('readahead', reverse
=True, headers
='fcntl.h')
146 if conf
.CONFIG_SET('HAVE_LONG_LONG'):
147 conf
.DEFINE('HAVE_LONGLONG', 1)
149 if conf
.CHECK_CODE('''
150 #if defined(HAVE_UNISTD_H)
153 long ret = splice(0,0,1,0,400,0);
157 conf
.CHECK_DECLS('splice', reverse
=True, headers
='fcntl.h')
159 # Check for inotify support
160 conf
.CHECK_HEADERS('linux/inotify.h asm/unistd.h sys/inotify.h')
161 conf
.CHECK_FUNCS('inotify_init')
162 if "HAVE_INOTIFY_INIT" in conf
.env
:
163 if "HAVE_LINUX_INOTIFY_H" in conf
.env
or "HAVE_SYS_INOTIFY_H" in conf
.env
:
164 conf
.DEFINE('HAVE_INOTIFY', 1)
166 # Check for kernel change notify support
169 #define F_NOTIFY 1026
172 exit(fcntl(open("/tmp", O_RDONLY), F_NOTIFY, 0) == -1 ? 1 : 0);
173 }''', 'HAVE_KERNEL_CHANGE_NOTIFY', addmain
=False, execute
=True,
174 headers
='fcntl.h signal.h',
175 msg
="Checking for kernel change notify support")
177 # Check for Linux kernel oplocks
179 #include <sys/types.h>
183 #define F_NOTIFY 1026
186 exit(fcntl(open("/tmp", O_RDONLY), F_NOTIFY, 0) == -1 ? 1 : 0);
187 }''', 'HAVE_KERNEL_OPLOCKS_LINUX', addmain
=False, execute
=True,
188 msg
="Checking for Linux kernel oplocks")
190 # Check for IRIX kernel oplock types
191 conf
.CHECK_CODE('oplock_stat_t t; t.os_state = OP_REVOKE; t.os_dev = 1; t.os_ino = 1;',
192 'HAVE_KERNEL_OPLOCKS_IRIX', headers
='fcntl.h',
193 msg
="Checking for IRIX kernel oplock types")
195 # Check for kernel share modes
197 #include <sys/types.h>
200 #include <sys/file.h>
206 exit(flock(open("/dev/null", O_RDWR), LOCK_MAND|LOCK_READ) != 0);
207 }''', 'HAVE_KERNEL_SHARE_MODES', addmain
=False, execute
=True,
208 msg
="Checking for krenel share modes")
210 # Check for various members of the stat structure
211 conf
.CHECK_TYPES('blksize_t blkcnt_t')
212 conf
.CHECK_STRUCTURE_MEMBER('struct stat', 'st_blocks', define
='HAVE_STAT_ST_BLOCKS',
213 headers
='sys/stat.h')
214 conf
.CHECK_STRUCTURE_MEMBER('struct stat', 'st_blksize', define
='HAVE_STAT_ST_BLKSIZE',
215 headers
='sys/stat.h')
216 conf
.CHECK_STRUCTURE_MEMBER('struct stat', 'st_flags', define
='HAVE_STAT_ST_FLAGS',
217 headers
='sys/types.h sys/stat.h unistd.h')
219 # Check for POSIX capability support
220 conf
.CHECK_FUNCS_IN('cap_get_proc', 'cap', headers
='sys/capability.h')
222 if "HAVE_SYS_CAPABILITY_H" in conf
.env
:
226 if (!(cap = cap_get_proc())) exit(1);
228 cap_set_flag(cap, CAP_INHERITABLE, 1, vals, CAP_CLEAR);
229 cap_set_proc(cap);''',
230 'HAVE_POSIX_CAPABILITIES', execute
=True, lib
="cap",
231 headers
='sys/capability.h',
232 msg
="Checking whether POSIX capabilities are available")
234 # Check for int16, uint16, int32 and uint32 in rpc/types.h included from
235 # rpc/rpc.h. This is *really* broken but some systems (DEC OSF1) do this.
237 if conf
.CONFIG_SET("HAVE_RPC_RPC_H"):
238 conf
.CHECK_TYPE('int16', headers
='rpc/rpc.h',
239 define
='HAVE_INT16_FROM_RPC_RPC_H',
240 msg
="Checking for int16 typedef included by rpc/rpc.h")
241 conf
.CHECK_CODE('uint16 testvar;', 'HAVE_INT16_FROM_RPC_RPC_H',
242 headers
='sys/types.h rpc/rpc.h',
243 msg
="Checking for uint16 typedef included by rpc/rpc.h")
244 conf
.CHECK_CODE('int32 testvar;', 'HAVE_INT16_FROM_RPC_RPC_H',
245 headers
='sys/types.h rpc/rpc.h',
246 msg
="Checking for int32 typedef included by rpc/rpc.h")
247 conf
.CHECK_CODE('uint32 testvar;', 'HAVE_INT16_FROM_RPC_RPC_H',
248 headers
='sys/types.h rpc/rpc.h',
249 msg
="Checking for uint32 typedef included by rpc/rpc.h")
250 conf
.CHECK_CODE('int i;', 'BROKEN_NISPLUS_INCLUDE_FILES',
251 headers
='sys/types.h sys/acl.h rpcsvc/nis.h',
252 msg
="Checking for broken nisplus include files")
254 # Check if the compiler will optimize out functions
257 this_function_does_not_exist();
260 }''', 'HAVE_COMPILER_WILL_OPTIMIZE_OUT_FNS',
261 msg
="Checking if the compiler will optimize out functions")
263 # Check if the compiler supports the LL suffix on long long integers
265 conf
.CHECK_CODE('long long i = 0x8000000000LL', 'COMPILER_SUPPORTS_LL',
267 msg
="Checking for LL suffix on long long integers")
270 _acl __acl add_proplist_entry atexit attr_getf attr_list attr_listf
271 attropen attr_remove attr_removef attr_set attr_setf backtrace_symbols
272 bindtextdomain _chdir __chdir chflags chmod _close __close _closedir
273 __closedir closedir64 creat64 crypt16 delproplist devnm dgettext dirfd
274 DNSServiceRegister _dup __dup _dup2 __dup2 endmntent execl
275 extattr_delete_fd extattr_delete_link extattr_get_fd extattr_get_file
276 extattr_get_link extattr_list_fd extattr_list_file extattr_list_link
277 extattr_set_fd extattr_set_file extattr_set_link _facl __facl _fchdir
278 __fchdir fchmod fchown _fcntl __fcntl fcvt fcvtl fdatasync
279 fdelproplist fgetea fgetproplist fgetxattr flistea flistxattr fopen64
280 _fork __fork fremoveea fremovexattr fseeko fseek64 fseeko64 fsetea
281 fsetproplist fsetxattr _fstat __fstat fstat64 _fstat64 __fstat64 fsync
282 ftell64 ftello64 ftruncate64 futimens futimes __fxstat getauthuid
283 getcwd _getcwd __getcwd getdents __getdents getdents64 getdirentries
284 getgrent getgrnam getgrouplist getgrset getmntent getpagesize
285 getproplist get_proplist_entry getpwanam getpwent_r getrlimit gettext
286 glob grantpt hstrerror initgroups innetgr
287 inotify_init lgetea lgetxattr listea listxattr llistea llistxattr
288 llseek _llseek __llseek lremoveea lremovexattr _lseek __lseek lseek64
289 lsetea lsetxattr _lstat __lstat lstat64 _lstat64 __lstat64 lutimes
290 __lxstat memalign mknod mknod64 mlock mlockall munlock munlockall
291 nl_langinfo _open __open open64 _open64 __open64 _opendir __opendir
292 opendir64 pathconf poll posix_fallocate posix_fallocate64
293 posix_memalign prctl pread _pread __pread pread64 _pread64 __pread64
294 pwrite _pwrite __pwrite pwrite64 _pwrite64
295 __pwrite64 rdchk _read __read _readdir __readdir readdir64 _readdir64
296 __readdir64 removeea removexattr rewinddir64 _seekdir __seekdir
297 seekdir64 select setea setenv setgidx setgroups setlocale setluid
298 setmntent setpgid setpriv setproplist setsid setuidx
299 setxattr shmget shm_open sigaction sigblock sigprocmask sigset
300 sizeof_proplist_entry _stat __stat stat64 _stat64 __stat64 statvfs
301 strcasecmp strchr strpbrk strsignal strtol strupr sysconf sysctlbyname
302 __sys_llseek syslog _telldir __telldir telldir64 textdomain timegm
303 utimensat vsyslog _write __write __xstat
306 conf
.CHECK_SAMBA3_CHARSET() # see build/charset.py
308 # FIXME: these should be tests for features, but the old build system just
311 host_os
= sys
.platform
312 Logs
.info("building on %s" % host_os
)
314 # Python doesn't have case switches... :/
315 # FIXME: original was *linux* | gnu* | k*bsd*-gnu | kopensolaris*-gnu | *qnx*)
316 # the search for .rfind('gnu') covers gnu* and *-gnu is that too broad?
318 conf
.SET_TARGET_TYPE('sunacl', 'EMPTY')
319 if (host_os
.rfind('linux') > -1) or (host_os
.rfind('gnu') > -1) or (host_os
.rfind('qnx') > -1):
320 if host_os
.rfind('linux') > -1:
321 conf
.DEFINE('LINUX', '1')
322 elif host_os
.rfind('qnx') > -1:
323 conf
.DEFINE('QNX', '1')
324 conf
.DEFINE('STAT_ST_BLOCKSIZE', '512')
325 elif (host_os
.rfind('darwin') > -1):
326 conf
.DEFINE('DARWINOS', 1)
327 conf
.DEFINE('STAT_ST_BLOCKSIZE', '512')
328 conf
.ADD_CFLAGS('-fno-common')
329 elif (host_os
.rfind('freebsd') > -1):
330 if conf
.CHECK_HEADERS('sunacl.h'):
331 conf
.define('HAVE_FREEBSD_SUNACL_H', '1')
332 conf
.CHECK_FUNCS_IN('acl', 'sunacl')
333 conf
.DEFINE('STAT_ST_BLOCKSIZE', '512')
334 elif (host_os
.rfind('netbsd') > -1):
335 conf
.DEFINE('STAT_ST_BLOCKSIZE', '512')
336 elif (host_os
.rfind('openbsd') > -1):
337 conf
.DEFINE('STAT_ST_BLOCKSIZE', '512')
338 elif (host_os
.rfind('sunos') > -1):
339 conf
.DEFINE('STAT_ST_BLOCKSIZE', '512')
340 # FIXME: Add more checks here.
342 Logs
.warn("Unknown host_os '%s', please report this to samba-technical@samba.org" % host_os
)
344 #FIXME: add more checks
345 if Options
.options
.with_acl_support
:
346 if host_os
.rfind('linux') > -1:
347 conf
.CHECK_FUNCS_IN('acl_get_file', 'acl')
348 conf
.CHECK_FUNCS_IN('getxattr', 'attr')
349 if conf
.CHECK_CODE('''
352 acl_entry_t *entry_p;
353 return acl_get_entry(acl, entry_id, entry_p);
356 headers
='sys/types.h sys/acl.h', link
=False,
357 msg
="Checking for POSIX ACL support") :
359 acl_permset_t permset_d;
361 return acl_get_perm_np(permset_d, perm);
363 'HAVE_ACL_GET_PERM_NP',
364 headers
='sys/types.h sys/acl.h', link
=True,
365 msg
="Checking whether acl_get_perm_np() is available")
367 conf
.DEFINE('HAVE_NO_ACLS', 1)
368 conf
.SET_TARGET_TYPE('acl', 'EMPTY')
370 conf
.DEFINE('HAVE_NO_ACLS', 1)
371 conf
.SET_TARGET_TYPE('acl', 'EMPTY')
373 if conf
.CHECK_FUNCS('dirfd'):
374 conf
.DEFINE('HAVE_DIRFD_DECL', 1)
376 conf
.CHECK_CODE('struct statfs fsd; fsid_t fsid = fsd.f_fsid; return statfs(".", &fsd);',
377 'HAVE_STATFS_F_FSID',
378 msg
="vfs_fileid: checking for statfs() and struct statfs.f_fsid",
379 headers
='sys/types.h sys/statfs.h',
382 if conf
.CONFIG_SET('HAVE_FALLOCATE'):
384 #if defined(HAVE_UNISTD_H)
387 #include <sys/types.h>
390 #if defined(HAVE_LINUX_FALLOC_H)
391 #include <linux/falloc.h>
393 int ret = fallocate(0, FALLOC_FL_KEEP_SIZE, 0, 10);''',
394 'HAVE_LINUX_FALLOCATE',
395 msg
="Checking whether the Linux 'fallocate' function is available")
396 if conf
.CONFIG_SET('HAVE_FALLOCATE64'):
398 #if defined(HAVE_UNISTD_H)
401 #include <sys/types.h>
404 #if defined(HAVE_LINUX_FALLOC_H)
405 #include <linux/falloc.h>
407 int ret = fallocate64(0, FALLOC_FL_KEEP_SIZE, 0, 10);''',
408 'HAVE_LINUX_FALLOCATE64',
409 msg
="Checking whether the Linux 'fallocate64' function is available")
411 #if defined(HAVE_UNISTD_H)
415 ssize_t err = readahead(0,0,0x80000);''',
416 'HAVE_LINUX_READAHEAD',
417 msg
="Checking whether Linux readahead is available")
418 conf
.CHECK_DECLS('readahead', headers
='fcntl.h', always
=True)
421 #include <sys/types.h>
422 #include <sys/socket.h>],
425 int ret = getsockopt(0, SOL_SOCKET, SO_PEERCRED, &cred, &cred_len);''',
427 msg
="Checking whether we can use SO_PEERCRED to get socket credentials")
430 #if defined(HAVE_LONGLONG) && (defined(HAVE_OFF64_T) || (defined(SIZEOF_OFF_T) && (SIZEOF_OFF_T == 8)))
431 #include <sys/types.h>
436 'HAVE_EXPLICIT_LARGEFILE_SUPPORT',
437 msg
="Checking whether large file support can be enabled")
439 if Options
.options
.with_aio_support
:
440 conf
.CHECK_FUNCS_IN('aio_read', 'aio')
441 conf
.CHECK_FUNCS_IN('aio_read', 'rt')
442 conf
.CHECK_CODE('struct aiocb a; return aio_read(&a);',
444 msg
='Checking for asynchronous io support',
445 headers
='sys/types.h aio.h',
447 conf
.CHECK_CODE('struct aiocb64 a; return aio_read64(&a);',
449 msg
='Checking for 64-bit asynchronous io support',
450 headers
='sys/types.h aio.h',
452 if conf
.CONFIG_SET('HAVE_AIO64'):
453 conf
.DEFINE('HAVE_AIOCB64', '1')
454 conf
.DEFINE('WITH_AIO', '1')
455 elif conf
.CONFIG_SET('HAVE_AIO'):
456 conf
.DEFINE('WITH_AIO', '1')
457 if conf
.CONFIG_SET('HAVE_AIO'):
458 conf
.CHECK_CODE('struct aiocb a; return aio_read(&a);', 'HAVE_AIO_READ', msg
='Checking for aio_read', headers
='aio.h', lib
='aio rt')
459 conf
.CHECK_CODE('struct aiocb a; return aio_write(&a);', 'HAVE_AIO_WRITE', msg
='Checking for aio_write', headers
='aio.h', lib
='aio rt')
460 conf
.CHECK_CODE('struct aiocb a; return aio_fsync(1, &a);', 'HAVE_AIO_FSYNC', msg
='Checking for aio_fsync', headers
='aio.h', lib
='aio rt')
461 conf
.CHECK_CODE('struct aiocb a; return aio_return(&a);', 'HAVE_AIO_RETURN', msg
='Checking for aio_return', headers
='aio.h', lib
='aio rt')
462 conf
.CHECK_CODE('struct aiocb a; return aio_error(&a);', 'HAVE_AIO_ERROR', msg
='Checking for aio_error', headers
='aio.h', lib
='aio rt')
463 conf
.CHECK_CODE('struct aiocb a; return aio_cancel(1, &a);', 'HAVE_AIO_CANCEL', msg
='Checking for aio_cancel', headers
='aio.h', lib
='aio rt')
464 conf
.CHECK_CODE('struct aiocb a; return aio_suspend(&a, 1, NULL);', 'HAVE_AIO_SUSPEND', msg
='Checking for aio_suspend', headers
='aio.h', lib
='aio rt')
465 if conf
.CONFIG_SET('HAVE_AIO64'):
466 conf
.CHECK_CODE('struct aiocb a; return aio_read64(&a);', 'HAVE_AIO_READ64', msg
='Checking for aio_read64', headers
='aio.h', lib
='aio rt')
467 conf
.CHECK_CODE('struct aiocb a; return aio_write64(&a);', 'HAVE_AIO_WRITE64', msg
='Checking for aio_write64', headers
='aio.h', lib
='aio rt')
468 conf
.CHECK_CODE('struct aiocb a; return aio_fsync64(1, &a);', 'HAVE_AIO_FSYNC64', msg
='Checking for aio_fsync64', headers
='aio.h', lib
='aio rt')
469 conf
.CHECK_CODE('struct aiocb a; return aio_return64(&a);', 'HAVE_AIO_RETURN64', msg
='Checking for aio_return64', headers
='aio.h', lib
='aio rt')
470 conf
.CHECK_CODE('struct aiocb a; return aio_error64(&a);', 'HAVE_AIO_ERROR64', msg
='Checking for aio_error64', headers
='aio.h', lib
='aio rt')
471 conf
.CHECK_CODE('struct aiocb a; return aio_cancel64(1, &a);', 'HAVE_AIO_CANCEL64', msg
='Checking for aio_cancel64', headers
='aio.h', lib
='aio rt')
472 conf
.CHECK_CODE('struct aiocb a; return aio_suspend64(&a, 1, NULL);', 'HAVE_AIO_SUSPEND64', msg
='Checking for aio_suspend64', headers
='aio.h', lib
='aio rt')
473 if not conf
.CONFIG_SET('HAVE_AIO'):
474 conf
.DEFINE('HAVE_NO_AIO', '1')
476 conf
.DEFINE('HAVE_NO_AIO', '1')
482 char control[CMSG_SPACE(sizeof(int))];
484 msg.msg_control = control_un.control;
485 msg.msg_controllen = sizeof(control_un.control);
487 'HAVE_MSGHDR_MSG_CONTROL',
488 msg
='Checking if we can use msg_control for passing file descriptors',
489 headers
='sys/types.h stdlib.h stddef.h sys/socket.h sys/un.h')
493 msg.msg_acctrights = (caddr_t) &fd;
494 msg.msg_acctrightslen = sizeof(fd);
496 'HAVE_MSGHDR_MSG_ACCTRIGHTS',
497 msg
='Checking if we can use msg_acctrights for passing file descriptors',
498 headers
='sys/types.h stdlib.h stddef.h sys/socket.h sys/un.h')
500 if Options
.options
.with_winbind
:
501 conf
.env
.build_winbind
= True
502 conf
.DEFINE('WITH_WINBIND', '1')
504 conf
.find_program('awk', var
='AWK')
505 conf
.find_program('perl', var
='PERL')
507 # Darwin has extra options to xattr-family functions
508 conf
.CHECK_CODE('getxattr(0, 0, 0, 0, 0, 0);',
510 msg
="Checking whether xattr interface takes additional options",
511 headers
='sys/types.h attr/xattr.h sys/xattr.h')
513 conf
.CHECK_HEADERS('asm/types.h')
515 conf
.CHECK_CODE('dev_t dev; int i = major(dev); return 0', "HAVE_DEVICE_MAJOR_FN",
516 headers
='unistd.h sys/types.h',
517 msg
="Checking for major macro")
519 conf
.CHECK_CODE('dev_t dev; int i = minor(dev); return 0', "HAVE_DEVICE_MINOR_FN",
520 headers
='unistd.h sys/types.h',
521 msg
="Checking for minor macro")
523 conf
.CHECK_STRUCTURE_MEMBER('struct dirent', 'd_off',
524 headers
='unistd.h sys/types.h dirent.h',
525 define
='HAVE_DIRENT_D_OFF')
527 conf
.CHECK_FUNCS('setnetgrent getnetgrent endnetgrent')
528 if conf
.CHECK_CFLAGS('-Werror-implicit-function-declaration'):
529 netgrent_cflags
= '-Werror-implicit-function-declaration'
532 conf
.CHECK_CODE('setnetgrent("foo")', 'HAVE_SETNETGRENT_PROTOTYPE',
533 msg
="Checking for setnetgrent prototype",
534 headers
='netdb.h netgroup.h',
535 cflags
=netgrent_cflags
)
536 conf
.CHECK_CODE('getnetgrent', 'HAVE_GETNETGRENT_PROTOTYPE',
537 msg
="Checking for getnetgrent prototype",
538 headers
='netdb.h netgroup.h',
539 cflags
=netgrent_cflags
)
540 conf
.CHECK_CODE('endnetgrent', 'HAVE_ENDNETGRENT_PROTOTYPE',
541 msg
="Checking for endnetgrent prototype",
542 headers
='netdb.h netgroup.h',
543 cflags
=netgrent_cflags
)
547 if Options
.options
.with_cups
:
548 conf
.find_program('cups-config', var
='CUPS_CONFIG')
549 if conf
.env
.CUPS_CONFIG
:
550 # we would normally use --libs here, but cups-config incorrectly adds
551 # gssapi_krb5 and other libraries to its --libs output. That breaks the use
552 # of an in-tree heimdal kerberos
553 conf
.check_cfg(path
=conf
.env
.CUPS_CONFIG
, args
="--cflags --ldflags",
554 package
="", uselib_store
="cups")
555 conf
.CHECK_HEADERS('cups/cups.h cups/language.h', lib
='cups')
556 conf
.CHECK_FUNCS_IN('httpConnect httpConnectEncrypt', 'cups')
557 if conf
.CONFIG_SET('HAVE_CUPS_CUPS_H') and conf
.CONFIG_SET('HAVE_CUPS_LANGUAGE_H'):
558 conf
.DEFINE('HAVE_CUPS', '1')
560 conf
.undefine('HAVE_CUPS')
561 conf
.SET_TARGET_TYPE('cups', 'EMPTY')
563 # define an empty subsystem for cups, to allow it to be used as an empty dependency
564 conf
.SET_TARGET_TYPE('cups', 'EMPTY')
566 if Options
.options
.with_iprint
:
567 if conf
.CONFIG_SET('HAVE_CUPS'):
568 conf
.DEFINE('HAVE_IPRINT', '1')
570 Logs
.warn("--enable-iprint=yes but cups support not sufficient")
571 if Options
.options
.with_syslog
:
572 conf
.DEFINE('WITH_SYSLOG', '1')
573 if Options
.options
.with_automount
:
574 conf
.DEFINE('WITH_AUTOMOUNT', '1')
577 if Options
.options
.with_ldap
:
578 conf
.CHECK_HEADERS('ldap.h lber.h')
579 conf
.CHECK_TYPE('ber_tag_t', 'unsigned int', headers
='ldap.h lber.h')
580 conf
.CHECK_FUNCS_IN('ber_scanf ber_sockbuf_add_io', 'lber')
581 conf
.CHECK_VARIABLE('LDAP_OPT_SOCKBUF', headers
='ldap.h')
583 # if we LBER_OPT_LOG_PRINT_FN we can intercept ldap logging and print it out
585 conf
.CHECK_VARIABLE('LBER_OPT_LOG_PRINT_FN',
586 define
='HAVE_LBER_LOG_PRINT_FN', headers
='lber.h')
588 conf
.CHECK_FUNCS_IN('ldap_init ldap_initialize ldap_set_rebind_proc', 'ldap')
589 conf
.CHECK_FUNCS_IN('ldap_add_result_entry', 'ldap')
591 # Check if ldap_set_rebind_proc() takes three arguments
592 if conf
.CHECK_CODE('ldap_set_rebind_proc(0, 0, 0)',
593 'LDAP_SET_REBIND_PROC_ARGS',
594 msg
="Checking whether ldap_set_rebind_proc takes 3 arguments",
595 headers
='ldap.h lber.h', link
=False):
596 conf
.DEFINE('LDAP_SET_REBIND_PROC_ARGS', '3')
598 conf
.DEFINE('LDAP_SET_REBIND_PROC_ARGS', '2')
600 # last but not least, if ldap_init() exists, we want to use ldap
601 if conf
.CONFIG_SET('HAVE_LDAP_INIT'):
602 conf
.DEFINE('HAVE_LDAP', '1')
603 conf
.DEFINE('LDAP_DEPRECATED', '1')
604 conf
.env
['HAVE_LDAP'] = '1'
605 # if ber_sockbuf_add_io() and LDAP_OPT_SOCKBUF are available, we can add
606 # SASL wrapping hooks
607 if conf
.CONFIG_SET('HAVE_BER_SOCKBUF_ADD_IO') and \
608 conf
.CONFIG_SET('HAVE_LDAP_OPT_SOCKBUF'):
609 conf
.DEFINE('HAVE_LDAP_SASL_WRAPPING', '1')
611 conf
.SET_TARGET_TYPE('ldap', 'EMPTY')
612 conf
.SET_TARGET_TYPE('lber', 'EMPTY')
616 if Options
.options
.with_krb5
and not conf
.env
.toplevel_build
:
617 Logs
.info("Looking for kerberos features")
618 conf
.find_program('krb5-config', var
='KRB5_CONFIG')
619 if conf
.env
.KRB5_CONFIG
:
620 conf
.check_cfg(path
="krb5-config", args
="--cflags --libs",
621 package
="gssapi", uselib_store
="krb5")
622 conf
.CHECK_HEADERS('krb5.h krb5/locate_plugin.h', lib
='krb5')
623 conf
.CHECK_HEADERS('gssapi.h gssapi/gssapi_generic.h gssapi/gssapi.h gssapi/gssapi_ext.h com_err.h', lib
='krb5')
625 if conf
.CONFIG_SET('HAVE_KRB5_LOCATE_PLUGIN_H'):
626 conf
.env
['WINBIND_KRB5_LOCATOR'] = 'bin/winbind_krb5_locator.so'
628 conf
.CHECK_FUNCS_IN('_et_list', 'com_err')
629 conf
.CHECK_FUNCS_IN('krb5_encrypt_data', 'k5crypto')
630 conf
.CHECK_FUNCS_IN('crypto', 'des_set_key')
631 conf
.CHECK_FUNCS_IN('copy_Authenticator', 'asn1')
632 conf
.CHECK_FUNCS_IN('roken_getaddrinfo_hostspec', 'roken')
633 if conf
.CHECK_FUNCS_IN('gss_display_status', 'gssapi') or \
634 conf
.CHECK_FUNCS_IN('gss_display_status', 'gssapi_krb5'):
636 conf
.CHECK_FUNCS_IN('gss_wrap_iov', 'gssapi gssapi_krb5 krb5')
637 conf
.CHECK_FUNCS_IN('krb5_mk_req_extended krb5_kt_compare', 'krb5')
639 krb5_set_real_time krb5_set_default_in_tkt_etypes krb5_set_default_tgs_enctypes
640 krb5_set_default_tgs_ktypes krb5_principal2salt krb5_use_enctype
641 krb5_string_to_key krb5_get_pw_salt krb5_string_to_key_salt krb5_auth_con_setkey
642 krb5_auth_con_setuseruserkey krb5_get_permitted_enctypes
643 krb5_get_default_in_tkt_etypes krb5_free_data_contents
644 krb5_principal_get_comp_string krb5_free_unparsed_name
645 krb5_free_keytab_entry_contents krb5_kt_free_entry krb5_krbhst_init
646 krb5_krbhst_get_addrinfo krb5_c_enctype_compare krb5_enctypes_compatible_keys
647 krb5_crypto_init krb5_crypto_destroy krb5_decode_ap_req free_AP_REQ
648 krb5_verify_checksum krb5_c_verify_checksum krb5_principal_compare_any_realm
649 krb5_parse_name_norealm krb5_princ_size krb5_get_init_creds_opt_set_pac_request
650 krb5_get_renewed_creds krb5_get_kdc_cred krb5_free_error_contents
651 initialize_krb5_error_table krb5_get_init_creds_opt_alloc
652 krb5_get_init_creds_opt_free krb5_get_init_creds_opt_get_error
653 krb5_enctype_to_string krb5_fwd_tgt_creds krb5_auth_con_set_req_cksumtype
654 krb5_get_creds_opt_alloc krb5_get_creds_opt_set_impersonate krb5_get_creds
655 krb5_get_credentials_for_user krb5_get_host_realm krb5_free_host_realm''',
657 conf
.CHECK_DECLS('''krb5_get_credentials_for_user
658 krb5_auth_con_set_req_cksumtype''',
659 headers
='krb5.h', always
=True)
660 conf
.CHECK_VARIABLE('AP_OPTS_USE_SUBKEY', headers
='krb5.h')
661 conf
.CHECK_VARIABLE('KV5M_KEYTAB', headers
='krb5.h')
662 conf
.CHECK_VARIABLE('KRB5_KU_OTHER_CKSUM', headers
='krb5.h')
663 conf
.CHECK_VARIABLE('KRB5_KEYUSAGE_APP_DATA_CKSUM', headers
='krb5.h')
664 conf
.CHECK_STRUCTURE_MEMBER('krb5_keytab_entry', 'key', headers
='krb5.h',
665 define
='HAVE_KRB5_KEYTAB_ENTRY_KEY')
666 conf
.CHECK_STRUCTURE_MEMBER('krb5_keytab_entry', 'keyblock', headers
='krb5.h',
667 define
='HAVE_KRB5_KEYTAB_ENTRY_KEYBLOCK')
668 conf
.CHECK_STRUCTURE_MEMBER('krb5_address', 'magic', headers
='krb5.h',
669 define
='HAVE_MAGIC_IN_KRB5_ADDRESS')
670 conf
.CHECK_STRUCTURE_MEMBER('krb5_address', 'addrtype', headers
='krb5.h',
671 define
='HAVE_ADDRTYPE_IN_KRB5_ADDRESS')
672 conf
.CHECK_STRUCTURE_MEMBER('krb5_ticket', 'enc_part2', headers
='krb5.h',
673 define
='HAVE_KRB5_TKT_ENC_PART2')
674 conf
.CHECK_STRUCTURE_MEMBER('krb5_creds', 'keyblock', headers
='krb5.h',
675 define
='HAVE_KRB5_KEYBLOCK_IN_CREDS')
676 conf
.CHECK_STRUCTURE_MEMBER('krb5_creds', 'session', headers
='krb5.h',
677 define
='HAVE_KRB5_SESSION_IN_CREDS')
678 conf
.CHECK_STRUCTURE_MEMBER('krb5_ap_req', 'ticket', headers
='krb5.h',
679 define
='HAVE_TICKET_POINTER_IN_KRB5_AP_REQ')
681 conf
.CHECK_TYPE('krb5_encrypt_block', headers
='krb5.h')
686 krb5_enctype enctype;
687 enctype = ticket.enc_part.enctype;
688 kvno = ticket.enc_part.kvno;
690 'KRB5_TICKET_HAS_KEYINFO',
691 headers
='krb5.h', link
=False,
692 msg
="Checking whether the krb5_ticket structure contains the kvno and enctype")
695 krb5_get_init_creds_opt *opt = NULL;
696 krb5_get_init_creds_opt_free(ctx, opt);
698 'KRB5_CREDS_OPT_FREE_REQUIRES_CONTEXT',
699 headers
='krb5.h', link
=False,
700 msg
="Checking whether krb5_get_init_creds_opt_free takes a context argument")
701 conf
.CHECK_CODE('krb5_mk_error(0,0,0)',
702 'HAVE_SHORT_KRB5_MK_ERROR_INTERFACE',
703 headers
='krb5.h', link
=False,
704 msg
="Checking whether krb5_mk_error takes 3 arguments MIT or 9 Heimdal")
706 const krb5_data *pkdata;
707 krb5_context context;
708 krb5_principal principal;
709 pkdata = krb5_princ_component(context, principal, 0);
711 'HAVE_KRB5_PRINC_COMPONENT',
712 headers
='krb5.h', lib
='krb5',
713 msg
="Checking whether krb5_princ_component is available")
718 krb5_enctype_to_string(1, buf, 256);
721 'HAVE_KRB5_ENCTYPE_TO_STRING_WITH_SIZE_T_ARG',
722 headers
='krb5.h', lib
='krb5 k5crypto',
723 addmain
=False, cflags
='-Werror',
724 msg
="Checking whether krb5_enctype_to_string takes size_t argument")
728 krb5_context context = NULL;
730 krb5_enctype_to_string(context, 1, &str);
734 'HAVE_KRB5_ENCTYPE_TO_STRING_WITH_KRB5_CONTEXT_ARG',
735 headers
='krb5.h stdlib.h', lib
='krb5',
736 addmain
=False, cflags
='-Werror',
737 msg
="Checking whether krb5_enctype_to_string takes krb5_context argument")
740 krb5_context ctx = NULL;
741 krb5_principal princ = NULL;
742 const char *str = krb5_princ_realm(ctx, princ)->data;
745 'HAVE_KRB5_PRINC_REALM',
746 headers
='krb5.h', lib
='krb5',
748 msg
="Checking whether the macro krb5_princ_realm is defined")
751 krb5_context context;
752 krb5_principal principal;
753 const char *realm; realm = krb5_principal_get_realm(context, principal);
756 'HAVE_KRB5_PRINCIPAL_GET_REALM',
757 headers
='krb5.h', lib
='krb5',
759 msg
="Checking whether krb5_principal_get_realm is defined")
760 if conf
.CHECK_CODE('''krb5_verify_checksum(0, 0, 0, 0, 0, 0, 0);''',
761 'KRB5_VERIFY_CHECKSUM_ARGS',
762 headers
='krb5.h', lib
='krb5',
763 msg
="Checking whether krb5_verify_checksum takes 7 arguments"):
764 conf
.DEFINE('KRB5_VERIFY_CHECKSUM_ARGS', '7')
766 conf
.DEFINE('KRB5_VERIFY_CHECKSUM_ARGS', '6')
769 krb5_enctype enctype;
770 enctype = ENCTYPE_ARCFOUR_HMAC_MD5;
772 '_HAVE_ENCTYPE_ARCFOUR_HMAC_MD5',
773 headers
='krb5.h', lib
='krb5',
774 msg
="Checking whether the ENCTYPE_ARCFOUR_HMAC_MD5 key type definition is available");
776 krb5_keytype keytype;
777 keytype = KEYTYPE_ARCFOUR_56;
779 '_HAVE_KEYTYPE_ARCFOUR_56',
780 headers
='krb5.h', lib
='krb5',
781 msg
="Checking whether the HAVE_KEYTYPE_ARCFOUR_56 key type definition is available");
782 if conf
.CONFIG_SET('_HAVE_ENCTYPE_ARCFOUR_HMAC_MD5') and conf
.CONFIG_SET('_HAVE_KEYTYPE_ARCFOUR_56'):
783 conf
.DEFINE('HAVE_ENCTYPE_ARCFOUR_HMAC_MD5', '1')
786 krb5_enctype enctype;
787 enctype = ENCTYPE_ARCFOUR_HMAC;
789 'HAVE_ENCTYPE_ARCFOUR_HMAC',
790 headers
='krb5.h', lib
='krb5',
791 msg
="Checking whether the ENCTYPE_ARCFOUR_HMAC key type definition is available");
794 krb5_context context;
796 krb5_init_context(&context);
797 return krb5_kt_resolve(context, "WRFILE:api", &keytab);
799 'HAVE_WRFILE_KEYTAB',
800 headers
='krb5.h', lib
='krb5', execute
=True,
801 msg
="Checking whether the WRFILE:-keytab is supported");
803 # Check for KRB5_DEPRECATED handling
804 conf
.CHECK_CODE('''#define KRB5_DEPRECATED 1
805 #include <krb5.h>''',
806 'HAVE_KRB5_DEPRECATED_WITH_IDENTIFIER', addmain
=False,
808 msg
="Checking for KRB5_DEPRECATED define taking an identifier")
809 elif conf
.env
.toplevel_build
:
810 # setup the right defines for a in-tree heimdal build
811 Logs
.info("Using in-tree heimdal kerberos defines")
812 conf
.define('HAVE_GSSAPI', 1)
813 conf
.define('HAVE_GSSAPI_GSSAPI_H', 1)
814 conf
.define('HAVE_AP_OPTS_USE_SUBKEY', 1)
815 conf
.define('HAVE_KRB5_ADDRESSES', 1)
816 conf
.define('HAVE_KRB5_KEYTAB_ENTRY_KEYBLOCK', 1)
817 conf
.define('HAVE_KRB5_SET_REAL_TIME', 1)
818 conf
.define('HAVE_COM_ERR_H', 1)
819 conf
.define('HAVE_ADDR_TYPE_IN_KRB5_ADDRESS', 1)
820 conf
.define('HAVE_GSS_DISPLAY_STATUS', 1)
821 conf
.define('HAVE_LIBGSSAPI', 1)
822 conf
.define('HAVE_ADDR_TYPE_IN_KRB5_ADDRESS', 1)
823 conf
.define('HAVE_CHECKSUM_IN_KRB5_CHECKSUM', 1)
824 conf
.define('HAVE_DECL_KRB5_AUTH_CON_SET_REQ_CKSUMTYPE', 0)
825 conf
.define('HAVE_DECL_KRB5_GET_CREDENTIALS_FOR_USER', 0)
826 conf
.define('HAVE_E_DATA_POINTER_IN_KRB5_ERROR', 1)
827 conf
.define('HAVE_INITIALIZE_KRB5_ERROR_TABLE', 1)
828 conf
.define('HAVE_KRB5_ADDRESSES', 1)
829 conf
.define('HAVE_KRB5_AUTH_CON_SETKEY', 1)
830 conf
.define('HAVE_KRB5_CRYPTO', 1)
831 conf
.define('HAVE_KRB5_CRYPTO_DESTROY', 1)
832 conf
.define('HAVE_KRB5_CRYPTO_INIT', 1)
833 conf
.define('HAVE_KRB5_C_ENCTYPE_COMPARE', 1)
834 conf
.define('HAVE_KRB5_C_VERIFY_CHECKSUM', 1)
835 conf
.define('HAVE_FREE_AP_REQ', 1)
836 conf
.define('HAVE_KRB5_DECODE_AP_REQ', 1)
837 conf
.define('HAVE_KRB5_ENCTYPES_COMPATIBLE_KEYS', 1)
838 conf
.define('HAVE_KRB5_ENCTYPE_TO_STRING', 1)
839 conf
.define('HAVE_KRB5_ENCTYPE_TO_STRING_WITH_KRB5_CONTEXT_ARG', 1)
840 conf
.define('HAVE_KRB5_FREE_ERROR_CONTENTS', 1)
841 conf
.define('HAVE_KRB5_FREE_HOST_REALM', 1)
842 conf
.define('HAVE_KRB5_FWD_TGT_CREDS', 1)
843 conf
.define('HAVE_KRB5_GET_CREDS', 1)
844 conf
.define('HAVE_KRB5_GET_CREDS_OPT_ALLOC', 1)
845 conf
.define('HAVE_KRB5_GET_CREDS_OPT_SET_IMPERSONATE', 1)
846 conf
.define('HAVE_KRB5_GET_DEFAULT_IN_TKT_ETYPES', 1)
847 conf
.define('HAVE_KRB5_GET_HOST_REALM', 1)
848 conf
.define('HAVE_KRB5_GET_INIT_CREDS_OPT_ALLOC', 1)
849 conf
.define('HAVE_KRB5_GET_INIT_CREDS_OPT_FREE', 1)
850 conf
.define('HAVE_KRB5_GET_INIT_CREDS_OPT_GET_ERROR', 1)
851 conf
.define('HAVE_KRB5_GET_INIT_CREDS_OPT_SET_PAC_REQUEST', 1)
852 conf
.define('HAVE_KRB5_GET_KDC_CRED', 1)
853 conf
.define('HAVE_KRB5_GET_PW_SALT', 1)
854 conf
.define('HAVE_KRB5_GET_RENEWED_CREDS', 1)
855 conf
.define('HAVE_KRB5_KEYBLOCK_KEYVALUE', 1)
856 conf
.define('HAVE_KRB5_KEYTAB_ENTRY_KEYBLOCK', 1)
857 conf
.define('HAVE_KRB5_KRBHST_GET_ADDRINFO', 1)
858 conf
.define('HAVE_KRB5_KRBHST_INIT', 1)
859 conf
.define('HAVE_KRB5_KT_COMPARE', 1)
860 conf
.define('HAVE_KRB5_KT_FREE_ENTRY', 1)
861 conf
.define('HAVE_KRB5_KU_OTHER_CKSUM', 1)
862 conf
.define('HAVE_KRB5_LOCATE_PLUGIN_H', 1)
863 conf
.define('HAVE_KRB5_MK_REQ_EXTENDED', 1)
864 conf
.define('HAVE_KRB5_PRINCIPAL_COMPARE_ANY_REALM', 1)
865 conf
.define('HAVE_KRB5_PRINCIPAL_GET_COMP_STRING', 1)
866 conf
.define('HAVE_KRB5_PRINCIPAL_GET_REALM', 1)
867 conf
.define('HAVE_KRB5_REALM_TYPE', 1)
868 conf
.define('HAVE_KRB5_SESSION_IN_CREDS', 1)
869 conf
.define('HAVE_KRB5_SET_DEFAULT_IN_TKT_ETYPES', 1)
870 conf
.define('HAVE_KRB5_SET_REAL_TIME', 1)
871 conf
.define('HAVE_KRB5_STRING_TO_KEY', 1)
872 conf
.define('HAVE_KRB5_STRING_TO_KEY_SALT', 1)
873 conf
.define('HAVE_KRB5_VERIFY_CHECKSUM', 1)
874 conf
.define('HAVE_LIBKRB5', 1)
875 conf
.define('KRB5_CREDS_OPT_FREE_REQUIRES_CONTEXT', 1)
876 conf
.define('KRB5_VERIFY_CHECKSUM_ARGS', 6)
877 conf
.define('HAVE_ETYPE_IN_ENCRYPTEDDATA', 1)
878 conf
.define('KRB5_PRINC_REALM_RETURNS_REALM', 1)
879 conf
.define('HAVE_KRB5_PRINCIPAL_GET_REALM', 1)
880 conf
.define('HAVE_KRB5_H', 1)
881 conf
.define('HAVE_ENCTYPE_ARCFOUR_HMAC_MD5', 1)
882 conf
.define('HAVE_AP_OPTS_USE_SUBKEY', 1)
883 conf
.define('HAVE_ENCTYPE_ARCFOUR_HMAC_MD5', 1)
884 conf
.define('HAVE_ENCTYPE_ARCFOUR_HMAC', 1)
886 conf
.SET_TARGET_TYPE('krb5', 'EMPTY')
887 conf
.SET_TARGET_TYPE('gssapi', 'EMPTY')
888 conf
.SET_TARGET_TYPE('gssapi_krb5', 'EMPTY')
889 conf
.SET_TARGET_TYPE('com_err', 'EMPTY')
890 conf
.SET_TARGET_TYPE('k5crypto', 'EMPTY')
892 if Options
.options
.with_ads
:
894 if not conf
.CONFIG_SET('HAVE_ENCTYPE_ARCFOUR_HMAC_MD5') and \
895 not conf
.CONFIG_SET('HAVE_ENCTYPE_ARCFOUR_HMAC'):
896 Logs
.warn("arcfour-hmac-md5 encryption type not found in -lkrb5")
898 if not conf
.CONFIG_SET('HAVE_KRB5_MK_REQ_EXTENDED'):
899 Logs
.warn("krb5_mk_req_extended not found in -lkrb5")
901 if not conf
.CONFIG_SET('HAVE_KRB5_PRINCIPAL2SALT') and \
902 not conf
.CONFIG_SET('HAVE_KRB5_GET_PW_SALT'):
903 Logs
.warn("no CREATE_KEY_FUNCTIONS detected")
905 if not conf
.CONFIG_SET('HAVE_KRB5_GET_PERMITTED_ENCTYPES') and \
906 not conf
.CONFIG_SET('HAVE_KRB5_GET_DEFAULT_IN_TKT_ETYPES'):
907 Logs
.warn("no GET_ENCTYPES_FUNCTIONS detected")
909 if not conf
.CONFIG_SET('HAVE_KRB5_KT_FREE_ENTRY') and \
910 not conf
.CONFIG_SET('HAVE_KRB5_FREE_KEYTAB_ENTRY_CONTENTS'):
911 Logs
.warn("no KT_FREE_FUNCTION detected")
913 if not conf
.CONFIG_SET('HAVE_KRB5_C_VERIFY_CHECKSUM') and \
914 not conf
.CONFIG_SET('HAVE_KRB5_VERIFY_CHECKSUM'):
915 Logs
.warn("no KRB5_VERIFY_CHECKSUM_FUNCTION detected")
917 if not conf
.CONFIG_SET('KRB5_TICKET_HAS_KEYINFO'):
918 # We only need the following functions if we can't get the enctype
919 # and kvno out of the ticket directly (ie. on Heimdal).
920 if not conf
.CONFIG_SET('HAVE_FREE_AP_REQ'):
921 Logs
.warn("no KRB5_AP_REQ_FREE_FUNCTION detected")
923 if not conf
.CONFIG_SET('HAVE_KRB5_DECODE_AP_REQ'):
924 Logs
.warn("no KRB5_AP_REQ_DECODING_FUNCTION detected")
927 conf
.DEFINE('WITH_ADS', '1')
928 conf
.DEFINE('HAVE_KRB5', '1')
930 conf
.DEFINE('HAVE_GSSAPI', '1')
931 if conf
.CONFIG_SET('HAVE_LDAP'):
932 conf
.env
['HAVE_ADS'] = '1'
934 Logs
.warn("krb5 libs don't have all features required for Active Directory support")
935 conf
.undefine('HAVE_KRB5_H')
936 conf
.undefine('HAVE_GSSAPI_H')
937 conf
.undefine('HAVE_GSSAPI_GSSAPI_GENERIC_H')
938 conf
.undefine('HAVE_GSSAPI_GSSAPI_H')
940 if Options
.options
.with_utmp
:
941 conf
.CHECK_FUNCS('pututline pututxline updwtmp updwtmpx getutmpx getutxent')
942 conf
.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_name', headers
='utmp.h',
943 define
='HAVE_UT_UT_NAME')
944 conf
.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_user', headers
='utmp.h',
945 define
='HAVE_UT_UT_USER')
946 conf
.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_id', headers
='utmp.h',
947 define
='HAVE_UT_UT_ID')
948 conf
.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_host', headers
='utmp.h',
949 define
='HAVE_UT_UT_HOST')
950 conf
.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_time', headers
='utmp.h',
951 define
='HAVE_UT_UT_TIME')
952 conf
.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_tv', headers
='utmp.h',
953 define
='HAVE_UT_UT_TV')
954 conf
.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_type', headers
='utmp.h',
955 define
='HAVE_UT_UT_TYPE')
956 conf
.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_pid', headers
='utmp.h',
957 define
='HAVE_UT_UT_PID')
958 conf
.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_exit.e_exit', headers
='utmp.h',
959 define
='HAVE_UT_UT_EXIT')
960 conf
.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_addr_v6', headers
='utmp.h',
961 define
='HAVE_UT_UT_ADDR_V6')
962 conf
.CHECK_STRUCTURE_MEMBER('struct utmp', 'ut_addr', headers
='utmp.h',
963 define
='HAVE_UT_UT_ADDR')
964 conf
.CHECK_STRUCTURE_MEMBER('struct utmpx', 'ut_syslen', headers
='utmpx.h',
965 define
='HAVE_UX_UT_SYSLEN')
966 conf
.CHECK_CODE('struct utmp utarg; struct utmp *utreturn; utreturn = pututline(&utarg);',
967 'PUTUTLINE_RETURNS_UTMP', headers
='utmp.h',
968 msg
="Checking whether pututline returns pointer")
969 conf
.DEFINE('WITH_UTMP', 1)
971 if Options
.options
.with_avahi
:
972 conf
.env
.with_avahi
= True
973 if not conf
.CHECK_HEADERS('avahi-common/watch.h avahi-client/client.h'): conf
.env
.with_avahi
= False
974 if not conf
.CHECK_FUNCS_IN('avahi_client_new', 'avahi-client'): conf
.env
.with_avahi
= False
975 if not conf
.CHECK_FUNCS_IN('avahi_strerror', 'avahi-common'): conf
.env
.with_avahi
= False
976 if conf
.env
.with_avahi
:
977 conf
.DEFINE('WITH_AVAHI_SUPPORT', 1)
979 conf
.SET_TARGET_TYPE('avahi-common', 'EMPTY')
980 conf
.SET_TARGET_TYPE('avahi-client', 'EMPTY')
982 if Options
.options
.with_iconv
:
983 conf
.env
.with_iconv
= True
984 if not conf
.CHECK_FUNCS_IN('iconv_open', 'iconv', headers
='iconv.h'):
985 conf
.env
.with_iconv
= False
986 if conf
.env
.with_iconv
:
987 conf
.DEFINE('HAVE_ICONV', 1)
989 if Options
.options
.with_pam
:
991 conf
.CHECK_HEADERS('security/pam_appl.h pam/pam_appl.h')
992 if not conf
.CONFIG_SET('HAVE_SECURITY_PAM_APPL_H') and not conf
.CONFIG_SET('HAVE_PAM_PAM_APPL_H'):
993 Logs
.warn("--with-pam=yes but pam_appl.h not found")
995 conf
.CHECK_FUNCS_IN('pam_get_data', 'pam')
996 conf
.CHECK_HEADERS('security/pam_modules.h pam/pam_modules.h')
997 if not conf
.CONFIG_SET('HAVE_SECURITY_PAM_MODULES_H') and not conf
.CONFIG_SET('HAVE_PAM_PAM_MODULES_H'):
998 Logs
.warn("--with-pam=yes but pam_modules.h not found")
1000 conf
.CHECK_HEADERS('security/pam_ext.h security/_pam_macros.h')
1001 conf
.CHECK_HEADERS('pam/pam_ext.h pam/_pam_macros.h')
1002 conf
.CHECK_FUNCS_IN('pam_vsyslog', 'pam')
1004 #if defined(HAVE_SECURITY_PAM_APPL_H)
1005 #include <security/pam_appl.h>
1006 #elif defined(HAVE_PAM_PAM_APPL_H)
1007 #include <pam/pam_appl.h>
1009 pam_set_item(0, PAM_RHOST, 0);
1013 msg
="Checking whether PAM_RHOST is available");
1015 #if defined(HAVE_SECURITY_PAM_APPL_H)
1016 #include <security/pam_appl.h>
1017 #elif defined(HAVE_PAM_PAM_APPL_H)
1018 #include <pam/pam_appl.h>
1020 pam_set_item(0, PAM_TTY, 0);
1024 msg
="Checking whether PAM_TTY is available");
1026 #if (!defined(LINUX))
1028 #define PAM_EXTERN extern
1029 #if defined(HAVE_SECURITY_PAM_APPL_H)
1030 #include <security/pam_appl.h>
1031 #elif defined(HAVE_PAM_PAM_APPL_H)
1032 #include <pam/pam_appl.h>
1037 #if defined(HAVE_SECURITY_PAM_MODULES_H)
1038 #include <security/pam_modules.h>
1039 #elif defined(HAVE_PAM_PAM_MODULES_H)
1040 #include <pam/pam_modules.h>
1043 #if defined(HAVE_SECURITY__PAM_MACROS_H)
1044 #include <security/_pam_macros.h>
1045 #elif defined(HAVE_PAM__PAM_MACROS_H)
1046 #include <pam/_pam_macros.h>
1049 #ifdef HAVE_SECURITY_PAM_EXT_H
1050 #include <security/pam_ext.h>
1053 int i; i = PAM_RADIO_TYPE;
1055 'HAVE_PAM_RADIO_TYPE',
1057 msg
="Checking whether PAM_RADIO_TYPE is available");
1059 conf
.DEFINE('WITH_PAM', 1)
1060 conf
.DEFINE('WITH_PAM_MODULES', 1)
1064 seteuid
= conf
.CHECK_CODE('''
1065 #define AUTOCONF_TEST 1
1066 #define USE_SETREUID 1
1067 #include "./lib/util_sec.c"
1072 msg
="Checking whether setreuid is available")
1074 seteuid
= conf
.CHECK_CODE('''
1075 #define AUTOCONF_TEST 1
1076 #define USE_SETRESUID 1
1077 #include "./lib/util_sec.c"
1082 msg
="Checking whether setresuid is available")
1084 seteuid
= conf
.CHECK_CODE('''
1085 #define AUTOCONF_TEST 1
1086 #define USE_SETEUID 1
1087 #include "./lib/util_sec.c"
1092 msg
="Checking whether seteuid is available")
1094 seteuid
= conf
.CHECK_CODE('''
1095 #define AUTOCONF_TEST 1
1096 #define USE_SETUIDX 1
1097 #include "./lib/util_sec.c"
1103 msg
="Checking whether setuidx is available")
1104 if Options
.options
.with_dnsupdate
:
1105 conf
.CHECK_HEADERS('uuid/uuid.h')
1106 conf
.CHECK_FUNCS_IN('uuid_generate', 'uuid')
1107 if not conf
.CONFIG_SET('HAVE_UUID_UUID_H') and not conf
.CONFIG_SET('HAVE_UUID_GENERATE'):
1108 Logs
.warn("--with-dnsupdate=yes but uuid support not sufficient")
1109 elif not conf
.CONFIG_SET('HAVE_GSSAPI'):
1110 Logs
.warn("--with-dnsupdate=yes but gssapi support not sufficient")
1112 conf
.DEFINE('WITH_DNS_UPDATES', 1)
1114 conf
.SET_TARGET_TYPE('uuid', 'EMPTY')
1115 conf
.CHECK_HEADERS('valgrind.h valgrind/valgrind.h valgrind/memcheck.h')
1116 if Options
.options
.developer
:
1117 if conf
.CONFIG_SET('HAVE_VALGRIND_H') or conf
.CONFIG_SET('HAVE_VALGRIND_VALGRIND_H'):
1118 conf
.DEFINE('VALGRIND', '1')
1120 if conf
.CHECK_CODE('''
1121 #include <bits/sockaddr.h>
1122 #include <linux/netlink.h>
1124 'HAVE_LINUX_NETLINK_H',
1125 msg
="Checking whether Linux netlink is available"):
1127 #include <bits/sockaddr.h>
1128 #include <linux/netlink.h>
1129 #include <linux/rtnetlink.h>
1131 'HAVE_LINUX_RTNETLINK_H',
1132 msg
='Checking whether Linux rtnetlink is available')
1133 if conf
.CHECK_TYPE('struct dirent64', headers
='sys/types.h dirent.h') and conf
.CONFIG_SET('HAVE_READDIR64'):
1134 conf
.DEFINE('HAVE_STRUCT_DIRENT64', '1')
1136 conf
.undefine('HAVE_STRUCT_DIRENT64')
1139 #include "../tests/fcntl_lock.c"
1144 msg
='Checking whether fcntl locking is available')
1147 #include "../tests/fcntl_lock64.c"
1149 'HAVE_BROKEN_FCNTL64_LOCKS',
1152 msg
='Checking whether fcntl64 locks are broken')
1154 if not conf
.CONFIG_SET('HAVE_BROKEN_FCNTL64_LOCKS'):
1156 #if defined(HAVE_UNISTD_H)
1166 #ifdef HAVE_SYS_FCNTL_H
1167 #include <sys/fcntl.h>
1169 main() { struct flock64 fl64;
1170 #if defined(F_SETLKW64) && defined(F_SETLK64) && defined(F_GETLK64)
1177 'HAVE_STRUCT_FLOCK64',
1180 msg
="Checking whether the flock64 struct is available")
1182 conf
.CHECK_STRUCTURE_MEMBER('struct stat', 'st_mtim.tv_nsec',
1183 define
='HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC') # Linux, Solaris
1184 conf
.CHECK_STRUCTURE_MEMBER('struct stat', 'st_mtimensec',
1185 define
='HAVE_STRUCT_STAT_ST_MTIMENSEC') # BSD, if defined _POSIX_SOURCE
1186 conf
.CHECK_STRUCTURE_MEMBER('struct stat', 'st_mtimespec.tv_nsec',
1187 define
='HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC') # BSD, if not defined _POSIX_SOURCE
1188 conf
.CHECK_STRUCTURE_MEMBER('struct stat', 'st_mtime_n',
1189 define
='HAVE_STRUCT_STAT_ST_MTIME_N') # AIX
1190 conf
.CHECK_STRUCTURE_MEMBER('struct stat', 'st_umtime',
1191 define
='HAVE_STRUCT_STAT_ST_UMTIME') # Tru64
1192 if conf
.CONFIG_SET('HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC') or \
1193 conf
.CONFIG_SET('HAVE_STRUCT_STAT_ST_MTIMENSEC') or \
1194 conf
.CONFIG_SET('HAVE_STRUCT_STAT_ST_MTIMESPEC_TV_NSEC') or \
1195 conf
.CONFIG_SET('HAVE_STRUCT_STAT_ST_MTIME_N') or \
1196 conf
.CONFIG_SET('HAVE_STRUCT_STAT_ST_UMTIME'):
1197 conf
.DEFINE('HAVE_STAT_HIRES_TIMESTAMPS', '1')
1199 # recent FreeBSD, NetBSD have creation timestamps called birthtime:
1200 conf
.CHECK_STRUCTURE_MEMBER('struct stat', 'st_birthtime',
1201 define
='HAVE_STRUCT_STAT_ST_BIRTHTIME')
1202 conf
.CHECK_STRUCTURE_MEMBER('struct stat', 'st_birthtimespec.tv_nsec',
1203 define
='HAVE_STRUCT_STAT_ST_BIRTHTIMESPEC_TV_NSEC')
1204 conf
.CHECK_STRUCTURE_MEMBER('struct stat', 'st_birthtimensec',
1205 define
='HAVE_STRUCT_STAT_ST_BIRTHTIMENSEC')
1208 #if defined(HAVE_UNISTD_H)
1211 #include <fcntl.h>],
1212 ssize_t err = posix_fadvise(0,0,0x80000,POSIX_FADV_WILLNEED);
1214 'HAVE_POSIX_FADVISE',
1215 msg
='Checking whether posix_fadvise is available')
1217 for v
in ['_SC_NGROUPS_MAX', '_SC_NPROC_ONLN', '_SC_NPROCESSORS_ONLN', '_SC_PAGESIZE' ]:
1220 return sysconf(%s) == -1 ? 1 : 0;
1223 msg
='Checking whether sysconf(%s) is available' % v
)
1225 conf
.CHECK_DECLS('__NR_inotify_init', reverse
=True, headers
='asm/unistd.h')
1228 #include <sys/syscall.h>
1230 syscall(SYS_initgroups, 16, NULL, NULL, 0);
1232 'HAVE_DARWIN_INITGROUPS',
1233 msg
='Checking whether to use the Darwin-specific initgroups system call')
1235 conf
.CHECK_CODE('''struct utimbuf tbuf; tbuf.actime = 0; tbuf.modtime = 1; exit(utime("foo.c",&tbuf));''',
1237 headers
='sys/types.h utime.h',
1238 msg
='Checking whether struct utimbuf is available')
1240 if conf
.CHECK_CODE('''struct sigevent s;''',
1241 'HAVE_STRUCT_SIGEVENT',
1242 headers
='sys/types.h stdlib.h stddef.h signal.h',
1243 msg
='Checking whether we have the struct sigevent'):
1244 conf
.CHECK_STRUCTURE_MEMBER('struct sigevent', 'sigev_value.sival_ptr',
1245 define
='HAVE_STRUCT_SIGEVENT_SIGEV_VALUE_SIVAL_PTR',
1246 headers
='signal.h');
1247 conf
.CHECK_STRUCTURE_MEMBER('struct sigevent', 'sigev_value.sigval_ptr',
1248 define
='HAVE_STRUCT_SIGEVENT_SIGEV_VALUE_SIGVAL_PTR',
1249 headers
='signal.h');
1251 if os
.path
.exists('/proc/sys/kernel/core_pattern'):
1252 conf
.DEFINE('HAVE_SYS_KERNEL_PROC_CORE_PATTERN', '1')
1254 if conf
.CHECK_CODE('''
1258 if (sizeof(time_t) == 8) {
1259 time_t max_time = 0x7fffffffffffffffll;
1260 tm = gmtime(&max_time);
1261 /* This should fail with 32-bit tm_year. */
1263 /* Max time_t that works with 32-bit int tm_year in struct tm. */
1264 max_time = 67768036191676799ll;
1265 tm = gmtime(&max_time);
1276 msg
="Checking for the maximum value of the 'time_t' type"):
1277 conf
.DEFINE('TIME_T_MAX', '67768036191676799ll')
1280 #if defined(HAVE_UNISTD_H)
1283 #include <sys/types.h>
1284 main() { dev_t dev = makedev(1,2); return 0; }
1288 msg
='Checking whether the macro for makedev is available')
1295 void exit_on_core(int ignored) {
1301 signal(SIGSEGV, exit_on_core);
1302 newpath = realpath("/tmp", NULL);
1303 exit((newpath != NULL) ? 0 : 1);
1306 'REALPATH_TAKES_NULL',
1309 msg
='Checking whether the realpath function allows a NULL argument')
1311 conf
.CHECK_CODE('''#include "../tests/ftruncate.c"''',
1312 'HAVE_FTRUNCATE_EXTEND',
1313 msg
='Checking for ftruncate extend',
1316 if os
.getenv('RUN_FROM_BUILD_FARM'):
1317 Logs
.info("enabling buildfarm hacks")
1318 conf
.DEFINE('ENABLE_BUILD_FARM_HACKS', '1')
1320 if Options
.options
.with_sendfile_support
:
1321 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):
1326 ssize_t nwritten = sendfile64(tofd, fromfd, &offset, total);
1329 headers
='sys/sendfile',
1330 msg
='Checking for linux sendfile64 support')
1335 ssize_t nwritten = sendfile(tofd, fromfd, &offset, total);
1338 headers
='sys/sendfile',
1339 msg
='Checking for linux sendfile support')
1341 # Try and cope with broken Linux sendfile....
1342 conf
.CHECK_CODE('''#if defined(_FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64)
1343 #undef _FILE_OFFSET_BITS
1345 #include <sys/sendfile.h>
1349 ssize_t nwritten = sendfile(tofd, fromfd, &offset, total);
1351 '_HAVE_BROKEN_LINUX_SENDFILE',
1352 msg
='Checking for broken linux sendfile support')
1353 if conf
.CONFIG_SET('_HAVE_SENDFILE64'):
1354 conf
.DEFINE('HAVE_SENDFILE64', '1')
1355 conf
.DEFINE('LINUX_SENDFILE_API', '1')
1356 conf
.DEFINE('WITH_SENDFILE', '1')
1357 elif conf
.CONFIG_SET('_HAVE_SENDFILE'):
1358 conf
.DEFINE('HAVE_SENDFILE', '1')
1359 conf
.DEFINE('LINUX_SENDFILE_API', '1')
1360 conf
.DEFINE('WITH_SENDFILE', '1')
1361 elif conf
.CONFIG_SET('_HAVE_BROKEN_LINUX_SENDFILE'):
1362 conf
.DEFINE('LINUX_BROKEN_SENDFILE_API', '1')
1363 conf
.DEFINE('WITH_SENDFILE', '1')
1364 elif (host_os
.rfind('freebsd') > -1) or (host_os
.rfind('dragonfly') > -1):
1366 #include <sys/types.h>
1368 #include <sys/socket.h>
1369 #include <sys/uio.h>
1370 int fromfd, tofd, ret, total=0;
1371 off_t offset, nwritten;
1374 hdr.headers = &hdtrl;
1376 hdr.trailers = NULL;
1378 hdtrl.iov_base = NULL;
1380 ret = sendfile(fromfd, tofd, offset, total, &hdr, &nwritten, 0)
1383 msg
='Checking for freebsd sendfile support')
1384 if conf
.CONFIG_SET('_HAVE_SENDFILE'):
1385 conf
.DEFINE('HAVE_SENDFILE', '1')
1386 conf
.DEFINE('FREEBSD_SENDFILE_API', '1')
1387 conf
.DEFINE('WITH_SENDFILE', '1')
1388 elif (host_os
.rfind('hpux') > -1):
1390 #include <sys/socket.h>
1391 #include <sys/uio.h>
1394 struct iovec hdtrl[2];
1397 hdtrl[0].iov_base = 0;
1398 hdtrl[0].iov_len = 0;
1399 nwritten = sendfile64(tofd, fromfd, offset, total, &hdtrl[0], 0);
1402 msg
='Checking for hpux sendfile64 support')
1404 #include <sys/socket.h>
1405 #include <sys/uio.h>
1408 struct iovec hdtrl[2];
1411 hdtrl[0].iov_base = 0;
1412 hdtrl[0].iov_len = 0;
1413 nwritten = sendfile(tofd, fromfd, offset, total, &hdtrl[0], 0);
1416 msg
='Checking for hpux sendfile support')
1417 if conf
.CONFIG_SET('_HAVE_SENDFILE64'):
1418 conf
.DEFINE('HAVE_SENDFILE64', '1')
1419 conf
.DEFINE('HPUX_SENDFILE_API', '1')
1420 conf
.DEFINE('WITH_SENDFILE', '1')
1421 elif conf
.CONFIG_SET('_HAVE_SENDFILE'):
1422 conf
.DEFINE('HAVE_SENDFILE', '1')
1423 conf
.DEFINE('HPUX_SENDFILE_API', '1')
1424 conf
.DEFINE('WITH_SENDFILE', '1')
1425 elif (host_os
.rfind('solaris') > -1):
1426 conf
.CHECK_FUNCS_IN('sendfile', 'sendfilev')
1428 #include <sys/sendfile.h>
1431 struct sendfilevec vec[2];
1435 vec[0].sfv_fd = SFV_FD_SELF;
1436 vec[0].sfv_flag = 0;
1440 vec[1].sfv_flag = 0;
1443 nwritten = sendfilev64(tofd, vec, sfvcnt, &xferred);
1445 '_HAVE_SENDFILEV64',
1446 msg
='Checking for solaris sendfilev64 support')
1448 #include <sys/sendfile.h>,
1451 struct sendfilevec vec[2];
1455 vec[0].sfv_fd = SFV_FD_SELF;
1456 vec[0].sfv_flag = 0;
1460 vec[1].sfv_flag = 0;
1463 nwritten = sendfilev(tofd, vec, sfvcnt, &xferred);
1466 msg
='Checking for solaris sendfilev support')
1467 if conf
.CONFIG_SET('_HAVE_SENDFILEV64'):
1468 conf
.DEFINE('HAVE_SENDFILEV64', '1')
1469 conf
.DEFINE('SOLARIS_SENDFILE_API', '1')
1470 conf
.DEFINE('WITH_SENDFILE', '1')
1471 elif conf
.CONFIG_SET('_HAVE_SENDFILEV'):
1472 conf
.DEFINE('HAVE_SENDFILEV', '1')
1473 conf
.DEFINE('SOLARIS_SENDFILE_API', '1')
1474 conf
.DEFINE('WITH_SENDFILE', '1')
1475 elif (host_os
.rfind('aix') > -1):
1477 #include <sys/socket.h>
1480 struct sf_parms hdtrl;
1483 hdtrl.header_data = 0;
1484 hdtrl.header_length = 0;
1485 hdtrl.file_descriptor = fromfd;
1486 hdtrl.file_offset = 0;
1487 hdtrl.file_bytes = 0;
1488 hdtrl.trailer_data = 0;
1489 hdtrl.trailer_length = 0;
1490 nwritten = send_file(&tofd, &hdtrl, 0);
1493 msg
='Checking for AIX send_file support')
1494 if conf
.CONFIG_SET('_HAVE_SENDFILE'):
1495 conf
.DEFINE('HAVE_SENDFILE', '1')
1496 conf
.DEFINE('AIX_SENDFILE_API', '1')
1497 conf
.DEFINE('WITH_SENDFILE', '1')
1499 conf
.CHECK_CODE('''enum TDB_ERROR err = TDB_ERR_NESTING''',
1500 'HAVE_TDB_ERR_NESTING',
1502 msg
='Checking whether we have TDB_ERR_NESTING')
1504 # UnixWare 7.x has its getspnam in -lgen
1505 conf
.CHECK_FUNCS_IN('getspnam', 'gen')
1506 conf
.CHECK_FUNCS_IN('getspnam', 'security')
1507 conf
.CHECK_FUNCS_IN('getspnam', 'sec')
1509 if Options
.options
.with_quotas
:
1510 # For quotas on Veritas VxFS filesystems
1511 conf
.CHECK_HEADERS('sys/fs/vx_quota.h')
1512 # For quotas on Linux XFS filesystems
1513 conf
.CHECK_HEADERS('linux/dqblk_xfs.h')
1514 # For sys/quota.h and linux/quota.h
1515 conf
.CHECK_HEADERS('sys/quota.h')
1519 # checking for clustering extensions (CTDB)
1521 if not Options
.options
.with_cluster_support
:
1522 have_cluster_support
= False
1526 if Options
.options
.ctdb_dir
:
1527 conf
.ADD_EXTRA_INCLUDES(Options
.options
.ctdb_dir
+ '/include')
1529 srcdir
= os
.path
.realpath(conf
.srcdir
)
1530 if 'EXTRA_INCLUDES' in conf
.env
:
1531 includes
= ' '.join(conf
.env
['EXTRA_INCLUDES']).replace('#', srcdir
+ '/')
1535 have_cluster_support
= True
1540 #include "replace.h"
1541 #include "system/wait.h"
1542 #include "system/network.h"
1543 #define private #error __USED_RESERVED_WORD_private__
1556 msg
='Checking for header ctdb.h')
1558 if not conf
.CONFIG_SET('HAVE_CTDB_H'):
1559 have_cluster_support
= False
1560 ctdb_broken
= "ctdb.h is required for cluster support"
1562 if have_cluster_support
:
1565 #include "replace.h"
1566 #include "system/wait.h"
1567 #include "system/network.h"
1568 #define private #error __USED_RESERVED_WORD_private__
1572 #include <ctdb_private.h>
1579 'HAVE_CTDB_PRIVATE_H',
1582 msg
='Checking for header ctdb_private.h')
1584 if not conf
.CONFIG_SET('HAVE_CTDB_PRIVATE_H'):
1585 have_cluster_support
= False
1586 ctdb_broken
= "ctdb_private.h is required for cluster support"
1588 if have_cluster_support
:
1591 #include "replace.h"
1592 #include "system/wait.h"
1593 #include "system/network.h"
1597 #include <ctdb_private.h>
1601 int i = (int)CTDB_CONTROL_TRANS3_COMMIT;
1605 'HAVE_CTDB_CONTROL_TRANS3_COMMIT_DECL',
1608 msg
='Checking for transaction support (TRANS3_COMMIT control)')
1610 if not conf
.CONFIG_SET('HAVE_CTDB_CONTROL_TRANS3_COMMIT_DECL'):
1611 have_cluster_support
= False
1612 ctdb_broken
= "ctdb transaction support missing or too old"
1614 if have_cluster_support
:
1617 #include "replace.h"
1618 #include "system/wait.h"
1619 #include "system/network.h"
1623 #include <ctdb_private.h>
1627 int i = (int)CTDB_CONTROL_SCHEDULE_FOR_DELETION;
1631 'HAVE_CTDB_CONTROL_SCHEDULE_FOR_DELETION_DECL',
1634 msg
='Checking for SCHEDULE_FOR_DELETION control')
1636 if not conf
.CONFIG_SET('HAVE_CTDB_CONTROL_SCHEDULE_FOR_DELETION_DECL'):
1637 if not Options
.options
.enable_old_ctdb
:
1638 have_cluster_support
= False
1639 ctdb_broken
= "SCHEDULE_FOR_DELETION control missing"
1641 Logs
.warn("ignoring missing SCHEDULE_FOR_DELETION control (--enable-old-ctdb)")
1643 if have_cluster_support
:
1646 #include "replace.h"
1647 #include "system/wait.h"
1648 #include "system/network.h"
1652 #include <ctdb_private.h>
1656 struct ctdb_control_tcp _x;
1660 'HAVE_STRUCT_CTDB_CONTROL_TCP',
1663 msg
='Checking for ctdb ipv4 support')
1665 if not conf
.CONFIG_SET('HAVE_STRUCT_CTDB_CONTROL_TCP'):
1666 have_cluster_support
= False
1667 ctdb_broken
= "missing struct ctdb_control_tcp"
1669 if have_cluster_support
:
1672 #include "replace.h"
1673 #include "system/wait.h"
1674 #include "system/network.h"
1678 #include <ctdb_private.h>
1682 struct ctdb_control_tcp_addr _x;
1686 'HAVE_STRUCT_CTDB_CONTROL_TCP_ADDR',
1689 msg
='Checking for ctdb ipv6 support')
1691 if have_cluster_support
:
1692 Logs
.info("building with cluster support")
1693 conf
.DEFINE('CLUSTER_SUPPORT', 1);
1695 if not Options
.options
.with_cluster_support
:
1696 Logs
.info("building without cluster support")
1698 Logs
.warn("building without cluster support: " + ctdb_broken
)
1699 conf
.undefine('CLUSTER_SUPPORT')
1703 conf
.CHECK_CODE('__attribute__((destructor)) static void cleanup(void) { }',
1704 'HAVE_FUNCTION_ATTRIBUTE_DESTRUCTOR',
1707 msg
='Checking whether we can compile with __attribute__((destructor))')
1709 conf
.CHECK_CODE('void seekdir(DIR *d, long loc) { return; }',
1710 'SEEKDIR_RETURNS_VOID',
1711 headers
='sys/types.h dirent.h',
1712 msg
='Checking whether seekdir returns void')
1714 if Options
.options
.with_profiling_data
:
1715 conf
.DEFINE('WITH_PROFILE', 1);
1717 PTHREAD_CFLAGS
='error'
1718 PTHREAD_LDFLAGS
='error'
1720 if PTHREAD_LDFLAGS
== 'error':
1721 if conf
.CHECK_FUNCS_IN('pthread_attr_init', 'pthread'):
1722 PTHREAD_CFLAGS
='-D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS'
1723 PTHREAD_LDFLAGS
='-lpthread'
1724 if PTHREAD_LDFLAGS
== 'error':
1725 if conf
.CHECK_FUNCS_IN('pthread_attr_init', 'pthreads'):
1726 PTHREAD_CFLAGS
='-D_THREAD_SAFE'
1727 PTHREAD_LDFLAGS
='-lpthreads'
1728 if PTHREAD_LDFLAGS
== 'error':
1729 if conf
.CHECK_FUNCS_IN('pthread_attr_init', 'c_r'):
1730 PTHREAD_CFLAGS
='-D_THREAD_SAFE -pthread'
1731 PTHREAD_LDFLAGS
='-pthread'
1732 if PTHREAD_LDFLAGS
== 'error':
1733 if conf
.CHECK_FUNC('pthread_attr_init'):
1734 PTHREAD_CFLAGS
='-D_REENTRANT'
1735 PTHREAD_LDFLAGS
='-lpthread'
1736 # especially for HP-UX, where the CHECK_FUNC macro fails to test for
1737 # pthread_attr_init. On pthread_mutex_lock it works there...
1738 if PTHREAD_LDFLAGS
== 'error':
1739 if conf
.CHECK_FUNCS_IN('pthread_mutex_lock', 'pthread'):
1740 PTHREAD_CFLAGS
='-D_REENTRANT'
1741 PTHREAD_LDFLAGS
='-lpthread'
1743 if PTHREAD_CFLAGS
!= 'error' and PTHREAD_LDFLAGS
!= 'error':
1744 conf
.ADD_CFLAGS(PTHREAD_CFLAGS
)
1745 conf
.ADD_LDFLAGS(PTHREAD_LDFLAGS
)
1746 conf
.CHECK_HEADERS('pthread.h')
1747 conf
.DEFINE('HAVE_PTHREAD', '1')
1749 if conf
.CHECK_HEADERS('gpfs_gpl.h'):
1750 conf
.DEFINE('HAVE_GPFS', '1')
1752 default_static_modules
=TO_LIST('''pdb_smbpasswd pdb_tdbsam pdb_wbc_sam
1753 auth_sam auth_unix auth_winbind auth_wbc auth_server
1754 auth_domain auth_builtin vfs_default
1755 nss_info_template idmap_tdb idmap_passdb
1758 default_shared_modules
=TO_LIST('''vfs_recycle vfs_audit vfs_extd_audit vfs_full_audit vfs_netatalk
1759 vfs_fake_perms vfs_default_quota vfs_readonly vfs_cap
1760 vfs_expand_msdfs vfs_shadow_copy vfs_shadow_copy2 charset_CP850
1761 charset_CP437 auth_script vfs_readahead vfs_xattr_tdb
1762 vfs_streams_xattr vfs_streams_depot vfs_acl_xattr vfs_acl_tdb
1763 vfs_smb_traffic_analyzer vfs_preopen vfs_catia vfs_scannedonly
1764 vfs_crossrename vfs_linux_xfs_sgid
1765 vfs_time_audit idmap_autorid''')
1767 if Options
.options
.developer
:
1768 default_static_modules
.extend(TO_LIST('pdb_ads auth_netlogond'))
1769 default_shared_modules
.extend(TO_LIST('charset_weird perfcount_test'))
1771 if Options
.options
.with_acl_support
and conf
.CONFIG_SET('HAVE_POSIX_ACLS'):
1772 default_static_modules
.extend(TO_LIST('vfs_posixacl'))
1774 if conf
.CONFIG_SET('HAVE_FREEBSD_SUNACL_H'):
1775 default_shared_modules
.extend(TO_LIST('vfs_zfsacl'))
1777 if conf
.CONFIG_SET('HAVE_DIRFD_DECL'):
1778 default_shared_modules
.extend(TO_LIST('vfs_syncops vfs_dirsort'))
1780 if conf
.CONFIG_SET('HAVE_STATFS_F_FSID'):
1781 default_shared_modules
.extend(TO_LIST('vfs_fileid'))
1783 if conf
.CONFIG_SET('HAVE_AIO') and (conf
.CONFIG_SET('HAVE_MSGHDR_MSG_CONTROL') or conf
.CONFIG_SET('HAVE_MSGHDR_MSG_ACCTRIGHTS')):
1784 default_shared_modules
.extend(TO_LIST('vfs_aio_fork'))
1786 if conf
.CONFIG_SET('HAVE_LDAP'):
1787 default_static_modules
.extend(TO_LIST('pdb_ldap idmap_ldap'))
1789 if conf
.CONFIG_SET('DARWINOS'):
1790 default_shared_modules
.extend(TO_LIST('charset_macosxfs'))
1792 if conf
.CONFIG_SET('HAVE_GPFS'):
1793 default_shared_modules
.extend(TO_LIST('vfs_gpfs vfs_gpfs_hsm_notify'))
1795 explicit_shared_modules
= TO_LIST(Options
.options
.shared_modules
, delimiter
=',')
1796 explicit_static_modules
= TO_LIST(Options
.options
.static_modules
, delimiter
=',')
1798 final_static_modules
= default_static_modules
1799 final_shared_modules
= default_shared_modules
1801 for m
in explicit_static_modules
:
1802 if m
in final_shared_modules
:
1803 final_shared_modules
.remove(m
)
1804 final_static_modules
.append(m
)
1805 for m
in explicit_shared_modules
:
1806 if m
in final_static_modules
:
1807 final_static_modules
.remove(m
)
1808 final_shared_modules
.append(m
)
1810 conf
.env
['static_modules'] = final_static_modules
1811 conf
.env
['shared_modules'] = final_shared_modules
1813 conf
.DEFINE('STRING_STATIC_MODULES', ' '.join(final_static_modules
), quote
=True)
1818 prefixes
= ['vfs', 'pdb', 'auth', 'nss_info', 'charset', 'idmap', 'gpext', 'perfcount']
1819 conf
.env
['MODULE_PREFIXES'] = prefixes
1821 for m
in final_static_modules
:
1823 if not p
in static_list
:
1825 static_list
[p
].append(m
)
1826 for m
in final_shared_modules
:
1828 if not p
in shared_list
:
1830 shared_list
[p
].append(m
)
1833 static_env
= "%s_STATIC" % p
.upper()
1834 shared_env
= "%s_SHARED" % p
.upper()
1835 conf
.env
[static_env
] = []
1836 conf
.env
[shared_env
] = []
1837 if p
in static_list
:
1839 for entry
in static_list
[p
]:
1840 decl_list
+= "extern NTSTATUS %s_init(void); " % entry
1841 conf
.env
[static_env
].append('%s' % entry
)
1842 decl_list
= decl_list
.rstrip()
1843 conf
.DEFINE('static_decl_%s' % p
, decl_list
)
1844 conf
.DEFINE('static_init_%s' % p
, '{ %s_init(); }' % '_init(); '.join(static_list
[p
]))
1846 conf
.DEFINE('static_decl_%s' % p
, '')
1847 conf
.DEFINE('static_init_%s' % p
, '{}')
1848 if p
in shared_list
:
1849 for entry
in shared_list
[p
]:
1850 conf
.DEFINE('%s_init' % entry
, 'init_samba_module')
1851 conf
.env
[shared_env
].append('%s' % entry
)
1853 conf
.SAMBA_CONFIG_H('include/config.h')
1856 "build 'tags' file using ctags"
1858 source_root
= os
.path
.dirname(Utils
.g_module
.root_path
)
1859 cmd
= 'ctags $(find %s/.. -name "*.[ch]" | grep -v "*_proto\.h")' % source_root
1860 print("Running: %s" % cmd
)
1863 if not os
.getenv('TOPLEVEL_BUILD'):
1864 def wildcard_cmd(cmd
):
1865 '''called on a unknown command'''
1866 from samba_wildcard
import run_named_build_task
1867 run_named_build_task(cmd
)
1869 from samba_wildcard
import wildcard_main
1870 wildcard_main(wildcard_cmd
)
1871 Scripting
.main
= main