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