s3/modules: fchmod: fallback to path based chmod if pathref
[kseeger/samba-autobuild-v4-14-test/.git] / wscript
1 #!/usr/bin/env python
2
3 top = '.'
4 out = 'bin'
5
6 APPNAME='samba'
7 VERSION=None
8
9 import sys, os, tempfile
10 sys.path.insert(0, top+"/buildtools/wafsamba")
11 import shutil
12 import wafsamba, samba_dist, samba_git, samba_version, samba_utils
13 from waflib import Options, Scripting, Logs, Context, Errors
14
15 samba_dist.DIST_DIRS('.')
16 samba_dist.DIST_BLACKLIST('.gitignore .bzrignore source4/selftest/provisions')
17
18 # install in /usr/local/samba by default
19 default_prefix = Options.default_prefix = '/usr/local/samba'
20
21 # This callback optionally takes a list of paths as arguments:
22 # --with-system_mitkrb5 /path/to/krb5 /another/path
23 def system_mitkrb5_callback(option, opt, value, parser):
24     setattr(parser.values, option.dest, True)
25     value = []
26     for arg in parser.rargs:
27         # stop on --foo like options
28         if arg[:2] == "--" and len(arg) > 2:
29             break
30         value.append(arg)
31     if len(value)>0:
32         del parser.rargs[:len(value)]
33         setattr(parser.values, option.dest, value)
34
35 def options(opt):
36     opt.BUILTIN_DEFAULT('NONE')
37     opt.PRIVATE_EXTENSION_DEFAULT('samba4')
38     opt.RECURSE('lib/replace')
39     opt.RECURSE('dynconfig')
40     opt.RECURSE('packaging')
41     opt.RECURSE('lib/ldb')
42     opt.RECURSE('selftest')
43     opt.RECURSE('source4/dsdb/samdb/ldb_modules')
44     opt.RECURSE('pidl')
45     opt.RECURSE('source3')
46     opt.RECURSE('lib/util')
47     opt.RECURSE('lib/crypto')
48     opt.RECURSE('ctdb')
49
50 # Optional Libraries
51 # ------------------
52 #
53 # Most of the calls to opt.add_option() use default=True for the --with case
54 #
55 # To assist users and distributors to build Samba with the full feature
56 # set, the build system will abort if our dependent libraries and their
57 # header files are not found on the target system.  This will mean for
58 # example, that xattr, acl and ldap headers must be installed for the
59 # default build to complete.  The configure system will check for these
60 # headers, and the error message will indicate the option (such as
61 # --without-acl-support) that can be specified to skip this requirement.
62 #
63 # This will assist users and in particular distributors in building fully
64 # functional packages, while allowing those on systems truly without these
65 # facilities to continue to build Samba after careful consideration.
66 #
67 # It also ensures our container image generation in bootstrap/ is correct
68 # as otherwise a missing package there would just silently work
69
70     opt.samba_add_onoff_option('pthreadpool', with_name="enable", without_name="disable", default=True)
71
72     opt.add_option('--with-system-mitkrb5',
73                    help='build Samba with system MIT Kerberos. ' +
74                         'You may specify list of paths where Kerberos is installed (e.g. /usr/local /usr/kerberos) to search krb5-config',
75                    action='callback', callback=system_mitkrb5_callback, dest='with_system_mitkrb5', default=False)
76
77     opt.add_option('--with-experimental-mit-ad-dc',
78                    help='Enable the experimental MIT Kerberos-backed AD DC.  ' +
79                    'Note that security patches are not issued for this configuration',
80                    action='store_true',
81                    dest='with_experimental_mit_ad_dc',
82                    default=False)
83
84     opt.add_option('--with-system-mitkdc',
85                    help=('Specify the path to the krb5kdc binary from MIT Kerberos'),
86                    type="string",
87                    dest='with_system_mitkdc',
88                    default=None)
89
90     opt.add_option('--with-system-heimdalkrb5',
91                    help=('build Samba with system Heimdal Kerberos. ' +
92                          'Requires --without-ad-dc' and
93                          'conflicts with --with-system-mitkrb5'),
94                    action='store_true',
95                    dest='with_system_heimdalkrb5',
96                    default=False)
97
98     opt.add_option('--without-ad-dc',
99                    help='disable AD DC functionality (enables only Samba FS (File Server, Winbind, NMBD) and client utilities.',
100                    action='store_true', dest='without_ad_dc', default=False)
101
102     opt.add_option('--with-ntvfs-fileserver',
103                    help='enable the deprecated NTVFS file server from the original Samba4 branch (default if --enable-selftest specified).  Conflicts with --with-system-mitkrb5 and --without-ad-dc',
104                    action='store_true', dest='with_ntvfs_fileserver')
105
106     opt.add_option('--without-ntvfs-fileserver',
107                    help='disable the deprecated NTVFS file server from the original Samba4 branch',
108                    action='store_false', dest='with_ntvfs_fileserver')
109
110     opt.add_option('--with-pie',
111                   help=("Build Position Independent Executables " +
112                         "(default if supported by compiler)"),
113                   action="store_true", dest='enable_pie')
114     opt.add_option('--without-pie',
115                   help=("Disable Position Independent Executable builds"),
116                   action="store_false", dest='enable_pie')
117
118     opt.add_option('--with-relro',
119                   help=("Build with full RELocation Read-Only (RELRO)" +
120                         "(default if supported by compiler)"),
121                   action="store_true", dest='enable_relro')
122     opt.add_option('--without-relro',
123                   help=("Disable RELRO builds"),
124                   action="store_false", dest='enable_relro')
125
126     gr = opt.option_group('developer options')
127
128     opt.load('python') # options for disabling pyc or pyo compilation
129     # enable options related to building python extensions
130
131     opt.add_option('--with-json',
132                    action='store_true', dest='with_json',
133                    help=("Build with JSON support (default=True). This "
134                          "requires the jansson development headers."))
135     opt.add_option('--without-json',
136                    action='store_false', dest='with_json',
137                    help=("Build without JSON support."))
138
139 def configure(conf):
140     version = samba_version.load_version(env=conf.env)
141
142     conf.DEFINE('CONFIG_H_IS_FROM_SAMBA', 1)
143     conf.DEFINE('_SAMBA_BUILD_', version.MAJOR, add_to_cflags=True)
144     conf.DEFINE('HAVE_CONFIG_H', 1, add_to_cflags=True)
145
146     if Options.options.developer:
147         conf.ADD_CFLAGS('-DDEVELOPER -DDEBUG_PASSWORD')
148         conf.env.DEVELOPER = True
149         # if we are in a git tree without a pre-commit hook, install a
150         # simple default.
151         pre_commit_hook = os.path.join(Context.g_module.top, '.git/hooks/pre-commit')
152         if (os.path.isdir(os.path.dirname(pre_commit_hook)) and
153             not os.path.exists(pre_commit_hook)):
154             shutil.copy(os.path.join(Context.g_module.top, 'script/git-hooks/pre-commit-hook'),
155                         pre_commit_hook)
156
157     conf.ADD_EXTRA_INCLUDES('#include/public #source4 #lib #source4/lib #source4/include #include #lib/replace')
158
159     conf.env.replace_add_global_pthread = True
160     conf.RECURSE('lib/replace')
161
162     conf.RECURSE('examples/fuse')
163     conf.RECURSE('examples/winexe')
164
165     conf.SAMBA_CHECK_PERL(mandatory=True)
166     conf.find_program('xsltproc', var='XSLTPROC')
167
168     if conf.env.disable_python:
169         if not (Options.options.without_ad_dc):
170             raise Errors.WafError('--disable-python requires --without-ad-dc')
171
172     conf.SAMBA_CHECK_PYTHON()
173     conf.SAMBA_CHECK_PYTHON_HEADERS()
174
175     if sys.platform == 'darwin' and not conf.env['HAVE_ENVIRON_DECL']:
176         # Mac OSX needs to have this and it's also needed that the python is compiled with this
177         # otherwise you face errors about common symbols
178         if not conf.CHECK_SHLIB_W_PYTHON("Checking if -fno-common is needed"):
179             conf.ADD_CFLAGS('-fno-common')
180         if not conf.CHECK_SHLIB_W_PYTHON("Checking if -undefined dynamic_lookup is not need"):
181             conf.env.append_value('cshlib_LINKFLAGS', ['-undefined', 'dynamic_lookup'])
182
183     if sys.platform == 'darwin':
184         conf.ADD_LDFLAGS('-framework CoreFoundation')
185
186     conf.RECURSE('dynconfig')
187     conf.RECURSE('selftest')
188
189     conf.CHECK_CFG(package='zlib', minversion='1.2.3',
190                    args='--cflags --libs',
191                    mandatory=True)
192     conf.CHECK_FUNCS_IN('inflateInit2', 'z')
193
194     if conf.CHECK_FOR_THIRD_PARTY():
195         conf.RECURSE('third_party')
196     else:
197
198         if not conf.CHECK_POPT():
199             raise Errors.WafError('popt development packages have not been found.\nIf third_party is installed, check that it is in the proper place.')
200         else:
201             conf.define('USING_SYSTEM_POPT', 1)
202
203         if not conf.CHECK_CMOCKA():
204             raise Errors.WafError('cmocka development packages has not been found.\nIf third_party is installed, check that it is in the proper place.')
205         else:
206             conf.define('USING_SYSTEM_CMOCKA', 1)
207
208         if conf.CONFIG_GET('ENABLE_SELFTEST'):
209             if not conf.CHECK_SOCKET_WRAPPER():
210                 raise Errors.WafError('socket_wrapper package has not been found.\nIf third_party is installed, check that it is in the proper place.')
211             else:
212                 conf.define('USING_SYSTEM_SOCKET_WRAPPER', 1)
213
214             if not conf.CHECK_NSS_WRAPPER():
215                 raise Errors.WafError('nss_wrapper package has not been found.\nIf third_party is installed, check that it is in the proper place.')
216             else:
217                 conf.define('USING_SYSTEM_NSS_WRAPPER', 1)
218
219             if not conf.CHECK_RESOLV_WRAPPER():
220                 raise Errors.WafError('resolv_wrapper package has not been found.\nIf third_party is installed, check that it is in the proper place.')
221             else:
222                 conf.define('USING_SYSTEM_RESOLV_WRAPPER', 1)
223
224             if not conf.CHECK_UID_WRAPPER():
225                 raise Errors.WafError('uid_wrapper package has not been found.\nIf third_party is installed, check that it is in the proper place.')
226             else:
227                 conf.define('USING_SYSTEM_UID_WRAPPER', 1)
228
229             if not conf.CHECK_PAM_WRAPPER():
230                 raise Errors.WafError('pam_wrapper package has not been found.\nIf third_party is installed, check that it is in the proper place.')
231             else:
232                 conf.define('USING_SYSTEM_PAM_WRAPPER', 1)
233
234     conf.RECURSE('lib/ldb')
235
236     if conf.CHECK_LDFLAGS(['-Wl,--wrap=test']):
237         conf.env['HAVE_LDWRAP'] = True
238         conf.define('HAVE_LDWRAP', 1)
239
240     if not (Options.options.without_ad_dc):
241         conf.DEFINE('AD_DC_BUILD_IS_ENABLED', 1)
242
243     # Check for flex before doing the embedded heimdal checks so we can bail if we don't have it.
244     Logs.info("Checking for flex")
245     conf.find_program('flex', var='FLEX')
246     if conf.env['FLEX']:
247         conf.CHECK_COMMAND('%s --version' % conf.env.FLEX[0],
248                            msg='Using flex version',
249                            define=None,
250                            on_target=False)
251     conf.env.FLEXFLAGS = ['-t']
252
253     # #line statements in these generated files cause issues for lcov
254     conf.env.FLEXFLAGS += ["--noline"]
255
256     if Options.options.with_system_mitkrb5:
257         if not Options.options.with_experimental_mit_ad_dc and \
258            not Options.options.without_ad_dc:
259             raise Errors.WafError('The MIT Kerberos build of Samba as an AD DC ' +
260                                   'is experimental. Therefore '
261                                   '--with-system-mitkrb5 requires either ' +
262                                   '--with-experimental-mit-ad-dc or ' +
263                                   '--without-ad-dc')
264
265         conf.PROCESS_SEPARATE_RULE('system_mitkrb5')
266
267     if not (Options.options.without_ad_dc or Options.options.with_system_mitkrb5):
268         conf.DEFINE('AD_DC_BUILD_IS_ENABLED', 1)
269
270     if Options.options.with_system_heimdalkrb5:
271         if Options.options.with_system_mitkrb5:
272             raise Errors.WafError('--with-system-heimdalkrb5 conflicts with ' +
273                                   '--with-system-mitkrb5')
274         if not Options.options.without_ad_dc:
275             raise Errors.WafError('--with-system-heimdalkrb5 requires ' +
276                                   '--without-ad-dc')
277         conf.env.SYSTEM_LIBS += ('heimdal', 'asn1', 'com_err', 'roken',
278                                  'hx509', 'wind', 'gssapi', 'hcrypto',
279                                  'krb5', 'heimbase', 'asn1_compile',
280                                  'compile_et', 'kdc', 'hdb', 'heimntlm')
281         conf.PROCESS_SEPARATE_RULE('system_heimdal')
282
283     if not conf.CONFIG_GET('KRB5_VENDOR'):
284         conf.PROCESS_SEPARATE_RULE('embedded_heimdal')
285
286     conf.PROCESS_SEPARATE_RULE('system_gnutls')
287
288     conf.RECURSE('source4/dsdb/samdb/ldb_modules')
289     conf.RECURSE('source4/ntvfs/sysdep')
290     conf.RECURSE('lib/util')
291     conf.RECURSE('lib/util/charset')
292     conf.RECURSE('source4/auth')
293     conf.RECURSE('nsswitch')
294     conf.RECURSE('libcli/smbreadline')
295     conf.RECURSE('lib/crypto')
296     conf.RECURSE('pidl')
297     if conf.CONFIG_GET('ENABLE_SELFTEST'):
298         if Options.options.with_ntvfs_fileserver != False:
299             if not (Options.options.without_ad_dc):
300                 conf.DEFINE('WITH_NTVFS_FILESERVER', 1)
301         if Options.options.with_ntvfs_fileserver == False:
302             if not (Options.options.without_ad_dc):
303                 raise Errors.WafError('--without-ntvfs-fileserver conflicts with --enable-selftest while building the AD DC')
304         conf.RECURSE('testsuite/unittests')
305
306     if Options.options.with_ntvfs_fileserver == True:
307         if Options.options.without_ad_dc:
308             raise Errors.WafError('--with-ntvfs-fileserver conflicts with --without-ad-dc')
309         conf.DEFINE('WITH_NTVFS_FILESERVER', 1)
310
311     if Options.options.with_pthreadpool:
312         if conf.CONFIG_SET('HAVE_PTHREAD'):
313             conf.DEFINE('WITH_PTHREADPOOL', '1')
314         else:
315             Logs.warn("pthreadpool support cannot be enabled when pthread support was not found")
316             conf.undefine('WITH_PTHREADPOOL')
317
318     conf.SET_TARGET_TYPE('jansson', 'EMPTY')
319
320     if Options.options.with_json != False:
321         if conf.CHECK_CFG(package='jansson', args='--cflags --libs',
322                           msg='Checking for jansson'):
323             conf.CHECK_FUNCS_IN('json_object', 'jansson')
324
325     if not conf.CONFIG_GET('HAVE_JSON_OBJECT'):
326         if Options.options.with_json != False:
327             conf.fatal("Jansson JSON support not found. "
328                        "Try installing libjansson-dev or jansson-devel. "
329                        "Otherwise, use --without-json to build without "
330                        "JSON support. "
331                        "JSON support is required for the JSON "
332                        "formatted audit log feature, the AD DC, and "
333                        "the JSON printers of the net utility")
334         if not Options.options.without_ad_dc:
335             raise Errors.WafError('--without-json requires --without-ad-dc. '
336                                  'Jansson JSON library is required for '
337                                  'building the AD DC')
338         Logs.info("Building without Jansson JSON log support")
339
340     conf.RECURSE('source3')
341     conf.RECURSE('lib/texpect')
342     conf.RECURSE('python')
343     if conf.env.with_ctdb:
344         conf.RECURSE('ctdb')
345     conf.RECURSE('lib/socket')
346     conf.RECURSE('lib/mscat')
347     conf.RECURSE('packaging')
348
349     conf.SAMBA_CHECK_UNDEFINED_SYMBOL_FLAGS()
350
351     # gentoo always adds this. We want our normal build to be as
352     # strict as the strictest OS we support, so adding this here
353     # allows us to find problems on our development hosts faster.
354     # It also results in faster load time.
355
356     if conf.CHECK_LDFLAGS('-Wl,--as-needed'):
357         conf.env.append_unique('LINKFLAGS', '-Wl,--as-needed')
358
359     if not conf.CHECK_NEED_LC("-lc not needed"):
360         conf.ADD_LDFLAGS('-lc', testflags=False)
361
362     if not conf.CHECK_CODE('#include "tests/summary.c"',
363                            define='SUMMARY_PASSES',
364                            addmain=False,
365                            msg='Checking configure summary'):
366         raise Errors.WafError('configure summary failed')
367
368     if Options.options.enable_pie != False:
369         if Options.options.enable_pie == True:
370                 need_pie = True
371         else:
372                 # not specified, only build PIEs if supported by compiler
373                 need_pie = False
374         if conf.check_cc(cflags='-fPIE', ldflags='-pie', mandatory=need_pie,
375                          msg="Checking compiler for PIE support"):
376             conf.env['ENABLE_PIE'] = True
377
378     if Options.options.enable_relro != False:
379         if Options.options.enable_relro == True:
380             need_relro = True
381         else:
382             # not specified, only build RELROs if supported by compiler
383             need_relro = False
384         if conf.check_cc(cflags='', ldflags='-Wl,-z,relro,-z,now', mandatory=need_relro,
385                          msg="Checking compiler for full RELRO support"):
386             conf.env['ENABLE_RELRO'] = True
387
388     conf.SAMBA_CONFIG_H('include/config.h')
389
390 def etags(ctx):
391     '''build TAGS file using etags'''
392     from waflib import Utils
393     source_root = os.path.dirname(Context.g_module.root_path)
394     cmd = 'rm -f %s/TAGS && (find %s -name "*.[ch]" | egrep -v \.inst\. | xargs -n 100 etags -a)' % (source_root, source_root)
395     print("Running: %s" % cmd)
396     status = os.system(cmd)
397     if os.WEXITSTATUS(status):
398         raise Errors.WafError('etags failed')
399
400 def ctags(ctx):
401     "build 'tags' file using ctags"
402     from waflib import Utils
403     source_root = os.path.dirname(Context.g_module.root_path)
404     cmd = 'ctags --python-kinds=-i $(find %s -name "*.[ch]" | grep -v "*_proto\.h" | egrep -v \.inst\.) $(find %s -name "*.py")' % (source_root, source_root)
405     print("Running: %s" % cmd)
406     status = os.system(cmd)
407     if os.WEXITSTATUS(status):
408         raise Errors.WafError('ctags failed')
409
410
411 # putting this here enabled build in the list
412 # of commands in --help
413 def build(bld):
414     '''build all targets'''
415     samba_version.load_version(env=bld.env, is_install=bld.is_install)
416
417
418 def pydoctor(ctx):
419     '''build python apidocs'''
420     bp = os.path.abspath('bin/python')
421     mpaths = {}
422     modules = ['talloc', 'tdb', 'ldb']
423     for m in modules:
424         f = os.popen("PYTHONPATH=%s python -c 'import %s; print %s.__file__'" % (bp, m, m), 'r')
425         try:
426             mpaths[m] = f.read().strip()
427         finally:
428             f.close()
429     mpaths['main'] = bp
430     cmd = ('PYTHONPATH=%(main)s pydoctor --introspect-c-modules --project-name=Samba '
431            '--project-url=http://www.samba.org --make-html --docformat=restructuredtext '
432            '--add-package bin/python/samba ' + ''.join('--add-module %s ' % n for n in modules))
433     cmd = cmd % mpaths
434     print("Running: %s" % cmd)
435     status = os.system(cmd)
436     if os.WEXITSTATUS(status):
437         raise Errors.WafError('pydoctor failed')
438
439
440 def pep8(ctx):
441     '''run pep8 validator'''
442     cmd='PYTHONPATH=bin/python pep8 -r bin/python/samba'
443     print("Running: %s" % cmd)
444     status = os.system(cmd)
445     if os.WEXITSTATUS(status):
446         raise Errors.WafError('pep8 failed')
447
448
449 def wafdocs(ctx):
450     '''build wafsamba apidocs'''
451     from samba_utils import recursive_dirlist
452     os.system('pwd')
453     list = recursive_dirlist('../buildtools/wafsamba', '.', pattern='*.py')
454
455     print(list)
456     cmd='PYTHONPATH=bin/python pydoctor --project-name=wafsamba --project-url=http://www.samba.org --make-html --docformat=restructuredtext' +\
457         "".join(' --add-module %s' % f for f in list)
458     print("Running: %s" % cmd)
459     status = os.system(cmd)
460     if os.WEXITSTATUS(status):
461         raise Errors.WafError('wafdocs failed')
462
463
464 def dist():
465     '''makes a tarball for distribution'''
466     sambaversion = samba_version.load_version(env=None)
467
468     os.system("make -C ctdb manpages")
469     samba_dist.DIST_FILES('ctdb/doc:ctdb/doc', extend=True)
470
471     os.system("DOC_VERSION='" + sambaversion.STRING + "' " + Context.g_module.top + "/release-scripts/build-manpages-nogit")
472     samba_dist.DIST_FILES('bin/docs:docs', extend=True)
473
474     if sambaversion.IS_SNAPSHOT:
475         # write .distversion file and add to tar
476         if not os.path.isdir(Context.g_module.out):
477             os.makedirs(Context.g_module.out)
478         distversionf = tempfile.NamedTemporaryFile(mode='w', prefix='.distversion',dir=Context.g_module.out)
479         for field in sambaversion.vcs_fields:
480             distveroption = field + '=' + str(sambaversion.vcs_fields[field])
481             distversionf.write(distveroption + '\n')
482         distversionf.flush()
483         samba_dist.DIST_FILES('%s:.distversion' % distversionf.name, extend=True)
484
485         samba_dist.dist()
486         distversionf.close()
487     else:
488         samba_dist.dist()
489
490
491 def distcheck():
492     '''test that distribution tarball builds and installs'''
493     samba_version.load_version(env=None)
494
495 def wildcard_cmd(cmd):
496     '''called on a unknown command'''
497     from samba_wildcard import run_named_build_task
498     run_named_build_task(cmd)
499
500 def main():
501     from samba_wildcard import wildcard_main
502
503     wildcard_main(wildcard_cmd)
504 Scripting.main = main
505
506 def reconfigure(ctx):
507     '''reconfigure if config scripts have changed'''
508     import samba_utils
509     samba_utils.reconfigure(ctx)
510
511
512 if os.path.isdir(os.path.join(top, ".git")):
513     # Check if there are submodules that are checked out but out of date.
514     for submodule, status in samba_git.read_submodule_status(top):
515         if status == "out-of-date":
516             raise Errors.WafError("some submodules are out of date. Please run 'git submodule update'")