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