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