selftest/manage-ca: update manage-CA-samba.example.com.sh
[Samba.git] / ctdb / wscript
blob8682974e5fa9ce5c71f3cdc986855416c8c8d026
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-client2 ctdb-protocol ctdb-util
501 samba-util pcp_pmda pcp''',
502 install_path='${CTDB_PMDADIR}')
503 bld.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/Install',
504 destname='Install')
505 bld.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/Remove',
506 destname='Remove')
507 bld.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/pmns',
508 destname='pmns')
509 bld.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/domain.h',
510 destname='domain.h')
511 bld.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/help',
512 destname='help')
513 bld.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/README',
514 destname='README')
516 sed_expr1 = 's|/usr/local/var/lib/ctdb|%s|g' % (bld.env.CTDB_VARDIR)
517 sed_expr2 = 's|/usr/local/etc/ctdb|%s|g' % (bld.env.CTDB_ETCDIR)
518 sed_expr3 = 's|/usr/local/var/log|%s|g' % (bld.env.CTDB_LOGDIR)
519 sed_expr4 = 's|/usr/local/var/run/ctdb|%s|g' % (bld.env.CTDB_RUNDIR)
520 sed_expr5 = 's|/usr/local/sbin|%s|g' % (bld.env.SBINDIR)
521 sed_expr6 = 's|/usr/local/libexec/ctdb|%s|g' % (bld.env.CTDB_HELPER_BINDIR)
522 sed_expr7 = 's|/usr/local/bin|%s|g' % (bld.env.BINDIR)
523 sed_cmdline = '-e "%s" -e "%s" -e "%s" -e "%s" -e "%s" -e "%s" -e "%s"' % \
524 (sed_expr1, sed_expr2, sed_expr3, sed_expr4, sed_expr5,
525 sed_expr6, sed_expr7)
527 for f in manpages:
528 x = '%s.xml' % (f)
529 bld.SAMBA_GENERATOR(x,
530 source=os.path.join('doc', x),
531 target=x,
532 rule='sed %s ${SRC} > ${TGT}' % (sed_cmdline))
534 if bld.env.ctdb_generate_manpages:
535 bld.MANPAGES('''onnode.1 ctdbd_wrapper.1 ctdbd.conf.5
536 ctdb.7 ctdb-statistics.7 ctdb-tunables.7''',
537 True)
538 else:
539 for m in bld.env.ctdb_prebuilt_manpages:
540 bld.SAMBA_GENERATOR(m,
541 source=os.path.join("doc", m),
542 target=m,
543 rule='sed %s ${SRC} > ${TGT}' % (sed_cmdline))
544 bld.INSTALL_FILES('${MANDIR}/man%s' % m[-1], m)
546 bld.SAMBA_GENERATOR('ctdb-onnode',
547 source='tools/onnode',
548 target='onnode',
549 rule='sed %s ${SRC} > ${TGT}' % (sed_cmdline))
550 bld.INSTALL_FILES('${BINDIR}', 'onnode',
551 destname='onnode', chmod=0755)
553 bld.SAMBA_GENERATOR('ctdb-diagnostics',
554 source='tools/ctdb_diagnostics',
555 target='ctdb_diagnostics',
556 rule='sed %s ${SRC} > ${TGT}' % (sed_cmdline))
557 bld.INSTALL_FILES('${BINDIR}', 'ctdb_diagnostics',
558 destname='ctdb_diagnostics', chmod=0755)
560 bld.SAMBA_GENERATOR('ctdb-natgw',
561 source='tools/ctdb_natgw',
562 target='ctdb_natgw',
563 rule='sed %s ${SRC} > ${TGT}' % (sed_cmdline))
564 bld.INSTALL_FILES('${CTDB_HELPER_BINDIR}', 'ctdb_natgw',
565 destname='ctdb_natgw', chmod=0755)
567 bld.SAMBA_GENERATOR('ctdb-lvs',
568 source='tools/ctdb_lvs',
569 target='ctdb_lvs',
570 rule='sed %s ${SRC} > ${TGT}' % (sed_cmdline))
571 bld.INSTALL_FILES('${CTDB_HELPER_BINDIR}', 'ctdb_lvs',
572 destname='ctdb_lvs', chmod=0755)
574 bld.SAMBA_GENERATOR('ctdbd-wrapper',
575 source='config/ctdbd_wrapper',
576 target='ctdbd_wrapper',
577 rule='sed %s ${SRC} > ${TGT}' % (sed_cmdline))
578 bld.INSTALL_FILES('${SBINDIR}', 'ctdbd_wrapper',
579 destname='ctdbd_wrapper', chmod=0755)
581 def SUBDIR_MODE_callback(arg, dirname, fnames):
582 for f in fnames:
583 fl = os.path.join(dirname, f)
584 if os.path.isdir(fl) or os.path.islink(fl):
585 continue
586 mode = os.lstat(fl).st_mode & 0777
587 if arg['trim_path']:
588 fl = samba_utils.os_path_relpath(fl, arg['trim_path'])
589 arg['file_list'].append([fl, mode])
591 def SUBDIR_MODE(path, trim_path=None):
592 pd = {'trim_path': trim_path, 'file_list': []}
593 os.path.walk(path, SUBDIR_MODE_callback, pd)
594 return pd['file_list']
596 etc_subdirs = [
597 'events.d',
598 'nfs-checks.d'
601 if bld.env.standalone_ctdb:
602 configdir = 'config'
603 else:
604 configdir = 'ctdb/config'
606 for t in etc_subdirs:
607 files = SUBDIR_MODE('%s/%s' % (configdir, t), trim_path=configdir)
608 for fmode in files:
609 bld.INSTALL_FILES(bld.env.CTDB_ETCDIR, 'config/%s' % fmode[0],
610 destname=fmode[0], chmod=fmode[1])
612 bld.SAMBA_GENERATOR('ctdb-functions',
613 source='config/functions',
614 target='functions',
615 rule='sed %s ${SRC} > ${TGT}' % (sed_cmdline))
616 bld.INSTALL_FILES(bld.env.CTDB_ETCDIR, 'functions', destname='functions')
618 etc_scripts = [
619 'ctdb-crash-cleanup.sh',
620 'debug-hung-script.sh',
621 'debug_locks.sh',
622 'gcore_trace.sh',
623 'nfs-linux-kernel-callout',
624 'notify.sh',
625 'statd-callout'
628 for t in etc_scripts:
629 bld.INSTALL_FILES(bld.env.CTDB_ETCDIR, 'config/%s' % t,
630 destname=t, chmod=0755)
632 bld.SAMBA_GENERATOR('ctdb-sudoers',
633 source='config/ctdb.sudoers',
634 target='ctdb.sudoers',
635 rule='sed %s ${SRC} > ${TGT}' % (sed_cmdline))
636 bld.INSTALL_FILES('${SYSCONFDIR}/sudoers.d', 'ctdb.sudoers',
637 destname='ctdb')
639 bld.INSTALL_FILES('${CTDB_ETCDIR}/notify.d', 'config/notify.d.README',
640 destname='README')
642 bld.install_dir(bld.env.CTDB_LOGDIR)
643 bld.install_dir(bld.env.CTDB_RUNDIR)
644 bld.install_dir(bld.env.CTDB_VARDIR)
646 # Unit tests
647 ctdb_unit_tests = [
648 'db_hash_test',
649 'srvid_test',
650 'pkt_read_test',
651 'pkt_write_test',
652 'comm_test',
653 'comm_server_test',
654 'comm_client_test',
655 'protocol_types_test',
656 'protocol_client_test',
659 for target in ctdb_unit_tests:
660 src = 'tests/src/' + target + '.c'
662 bld.SAMBA_BINARY(target,
663 source=src,
664 deps='''talloc tevent tdb tevent-util
665 LIBASYNC_REQ samba-util''',
666 install_path='${CTDB_TEST_LIBDIR}')
668 bld.SAMBA_BINARY('reqid_test',
669 source='tests/src/reqid_test.c',
670 deps='samba-util',
671 install_path='${CTDB_TEST_LIBDIR}')
673 bld.SAMBA_BINARY('rb_test',
674 source='tests/src/rb_test.c',
675 deps='samba-util talloc',
676 install_path='${CTDB_TEST_LIBDIR}')
678 bld.SAMBA_BINARY('ctdb_packet_parse',
679 source='tests/src/ctdb_packet_parse.c',
680 deps='talloc tevent tdb ctdb-protocol',
681 install_path='${CTDB_TEST_LIBDIR}')
683 bld.SAMBA_BINARY('porting_tests',
684 source='tests/src/porting_tests.c',
685 deps='samba-util ctdb-system popt',
686 install_path='${CTDB_TEST_LIBDIR}')
689 bld.SAMBA_SUBSYSTEM('ctdb-tests-common',
690 source=bld.SUBDIR('tests/src',
691 'cluster_wait.c test_options.c'),
692 includes='include',
693 deps='replace popt talloc tevent tdb')
695 ctdb_tests = [
696 'g_lock_loop',
697 'message_ring',
698 'fetch_ring',
699 'fetch_loop',
700 'fetch_loop_key',
701 'fetch_readonly',
702 'fetch_readonly_loop',
703 'transaction_loop',
704 'update_record',
705 'update_record_persistent',
706 'lock_tdb'
709 for target in ctdb_tests:
710 src = 'tests/src/' + target + '.c'
712 bld.SAMBA_BINARY(target,
713 source=src,
714 includes='include',
715 deps='''ctdb-client2 ctdb-protocol ctdb-util
716 samba-util ctdb-tests-common''',
717 install_path='${CTDB_TEST_LIBDIR}')
719 bld.SAMBA_BINARY('ctdb_takeover_tests',
720 source='tests/src/ctdb_takeover_tests.c',
721 deps='''replace popt tdb tevent talloc ctdb-system
722 samba-util tdb-wrap talloc_report
723 ctdb-ipalloc ctdb-protocol ctdb-util''',
724 includes='include',
725 install_path='${CTDB_TEST_LIBDIR}')
727 bld.SAMBA_BINARY('fake_ctdbd',
728 source='tests/src/fake_ctdbd.c',
729 deps='''ctdb-util ctdb-protocol ctdb-system
730 samba-util tevent-util LIBASYNC_REQ popt''',
731 install_path='${CTDB_TEST_LIBDIR}')
733 if bld.env.HAVE_INFINIBAND:
734 bld.SAMBA_BINARY('ibwrapper_test',
735 source='ib/ibwrapper_test.c',
736 includes='include',
737 deps='replace talloc ctdb-client ctdb-common' +
738 ib_deps,
739 install_path='${CTDB_TEST_LIBDIR}')
741 test_subdirs = [
742 'complex',
743 'cunit',
744 'events.d',
745 'eventscripts',
746 'onnode',
747 'shellcheck',
748 'simple',
749 'takeover',
750 'tool'
753 for t in test_subdirs:
754 files = SUBDIR_MODE('tests/%s' % t, trim_path='tests')
755 for fmode in files:
756 bld.INSTALL_FILES(bld.env.CTDB_TEST_DATADIR, 'tests/%s' % fmode[0],
757 destname=fmode[0], chmod=fmode[1])
759 # Install tests/scripts directory without test_wrap
760 test_scripts = [
761 'common.sh',
762 'integration.bash',
763 'unit.sh'
766 for t in test_scripts:
767 bld.INSTALL_FILES(bld.env.CTDB_TEST_DATADIR,
768 os.path.join('tests/scripts', t),
769 destname=os.path.join('scripts', t))
771 sed_expr = 's@^TEST_SCRIPTS_DIR=.*@&\\nexport TEST_BIN_DIR=\"%s\"@' % (
772 bld.env.CTDB_TEST_LIBDIR)
773 bld.SAMBA_GENERATOR('ctdb-test-wrap',
774 source='tests/scripts/test_wrap',
775 target='test_wrap',
776 rule='sed -e "%s" ${SRC} > ${TGT}' % sed_expr)
777 bld.INSTALL_FILES(bld.env.CTDB_TEST_DATADIR+"/scripts", 'test_wrap',
778 destname='test_wrap', chmod=0755)
780 bld.SAMBA_GENERATOR('ctdb-test-script-install-paths',
781 source='tests/scripts/script_install_paths.sh',
782 target='script_install_paths.sh',
783 rule='sed %s ${SRC} > ${TGT}' % (sed_cmdline))
784 bld.INSTALL_FILES(bld.env.CTDB_TEST_DATADIR+"/scripts",
785 'script_install_paths.sh',
786 destname='script_install_paths.sh', chmod=0644)
788 sed_expr1 = 's@^test_dir=.*@test_dir=%s\\nexport TEST_BIN_DIR=\"%s\"@' % (
789 bld.env.CTDB_TEST_DATADIR, bld.env.CTDB_TEST_LIBDIR)
790 sed_expr2 = 's@^\(export CTDB_TESTS_ARE_INSTALLED\)=false@\\1=true@'
791 bld.SAMBA_GENERATOR('ctdb-test-runner',
792 source='tests/run_tests.sh',
793 target='ctdb_run_tests.sh',
794 rule='sed -e "%s" -e "%s" ${SRC} > ${TGT}' % (
795 sed_expr1, sed_expr2))
796 bld.INSTALL_FILES('${BINDIR}', 'ctdb_run_tests.sh',
797 destname='ctdb_run_tests', chmod=0755)
798 bld.symlink_as(os.path.join(bld.env.BINDIR, 'ctdb_run_cluster_tests'),
799 'ctdb_run_tests')
801 test_eventscript_links = [
802 'events.d',
803 'functions',
804 'nfs-checks.d',
805 'nfs-linux-kernel-callout',
806 'statd-callout'
809 test_link_dir = os.path.join(bld.env.CTDB_TEST_DATADIR,
810 'eventscripts/etc-ctdb')
811 for t in test_eventscript_links:
812 bld.symlink_as(os.path.join(test_link_dir, t),
813 os.path.join(bld.env.CTDB_ETCDIR, t))
815 # Tests that use onnode need to overwrite link to in-tree
816 # functions file when installed
817 bld.symlink_as(os.path.join(bld.env.CTDB_TEST_DATADIR, 'onnode/functions'),
818 os.path.join(bld.env.CTDB_ETCDIR, 'functions'))
819 bld.symlink_as(os.path.join(bld.env.CTDB_TEST_DATADIR, 'simple/functions'),
820 os.path.join(bld.env.CTDB_ETCDIR, 'functions'))
822 # Need a link to nodes file because $CTDB_BASE is overridden
823 bld.symlink_as(os.path.join(bld.env.CTDB_TEST_DATADIR, 'simple/nodes'),
824 os.path.join(bld.env.CTDB_ETCDIR, 'nodes'))
827 def testonly(ctx):
828 cmd = 'tests/run_tests.sh -V tests/var'
829 ret = samba_utils.RUN_COMMAND(cmd)
830 if ret != 0:
831 print('tests exited with exit status %d' % ret)
832 sys.exit(ret)
835 def test(ctx):
836 import Scripting
837 Scripting.commands.append('build')
838 Scripting.commands.append('testonly')
841 def autotest(ctx):
842 env = samba_utils.LOAD_ENVIRONMENT()
843 ld = 'LD_PRELOAD=%s' % env.SOCKET_WRAPPER_SO_PATH
844 cmd = '%s tests/run_tests.sh -e -S -C' % ld
845 ret = samba_utils.RUN_COMMAND(cmd)
846 if ret != 0:
847 print('autotest exited with exit status %d' % ret)
848 sys.exit(ret)
851 def show_version(ctx):
852 print VERSION
855 def dist():
856 samba_dist.DIST_FILES('VERSION:VERSION', extend=True)
858 t = 'include/ctdb_version.h'
859 cmd = 'packaging/mkversion.sh %s %s' % (t, VERSION)
860 ret = samba_utils.RUN_COMMAND(cmd)
861 if ret != 0:
862 print('Command "%s" failed with exit status %d' % (cmd, ret))
863 sys.exit(ret)
864 samba_dist.DIST_FILES('ctdb/%s:%s' % (t, t), extend=True)
866 t = 'ctdb.spec'
867 sed_expr1 = 's/@VERSION@/%s/g' % VERSION
868 sed_expr2 = 's/@RELEASE@/%s/g' % '1'
869 cmd = 'sed -e "%s" -e "%s" packaging/RPM/ctdb.spec.in > %s' % (
870 sed_expr1, sed_expr2, t)
871 ret = samba_utils.RUN_COMMAND(cmd)
872 if ret != 0:
873 print('Command "%s" failed with exit status %d' % (cmd, ret))
874 sys.exit(ret)
875 samba_dist.DIST_FILES('ctdb/%s:%s' % (t, t), extend=True)
877 cmd = 'make -C doc'
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 for t in manpages:
883 samba_dist.DIST_FILES('ctdb/doc/%s:doc/%s' % (t, t), extend=True)
884 samba_dist.DIST_FILES('ctdb/doc/%s.html:doc/%s.html' % (t, t),
885 extend=True)
887 samba_dist.dist()
890 def rpmonly(ctx):
891 opts = os.getenv('RPM_OPTIONS') or ''
892 cmd = 'rpmbuild -ta --clean --rmsource %s ctdb-%s.tar.gz' % (opts, VERSION)
893 ret = samba_utils.RUN_COMMAND(cmd)
894 if ret != 0:
895 print('rpmbuild exited with exit status %d' % ret)
896 sys.exit(ret)
899 def rpm(ctx):
900 import Scripting
901 Scripting.commands.append('dist')
902 Scripting.commands.append('rpmonly')
905 def ctags(ctx):
906 "build 'tags' file using ctags"
907 import Utils
908 source_root = os.path.dirname(Utils.g_module.root_path)
909 cmd = 'ctags $(find %s -name "*.[ch]")' % source_root
910 print("Running: %s" % cmd)
911 ret = samba_utils.RUN_COMMAND(cmd)
912 if ret != 0:
913 print('ctags failed with exit status %d' % ret)
914 sys.exit(ret)