b720748b4737ae5f2c7edacfa4290c47e3ef7d14
[obnox/samba/samba-obnox.git] / ctdb / wscript
1 #!/usr/bin/env python
2
3 APPNAME = 'ctdb'
4
5 blddir = 'bin'
6
7 import sys, os
8
9 # find the buildtools directory
10 srcdir = '.'
11 while not os.path.exists(srcdir+'/buildtools') and len(srcdir.split('/')) < 5:
12     srcdir = srcdir + '/..'
13 sys.path.insert(0, srcdir + '/buildtools/wafsamba')
14
15 import wafsamba, samba_dist, Options, Logs, Utils
16 import samba_utils, samba_version
17
18 env = samba_utils.LOAD_ENVIRONMENT()
19 if os.path.isfile('./VERSION'):
20     vdir = '.'
21 elif os.path.isfile('../VERSION'):
22     vdir = '..'
23 else:
24     Logs.error("VERSION file not found")
25
26 version = samba_version.samba_version_file('%s/VERSION' % vdir, vdir, env)
27 VERSION = version.STRING.replace('-', '.')
28
29 default_prefix = Options.default_prefix = '/usr/local'
30
31 samba_dist.DIST_DIRS('''ctdb:. lib/replace:lib/replace lib/talloc:lib/talloc
32                         lib/tevent:lib/tevent lib/tdb:lib/tdb
33                         lib/socket_wrapper:lib/socket_wrapper
34                         third_party/popt:third_party/popt
35                         lib/util:lib/util lib/tdb_wrap:lib/tdb_wrap
36                         lib/ccan:lib/ccan libcli/util:libcli/util
37                         buildtools:buildtools third_party/waf:third_party/waf''')
38
39 manpages = [
40     'ctdb.1',
41     'ctdb.7',
42     'ctdbd.1',
43     'ctdbd.conf.5',
44     'ctdbd_wrapper.1',
45     'ctdb-statistics.7',
46     'ctdb-tunables.7',
47     'ltdbtool.1',
48     'onnode.1',
49     'ping_pong.1'
50 ]
51
52
53 def set_options(opt):
54     opt.PRIVATE_EXTENSION_DEFAULT('ctdb')
55
56     opt.RECURSE('lib/replace')
57
58     opt.RECURSE('lib/util')
59
60     opt.RECURSE('lib/talloc')
61     opt.RECURSE('lib/tevent')
62     opt.RECURSE('lib/tdb')
63
64     opt.add_option('--enable-infiniband',
65                    help=("Turn on infiniband support (default=no)"),
66                    action="store_true", dest='ctdb_infiniband', default=False)
67     opt.add_option('--enable-pmda',
68                    help=("Turn on PCP pmda support (default=no)"),
69                    action="store_true", dest='ctdb_pmda', default=False)
70
71     opt.add_option('--with-logdir',
72                    help=("Path to log directory"),
73                    action="store", dest='ctdb_logdir', default=None)
74     opt.add_option('--with-socketpath',
75                    help=("path to CTDB daemon socket"),
76                    action="store", dest='ctdb_sockpath', default=None)
77
78
79 def configure(conf):
80
81     # CTDB relies on nested event loops
82     conf.env.TEVENT_DEPRECATED = 1
83
84     # No need to build python bindings for talloc/tevent/tdb
85     if conf.IN_LAUNCH_DIR():
86         conf.env.standalone_ctdb = True
87         Options.options.disable_python = True
88
89     conf.RECURSE('lib/replace')
90
91     if conf.env.standalone_ctdb:
92         conf.SAMBA_CHECK_PERL(mandatory=True)
93
94         conf.SAMBA_CHECK_PYTHON(mandatory=True, version=(2,5,0))
95         conf.SAMBA_CHECK_PYTHON_HEADERS(mandatory=True)
96
97     if conf.CHECK_FOR_THIRD_PARTY():
98         conf.RECURSE('third_party/popt')
99     else:
100         if not conf.CHECK_POPT():
101             raise Utils.WafError('popt development packages have not been found\nIf third_party is installed, check that it is in the proper place.')
102         else:
103             conf.define('USING_SYSTEM_POPT', 1)
104
105     conf.RECURSE('lib/util')
106
107     conf.RECURSE('lib/talloc')
108     conf.RECURSE('lib/tevent')
109     conf.RECURSE('lib/tdb')
110     if conf.env.standalone_ctdb or conf.CONFIG_GET('ENABLE_SELFTEST'):
111         conf.RECURSE('lib/socket_wrapper')
112
113     conf.CHECK_HEADERS('sched.h')
114     conf.CHECK_HEADERS('procinfo.h')
115     if sys.platform.startswith('aix') and not conf.CHECK_FUNCS('thread_setsched'):
116         Logs.error('Need thread_setsched() on AIX')
117         sys.exit(1)
118     elif not conf.CHECK_FUNCS('sched_setscheduler'):
119         Logs.error('Need sched_setscheduler()')
120         sys.exit(1)
121     conf.CHECK_FUNCS('mlockall')
122
123     if not conf.CHECK_VARIABLE('ETIME', headers='errno.h'):
124         conf.DEFINE('ETIME', 'ETIMEDOUT')
125
126     if sys.platform.startswith('linux'):
127         conf.SET_TARGET_TYPE('pcap', 'EMPTY')
128     else:
129         if not conf.CHECK_HEADERS('pcap.h'):
130             Logs.error('Need libpcap')
131             sys.exit(1)
132         if not conf.CHECK_FUNCS_IN('pcap_open_live', 'pcap', headers='pcap.h'):
133             Logs.error('Need libpcap')
134             sys.exit(1)
135
136     if not conf.CHECK_FUNCS_IN('backtrace backtrace_symbols', 'execinfo',
137                                checklibc=True, headers='execinfo.h'):
138         Logs.error('backtrace support not available')
139
140     have_pmda = False
141     if Options.options.ctdb_pmda:
142         pmda_support = True
143
144         if not conf.CHECK_HEADERS('pcp/pmapi.h pcp/impl.h pcp/pmda.h',
145                                   together=True):
146             pmda_support = False
147         if not conf.CHECK_FUNCS_IN('pmProgname', 'pcp'):
148             pmda_support = False
149         if not conf.CHECK_FUNCS_IN('pmdaDaemon', 'pcp_pmda'):
150             pmda_support = False
151         if pmda_support:
152             have_pmda = True
153         else:
154             Logs.error("PMDA support not available")
155     if have_pmda:
156         Logs.info('Building with PMDA support')
157         conf.define('HAVE_PMDA', 1)
158         conf.env.CTDB_PMDADIR = os.path.join(conf.env.LOCALSTATEDIR,
159                                              'lib/pcp/pmdas/ctdb')
160
161     have_infiniband = False
162     if Options.options.ctdb_infiniband:
163         ib_support = True
164
165         if not conf.CHECK_HEADERS('infiniband/verbs.h rdma/rdma_cma.h'):
166             ib_support = False
167         if not conf.CHECK_FUNCS_IN('ibv_create_qp', 'ibverbs'):
168             ib_support = False
169         if not conf.CHECK_FUNCS_IN('rdma_connect', 'rdmacm'):
170             ib_support = False
171         if ib_support:
172             have_infiniband = True
173         else:
174             Logs.error("Infiniband support not available")
175     if have_infiniband:
176         Logs.info('Building with Infiniband support')
177         conf.define('HAVE_INFINIBAND', 1)
178         conf.define('USE_INFINIBAND', 1)
179
180     conf.env.CTDB_BINDIR = os.path.join(conf.env.EXEC_PREFIX, 'bin')
181     conf.env.CTDB_ETCDIR = os.path.join(conf.env.SYSCONFDIR, 'ctdb')
182     conf.env.CTDB_VARDIR = os.path.join(conf.env.LOCALSTATEDIR, 'lib/ctdb')
183     conf.env.CTDB_RUNDIR = os.path.join(conf.env.LOCALSTATEDIR, 'run/ctdb')
184
185     if Options.options.ctdb_logdir:
186         conf.env.CTDB_LOGDIR = Options.options.ctdb_logdir
187     else:
188         conf.env.CTDB_LOGDIR = os.path.join(conf.env.LOCALSTATEDIR, 'log')
189
190     if Options.options.ctdb_sockpath:
191         conf.env.CTDB_SOCKPATH = Options.options.ctdb_sockpath
192     else:
193         conf.env.CTDB_SOCKPATH = os.path.join(conf.env.CTDB_RUNDIR,
194                                               'ctdbd.socket')
195     conf.define('CTDB_SOCKET', conf.env.CTDB_SOCKPATH)
196
197     conf.ADD_CFLAGS('''-DCTDB_HELPER_BINDIR=\"%s\"
198                        -DLOGDIR=\"%s\"
199                        -DCTDB_ETCDIR=\"%s\"
200                        -DCTDB_VARDIR=\"%s\"
201                        -DCTDB_RUNDIR=\"%s\"''' % (
202                     conf.env.CTDB_BINDIR,
203                     conf.env.CTDB_LOGDIR,
204                     conf.env.CTDB_ETCDIR,
205                     conf.env.CTDB_VARDIR,
206                     conf.env.CTDB_RUNDIR))
207
208     conf.env.CTDB_TEST_DATADIR = os.path.join(conf.env.EXEC_PREFIX,
209                                               'share/ctdb-tests')
210     conf.env.CTDB_TEST_LIBDIR = os.path.join(conf.env.LIBDIR, 'ctdb-tests')
211
212     # Allow unified compilation and separate compilation of utilities
213     # to find includes
214     if not conf.env.standalone_ctdb:
215         conf.ADD_EXTRA_INCLUDES('#include/public #ctdb/include #ctdb')
216     else:
217         if srcdir == '.':
218             # Building from tarball
219             conf.ADD_EXTRA_INCLUDES('#include')
220         else:
221             # Building standalone CTDB from within Samba tree
222             conf.ADD_EXTRA_INCLUDES('#ctdb/include')
223             conf.ADD_EXTRA_INCLUDES('#ctdb')
224         conf.ADD_EXTRA_INCLUDES('#lib #lib/replace')
225
226         conf.DEFINE('HAVE_CONFIG_H', 1, add_to_cflags=True)
227         conf.DEFINE('SAMBA_UTIL_CORE_ONLY', 1, add_to_cflags=True)
228         conf.SAMBA_CONFIG_H()
229
230
231 def build(bld):
232     if bld.env.standalone_ctdb:
233         # enable building of public headers in the build tree
234         bld.env.build_public_headers = 'include/public'
235
236     version_h = samba_utils.os_path_relpath(os.path.join(Options.launch_dir,
237                                                          "version.h"),
238                                             bld.curdir)
239
240     if bld.env.standalone_ctdb:
241         ctdb_mkversion = '../packaging/mkversion.sh'
242         t = bld.SAMBA_GENERATOR('ctdb-version-header',
243                                 target='include/ctdb_version.h',
244                                 rule='%s ${TGT} %s' % (ctdb_mkversion, VERSION),
245                                 dep_vars=['VERSION'])
246         t.env.VERSION = VERSION
247
248         t = bld.SAMBA_GENERATOR('ctdb-samba-version-header',
249                                 target=version_h,
250                                 rule='printf "#include \\"ctdb_version.h\\" \\n#define SAMBA_VERSION_STRING CTDB_VERSION_STRING\\n" > ${TGT}',
251                                 dep_vars=['VERSION'])
252         t.env.VERSION = VERSION
253     else:
254         t = bld.SAMBA_GENERATOR('ctdb-samba-version-header',
255                                 target='include/ctdb_version.h',
256                                 rule='printf "#include \\"%s\\" \\n#define CTDB_VERSION_STRING SAMBA_VERSION_STRING\\n" > ${TGT}' % version_h,
257                                 dep_vars=['VERSION'])
258         t.env.VERSION = VERSION
259
260     bld.env.PKGCONFIGDIR = '${LIBDIR}/pkgconfig'
261
262     bld.RECURSE('lib/replace')
263     if bld.CHECK_FOR_THIRD_PARTY():
264         bld.RECURSE('third_party/popt')
265
266     bld.RECURSE('lib/tdb_wrap')
267     bld.RECURSE('lib/util')
268
269     bld.RECURSE('lib/talloc')
270     bld.RECURSE('lib/tevent')
271     bld.RECURSE('lib/tdb')
272     if bld.env.standalone_ctdb or bld.CONFIG_GET('SOCKET_WRAPPER'):
273         bld.RECURSE('lib/socket_wrapper')
274
275     if bld.env.standalone_ctdb:
276         # If a combined build is implemented, CTDB will want to
277         # build against samba-util rather than samba-util-core.
278         # Similarly, other Samba subsystems expect samba-util.  So,
279         # for a standalone build, just define a fake samba-util
280         # subsystem that pulls in samba-util-core.
281         bld.SAMBA_SUBSYSTEM('samba-util',
282                             source='',
283                             deps='samba-util-core')
284
285     bld.SAMBA_SUBSYSTEM('ctdb-tcp',
286                         source=bld.SUBDIR('tcp',
287                                           'tcp_connect.c tcp_init.c tcp_io.c'),
288                         includes='include',
289                         deps='replace tdb talloc tevent')
290
291     ib_deps = ''
292     if bld.env.HAVE_INFINIBAND:
293         bld.SAMBA_SUBSYSTEM('ctdb-ib',
294                             source=bld.SUBDIR('ib',
295                                               '''ibwrapper.c ibw_ctdb.c
296                                                  ibw_ctdb_init.c'''),
297                             includes='include',
298                             deps='replace talloc tevent')
299         ib_deps = ' ctdb-ib rdmacm ibverbs'
300
301     if sys.platform.startswith('linux'):
302         CTDB_SYSTEM_SRC = bld.SUBDIR('common', 'system_linux.c')
303     elif sys.platform.startswith('aix'):
304         CTDB_SYSTEM_SRC = bld.SUBDIR('common', 'system_aix.c')
305     elif sys.platform.startswith('freebsd'):
306         CTDB_SYSTEM_SRC = bld.SUBDIR('common', 'system_freebsd.c')
307     elif sys.platform == 'kfreebsd':
308         CTDB_SYSTEM_SRC = bld.SUBDIR('common', 'system_kfreebsd.c')
309     elif sys.platform == 'gnu':
310         CTDB_SYSTEM_SRC = bld.SUBDIR('common', 'system_gnu.c')
311     else:
312         Logs.error("Platform %s not supported" % sys.platform)
313
314     bld.SAMBA_SUBSYSTEM('ctdb-system',
315                         source='common/system_common.c ' + CTDB_SYSTEM_SRC,
316                         includes='include',
317                         deps='replace talloc tevent tdb pcap')
318
319     bld.SAMBA_SUBSYSTEM('ctdb-common',
320                         source=bld.SUBDIR('common',
321                                           '''ctdb_io.c ctdb_util.c ctdb_ltdb.c
322                                              cmdline.c rb_tree.c
323                                              ctdb_fork.c'''),
324                         includes='include',
325                         deps='replace popt talloc tevent tdb popt ctdb-system')
326
327     bld.SAMBA_SUBSYSTEM('ctdb-common-util',
328                         source=bld.SUBDIR('common',
329                                           'system_util.c ctdb_logging.c'),
330                         includes='include',
331                         deps='replace tevent tdb')
332
333     bld.SAMBA_SUBSYSTEM('ctdb-util',
334                         source=bld.SUBDIR('common',
335                                           '''db_hash.c srvid.c reqid.c
336                                              pkt_read.c pkt_write.c comm.c
337                                              logging.c'''),
338                         deps='replace talloc tevent tdb tevent-unix-util')
339
340     bld.SAMBA_SUBSYSTEM('ctdb-protocol',
341                         source=bld.SUBDIR('protocol',
342                                           '''protocol_header.c protocol_packet.c
343                                              protocol_types.c protocol_call.c
344                                              protocol_message.c
345                                              protocol_control.c
346                                              protocol_client.c
347                                              protocol_util.c'''),
348                         includes='include',
349                         deps='replace talloc tdb')
350
351     bld.SAMBA_SUBSYSTEM('ctdb-client',
352                         source=bld.SUBDIR('client', 'ctdb_client.c'),
353                         includes='include',
354                         deps='''replace popt talloc tevent tdb
355                                 samba-util tdb-wrap ctdb-util''')
356
357     bld.SAMBA_SUBSYSTEM('ctdb-client2',
358                         source=bld.SUBDIR('client',
359                                           '''client_connect.c client_call.c
360                                              client_message.c client_control.c
361                                              client_message_sync.c
362                                              client_control_sync.c
363                                              client_db.c client_util.c
364                                           '''),
365                         includes='include',
366                         deps='replace talloc tevent tdb tdb-wrap')
367
368     bld.SAMBA_SUBSYSTEM('ctdb-server',
369                         source='server/ctdbd.c ' +
370                                bld.SUBDIR('server',
371                                           '''ctdb_daemon.c ctdb_recoverd.c
372                                              ctdb_recover.c ctdb_freeze.c
373                                              ctdb_tunables.c ctdb_monitor.c
374                                              ctdb_server.c ctdb_control.c
375                                              ctdb_call.c ctdb_ltdb_server.c
376                                              ctdb_traverse.c eventscript.c
377                                              ctdb_takeover.c ctdb_serverids.c
378                                              ctdb_persistent.c ctdb_keepalive.c
379                                              ctdb_logging.c
380                                              ctdb_logging_syslog.c
381                                              ctdb_logging_file.c
382                                              ctdb_uptime.c
383                                              ctdb_vacuum.c ctdb_banning.c
384                                              ctdb_statistics.c
385                                              ctdb_update_record.c
386                                              ctdb_lock.c'''),
387                         includes='include',
388                         deps='replace popt talloc tevent tdb talloc_report')
389
390     bld.SAMBA_BINARY('ctdbd',
391                      source='',
392                      deps='''ctdb-server ctdb-client ctdb-common
393                              ctdb-common-util ctdb-tcp ctdb-util''' +
394                           ib_deps,
395                      install_path='${SBINDIR}',
396                      manpages='ctdbd.1')
397
398     bld.SAMBA_BINARY('ctdb',
399                      source='tools/ctdb.c',
400                      deps='''ctdb-client ctdb-common ctdb-common-util
401                              ctdb-util''',
402                      includes='include',
403                      install_path='${BINDIR}',
404                      manpages='ctdb.1')
405
406     bld.SAMBA_BINARY('ltdbtool',
407                      source='tools/ltdbtool.c',
408                      includes='include',
409                      deps='tdb',
410                      install_path='${BINDIR}',
411                      manpages='ltdbtool.1')
412
413     bld.SAMBA_BINARY('ctdb_lock_helper',
414                      source='server/ctdb_lock_helper.c',
415                      deps='samba-util ctdb-common-util talloc tdb',
416                      includes='include',
417                      install_path='${BINDIR}')
418
419     bld.SAMBA_BINARY('ctdb_event_helper',
420                      source='server/ctdb_event_helper.c',
421                      includes='include',
422                      deps='samba-util ctdb-common-util replace tdb',
423                      install_path='${BINDIR}')
424
425     bld.SAMBA_BINARY('ctdb_recovery_helper',
426                      source='server/ctdb_recovery_helper.c',
427                      deps='''ctdb-client2 ctdb-protocol ctdb-util
428                              samba-util replace tdb''',
429                      install_path='${BINDIR}')
430
431     bld.SAMBA_GENERATOR('ctdb-smnotify-h',
432                         source='utils/smnotify/smnotify.x',
433                         target='utils/smnotify/smnotify.h',
434                         rule='rpcgen -h ${SRC} > ${TGT}')
435
436     xdr_buf_hack = 'sed -e "s@^\([ \t]*register int32_t \*buf\);@\\1 = buf;@"'
437
438     bld.SAMBA_GENERATOR('ctdb-smnotify-x',
439                         source='utils/smnotify/smnotify.x',
440                         target='utils/smnotify/gen_xdr.c',
441                         rule='rpcgen -c ${SRC} | ' + xdr_buf_hack + ' > ${TGT}')
442
443     bld.SAMBA_GENERATOR('ctdb-smnotify-c',
444                         source='utils/smnotify/smnotify.x',
445                         target='utils/smnotify/gen_smnotify.c',
446                         rule='rpcgen -l ${SRC} > ${TGT}')
447
448     bld.SAMBA_BINARY('smnotify',
449                      source=bld.SUBDIR('utils/smnotify',
450                                        'smnotify.c gen_smnotify.c gen_xdr.c'),
451                      deps='ctdb-smnotify-h ctdb-smnotify-c ctdb-smnotify-x popt',
452                      includes='utils utils/smnotify',
453                      install_path='${BINDIR}')
454
455     bld.SAMBA_BINARY('ping_pong',
456                      source='utils/ping_pong/ping_pong.c',
457                      deps='',
458                      install_path='${BINDIR}',
459                      manpages='ping_pong.1')
460
461     if bld.env.HAVE_PMDA:
462         bld.SAMBA_BINARY('pmdactdb',
463                          source='utils/pmda/pmda_ctdb.c',
464                          includes='include',
465                          deps='''ctdb-client ctdb-common
466                                  ctdb-common-util pcp_pmda pcp''',
467                          install_path='${CTDB_PMDADIR}')
468         bld.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/Install',
469                           destname='Install')
470         bld.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/Remove',
471                           destname='Remove')
472         bld.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/pmns',
473                           destname='pmns')
474         bld.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/domain.h',
475                           destname='domain.h')
476         bld.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/help',
477                           destname='help')
478         bld.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/README',
479                           destname='README')
480
481     sed_expr1 = 's|/usr/local/var/lib/ctdb|%s|g'  % (bld.env.CTDB_VARDIR)
482     sed_expr2 = 's|/usr/local/etc/ctdb|%s|g'      % (bld.env.CTDB_ETCDIR)
483     sed_expr3 = 's|/usr/local/var/log|%s|g'       % (bld.env.CTDB_LOGDIR)
484     sed_expr4 = 's|/usr/local/var/run/ctdb|%s|g'  % (bld.env.CTDB_RUNDIR)
485     sed_expr5 = 's|/usr/local/sbin|%s|g'          % (bld.env.SBINDIR)
486     sed_cmdline = '-e "%s" -e "%s" -e "%s" -e "%s" -e "%s"' % \
487                        (sed_expr1, sed_expr2, sed_expr3, sed_expr4, sed_expr5)
488
489     for f in manpages:
490         x = '%s.xml' % (f)
491         bld.SAMBA_GENERATOR(x,
492                             source=os.path.join('doc', x),
493                             target=x,
494                             rule='sed %s ${SRC} > ${TGT}' % (sed_cmdline))
495
496     if 'XSLTPROC_MANPAGES' in bld.env and bld.env['XSLTPROC_MANPAGES']:
497         bld.MANPAGES('''onnode.1 ctdbd_wrapper.1 ctdbd.conf.5
498                         ctdb.7 ctdb-statistics.7 ctdb-tunables.7''',
499                       True)
500     else:
501         for m in manpages:
502             bld.SAMBA_GENERATOR(m,
503                                 source=os.path.join("doc", m),
504                                 target=m,
505                                 rule='sed %s ${SRC} > ${TGT}' % (sed_cmdline))
506             bld.INSTALL_FILES('${MANDIR}/man%s' % m[-1], m)
507
508     bld.SAMBA_GENERATOR('ctdb-onnode',
509                         source='tools/onnode',
510                         target='onnode',
511                         rule='sed %s ${SRC} > ${TGT}' % (sed_cmdline))
512     bld.INSTALL_FILES('${BINDIR}', 'onnode',
513                       destname='onnode', chmod=0755)
514
515     bld.SAMBA_GENERATOR('ctdb-diagnostics',
516                         source='tools/ctdb_diagnostics',
517                         target='ctdb_diagnostics',
518                         rule='sed %s ${SRC} > ${TGT}' % (sed_cmdline))
519     bld.INSTALL_FILES('${BINDIR}', 'ctdb_diagnostics',
520                       destname='ctdb_diagnostics', chmod=0755)
521
522     bld.SAMBA_GENERATOR('ctdbd-wrapper',
523                         source='config/ctdbd_wrapper',
524                         target='ctdbd_wrapper',
525                         rule='sed %s ${SRC} > ${TGT}' % (sed_cmdline))
526     bld.INSTALL_FILES('${SBINDIR}', 'ctdbd_wrapper',
527                       destname='ctdbd_wrapper', chmod=0755)
528
529     def SUBDIR_MODE_callback(arg, dirname, fnames):
530         for f in fnames:
531             fl = os.path.join(dirname, f)
532             if os.path.isdir(fl) or os.path.islink(fl):
533                 continue
534             mode = os.lstat(fl).st_mode & 0777
535             if arg['trim_path']:
536                 fl = samba_utils.os_path_relpath(fl, arg['trim_path'])
537             arg['file_list'].append([fl, mode])
538
539     def SUBDIR_MODE(path, trim_path=None):
540         pd = {'trim_path': trim_path, 'file_list': []}
541         os.path.walk(path, SUBDIR_MODE_callback, pd)
542         return pd['file_list']
543
544     etc_subdirs = [
545         'events.d',
546         'nfs-checks.d'
547     ]
548
549     if bld.env.standalone_ctdb:
550         configdir = 'config'
551     else:
552         configdir = 'ctdb/config'
553
554     for t in etc_subdirs:
555         files = SUBDIR_MODE('%s/%s' % (configdir, t), trim_path=configdir)
556         for fmode in files:
557             bld.INSTALL_FILES(bld.env.CTDB_ETCDIR, 'config/%s' % fmode[0],
558                               destname=fmode[0], chmod=fmode[1])
559
560     bld.SAMBA_GENERATOR('ctdb-functions',
561                         source='config/functions',
562                         target='functions',
563                         rule='sed %s ${SRC} > ${TGT}' % (sed_cmdline))
564     bld.INSTALL_FILES(bld.env.CTDB_ETCDIR, 'functions', destname='functions')
565
566     etc_scripts = [
567         'ctdb-crash-cleanup.sh',
568         'debug-hung-script.sh',
569         'debug_locks.sh',
570         'gcore_trace.sh',
571         'nfs-linux-kernel-callout',
572         'notify.sh',
573         'statd-callout'
574     ]
575
576     for t in etc_scripts:
577         bld.INSTALL_FILES(bld.env.CTDB_ETCDIR, 'config/%s' % t,
578                           destname=t, chmod=0755)
579
580     bld.SAMBA_GENERATOR('ctdb-sudoers',
581                         source='config/ctdb.sudoers',
582                         target='ctdb.sudoers',
583                         rule='sed %s ${SRC} > ${TGT}' % (sed_cmdline))
584     bld.INSTALL_FILES('${SYSCONFDIR}/sudoers.d', 'ctdb.sudoers',
585                       destname='ctdb')
586
587     bld.INSTALL_FILES('${CTDB_ETCDIR}/notify.d', 'config/notify.d.README',
588                       destname='README')
589
590     bld.install_dir(bld.env.CTDB_LOGDIR)
591     bld.install_dir(bld.env.CTDB_RUNDIR)
592     bld.install_dir(bld.env.CTDB_VARDIR)
593
594     sed_expr = 's/@PACKAGE_VERSION@/%s/g' % VERSION
595     t = bld.SAMBA_GENERATOR('ctdb-pc',
596                             source='ctdb.pc.in',
597                             target='ctdb.pc',
598                             rule='sed -e "%s" ${SRC} > ${TGT}' % sed_expr,
599                             dep_vars=['VERSION'])
600     t.env.VERSION = VERSION
601     bld.INSTALL_FILES('${LIBDIR}/pkgconfig', 'ctdb.pc')
602
603     # Unit tests
604     ctdb_unit_tests = [
605         'db_hash_test',
606         'srvid_test',
607         'pkt_read_test',
608         'pkt_write_test',
609         'comm_test',
610         'comm_server_test',
611         'comm_client_test',
612         'protocol_types_test',
613         'protocol_client_test',
614     ]
615
616     for target in ctdb_unit_tests:
617         src = 'tests/src/' + target + '.c'
618
619         bld.SAMBA_BINARY(target,
620                          source=src,
621                          deps='talloc tevent tdb tevent-unix-util',
622                          install_path='${CTDB_TEST_LIBDIR}')
623
624     bld.SAMBA_BINARY('reqid_test',
625                      source='tests/src/reqid_test.c',
626                      deps='samba-util',
627                      install_path='${CTDB_TEST_LIBDIR}')
628
629     # Test binaries
630     ctdb_tests = [
631         'rb_test',
632         'ctdb_bench',
633         'ctdb_fetch',
634         'ctdb_fetch_one',
635         'ctdb_fetch_readonly_once',
636         'ctdb_fetch_readonly_loop',
637         'ctdb_trackingdb_test',
638         'ctdb_update_record',
639         'ctdb_update_record_persistent',
640         'ctdb_store',
641         'ctdb_traverse',
642         'ctdb_randrec',
643         'ctdb_persistent',
644         'ctdb_porting_tests',
645         'ctdb_transaction',
646         'ctdb_lock_tdb'
647     ]
648
649     for target in ctdb_tests:
650         src = 'tests/src/' + target + '.c'
651
652         bld.SAMBA_BINARY(target,
653                          source=src,
654                          includes='include',
655                          deps='''ctdb-client ctdb-common ctdb-common-util
656                                  ctdb-util''',
657                          install_path='${CTDB_TEST_LIBDIR}')
658
659     bld.SAMBA_BINARY('ctdb_takeover_tests',
660                      source='tests/src/ctdb_takeover_tests.c',
661                      deps='''replace popt tdb tevent talloc ctdb-system
662                              samba-util tdb-wrap talloc_report''' +
663                           ib_deps,
664                      includes='include',
665                      install_path='${CTDB_TEST_LIBDIR}')
666
667     bld.SAMBA_BINARY('ctdb_functest',
668                      source='tests/src/ctdb_functest.c',
669                      deps='''replace tdb tevent talloc popt ctdb-system
670                              samba-util tdb-wrap''',
671                      includes='include',
672                      install_path='${CTDB_TEST_LIBDIR}')
673
674     bld.SAMBA_BINARY('ctdb_stubtest',
675                      source='tests/src/ctdb_test.c',
676                      deps='''replace tdb tevent talloc popt ctdb-system
677                              samba-util tdb-wrap''',
678                      includes='include',
679                      install_path='${CTDB_TEST_LIBDIR}')
680
681     if bld.env.HAVE_INFINIBAND:
682         bld.SAMBA_BINARY('ibwrapper_test',
683                          source='ib/ibwrapper_test.c',
684                          includes='include',
685                          deps='''replace talloc ctdb-client ctdb-common
686                                  ctdb-common-util''' +
687                               ib_deps,
688                          install_path='${CTDB_TEST_LIBDIR}')
689
690     test_subdirs = [
691         'complex',
692         'cunit',
693         'events.d',
694         'eventscripts',
695         'onnode',
696         'simple',
697         'takeover',
698         'tool'
699     ]
700
701     for t in test_subdirs:
702         files = SUBDIR_MODE('tests/%s' % t, trim_path='tests')
703         for fmode in files:
704             bld.INSTALL_FILES(bld.env.CTDB_TEST_DATADIR, 'tests/%s' % fmode[0],
705                               destname=fmode[0], chmod=fmode[1])
706
707     # Install tests/scripts directory without test_wrap
708     test_scripts = [
709         'common.sh',
710         'integration.bash',
711         'unit.sh'
712     ]
713
714     for t in test_scripts:
715         bld.INSTALL_FILES(bld.env.CTDB_TEST_DATADIR,
716                           os.path.join('tests/scripts', t),
717                           destname=os.path.join('scripts', t))
718
719     sed_expr = 's@^TEST_SCRIPTS_DIR=.*@&\\nexport TEST_BIN_DIR=\"%s\"@' % (
720                bld.env.CTDB_TEST_LIBDIR)
721     bld.SAMBA_GENERATOR('ctdb-test-wrap',
722                         source='tests/scripts/test_wrap',
723                         target='test_wrap',
724                         rule='sed -e "%s" ${SRC} > ${TGT}' % sed_expr)
725     bld.INSTALL_FILES(bld.env.CTDB_TEST_DATADIR+"/scripts", 'test_wrap',
726                       destname='test_wrap', chmod=0755)
727
728     sed_expr1 = 's@^test_dir=.*@test_dir=%s\\nexport TEST_BIN_DIR=\"%s\"@' % (
729                 bld.env.CTDB_TEST_DATADIR, bld.env.CTDB_TEST_LIBDIR)
730     sed_expr2 = 's@^\(export CTDB_TESTS_ARE_INSTALLED\)=false@\\1=true@'
731     bld.SAMBA_GENERATOR('ctdb-test-runner',
732                         source='tests/run_tests.sh',
733                         target='ctdb_run_tests.sh',
734                         rule='sed -e "%s" -e "%s" ${SRC} > ${TGT}' % (
735                              sed_expr1, sed_expr2))
736     bld.INSTALL_FILES('${BINDIR}', 'ctdb_run_tests.sh',
737                       destname='ctdb_run_tests', chmod=0755)
738     bld.symlink_as(os.path.join(bld.env.BINDIR, 'ctdb_run_cluster_tests'),
739                    'ctdb_run_tests')
740
741     test_eventscript_links = [
742         'events.d',
743         'functions',
744         'nfs-checks.d',
745         'nfs-linux-kernel-callout',
746         'statd-callout'
747     ]
748
749     test_link_dir = os.path.join(bld.env.CTDB_TEST_DATADIR,
750                                  'eventscripts/etc-ctdb')
751     for t in test_eventscript_links:
752         bld.symlink_as(os.path.join(test_link_dir, t),
753                        os.path.join(bld.env.CTDB_ETCDIR, t))
754
755     # Tests that use onnode need to overwrite link to in-tree
756     # functions file when installed
757     bld.symlink_as(os.path.join(bld.env.CTDB_TEST_DATADIR, 'onnode/functions'),
758                    os.path.join(bld.env.CTDB_ETCDIR, 'functions'))
759     bld.symlink_as(os.path.join(bld.env.CTDB_TEST_DATADIR, 'simple/functions'),
760                    os.path.join(bld.env.CTDB_ETCDIR, 'functions'))
761
762     # Need a link to nodes file because $CTDB_BASE is overridden
763     bld.symlink_as(os.path.join(bld.env.CTDB_TEST_DATADIR, 'simple/nodes'),
764                    os.path.join(bld.env.CTDB_ETCDIR, 'nodes'))
765
766
767 def testonly(ctx):
768     cmd = 'tests/run_tests.sh -V tests/var'
769     ret = samba_utils.RUN_COMMAND(cmd)
770     if ret != 0:
771         print('tests exited with exit status %d' % ret)
772         sys.exit(ret)
773
774
775 def test(ctx):
776     import Scripting
777     Scripting.commands.append('build')
778     Scripting.commands.append('testonly')
779
780
781 def autotest(ctx):
782     ld = 'LD_PRELOAD=%s/bin/shared/libsocket-wrapper.so' % os.getcwd()
783     cmd = '%s tests/run_tests.sh -e -S -C' % ld
784     ret = samba_utils.RUN_COMMAND(cmd)
785     if ret != 0:
786         print('autotest exited with exit status %d' % ret)
787         sys.exit(ret)
788
789
790 def show_version(ctx):
791     print VERSION
792
793
794 def dist():
795     samba_dist.DIST_FILES('VERSION:VERSION', extend=True)
796
797     t = 'include/ctdb_version.h'
798     cmd = 'packaging/mkversion.sh %s %s' % (t, VERSION)
799     ret = samba_utils.RUN_COMMAND(cmd)
800     if ret != 0:
801         print('Command "%s" failed with exit status %d' % (cmd, ret))
802         sys.exit(ret)
803     samba_dist.DIST_FILES('ctdb/%s:%s' % (t, t), extend=True)
804
805     t = 'ctdb.spec'
806     sed_expr1 = 's/@VERSION@/%s/g' % VERSION
807     sed_expr2 = 's/@RELEASE@/%s/g' % '1'
808     cmd = 'sed -e "%s" -e "%s" packaging/RPM/ctdb.spec.in > %s' % (
809         sed_expr1, sed_expr2, t)
810     ret = samba_utils.RUN_COMMAND(cmd)
811     if ret != 0:
812         print('Command "%s" failed with exit status %d' % (cmd, ret))
813         sys.exit(ret)
814     samba_dist.DIST_FILES('ctdb/%s:%s' % (t, t), extend=True)
815
816     cmd = 'make -C doc'
817     ret = samba_utils.RUN_COMMAND(cmd)
818     if ret != 0:
819         print('Command "%s" failed with exit status %d' % (cmd, ret))
820         sys.exit(ret)
821     for t in manpages:
822         samba_dist.DIST_FILES('ctdb/doc/%s:doc/%s' % (t, t), extend=True)
823         samba_dist.DIST_FILES('ctdb/doc/%s.html:doc/%s.html' % (t, t),
824                               extend=True)
825
826     samba_dist.dist()
827
828
829 def rpmonly(ctx):
830     opts = os.getenv('RPM_OPTIONS') or ''
831     cmd = 'rpmbuild -ta --clean --rmsource %s ctdb-%s.tar.gz' % (opts, VERSION)
832     ret = samba_utils.RUN_COMMAND(cmd)
833     if ret != 0:
834         print('rpmbuild exited with exit status %d' % ret)
835         sys.exit(ret)
836
837
838 def rpm(ctx):
839     import Scripting
840     Scripting.commands.append('dist')
841     Scripting.commands.append('rpmonly')
842
843
844 def ctags(ctx):
845     "build 'tags' file using ctags"
846     import Utils
847     source_root = os.path.dirname(Utils.g_module.root_path)
848     cmd = 'ctags $(find %s -name "*.[ch]")' % source_root
849     print("Running: %s" % cmd)
850     ret = samba_utils.RUN_COMMAND(cmd)
851     if ret != 0:
852         print('ctags failed with exit status %d' % ret)
853         sys.exit(ret)