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''')
56 opt
.PRIVATE_EXTENSION_DEFAULT('ctdb')
58 opt
.RECURSE('lib/replace')
60 opt
.RECURSE('lib/util')
62 opt
.RECURSE('lib/talloc')
63 opt
.RECURSE('lib/tevent')
64 opt
.RECURSE('lib/tdb')
66 opt
.add_option('--enable-infiniband',
67 help=("Turn on infiniband support (default=no)"),
68 action
="store_true", dest
='ctdb_infiniband', default
=False)
69 opt
.add_option('--enable-pmda',
70 help=("Turn on PCP pmda support (default=no)"),
71 action
="store_true", dest
='ctdb_pmda', default
=False)
73 opt
.add_option('--with-logdir',
74 help=("Path to log directory"),
75 action
="store", dest
='ctdb_logdir', default
=None)
76 opt
.add_option('--with-socketpath',
77 help=("path to CTDB daemon socket"),
78 action
="store", dest
='ctdb_sockpath', default
=None)
83 # No need to build python bindings for talloc/tevent/tdb
84 if conf
.IN_LAUNCH_DIR():
85 conf
.env
.standalone_ctdb
= True
86 Options
.options
.disable_python
= True
88 conf
.RECURSE('lib/replace')
90 if conf
.env
.standalone_ctdb
:
91 conf
.SAMBA_CHECK_PERL(mandatory
=True)
93 conf
.SAMBA_CHECK_PYTHON(mandatory
=True, version
=(2,5,0))
94 conf
.SAMBA_CHECK_PYTHON_HEADERS(mandatory
=True)
96 if conf
.CHECK_FOR_THIRD_PARTY():
97 conf
.RECURSE('third_party/popt')
99 if not conf
.CHECK_POPT():
100 raise Utils
.WafError('popt development packages have not been found\nIf third_party is installed, check that it is in the proper place.')
102 conf
.define('USING_SYSTEM_POPT', 1)
104 conf
.RECURSE('lib/util')
106 conf
.RECURSE('lib/talloc')
107 conf
.RECURSE('lib/tevent')
108 conf
.RECURSE('lib/tdb')
109 if conf
.env
.standalone_ctdb
or conf
.CONFIG_GET('ENABLE_SELFTEST'):
110 conf
.RECURSE('lib/socket_wrapper')
111 conf
.env
.SOCKET_WRAPPER_SO_PATH
= conf
.CONFIG_GET('LIBSOCKET_WRAPPER_SO_PATH')
113 conf
.CHECK_HEADERS('sched.h')
114 conf
.CHECK_HEADERS('procinfo.h')
115 if sys
.platform
.startswith('aix') and not conf
.CHECK_FUNCS('thread_setsched'):
116 Logs
.error('Need thread_setsched() on AIX')
118 elif not conf
.CHECK_FUNCS('sched_setscheduler'):
119 Logs
.error('Need sched_setscheduler()')
121 conf
.CHECK_FUNCS('mlockall')
123 if not conf
.CHECK_VARIABLE('ETIME', headers
='errno.h'):
124 conf
.DEFINE('ETIME', 'ETIMEDOUT')
126 if sys
.platform
.startswith('linux'):
127 conf
.SET_TARGET_TYPE('pcap', 'EMPTY')
129 if not conf
.CHECK_HEADERS('pcap.h'):
130 Logs
.error('Need libpcap')
132 if not conf
.CHECK_FUNCS_IN('pcap_open_live', 'pcap', headers
='pcap.h'):
133 Logs
.error('Need libpcap')
136 if not conf
.CHECK_FUNCS_IN('backtrace backtrace_symbols', 'execinfo',
137 checklibc
=True, headers
='execinfo.h'):
138 Logs
.error('backtrace support not available')
141 if Options
.options
.ctdb_pmda
:
144 if not conf
.CHECK_HEADERS('pcp/pmapi.h pcp/impl.h pcp/pmda.h',
147 if not conf
.CHECK_FUNCS_IN('pmProgname', 'pcp'):
149 if not conf
.CHECK_FUNCS_IN('pmdaDaemon', 'pcp_pmda'):
154 Logs
.error("PMDA support not available")
157 Logs
.info('Building with PMDA support')
158 conf
.define('HAVE_PMDA', 1)
159 conf
.env
.CTDB_PMDADIR
= os
.path
.join(conf
.env
.LOCALSTATEDIR
,
160 'lib/pcp/pmdas/ctdb')
162 have_infiniband
= False
163 if Options
.options
.ctdb_infiniband
:
166 if not conf
.CHECK_HEADERS('infiniband/verbs.h rdma/rdma_cma.h'):
168 if not conf
.CHECK_FUNCS_IN('ibv_create_qp', 'ibverbs'):
170 if not conf
.CHECK_FUNCS_IN('rdma_connect', 'rdmacm'):
173 have_infiniband
= True
175 Logs
.error("Infiniband support not available")
178 Logs
.info('Building with Infiniband support')
179 conf
.define('HAVE_INFINIBAND', 1)
180 conf
.define('USE_INFINIBAND', 1)
182 conf
.env
.CTDB_BINDIR
= os
.path
.join(conf
.env
.EXEC_PREFIX
, 'bin')
183 conf
.env
.CTDB_ETCDIR
= os
.path
.join(conf
.env
.SYSCONFDIR
, 'ctdb')
184 conf
.env
.CTDB_VARDIR
= os
.path
.join(conf
.env
.LOCALSTATEDIR
, 'lib/ctdb')
185 conf
.env
.CTDB_RUNDIR
= os
.path
.join(conf
.env
.LOCALSTATEDIR
, 'run/ctdb')
186 conf
.env
.CTDB_HELPER_BINDIR
= os
.path
.join(conf
.env
.LIBEXECDIR
, 'ctdb')
188 if Options
.options
.ctdb_logdir
:
189 conf
.env
.CTDB_LOGDIR
= Options
.options
.ctdb_logdir
191 conf
.env
.CTDB_LOGDIR
= os
.path
.join(conf
.env
.LOCALSTATEDIR
, 'log')
193 if Options
.options
.ctdb_sockpath
:
194 conf
.env
.CTDB_SOCKPATH
= Options
.options
.ctdb_sockpath
196 conf
.env
.CTDB_SOCKPATH
= os
.path
.join(conf
.env
.CTDB_RUNDIR
,
198 conf
.define('CTDB_SOCKET', conf
.env
.CTDB_SOCKPATH
)
200 conf
.ADD_CFLAGS('''-DCTDB_HELPER_BINDIR=\"%s\"
204 -DCTDB_RUNDIR=\"%s\"''' % (
205 conf
.env
.CTDB_HELPER_BINDIR
,
206 conf
.env
.CTDB_LOGDIR
,
207 conf
.env
.CTDB_ETCDIR
,
208 conf
.env
.CTDB_VARDIR
,
209 conf
.env
.CTDB_RUNDIR
))
211 conf
.env
.CTDB_TEST_DATADIR
= os
.path
.join(conf
.env
.EXEC_PREFIX
,
213 conf
.env
.CTDB_TEST_LIBEXECDIR
= os
.path
.join(conf
.env
.LIBEXECDIR
, 'ctdb/tests')
215 # Allow unified compilation and separate compilation of utilities
217 if not conf
.env
.standalone_ctdb
:
218 conf
.ADD_EXTRA_INCLUDES('#include/public #ctdb/include #ctdb')
221 # Building from tarball
222 conf
.ADD_EXTRA_INCLUDES('#include')
224 # Building standalone CTDB from within Samba tree
225 conf
.ADD_EXTRA_INCLUDES('#ctdb/include')
226 conf
.ADD_EXTRA_INCLUDES('#ctdb')
227 conf
.ADD_EXTRA_INCLUDES('#lib #lib/replace')
229 conf
.DEFINE('HAVE_CONFIG_H', 1, add_to_cflags
=True)
230 conf
.DEFINE('SAMBA_UTIL_CORE_ONLY', 1, add_to_cflags
=True)
231 conf
.SAMBA_CONFIG_H()
233 if 'XSLTPROC_MANPAGES' in conf
.env
and conf
.env
['XSLTPROC_MANPAGES']:
234 conf
.env
.ctdb_generate_manpages
= True
236 conf
.env
.ctdb_generate_manpages
= False
238 Logs
.info("xsltproc unavailable, checking for pre-built manpages")
239 conf
.env
.ctdb_prebuilt_manpages
= []
241 if os
.path
.exists(os
.path
.join("doc", m
)):
242 Logs
.info(" %s: yes" % (m
))
243 conf
.env
.ctdb_prebuilt_manpages
.append(m
)
245 Logs
.info(" %s: no" % (m
))
248 if bld
.env
.standalone_ctdb
:
249 # enable building of public headers in the build tree
250 bld
.env
.build_public_headers
= 'include/public'
252 version_h
= samba_utils
.os_path_relpath(os
.path
.join(Options
.launch_dir
,
256 if bld
.env
.standalone_ctdb
:
257 ctdb_mkversion
= '../packaging/mkversion.sh'
258 t
= bld
.SAMBA_GENERATOR('ctdb-version-header',
259 target
='include/ctdb_version.h',
260 rule
='%s ${TGT} %s' % (ctdb_mkversion
, VERSION
),
261 dep_vars
=['VERSION'])
262 t
.env
.VERSION
= VERSION
264 t
= bld
.SAMBA_GENERATOR('ctdb-samba-version-header',
266 rule
='printf "#include \\"ctdb_version.h\\" \\n#define SAMBA_VERSION_STRING CTDB_VERSION_STRING\\n" > ${TGT}',
267 dep_vars
=['VERSION'])
268 t
.env
.VERSION
= VERSION
270 t
= bld
.SAMBA_GENERATOR('ctdb-samba-version-header',
271 target
='include/ctdb_version.h',
272 rule
='printf "#include \\"%s\\" \\n#define CTDB_VERSION_STRING SAMBA_VERSION_STRING\\n" > ${TGT}' % version_h
,
273 dep_vars
=['VERSION'])
274 t
.env
.VERSION
= VERSION
276 bld
.env
.PKGCONFIGDIR
= '${LIBDIR}/pkgconfig'
278 bld
.RECURSE('lib/replace')
279 if bld
.CHECK_FOR_THIRD_PARTY():
280 bld
.RECURSE('third_party/popt')
282 bld
.RECURSE('lib/tdb_wrap')
283 bld
.RECURSE('lib/util')
284 bld
.RECURSE('lib/async_req')
286 bld
.RECURSE('lib/talloc')
287 bld
.RECURSE('lib/tevent')
288 bld
.RECURSE('lib/tdb')
289 if bld
.env
.standalone_ctdb
or bld
.CONFIG_GET('SOCKET_WRAPPER'):
290 bld
.RECURSE('lib/socket_wrapper')
292 if bld
.env
.standalone_ctdb
:
293 # If a combined build is implemented, CTDB will want to
294 # build against samba-util rather than samba-util-core.
295 # Similarly, other Samba subsystems expect samba-util. So,
296 # for a standalone build, just define a fake samba-util
297 # subsystem that pulls in samba-util-core.
298 bld
.SAMBA_SUBSYSTEM('samba-util',
300 deps
='samba-util-core')
302 bld
.SAMBA_SUBSYSTEM('ctdb-tcp',
303 source
=bld
.SUBDIR('tcp',
304 'tcp_connect.c tcp_init.c tcp_io.c'),
306 deps
='replace tdb talloc tevent')
309 if bld
.env
.HAVE_INFINIBAND
:
310 bld
.SAMBA_SUBSYSTEM('ctdb-ib',
311 source
=bld
.SUBDIR('ib',
312 '''ibwrapper.c ibw_ctdb.c
315 deps
='replace talloc tevent tdb')
316 ib_deps
= ' ctdb-ib rdmacm ibverbs'
318 if sys
.platform
.startswith('linux'):
319 CTDB_SYSTEM_SRC
= bld
.SUBDIR('common', 'system_linux.c')
320 elif sys
.platform
.startswith('aix'):
321 CTDB_SYSTEM_SRC
= bld
.SUBDIR('common', 'system_aix.c')
322 elif sys
.platform
.startswith('freebsd'):
323 CTDB_SYSTEM_SRC
= bld
.SUBDIR('common', 'system_freebsd.c')
324 elif sys
.platform
.startswith('gnukfreebsd'):
325 CTDB_SYSTEM_SRC
= bld
.SUBDIR('common', 'system_kfreebsd.c')
326 elif sys
.platform
== 'gnu':
327 CTDB_SYSTEM_SRC
= bld
.SUBDIR('common', 'system_gnu.c')
329 Logs
.error("Platform %s not supported" % sys
.platform
)
331 bld
.SAMBA_SUBSYSTEM('ctdb-system',
332 source
=bld
.SUBDIR('common',
333 'system_common.c system_util.c') +
336 deps
='replace talloc tevent tdb pcap samba-util')
338 bld
.SAMBA_SUBSYSTEM('ctdb-common',
339 source
=bld
.SUBDIR('common',
340 '''ctdb_io.c ctdb_util.c ctdb_ltdb.c
343 deps
='replace popt talloc tevent tdb popt ctdb-system')
345 bld
.SAMBA_SUBSYSTEM('ctdb-util',
346 source
=bld
.SUBDIR('common',
347 '''db_hash.c srvid.c reqid.c
348 pkt_read.c pkt_write.c comm.c
349 logging.c rb_tree.c tunable.c
351 deps
='''samba-util tevent-util
352 replace talloc tevent tdb''')
354 bld
.SAMBA_SUBSYSTEM('ctdb-protocol',
355 source
=bld
.SUBDIR('protocol',
356 '''protocol_header.c protocol_packet.c
357 protocol_types.c protocol_call.c
364 deps
='replace talloc tdb')
366 bld
.SAMBA_SUBSYSTEM('ctdb-client',
367 source
=bld
.SUBDIR('client', 'ctdb_client.c'),
369 deps
='''replace popt talloc tevent tdb
370 samba-util tdb-wrap ctdb-util''')
372 bld
.SAMBA_SUBSYSTEM('ctdb-client2',
373 source
=bld
.SUBDIR('client',
374 '''client_connect.c client_call.c
375 client_message.c client_control.c
376 client_message_sync.c
377 client_control_sync.c
378 client_db.c client_util.c
381 deps
='replace talloc tevent tdb tdb-wrap')
383 bld
.SAMBA_SUBSYSTEM('ctdb-ipalloc',
384 source
=bld
.SUBDIR('server',
385 '''ipalloc_deterministic.c
386 ipalloc_nondeterministic.c
392 deps
='ctdb-protocol replace talloc tevent')
394 bld
.SAMBA_SUBSYSTEM('ctdb-server',
395 source
='server/ctdbd.c ' +
397 '''ctdb_daemon.c ctdb_recoverd.c
398 ctdb_recover.c ctdb_freeze.c
399 ctdb_tunables.c ctdb_monitor.c
400 ctdb_server.c ctdb_control.c
401 ctdb_call.c ctdb_ltdb_server.c
402 ctdb_traverse.c eventscript.c
404 ctdb_persistent.c ctdb_keepalive.c
407 ctdb_logging_syslog.c
410 ctdb_vacuum.c ctdb_banning.c
413 ctdb_lock.c ctdb_fork.c'''),
415 deps
='ctdb-ipalloc replace popt talloc tevent tdb talloc_report')
417 bld
.SAMBA_BINARY('ctdbd',
419 deps
='''ctdb-server ctdb-client ctdb-common
420 ctdb-system ctdb-tcp ctdb-util''' +
422 install_path
='${SBINDIR}',
425 bld
.SAMBA_BINARY('ctdb',
426 source
='tools/ctdb.c',
427 deps
='''ctdb-client2 ctdb-protocol ctdb-util ctdb-system
429 install_path
='${BINDIR}',
432 bld
.SAMBA_BINARY('ctdb_killtcp',
433 source
='tools/ctdb_killtcp.c',
434 deps
='''ctdb-protocol ctdb-util ctdb-system
435 samba-util replace''',
436 install_path
='${CTDB_HELPER_BINDIR}')
438 bld
.SAMBA_BINARY('ltdbtool',
439 source
='tools/ltdbtool.c',
442 install_path
='${BINDIR}',
443 manpages
='ltdbtool.1')
445 bld
.SAMBA_BINARY('ctdb_lock_helper',
446 source
='server/ctdb_lock_helper.c',
447 deps
='samba-util ctdb-system talloc tdb',
449 install_path
='${CTDB_HELPER_BINDIR}')
451 bld
.SAMBA_BINARY('ctdb_event_helper',
452 source
='server/ctdb_event_helper.c',
454 deps
='samba-util ctdb-system replace tdb',
455 install_path
='${CTDB_HELPER_BINDIR}')
457 bld
.SAMBA_BINARY('ctdb_recovery_helper',
458 source
='server/ctdb_recovery_helper.c',
459 deps
='''ctdb-client2 ctdb-protocol ctdb-util
460 samba-util replace tdb''',
461 install_path
='${CTDB_HELPER_BINDIR}')
463 bld
.SAMBA_BINARY('ctdb_mutex_fcntl_helper',
464 source
='server/ctdb_mutex_fcntl_helper.c',
467 install_path
='${CTDB_HELPER_BINDIR}')
469 bld
.SAMBA_GENERATOR('ctdb-smnotify-h',
470 source
='utils/smnotify/smnotify.x',
471 target
='utils/smnotify/smnotify.h',
472 rule
='rpcgen -h ${SRC} > ${TGT}')
474 xdr_buf_hack
= 'sed -e "s@^\([ \t]*register int32_t \*buf\);@\\1 = buf;@"'
476 bld
.SAMBA_GENERATOR('ctdb-smnotify-x',
477 source
='utils/smnotify/smnotify.x',
478 target
='utils/smnotify/gen_xdr.c',
479 rule
='rpcgen -c ${SRC} | ' + xdr_buf_hack
+ ' > ${TGT}')
481 bld
.SAMBA_GENERATOR('ctdb-smnotify-c',
482 source
='utils/smnotify/smnotify.x',
483 target
='utils/smnotify/gen_smnotify.c',
484 rule
='rpcgen -l ${SRC} > ${TGT}')
486 bld
.SAMBA_BINARY('smnotify',
487 source
=bld
.SUBDIR('utils/smnotify',
488 'smnotify.c gen_smnotify.c gen_xdr.c'),
489 deps
='ctdb-smnotify-h ctdb-smnotify-c ctdb-smnotify-x popt',
490 includes
='utils utils/smnotify',
491 install_path
='${CTDB_HELPER_BINDIR}')
493 bld
.SAMBA_BINARY('ping_pong',
494 source
='utils/ping_pong/ping_pong.c',
496 install_path
='${BINDIR}',
497 manpages
='ping_pong.1')
499 if bld
.env
.HAVE_PMDA
:
500 bld
.SAMBA_BINARY('pmdactdb',
501 source
='utils/pmda/pmda_ctdb.c',
503 deps
='''ctdb-client2 ctdb-protocol ctdb-util
504 samba-util pcp_pmda pcp''',
505 install_path
='${CTDB_PMDADIR}')
506 bld
.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/Install',
508 bld
.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/Remove',
510 bld
.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/pmns',
512 bld
.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/domain.h',
514 bld
.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/help',
516 bld
.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/README',
519 sed_expr1
= 's|/usr/local/var/lib/ctdb|%s|g' % (bld
.env
.CTDB_VARDIR
)
520 sed_expr2
= 's|/usr/local/etc/ctdb|%s|g' % (bld
.env
.CTDB_ETCDIR
)
521 sed_expr3
= 's|/usr/local/var/log|%s|g' % (bld
.env
.CTDB_LOGDIR
)
522 sed_expr4
= 's|/usr/local/var/run/ctdb|%s|g' % (bld
.env
.CTDB_RUNDIR
)
523 sed_expr5
= 's|/usr/local/sbin|%s|g' % (bld
.env
.SBINDIR
)
524 sed_expr6
= 's|/usr/local/libexec/ctdb|%s|g' % (bld
.env
.CTDB_HELPER_BINDIR
)
525 sed_expr7
= 's|/usr/local/bin|%s|g' % (bld
.env
.BINDIR
)
526 sed_cmdline
= '-e "%s" -e "%s" -e "%s" -e "%s" -e "%s" -e "%s" -e "%s"' % \
527 (sed_expr1
, sed_expr2
, sed_expr3
, sed_expr4
, sed_expr5
,
528 sed_expr6
, sed_expr7
)
532 bld
.SAMBA_GENERATOR(x
,
533 source
=os
.path
.join('doc', x
),
535 rule
='sed %s ${SRC} > ${TGT}' % (sed_cmdline
))
537 if bld
.env
.ctdb_generate_manpages
:
538 bld
.MANPAGES('''onnode.1 ctdbd_wrapper.1 ctdbd.conf.5
539 ctdb.7 ctdb-statistics.7 ctdb-tunables.7
540 ctdb_diagnostics.1''',
543 for m
in bld
.env
.ctdb_prebuilt_manpages
:
544 bld
.SAMBA_GENERATOR(m
,
545 source
=os
.path
.join("doc", m
),
547 rule
='sed %s ${SRC} > ${TGT}' % (sed_cmdline
))
548 bld
.INSTALL_FILES('${MANDIR}/man%s' % m
[-1], m
)
550 bld
.SAMBA_GENERATOR('ctdb-onnode',
551 source
='tools/onnode',
553 rule
='sed %s ${SRC} > ${TGT}' % (sed_cmdline
))
554 bld
.INSTALL_FILES('${BINDIR}', 'onnode',
555 destname
='onnode', chmod
=0755)
557 bld
.SAMBA_GENERATOR('ctdb-diagnostics',
558 source
='tools/ctdb_diagnostics',
559 target
='ctdb_diagnostics',
560 rule
='sed %s ${SRC} > ${TGT}' % (sed_cmdline
))
561 bld
.INSTALL_FILES('${BINDIR}', 'ctdb_diagnostics',
562 destname
='ctdb_diagnostics', chmod
=0755)
564 bld
.SAMBA_GENERATOR('ctdb-natgw',
565 source
='tools/ctdb_natgw',
567 rule
='sed %s ${SRC} > ${TGT}' % (sed_cmdline
))
568 bld
.INSTALL_FILES('${CTDB_HELPER_BINDIR}', 'ctdb_natgw',
569 destname
='ctdb_natgw', chmod
=0755)
571 bld
.SAMBA_GENERATOR('ctdb-lvs',
572 source
='tools/ctdb_lvs',
574 rule
='sed %s ${SRC} > ${TGT}' % (sed_cmdline
))
575 bld
.INSTALL_FILES('${CTDB_HELPER_BINDIR}', 'ctdb_lvs',
576 destname
='ctdb_lvs', chmod
=0755)
578 bld
.SAMBA_GENERATOR('ctdbd-wrapper',
579 source
='config/ctdbd_wrapper',
580 target
='ctdbd_wrapper',
581 rule
='sed %s ${SRC} > ${TGT}' % (sed_cmdline
))
582 bld
.INSTALL_FILES('${SBINDIR}', 'ctdbd_wrapper',
583 destname
='ctdbd_wrapper', chmod
=0755)
585 def SUBDIR_MODE_callback(arg
, dirname
, fnames
):
587 fl
= os
.path
.join(dirname
, f
)
588 if os
.path
.isdir(fl
) or os
.path
.islink(fl
):
590 mode
= os
.lstat(fl
).st_mode
& 0777
592 fl
= samba_utils
.os_path_relpath(fl
, arg
['trim_path'])
593 arg
['file_list'].append([fl
, mode
])
595 def SUBDIR_MODE(path
, trim_path
=None):
596 pd
= {'trim_path': trim_path
, 'file_list': []}
597 os
.path
.walk(path
, SUBDIR_MODE_callback
, pd
)
598 return pd
['file_list']
605 if bld
.env
.standalone_ctdb
:
608 configdir
= 'ctdb/config'
610 for t
in etc_subdirs
:
611 files
= SUBDIR_MODE('%s/%s' % (configdir
, t
), trim_path
=configdir
)
613 bld
.INSTALL_FILES(bld
.env
.CTDB_ETCDIR
, 'config/%s' % fmode
[0],
614 destname
=fmode
[0], chmod
=fmode
[1])
616 bld
.SAMBA_GENERATOR('ctdb-functions',
617 source
='config/functions',
619 rule
='sed %s ${SRC} > ${TGT}' % (sed_cmdline
))
620 bld
.INSTALL_FILES(bld
.env
.CTDB_ETCDIR
, 'functions', destname
='functions')
623 'ctdb-crash-cleanup.sh',
624 'debug-hung-script.sh',
627 'nfs-linux-kernel-callout',
632 for t
in etc_scripts
:
633 bld
.INSTALL_FILES(bld
.env
.CTDB_ETCDIR
, 'config/%s' % t
,
634 destname
=t
, chmod
=0755)
636 bld
.SAMBA_GENERATOR('ctdb-sudoers',
637 source
='config/ctdb.sudoers',
638 target
='ctdb.sudoers',
639 rule
='sed %s ${SRC} > ${TGT}' % (sed_cmdline
))
640 bld
.INSTALL_FILES('${SYSCONFDIR}/sudoers.d', 'ctdb.sudoers',
643 bld
.INSTALL_FILES('${CTDB_ETCDIR}/notify.d', 'config/notify.d.README',
646 bld
.install_dir(bld
.env
.CTDB_LOGDIR
)
647 bld
.install_dir(bld
.env
.CTDB_RUNDIR
)
648 bld
.install_dir(bld
.env
.CTDB_VARDIR
)
659 'protocol_types_test',
660 'protocol_client_test',
664 for target
in ctdb_unit_tests
:
665 src
= 'tests/src/' + target
+ '.c'
667 bld
.SAMBA_BINARY(target
,
669 deps
='''talloc tevent tdb tevent-util
670 LIBASYNC_REQ samba-util''',
671 install_path
='${CTDB_TEST_LIBEXECDIR}')
673 bld
.SAMBA_BINARY('reqid_test',
674 source
='tests/src/reqid_test.c',
676 install_path
='${CTDB_TEST_LIBEXECDIR}')
678 bld
.SAMBA_BINARY('rb_test',
679 source
='tests/src/rb_test.c',
680 deps
='samba-util talloc',
681 install_path
='${CTDB_TEST_LIBEXECDIR}')
683 bld
.SAMBA_BINARY('ctdb_packet_parse',
684 source
='tests/src/ctdb_packet_parse.c',
685 deps
='talloc tevent tdb ctdb-protocol',
686 install_path
='${CTDB_TEST_LIBEXECDIR}')
688 bld
.SAMBA_BINARY('porting_tests',
689 source
='tests/src/porting_tests.c',
690 deps
='samba-util ctdb-system popt',
691 install_path
='${CTDB_TEST_LIBEXECDIR}')
694 bld
.SAMBA_SUBSYSTEM('ctdb-tests-common',
695 source
=bld
.SUBDIR('tests/src',
696 'cluster_wait.c test_options.c'),
698 deps
='replace popt talloc tevent tdb')
707 'fetch_readonly_loop',
710 'update_record_persistent',
714 for target
in ctdb_tests
:
715 src
= 'tests/src/' + target
+ '.c'
717 bld
.SAMBA_BINARY(target
,
720 deps
='''ctdb-client2 ctdb-protocol ctdb-util
721 samba-util ctdb-tests-common''',
722 install_path
='${CTDB_TEST_LIBEXECDIR}')
724 bld
.SAMBA_BINARY('ctdb_takeover_tests',
725 source
='tests/src/ctdb_takeover_tests.c',
726 deps
='''replace popt tdb tevent talloc ctdb-system
727 samba-util tdb-wrap talloc_report
728 ctdb-ipalloc ctdb-protocol ctdb-util''',
730 install_path
='${CTDB_TEST_LIBEXECDIR}')
732 bld
.SAMBA_BINARY('fake_ctdbd',
733 source
='tests/src/fake_ctdbd.c',
734 deps
='''ctdb-util ctdb-protocol ctdb-system
735 samba-util tevent-util LIBASYNC_REQ popt''',
736 install_path
='${CTDB_TEST_LIBEXECDIR}')
738 if bld
.env
.HAVE_INFINIBAND
:
739 bld
.SAMBA_BINARY('ibwrapper_test',
740 source
='ib/ibwrapper_test.c',
742 deps
='replace talloc ctdb-client ctdb-common' +
744 install_path
='${CTDB_TEST_LIBEXECDIR}')
758 for t
in test_subdirs
:
759 files
= SUBDIR_MODE('tests/%s' % t
, trim_path
='tests')
761 bld
.INSTALL_FILES(bld
.env
.CTDB_TEST_DATADIR
, 'tests/%s' % fmode
[0],
762 destname
=fmode
[0], chmod
=fmode
[1])
764 # Install tests/scripts directory without test_wrap
771 for t
in test_scripts
:
772 bld
.INSTALL_FILES(bld
.env
.CTDB_TEST_DATADIR
,
773 os
.path
.join('tests/scripts', t
),
774 destname
=os
.path
.join('scripts', t
))
776 sed_expr
= 's@^TEST_SCRIPTS_DIR=.*@&\\nexport TEST_BIN_DIR=\"%s\"@' % (
777 bld
.env
.CTDB_TEST_LIBEXECDIR
)
778 bld
.SAMBA_GENERATOR('ctdb-test-wrap',
779 source
='tests/scripts/test_wrap',
781 rule
='sed -e "%s" ${SRC} > ${TGT}' % sed_expr
)
782 bld
.INSTALL_FILES(bld
.env
.CTDB_TEST_DATADIR
+"/scripts", 'test_wrap',
783 destname
='test_wrap', chmod
=0755)
785 bld
.SAMBA_GENERATOR('ctdb-test-script-install-paths',
786 source
='tests/scripts/script_install_paths.sh',
787 target
='script_install_paths.sh',
788 rule
='sed %s ${SRC} > ${TGT}' % (sed_cmdline
))
789 bld
.INSTALL_FILES(bld
.env
.CTDB_TEST_DATADIR
+"/scripts",
790 'script_install_paths.sh',
791 destname
='script_install_paths.sh', chmod
=0644)
793 sed_expr1
= 's@^test_dir=.*@test_dir=%s\\nexport TEST_BIN_DIR=\"%s\"@' % (
794 bld
.env
.CTDB_TEST_DATADIR
, bld
.env
.CTDB_TEST_LIBEXECDIR
)
795 sed_expr2
= 's@^\(export CTDB_TESTS_ARE_INSTALLED\)=false@\\1=true@'
796 bld
.SAMBA_GENERATOR('ctdb-test-runner',
797 source
='tests/run_tests.sh',
798 target
='ctdb_run_tests.sh',
799 rule
='sed -e "%s" -e "%s" ${SRC} > ${TGT}' % (
800 sed_expr1
, sed_expr2
))
801 bld
.INSTALL_FILES('${BINDIR}', 'ctdb_run_tests.sh',
802 destname
='ctdb_run_tests', chmod
=0755)
803 bld
.symlink_as(os
.path
.join(bld
.env
.BINDIR
, 'ctdb_run_cluster_tests'),
806 test_eventscript_links
= [
810 'nfs-linux-kernel-callout',
814 test_link_dir
= os
.path
.join(bld
.env
.CTDB_TEST_DATADIR
,
815 'eventscripts/etc-ctdb')
816 for t
in test_eventscript_links
:
817 bld
.symlink_as(os
.path
.join(test_link_dir
, t
),
818 os
.path
.join(bld
.env
.CTDB_ETCDIR
, t
))
820 # Tests that use onnode need to overwrite link to in-tree
821 # functions file when installed
822 bld
.symlink_as(os
.path
.join(bld
.env
.CTDB_TEST_DATADIR
, 'onnode/functions'),
823 os
.path
.join(bld
.env
.CTDB_ETCDIR
, 'functions'))
824 bld
.symlink_as(os
.path
.join(bld
.env
.CTDB_TEST_DATADIR
, 'simple/functions'),
825 os
.path
.join(bld
.env
.CTDB_ETCDIR
, 'functions'))
827 # Need a link to nodes file because $CTDB_BASE is overridden
828 bld
.symlink_as(os
.path
.join(bld
.env
.CTDB_TEST_DATADIR
, 'simple/nodes'),
829 os
.path
.join(bld
.env
.CTDB_ETCDIR
, 'nodes'))
833 cmd
= 'tests/run_tests.sh -V tests/var'
834 ret
= samba_utils
.RUN_COMMAND(cmd
)
836 print('tests exited with exit status %d' % ret
)
842 Scripting
.commands
.append('build')
843 Scripting
.commands
.append('testonly')
847 env
= samba_utils
.LOAD_ENVIRONMENT()
848 ld
= 'LD_PRELOAD=%s' % env
.SOCKET_WRAPPER_SO_PATH
849 cmd
= '%s tests/run_tests.sh -e -S -C' % ld
850 ret
= samba_utils
.RUN_COMMAND(cmd
)
852 print('autotest exited with exit status %d' % ret
)
856 def show_version(ctx
):
861 samba_dist
.DIST_FILES('VERSION:VERSION', extend
=True)
863 t
= 'include/ctdb_version.h'
864 cmd
= 'packaging/mkversion.sh %s %s' % (t
, VERSION
)
865 ret
= samba_utils
.RUN_COMMAND(cmd
)
867 print('Command "%s" failed with exit status %d' % (cmd
, ret
))
869 samba_dist
.DIST_FILES('ctdb/%s:%s' % (t
, t
), extend
=True)
872 sed_expr1
= 's/@VERSION@/%s/g' % VERSION
873 sed_expr2
= 's/@RELEASE@/%s/g' % '1'
874 cmd
= 'sed -e "%s" -e "%s" packaging/RPM/ctdb.spec.in > %s' % (
875 sed_expr1
, sed_expr2
, t
)
876 ret
= samba_utils
.RUN_COMMAND(cmd
)
878 print('Command "%s" failed with exit status %d' % (cmd
, ret
))
880 samba_dist
.DIST_FILES('ctdb/%s:%s' % (t
, t
), extend
=True)
883 ret
= samba_utils
.RUN_COMMAND(cmd
)
885 print('Command "%s" failed with exit status %d' % (cmd
, ret
))
888 samba_dist
.DIST_FILES('ctdb/doc/%s:doc/%s' % (t
, t
), extend
=True)
889 samba_dist
.DIST_FILES('ctdb/doc/%s.html:doc/%s.html' % (t
, t
),
896 opts
= os
.getenv('RPM_OPTIONS') or ''
897 cmd
= 'rpmbuild -ta --clean --rmsource %s ctdb-%s.tar.gz' % (opts
, VERSION
)
898 ret
= samba_utils
.RUN_COMMAND(cmd
)
900 print('rpmbuild exited with exit status %d' % ret
)
906 Scripting
.commands
.append('dist')
907 Scripting
.commands
.append('rpmonly')
911 "build 'tags' file using ctags"
913 source_root
= os
.path
.dirname(Utils
.g_module
.root_path
)
914 cmd
= 'ctags $(find %s -name "*.[ch]")' % source_root
915 print("Running: %s" % cmd
)
916 ret
= samba_utils
.RUN_COMMAND(cmd
)
918 print('ctags failed with exit status %d' % ret
)