9 # find the buildtools directory
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'):
21 elif os
.path
.isfile('../VERSION'):
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''')
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)
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')
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.')
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')
117 elif not conf
.CHECK_FUNCS('sched_setscheduler'):
118 Logs
.error('Need sched_setscheduler()')
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')
128 if not conf
.CHECK_HEADERS('pcap.h'):
129 Logs
.error('Need libpcap')
131 if not conf
.CHECK_FUNCS_IN('pcap_open_live', 'pcap', headers
='pcap.h'):
132 Logs
.error('Need libpcap')
135 if not conf
.CHECK_FUNCS_IN('backtrace backtrace_symbols', 'execinfo',
136 checklibc
=True, headers
='execinfo.h'):
137 Logs
.error('backtrace support not available')
140 if Options
.options
.ctdb_pmda
:
143 if not conf
.CHECK_HEADERS('pcp/pmapi.h pcp/impl.h pcp/pmda.h',
146 if not conf
.CHECK_FUNCS_IN('pmProgname', 'pcp'):
148 if not conf
.CHECK_FUNCS_IN('pmdaDaemon', 'pcp_pmda'):
153 Logs
.error("PMDA support not available")
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
:
165 if not conf
.CHECK_HEADERS('infiniband/verbs.h rdma/rdma_cma.h'):
167 if not conf
.CHECK_FUNCS_IN('ibv_create_qp', 'ibverbs'):
169 if not conf
.CHECK_FUNCS_IN('rdma_connect', 'rdmacm'):
172 have_infiniband
= True
174 Logs
.error("Infiniband support not available")
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
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
195 conf
.env
.CTDB_SOCKPATH
= os
.path
.join(conf
.env
.CTDB_RUNDIR
,
197 conf
.define('CTDB_SOCKET', conf
.env
.CTDB_SOCKPATH
)
199 conf
.ADD_CFLAGS('''-DCTDB_HELPER_BINDIR=\"%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
,
212 conf
.env
.CTDB_TEST_LIBDIR
= os
.path
.join(conf
.env
.LIBDIR
, 'ctdb-tests')
214 # Allow unified compilation and separate compilation of utilities
216 if not conf
.env
.standalone_ctdb
:
217 conf
.ADD_EXTRA_INCLUDES('#include/public #ctdb/include #ctdb')
220 # Building from tarball
221 conf
.ADD_EXTRA_INCLUDES('#include')
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
235 conf
.env
.ctdb_generate_manpages
= False
237 Logs
.info("xsltproc unavailable, checking for pre-built manpages")
238 conf
.env
.ctdb_prebuilt_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
)
244 Logs
.info(" %s: no" % (m
))
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
,
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',
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
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',
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'),
305 deps
='replace tdb talloc tevent')
308 if bld
.env
.HAVE_INFINIBAND
:
309 bld
.SAMBA_SUBSYSTEM('ctdb-ib',
310 source
=bld
.SUBDIR('ib',
311 '''ibwrapper.c ibw_ctdb.c
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')
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') +
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
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
361 deps
='replace talloc tdb')
363 bld
.SAMBA_SUBSYSTEM('ctdb-client',
364 source
=bld
.SUBDIR('client', 'ctdb_client.c'),
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
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
389 deps
='ctdb-protocol replace talloc tevent')
391 bld
.SAMBA_SUBSYSTEM('ctdb-server',
392 source
='server/ctdbd.c ' +
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
401 ctdb_persistent.c ctdb_keepalive.c
404 ctdb_logging_syslog.c
407 ctdb_vacuum.c ctdb_banning.c
410 ctdb_lock.c ctdb_fork.c'''),
412 deps
='ctdb-ipalloc replace popt talloc tevent tdb talloc_report')
414 bld
.SAMBA_BINARY('ctdbd',
416 deps
='''ctdb-server ctdb-client ctdb-common
417 ctdb-system ctdb-tcp ctdb-util''' +
419 install_path
='${SBINDIR}',
422 bld
.SAMBA_BINARY('ctdb',
423 source
='tools/ctdb.c',
424 deps
='ctdb-client ctdb-common ctdb-system ctdb-util',
426 install_path
='${BINDIR}',
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',
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',
446 install_path
='${CTDB_HELPER_BINDIR}')
448 bld
.SAMBA_BINARY('ctdb_event_helper',
449 source
='server/ctdb_event_helper.c',
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',
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',
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',
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',
505 bld
.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/Remove',
507 bld
.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/pmns',
509 bld
.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/domain.h',
511 bld
.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/help',
513 bld
.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/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
)
529 bld
.SAMBA_GENERATOR(x
,
530 source
=os
.path
.join('doc', 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''',
539 for m
in bld
.env
.ctdb_prebuilt_manpages
:
540 bld
.SAMBA_GENERATOR(m
,
541 source
=os
.path
.join("doc", 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',
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',
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',
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
):
583 fl
= os
.path
.join(dirname
, f
)
584 if os
.path
.isdir(fl
) or os
.path
.islink(fl
):
586 mode
= os
.lstat(fl
).st_mode
& 0777
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']
601 if bld
.env
.standalone_ctdb
:
604 configdir
= 'ctdb/config'
606 for t
in etc_subdirs
:
607 files
= SUBDIR_MODE('%s/%s' % (configdir
, t
), trim_path
=configdir
)
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',
615 rule
='sed %s ${SRC} > ${TGT}' % (sed_cmdline
))
616 bld
.INSTALL_FILES(bld
.env
.CTDB_ETCDIR
, 'functions', destname
='functions')
619 'ctdb-crash-cleanup.sh',
620 'debug-hung-script.sh',
623 'nfs-linux-kernel-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',
639 bld
.INSTALL_FILES('${CTDB_ETCDIR}/notify.d', 'config/notify.d.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
)
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
,
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',
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'),
693 deps
='replace popt talloc tevent tdb')
702 'fetch_readonly_loop',
705 'update_record_persistent',
709 for target
in ctdb_tests
:
710 src
= 'tests/src/' + target
+ '.c'
712 bld
.SAMBA_BINARY(target
,
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''',
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',
737 deps
='replace talloc ctdb-client ctdb-common' +
739 install_path
='${CTDB_TEST_LIBDIR}')
753 for t
in test_subdirs
:
754 files
= SUBDIR_MODE('tests/%s' % t
, trim_path
='tests')
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
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',
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'),
801 test_eventscript_links
= [
805 'nfs-linux-kernel-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'))
828 cmd
= 'tests/run_tests.sh -V tests/var'
829 ret
= samba_utils
.RUN_COMMAND(cmd
)
831 print('tests exited with exit status %d' % ret
)
837 Scripting
.commands
.append('build')
838 Scripting
.commands
.append('testonly')
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
)
847 print('autotest exited with exit status %d' % ret
)
851 def show_version(ctx
):
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
)
862 print('Command "%s" failed with exit status %d' % (cmd
, ret
))
864 samba_dist
.DIST_FILES('ctdb/%s:%s' % (t
, t
), extend
=True)
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
)
873 print('Command "%s" failed with exit status %d' % (cmd
, ret
))
875 samba_dist
.DIST_FILES('ctdb/%s:%s' % (t
, t
), extend
=True)
878 ret
= samba_utils
.RUN_COMMAND(cmd
)
880 print('Command "%s" failed with exit status %d' % (cmd
, ret
))
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
),
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
)
895 print('rpmbuild exited with exit status %d' % ret
)
901 Scripting
.commands
.append('dist')
902 Scripting
.commands
.append('rpmonly')
906 "build 'tags' file using ctags"
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
)
913 print('ctags failed with exit status %d' % ret
)