flapping: Remove dbcheck from flapping
[Samba.git] / ctdb / wscript
blobf3a1901c322c662a3a8752a6839a9656324931b0
1 #!/usr/bin/env python
3 APPNAME = 'ctdb'
5 blddir = 'bin'
7 import sys, os
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')
15 import wafsamba, samba_dist, Options, Logs, Utils
16 import samba_utils, samba_version
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")
26 version = samba_version.samba_version_file('%s/VERSION' % vdir, vdir, env)
27 VERSION = version.STRING.replace('-', '.')
29 default_prefix = Options.default_prefix = '/usr/local'
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''')
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'
54 def set_options(opt):
55 opt.PRIVATE_EXTENSION_DEFAULT('ctdb')
57 opt.RECURSE('lib/replace')
59 opt.RECURSE('lib/util')
61 opt.RECURSE('lib/talloc')
62 opt.RECURSE('lib/tevent')
63 opt.RECURSE('lib/tdb')
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)
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)
80 def configure(conf):
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
87 conf.RECURSE('lib/replace')
89 if conf.env.standalone_ctdb:
90 conf.SAMBA_CHECK_PERL(mandatory=True)
92 conf.SAMBA_CHECK_PYTHON(mandatory=True, version=(2,5,0))
93 conf.SAMBA_CHECK_PYTHON_HEADERS(mandatory=True)
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)
103 conf.RECURSE('lib/util')
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')
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')
122 if not conf.CHECK_VARIABLE('ETIME', headers='errno.h'):
123 conf.DEFINE('ETIME', 'ETIMEDOUT')
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)
135 if not conf.CHECK_FUNCS_IN('backtrace backtrace_symbols', 'execinfo',
136 checklibc=True, headers='execinfo.h'):
137 Logs.error('backtrace support not available')
139 have_pmda = False
140 if Options.options.ctdb_pmda:
141 pmda_support = True
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')
161 have_infiniband = False
162 if Options.options.ctdb_infiniband:
163 ib_support = True
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)
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')
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')
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)
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))
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')
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')
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()
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
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))
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'
251 version_h = samba_utils.os_path_relpath(os.path.join(Options.launch_dir,
252 "version.h"),
253 bld.curdir)
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
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
275 bld.env.PKGCONFIGDIR = '${LIBDIR}/pkgconfig'
277 bld.RECURSE('lib/replace')
278 if bld.CHECK_FOR_THIRD_PARTY():
279 bld.RECURSE('third_party/popt')
281 bld.RECURSE('lib/tdb_wrap')
282 bld.RECURSE('lib/util')
283 bld.RECURSE('lib/async_req')
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')
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')
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')
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'
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)
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')
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')
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')
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')
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''')
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')
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')
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')
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')
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')
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}')
435 bld.SAMBA_BINARY('ltdbtool',
436 source='tools/ltdbtool.c',
437 includes='include',
438 deps='tdb',
439 install_path='${BINDIR}',
440 manpages='ltdbtool.1')
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}')
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}')
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}')
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}')
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}')
471 xdr_buf_hack = 'sed -e "s@^\([ \t]*register int32_t \*buf\);@\\1 = buf;@"'
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}')
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}')
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}')
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')
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')
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)
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))
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)
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)
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)
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)
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)
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)
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])
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']
595 etc_subdirs = [
596 'events.d',
597 'nfs-checks.d'
600 if bld.env.standalone_ctdb:
601 configdir = 'config'
602 else:
603 configdir = 'ctdb/config'
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])
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')
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'
627 for t in etc_scripts:
628 bld.INSTALL_FILES(bld.env.CTDB_ETCDIR, 'config/%s' % t,
629 destname=t, chmod=0755)
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')
638 bld.INSTALL_FILES('${CTDB_ETCDIR}/notify.d', 'config/notify.d.README',
639 destname='README')
641 bld.install_dir(bld.env.CTDB_LOGDIR)
642 bld.install_dir(bld.env.CTDB_RUNDIR)
643 bld.install_dir(bld.env.CTDB_VARDIR)
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',
658 for target in ctdb_unit_tests:
659 src = 'tests/src/' + target + '.c'
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}')
667 bld.SAMBA_BINARY('reqid_test',
668 source='tests/src/reqid_test.c',
669 deps='samba-util',
670 install_path='${CTDB_TEST_LIBDIR}')
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}')
677 # Test binaries
678 ctdb_tests = [
679 'rb_test',
680 'ctdb_bench',
681 'ctdb_fetch',
682 'ctdb_fetch_one',
683 'ctdb_fetch_readonly_once',
684 'ctdb_fetch_readonly_loop',
685 'ctdb_trackingdb_test',
686 'ctdb_update_record',
687 'ctdb_update_record_persistent',
688 'ctdb_store',
689 'ctdb_traverse',
690 'ctdb_randrec',
691 'ctdb_persistent',
692 'ctdb_porting_tests',
693 'ctdb_transaction',
694 'ctdb_lock_tdb'
697 for target in ctdb_tests:
698 src = 'tests/src/' + target + '.c'
700 bld.SAMBA_BINARY(target,
701 source=src,
702 includes='include',
703 deps='ctdb-client ctdb-common ctdb-util',
704 install_path='${CTDB_TEST_LIBDIR}')
706 bld.SAMBA_BINARY('ctdb_takeover_tests',
707 source='tests/src/ctdb_takeover_tests.c',
708 deps='''replace popt tdb tevent talloc ctdb-system
709 samba-util tdb-wrap talloc_report
710 ctdb-ipalloc ctdb-protocol ctdb-util''',
711 includes='include',
712 install_path='${CTDB_TEST_LIBDIR}')
714 bld.SAMBA_BINARY('fake_ctdbd',
715 source='tests/src/fake_ctdbd.c',
716 deps='''ctdb-util ctdb-protocol ctdb-system
717 samba-util tevent-util LIBASYNC_REQ popt''',
718 install_path='${CTDB_TEST_LIBDIR}')
720 if bld.env.HAVE_INFINIBAND:
721 bld.SAMBA_BINARY('ibwrapper_test',
722 source='ib/ibwrapper_test.c',
723 includes='include',
724 deps='replace talloc ctdb-client ctdb-common' +
725 ib_deps,
726 install_path='${CTDB_TEST_LIBDIR}')
728 test_subdirs = [
729 'complex',
730 'cunit',
731 'events.d',
732 'eventscripts',
733 'onnode',
734 'simple',
735 'takeover',
736 'tool'
739 for t in test_subdirs:
740 files = SUBDIR_MODE('tests/%s' % t, trim_path='tests')
741 for fmode in files:
742 bld.INSTALL_FILES(bld.env.CTDB_TEST_DATADIR, 'tests/%s' % fmode[0],
743 destname=fmode[0], chmod=fmode[1])
745 # Install tests/scripts directory without test_wrap
746 test_scripts = [
747 'common.sh',
748 'integration.bash',
749 'unit.sh'
752 for t in test_scripts:
753 bld.INSTALL_FILES(bld.env.CTDB_TEST_DATADIR,
754 os.path.join('tests/scripts', t),
755 destname=os.path.join('scripts', t))
757 sed_expr = 's@^TEST_SCRIPTS_DIR=.*@&\\nexport TEST_BIN_DIR=\"%s\"@' % (
758 bld.env.CTDB_TEST_LIBDIR)
759 bld.SAMBA_GENERATOR('ctdb-test-wrap',
760 source='tests/scripts/test_wrap',
761 target='test_wrap',
762 rule='sed -e "%s" ${SRC} > ${TGT}' % sed_expr)
763 bld.INSTALL_FILES(bld.env.CTDB_TEST_DATADIR+"/scripts", 'test_wrap',
764 destname='test_wrap', chmod=0755)
766 sed_expr1 = 's@^test_dir=.*@test_dir=%s\\nexport TEST_BIN_DIR=\"%s\"@' % (
767 bld.env.CTDB_TEST_DATADIR, bld.env.CTDB_TEST_LIBDIR)
768 sed_expr2 = 's@^\(export CTDB_TESTS_ARE_INSTALLED\)=false@\\1=true@'
769 bld.SAMBA_GENERATOR('ctdb-test-runner',
770 source='tests/run_tests.sh',
771 target='ctdb_run_tests.sh',
772 rule='sed -e "%s" -e "%s" ${SRC} > ${TGT}' % (
773 sed_expr1, sed_expr2))
774 bld.INSTALL_FILES('${BINDIR}', 'ctdb_run_tests.sh',
775 destname='ctdb_run_tests', chmod=0755)
776 bld.symlink_as(os.path.join(bld.env.BINDIR, 'ctdb_run_cluster_tests'),
777 'ctdb_run_tests')
779 test_eventscript_links = [
780 'events.d',
781 'functions',
782 'nfs-checks.d',
783 'nfs-linux-kernel-callout',
784 'statd-callout'
787 test_link_dir = os.path.join(bld.env.CTDB_TEST_DATADIR,
788 'eventscripts/etc-ctdb')
789 for t in test_eventscript_links:
790 bld.symlink_as(os.path.join(test_link_dir, t),
791 os.path.join(bld.env.CTDB_ETCDIR, t))
793 # Tests that use onnode need to overwrite link to in-tree
794 # functions file when installed
795 bld.symlink_as(os.path.join(bld.env.CTDB_TEST_DATADIR, 'onnode/functions'),
796 os.path.join(bld.env.CTDB_ETCDIR, 'functions'))
797 bld.symlink_as(os.path.join(bld.env.CTDB_TEST_DATADIR, 'simple/functions'),
798 os.path.join(bld.env.CTDB_ETCDIR, 'functions'))
800 # Need a link to nodes file because $CTDB_BASE is overridden
801 bld.symlink_as(os.path.join(bld.env.CTDB_TEST_DATADIR, 'simple/nodes'),
802 os.path.join(bld.env.CTDB_ETCDIR, 'nodes'))
805 def testonly(ctx):
806 cmd = 'tests/run_tests.sh -V tests/var'
807 ret = samba_utils.RUN_COMMAND(cmd)
808 if ret != 0:
809 print('tests exited with exit status %d' % ret)
810 sys.exit(ret)
813 def test(ctx):
814 import Scripting
815 Scripting.commands.append('build')
816 Scripting.commands.append('testonly')
819 def autotest(ctx):
820 env = samba_utils.LOAD_ENVIRONMENT()
821 ld = 'LD_PRELOAD=%s' % env.SOCKET_WRAPPER_SO_PATH
822 cmd = '%s tests/run_tests.sh -e -S -C' % ld
823 ret = samba_utils.RUN_COMMAND(cmd)
824 if ret != 0:
825 print('autotest exited with exit status %d' % ret)
826 sys.exit(ret)
829 def show_version(ctx):
830 print VERSION
833 def dist():
834 samba_dist.DIST_FILES('VERSION:VERSION', extend=True)
836 t = 'include/ctdb_version.h'
837 cmd = 'packaging/mkversion.sh %s %s' % (t, VERSION)
838 ret = samba_utils.RUN_COMMAND(cmd)
839 if ret != 0:
840 print('Command "%s" failed with exit status %d' % (cmd, ret))
841 sys.exit(ret)
842 samba_dist.DIST_FILES('ctdb/%s:%s' % (t, t), extend=True)
844 t = 'ctdb.spec'
845 sed_expr1 = 's/@VERSION@/%s/g' % VERSION
846 sed_expr2 = 's/@RELEASE@/%s/g' % '1'
847 cmd = 'sed -e "%s" -e "%s" packaging/RPM/ctdb.spec.in > %s' % (
848 sed_expr1, sed_expr2, t)
849 ret = samba_utils.RUN_COMMAND(cmd)
850 if ret != 0:
851 print('Command "%s" failed with exit status %d' % (cmd, ret))
852 sys.exit(ret)
853 samba_dist.DIST_FILES('ctdb/%s:%s' % (t, t), extend=True)
855 cmd = 'make -C doc'
856 ret = samba_utils.RUN_COMMAND(cmd)
857 if ret != 0:
858 print('Command "%s" failed with exit status %d' % (cmd, ret))
859 sys.exit(ret)
860 for t in manpages:
861 samba_dist.DIST_FILES('ctdb/doc/%s:doc/%s' % (t, t), extend=True)
862 samba_dist.DIST_FILES('ctdb/doc/%s.html:doc/%s.html' % (t, t),
863 extend=True)
865 samba_dist.dist()
868 def rpmonly(ctx):
869 opts = os.getenv('RPM_OPTIONS') or ''
870 cmd = 'rpmbuild -ta --clean --rmsource %s ctdb-%s.tar.gz' % (opts, VERSION)
871 ret = samba_utils.RUN_COMMAND(cmd)
872 if ret != 0:
873 print('rpmbuild exited with exit status %d' % ret)
874 sys.exit(ret)
877 def rpm(ctx):
878 import Scripting
879 Scripting.commands.append('dist')
880 Scripting.commands.append('rpmonly')
883 def ctags(ctx):
884 "build 'tags' file using ctags"
885 import Utils
886 source_root = os.path.dirname(Utils.g_module.root_path)
887 cmd = 'ctags $(find %s -name "*.[ch]")' % source_root
888 print("Running: %s" % cmd)
889 ret = samba_utils.RUN_COMMAND(cmd)
890 if ret != 0:
891 print('ctags failed with exit status %d' % ret)
892 sys.exit(ret)