7 # find the buildtools directory
9 while not os
.path
.exists(top
+'/buildtools') and len(top
.split('/')) < 5:
11 sys
.path
.insert(0, top
+ '/buildtools/wafsamba')
15 from waflib
import Options
, Logs
, Errors
, Context
17 from wafsamba
import samba_dist
, samba_utils
18 from samba_utils
import MODE_644
, MODE_744
, MODE_755
, MODE_777
20 if os
.path
.isfile('./VERSION'):
22 elif os
.path
.isfile('../VERSION'):
25 Logs
.error("VERSION file not found")
27 default_prefix
= Options
.default_prefix
= '/usr/local'
29 samba_dist
.DIST_DIRS('''ctdb:. lib/replace:lib/replace lib/talloc:lib/talloc
30 lib/tevent:lib/tevent lib/tdb:lib/tdb
31 third_party/socket_wrapper:third_party/socket_wrapper
32 third_party/popt:third_party/popt
33 lib/util:lib/util lib/tdb_wrap:lib/tdb_wrap
34 lib/ccan:lib/ccan libcli/util:libcli/util
35 lib/async_req:lib/async_req
36 lib/pthreadpool:lib/pthreadpool
37 lib/messaging:lib/messaging
38 buildtools:buildtools third_party/waf:third_party/waf''')
51 'ctdb-script.options.5',
63 'ctdb_mutex_ceph_rados_helper.7',
70 env
= samba_utils
.LOAD_ENVIRONMENT()
72 return samba_version
.samba_version_file('%s/VERSION' % vdir
, vdir
, env
)
74 def get_version_string():
75 if Context
.g_module
.VERSION
:
76 return Context
.g_module
.VERSION
77 version
= get_version()
78 Context
.g_module
.VERSION
= version
.STRING
.replace('-', '.')
79 return Context
.g_module
.VERSION
82 opt
.PRIVATE_EXTENSION_DEFAULT('ctdb')
84 opt
.RECURSE('lib/replace')
86 opt
.RECURSE('lib/util')
88 opt
.RECURSE('lib/talloc')
89 opt
.RECURSE('lib/tevent')
90 opt
.RECURSE('lib/tdb')
92 opt
.add_option('--enable-infiniband',
93 help=("Turn on infiniband support (default=no)"),
94 action
="store_true", dest
='ctdb_infiniband', default
=False)
95 opt
.add_option('--enable-pmda',
96 help=("Turn on PCP pmda support (default=no)"),
97 action
="store_true", dest
='ctdb_pmda', default
=False)
98 opt
.add_option('--enable-etcd-reclock',
99 help=("Enable etcd recovery lock helper (default=no)"),
100 action
="store_true", dest
='ctdb_etcd_reclock', default
=False)
101 opt
.add_option('--enable-pcap',
102 help=("Use pcap for packet capture (default=no)"),
103 action
="store_true", dest
='ctdb_pcap', default
=False)
105 opt
.add_option('--with-libcephfs',
106 help=("Directory under which libcephfs is installed"),
107 action
="store", dest
='libcephfs_dir', default
=None)
108 opt
.add_option('--enable-ceph-reclock',
109 help=("Enable Ceph CTDB recovery lock helper (default=no)"),
110 action
="store_true", dest
='ctdb_ceph_reclock', default
=False)
112 opt
.add_option('--with-logdir',
113 help=("Path to log directory"),
114 action
="store", dest
='ctdb_logdir', default
=None)
115 opt
.add_option('--with-socketpath',
116 help=("path to CTDB daemon socket"),
117 action
="store", dest
='ctdb_sockpath', default
=None)
121 # No need to build python bindings for talloc/tevent/tdb
122 if conf
.IN_LAUNCH_DIR():
123 conf
.env
.standalone_ctdb
= True
124 Options
.options
.disable_python
= True
126 conf
.RECURSE('lib/replace')
128 conf
.CHECK_HEADERS(headers
='''sys/socket.h
136 conf
.CHECK_CODE('int s = socket(AF_PACKET, SOCK_RAW, 0);',
137 define
='HAVE_AF_PACKET',
138 headers
='sys/socket.h linux/if_packet.h')
140 conf
.CHECK_CODE('struct sockaddr_ll sall; sall.sll_family = AF_PACKET;',
141 define
='HAVE_PACKETSOCKET',
142 headers
='sys/socket.h linux/if_packet.h')
144 conf
.CHECK_CODE('''pthread_mutex_t m;
146 m.__data.__owner = pid;
148 'HAVE_PTHREAD_INTERNAL_MUTEX_OWNER',
150 msg
='Checking for internal POSIX mutex owner field')
151 if not conf
.env
.HAVE_PTHREAD_INTERNAL_MUTEX_OWNER
:
152 # This is unsupported - please see note in debug_locks.sh
153 Logs
.info('Building without unsupported mutex debugging hack')
155 if conf
.env
.standalone_ctdb
:
156 conf
.SAMBA_CHECK_PERL(mandatory
=True)
158 # This is just for consistency and to check the version for the
159 # build system, see Options.options.disable_python = True above
160 conf
.SAMBA_CHECK_PYTHON()
161 conf
.SAMBA_CHECK_PYTHON_HEADERS()
163 # We just want gnutls_rnd for rand subsystem
164 conf
.CHECK_FUNCS_IN('gnutls_rnd', 'gnutls')
167 if conf
.CHECK_FOR_THIRD_PARTY():
168 conf
.RECURSE('third_party/popt')
169 if conf
.env
.standalone_ctdb
or conf
.CONFIG_GET('ENABLE_SELFTEST'):
170 conf
.RECURSE('third_party/socket_wrapper')
171 conf
.env
.SOCKET_WRAPPER_SO_PATH
= conf
.CONFIG_GET('LIBSOCKET_WRAPPER_SO_PATH')
173 if not conf
.CHECK_POPT():
174 raise Errors
.WafError('popt development packages have not been found\nIf third_party is installed, check that it is in the proper place.')
176 conf
.define('USING_SYSTEM_POPT', 1)
177 conf
.env
.SOCKET_WRAPPER_SO_PATH
= ''
180 if conf
.env
.standalone_ctdb
or conf
.CONFIG_GET('ENABLE_SELFTEST'):
181 if not conf
.CHECK_SOCKET_WRAPPER():
182 raise Errors
.WafError('socket_wrapper package has not been found.\nIf third_party is installed, check that it is in the proper place.')
184 conf
.define('USING_SYSTEM_SOCKET_WRAPPER', 1)
185 conf
.env
.SOCKET_WRAPPER_SO_PATH
= conf
.CONFIG_GET('LIBSOCKET_WRAPPER_SO_PATH')
187 conf
.RECURSE('lib/util')
189 conf
.RECURSE('lib/talloc')
190 conf
.RECURSE('lib/tevent')
191 conf
.RECURSE('lib/tdb')
193 conf
.CHECK_HEADERS('sched.h')
194 conf
.CHECK_HEADERS('procinfo.h')
195 if sys
.platform
.startswith('aix') and not conf
.CHECK_FUNCS('thread_setsched'):
196 Logs
.error('Need thread_setsched() on AIX')
198 elif not conf
.CHECK_FUNCS('sched_setscheduler'):
199 Logs
.error('Need sched_setscheduler()')
201 conf
.CHECK_FUNCS('mlockall')
202 conf
.CHECK_FUNCS('getrusage', headers
="sys/time.h sys/resource.h")
204 if not conf
.CHECK_VARIABLE('ETIME', headers
='errno.h'):
205 conf
.DEFINE('ETIME', 'ETIMEDOUT')
207 if Options
.options
.ctdb_pcap
or not sys
.platform
.startswith('linux'):
208 conf
.DEFINE('ENABLE_PCAP', 1)
209 if not conf
.env
.ENABLE_PCAP
:
210 conf
.SET_TARGET_TYPE('pcap', 'EMPTY')
212 conf
.find_program('pcap-config', var
='PCAP_CONFIG')
213 if conf
.env
.PCAP_CONFIG
:
214 conf
.CHECK_CFG(path
=conf
.env
.PCAP_CONFIG
,
215 args
="--cflags --libs",
218 if not conf
.CHECK_HEADERS('pcap.h'):
219 Logs
.error('Need libpcap')
221 if not conf
.CHECK_FUNCS_IN('pcap_open_live', 'pcap', headers
='pcap.h'):
222 Logs
.error('Need libpcap')
224 conf
.CHECK_FUNCS_IN('pcap_set_immediate_mode', 'pcap', headers
='pcap.h')
226 if not conf
.CHECK_FUNCS_IN('backtrace backtrace_symbols', 'execinfo',
227 checklibc
=True, headers
='execinfo.h'):
228 Logs
.error('backtrace support not available')
231 if Options
.options
.ctdb_pmda
:
234 if not conf
.CHECK_HEADERS('pcp/pmapi.h pcp/impl.h pcp/pmda.h',
237 if not conf
.CHECK_FUNCS_IN('pmProgname', 'pcp'):
239 if not conf
.CHECK_FUNCS_IN('pmdaDaemon', 'pcp_pmda'):
242 conf
.CHECK_TYPE_IN('__pmID_int', 'pcp/pmapi.h pcp/impl.h')
245 Logs
.error("PMDA support not available")
248 Logs
.info('Building with PMDA support')
249 conf
.define('HAVE_PMDA', 1)
250 conf
.env
.CTDB_PMDADIR
= os
.path
.join(conf
.env
.LOCALSTATEDIR
,
251 'lib/pcp/pmdas/ctdb')
253 have_infiniband
= False
254 if Options
.options
.ctdb_infiniband
:
257 if not conf
.CHECK_HEADERS('infiniband/verbs.h rdma/rdma_cma.h'):
259 if not conf
.CHECK_FUNCS_IN('ibv_create_qp', 'ibverbs'):
261 if not conf
.CHECK_FUNCS_IN('rdma_connect', 'rdmacm'):
264 have_infiniband
= True
266 Logs
.error("Infiniband support not available")
269 Logs
.info('Building with Infiniband support')
270 conf
.define('HAVE_INFINIBAND', 1)
271 conf
.define('USE_INFINIBAND', 1)
273 have_etcd_reclock
= False
274 if Options
.options
.ctdb_etcd_reclock
:
276 conf
.check_python_module('etcd')
277 have_etcd_reclock
= True
279 Logs
.error('etcd support not available')
281 if have_etcd_reclock
:
282 Logs
.info('Building with etcd support')
283 conf
.env
.etcd_reclock
= have_etcd_reclock
285 if Options
.options
.libcephfs_dir
:
286 Logs
.error('''--with-libcephfs no longer supported, please use compiler
287 flags instead, e.g. GCC LIBRARY_PATH and C_INCLUDE_PATH''')
290 if Options
.options
.ctdb_ceph_reclock
:
291 if (conf
.CHECK_HEADERS('rados/librados.h', False, False, 'rados') and
292 conf
.CHECK_LIB('rados', shlib
=True)):
293 Logs
.info('Building with Ceph librados recovery lock support')
294 conf
.define('HAVE_LIBRADOS', 1)
296 Logs
.error("Missing librados for Ceph recovery lock support")
299 conf
.env
.CTDB_BINDIR
= os
.path
.join(conf
.env
.EXEC_PREFIX
, 'bin')
300 conf
.env
.CTDB_DATADIR
= os
.path
.join(conf
.env
.EXEC_PREFIX
, 'share/ctdb')
301 conf
.env
.CTDB_ETCDIR
= os
.path
.join(conf
.env
.SYSCONFDIR
, 'ctdb')
302 conf
.env
.CTDB_VARDIR
= os
.path
.join(conf
.env
.LOCALSTATEDIR
, 'lib/ctdb')
303 conf
.env
.CTDB_RUNDIR
= os
.path
.join(conf
.env
.LOCALSTATEDIR
, 'run/ctdb')
304 conf
.env
.CTDB_HELPER_BINDIR
= os
.path
.join(conf
.env
.LIBEXECDIR
, 'ctdb')
306 if Options
.options
.ctdb_logdir
:
307 conf
.env
.CTDB_LOGDIR
= Options
.options
.ctdb_logdir
309 conf
.env
.CTDB_LOGDIR
= os
.path
.join(conf
.env
.LOCALSTATEDIR
, 'log')
311 if Options
.options
.ctdb_sockpath
:
312 conf
.env
.CTDB_SOCKPATH
= Options
.options
.ctdb_sockpath
314 conf
.env
.CTDB_SOCKPATH
= os
.path
.join(conf
.env
.CTDB_RUNDIR
,
316 conf
.define('CTDB_SOCKET', conf
.env
.CTDB_SOCKPATH
)
318 conf
.ADD_CFLAGS('''-DCTDB_HELPER_BINDIR=\"%s\"
320 -DCTDB_DATADIR=\"%s\"
323 -DCTDB_RUNDIR=\"%s\"''' % (
324 conf
.env
.CTDB_HELPER_BINDIR
,
325 conf
.env
.CTDB_LOGDIR
,
326 conf
.env
.CTDB_DATADIR
,
327 conf
.env
.CTDB_ETCDIR
,
328 conf
.env
.CTDB_VARDIR
,
329 conf
.env
.CTDB_RUNDIR
))
331 conf
.env
.CTDB_TEST_DATADIR
= os
.path
.join(conf
.env
.CTDB_DATADIR
, 'tests')
332 conf
.env
.CTDB_TEST_LIBEXECDIR
= os
.path
.join(conf
.env
.LIBEXECDIR
, 'ctdb/tests')
334 # Allow unified compilation and separate compilation of utilities
336 if not conf
.env
.standalone_ctdb
:
337 conf
.ADD_EXTRA_INCLUDES('#include/public #ctdb/include #ctdb')
339 if Context
.g_module
.top
== '.':
340 # Building from tarball
341 conf
.ADD_EXTRA_INCLUDES('#include')
343 # Building standalone CTDB from within Samba tree
344 conf
.ADD_EXTRA_INCLUDES('#ctdb/include')
345 conf
.ADD_EXTRA_INCLUDES('#ctdb')
346 conf
.ADD_EXTRA_INCLUDES('#lib #lib/replace')
348 conf
.DEFINE('HAVE_CONFIG_H', 1, add_to_cflags
=True)
349 conf
.DEFINE('SAMBA_UTIL_CORE_ONLY', 1, add_to_cflags
=True)
350 conf
.SAMBA_CONFIG_H()
352 if 'XSLTPROC_MANPAGES' in conf
.env
and conf
.env
['XSLTPROC_MANPAGES']:
353 conf
.env
.ctdb_generate_manpages
= True
355 conf
.env
.ctdb_generate_manpages
= False
357 Logs
.info("xsltproc unavailable, checking for pre-built manpages")
358 conf
.env
.ctdb_prebuilt_manpages
= []
359 manpages
= manpages_binary
+ manpages_misc
360 if conf
.env
.etcd_reclock
:
361 manpages
+= manpages_etcd
362 if conf
.env
.HAVE_LIBRADOS
:
363 manpages
+= manpages_ceph
365 if os
.path
.exists(os
.path
.join("doc", m
)):
366 Logs
.info(" %s: yes" % (m
))
367 conf
.env
.ctdb_prebuilt_manpages
.append(m
)
369 Logs
.info(" %s: no" % (m
))
372 if bld
.env
.standalone_ctdb
:
373 # enable building of public headers in the build tree
374 bld
.env
.build_public_headers
= 'include/public'
376 if bld
.env
.standalone_ctdb
:
377 bld
.SAMBA_MKVERSION('version.h', '%s/VERSION' % vdir
)
379 bld
.env
.PKGCONFIGDIR
= '${LIBDIR}/pkgconfig'
381 bld
.RECURSE('lib/replace')
382 if bld
.CHECK_FOR_THIRD_PARTY():
383 bld
.RECURSE('third_party/popt')
384 if bld
.env
.standalone_ctdb
or bld
.CONFIG_GET('SOCKET_WRAPPER'):
385 bld
.RECURSE('third_party/socket_wrapper')
387 bld
.RECURSE('lib/tdb_wrap')
388 bld
.RECURSE('lib/util')
389 bld
.RECURSE('lib/async_req')
390 bld
.RECURSE('lib/pthreadpool')
391 bld
.RECURSE('lib/messaging')
393 bld
.RECURSE('lib/talloc')
394 bld
.RECURSE('lib/tevent')
395 bld
.RECURSE('lib/tdb')
397 if bld
.env
.standalone_ctdb
:
398 # If a combined build is implemented, CTDB will want to
399 # build against samba-util rather than samba-util-core.
400 # Similarly, other Samba subsystems expect samba-util. So,
401 # for a standalone build, just define a fake samba-util
402 # subsystem that pulls in samba-util-core.
403 bld
.SAMBA_SUBSYSTEM('samba-util',
405 deps
='samba-util-core')
407 bld
.SAMBA_SUBSYSTEM('ctdb-tcp',
408 source
=bld
.SUBDIR('tcp',
409 'tcp_connect.c tcp_init.c tcp_io.c'),
411 deps
='replace tdb talloc tevent')
414 if bld
.env
.HAVE_INFINIBAND
:
415 bld
.SAMBA_SUBSYSTEM('ctdb-ib',
416 source
=bld
.SUBDIR('ib',
417 '''ibwrapper.c ibw_ctdb.c
420 deps
='replace talloc tevent tdb')
421 ib_deps
= ' ctdb-ib rdmacm ibverbs'
423 bld
.SAMBA_SUBSYSTEM('ctdb-system',
424 source
=bld
.SUBDIR('common',
425 'system_socket.c system.c'),
426 deps
='replace talloc tevent tdb pcap samba-util')
428 bld
.SAMBA_SUBSYSTEM('ctdb-common',
429 source
=bld
.SUBDIR('common',
430 '''ctdb_io.c ctdb_util.c ctdb_ltdb.c
433 deps
='''replace popt talloc tevent tdb popt ctdb-system
434 ctdb-protocol-util''')
436 bld
.SAMBA_SUBSYSTEM('ctdb-util',
437 source
=bld
.SUBDIR('common',
469 bld
.SAMBA_SUBSYSTEM('ctdb-logging-conf',
470 source
='common/logging_conf.c',
471 deps
='ctdb-util talloc')
473 bld
.SAMBA_SUBSYSTEM('ctdb-protocol-basic',
474 source
=bld
.SUBDIR('protocol', 'protocol_basic.c'),
477 bld
.SAMBA_SUBSYSTEM('ctdb-protocol',
478 source
=bld
.SUBDIR('protocol',
479 '''protocol_header.c protocol_packet.c
489 deps
='ctdb-protocol-basic replace talloc tdb')
491 bld
.SAMBA_SUBSYSTEM('ctdb-protocol-util',
492 source
='protocol/protocol_util.c',
493 deps
='ctdb-util replace talloc tdb')
495 bld
.SAMBA_SUBSYSTEM('ctdb-client',
496 source
=bld
.SUBDIR('client',
497 '''client_connect.c client_call.c
498 client_message.c client_control.c
499 client_message_sync.c
500 client_control_sync.c
501 client_db.c client_util.c
504 deps
='''ctdb-protocol
514 bld
.SAMBA_SUBSYSTEM('ctdb-server-util',
515 source
=bld
.SUBDIR('common',
516 '''sock_daemon.c'''),
517 deps
='''samba-util ctdb-util ctdb-system tevent-util
518 LIBASYNC_REQ replace talloc tevent''')
520 bld
.SAMBA_SUBSYSTEM('ctdb-ipalloc',
521 source
=bld
.SUBDIR('server',
522 '''ipalloc_deterministic.c
523 ipalloc_nondeterministic.c
529 deps
='ctdb-protocol-util replace talloc tevent')
531 bld
.SAMBA_BINARY('ctdb-path',
532 source
='common/path_tool.c',
533 cflags
='-DCTDB_PATH_TOOL',
534 deps
='''ctdb-util samba-util talloc replace popt''',
535 install_path
='${CTDB_HELPER_BINDIR}')
537 bld
.SAMBA_SUBSYSTEM('ctdb-cluster-conf',
538 source
='cluster/cluster_conf.c',
541 bld
.SAMBA_SUBSYSTEM('ctdb-database-conf',
542 source
='database/database_conf.c',
545 bld
.SAMBA_SUBSYSTEM('ctdb-event-conf',
546 source
='event/event_conf.c',
549 bld
.SAMBA_SUBSYSTEM('ctdb-failover-conf',
550 source
='failover/failover_conf.c',
553 bld
.SAMBA_SUBSYSTEM('ctdb-legacy-conf',
554 source
='server/legacy_conf.c',
557 bld
.SAMBA_BINARY('ctdb-config',
558 source
='common/conf_tool.c',
559 cflags
='-DCTDB_CONF_TOOL',
560 deps
='''ctdb-logging-conf
566 ctdb-util samba-util talloc replace popt''',
567 install_path
='${CTDB_HELPER_BINDIR}')
569 bld
.SAMBA_SUBSYSTEM('ctdb-event-protocol',
570 source
=bld
.SUBDIR('event',
572 event_protocol_util.c
574 deps
='ctdb-protocol-basic')
576 bld
.SAMBA_LIBRARY('ctdb-event-client',
577 source
='event/event_client.c',
578 deps
='ctdb-event-protocol ctdb-util tevent talloc',
579 private_library
=True)
581 bld
.SAMBA_BINARY('ctdb-eventd',
582 source
=bld
.SUBDIR('event',
589 deps
='''ctdb-event-protocol
590 ctdb-event-conf ctdb-logging-conf
591 ctdb-server-util samba-util ctdb-util
592 talloc tevent replace popt''',
593 install_path
='${CTDB_HELPER_BINDIR}')
595 bld
.SAMBA_BINARY('ctdb-event',
596 source
='event/event_tool.c',
597 cflags
='-DCTDB_EVENT_TOOL',
598 deps
='''ctdb-event-client ctdb-event-protocol
599 ctdb-util samba-util talloc replace''',
600 install_path
='${CTDB_HELPER_BINDIR}')
602 bld
.SAMBA_BINARY('ctdbd',
603 source
='server/ctdbd.c ' +
605 '''ctdb_daemon.c ctdb_recoverd.c
606 ctdb_recover.c ctdb_freeze.c
607 ctdb_tunables.c ctdb_monitor.c
608 ctdb_server.c ctdb_control.c
609 ctdb_call.c ctdb_ltdb_server.c
610 ctdb_traverse.c eventscript.c
612 ctdb_persistent.c ctdb_keepalive.c
616 ctdb_vacuum.c ctdb_banning.c
619 ctdb_lock.c ctdb_fork.c
620 ctdb_tunnel.c ctdb_client.c
624 deps
='''ctdb-common ctdb-system ctdb-protocol
625 ctdb-tcp ctdb-util replace sys_rw popt
633 talloc tevent tdb-wrap tdb talloc_report''' +
635 install_path
='${SBINDIR}',
638 bld
.SAMBA_BINARY('ctdb',
639 source
='tools/ctdb.c',
640 deps
='''ctdb-client ctdb-protocol ctdb-protocol-util
641 ctdb-util ctdb-system samba-util sys_rw popt''',
642 install_path
='${BINDIR}',
645 bld
.SAMBA_BINARY('ctdb_killtcp',
646 source
='tools/ctdb_killtcp.c',
647 deps
='''ctdb-protocol-util ctdb-util ctdb-system
648 samba-util replace''',
649 install_path
='${CTDB_HELPER_BINDIR}')
651 bld
.SAMBA_BINARY('ltdbtool',
652 source
='tools/ltdbtool.c',
655 install_path
='${BINDIR}',
656 manpages
='ltdbtool.1')
658 bld
.SAMBA_BINARY('ctdb_lock_helper',
659 source
='server/ctdb_lock_helper.c',
660 deps
='''samba-util sys_rw ctdb-system tevent-util
661 talloc tevent tdb''',
663 install_path
='${CTDB_HELPER_BINDIR}')
665 bld
.SAMBA_BINARY('ctdb_recovery_helper',
666 source
='server/ctdb_recovery_helper.c',
667 deps
='''ctdb-client ctdb-protocol ctdb-util
668 samba-util sys_rw replace tdb''',
669 install_path
='${CTDB_HELPER_BINDIR}')
671 bld
.SAMBA_BINARY('ctdb_takeover_helper',
672 source
='server/ctdb_takeover_helper.c',
673 deps
='''ctdb-client ctdb-protocol ctdb-util
674 samba-util sys_rw replace ctdb-ipalloc popt''',
675 install_path
='${CTDB_HELPER_BINDIR}')
677 bld
.SAMBA_BINARY('ctdb_mutex_fcntl_helper',
678 source
='server/ctdb_mutex_fcntl_helper.c',
679 deps
='''sys_rw ctdb-system tevent-util ctdb-util
683 install_path
='${CTDB_HELPER_BINDIR}')
685 bld
.SAMBA_GENERATOR('ctdb-smnotify-h',
686 source
='utils/smnotify/smnotify.x',
687 target
='utils/smnotify/smnotify.h',
688 rule
='rpcgen -h ${SRC} > ${TGT}')
690 xdr_buf_hack
= 'grep -Fv "register int32_t *buf;"'
692 bld
.SAMBA_GENERATOR('ctdb-smnotify-x',
693 source
='utils/smnotify/smnotify.x',
694 target
='utils/smnotify/gen_xdr.c',
695 rule
='rpcgen -c ${SRC} | ' + xdr_buf_hack
+ ' > ${TGT}')
697 bld
.SAMBA_GENERATOR('ctdb-smnotify-c',
698 source
='utils/smnotify/smnotify.x',
699 target
='utils/smnotify/gen_smnotify.c',
700 rule
='rpcgen -l ${SRC} > ${TGT}')
702 bld
.SAMBA_BINARY('smnotify',
703 source
=bld
.SUBDIR('utils/smnotify',
704 'smnotify.c gen_smnotify.c gen_xdr.c'),
705 deps
='ctdb-smnotify-h ctdb-smnotify-c ctdb-smnotify-x popt tirpc',
706 includes
='utils utils/smnotify',
707 install_path
='${CTDB_HELPER_BINDIR}')
709 bld
.SAMBA_BINARY('ping_pong',
710 source
='utils/ping_pong/ping_pong.c',
712 install_path
='${BINDIR}',
713 manpages
='ping_pong.1')
715 if bld
.env
.HAVE_PTHREAD_INTERNAL_MUTEX_OWNER
:
716 bld
.SAMBA_BINARY('tdb_mutex_check',
717 source
='utils/tdb/tdb_mutex_check.c',
719 install_path
='${CTDB_HELPER_BINDIR}')
721 if bld
.env
.HAVE_PMDA
:
722 bld
.SAMBA_BINARY('pmdactdb',
723 source
='utils/pmda/pmda_ctdb.c',
724 deps
='''ctdb-client ctdb-protocol ctdb-util
725 samba-util pcp_pmda pcp''',
726 install_path
='${CTDB_PMDADIR}')
727 bld
.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/Install',
729 bld
.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/Remove',
731 bld
.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/pmns',
733 bld
.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/domain.h',
735 bld
.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/help',
737 bld
.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/README',
740 if bld
.env
.HAVE_LIBRADOS
:
741 bld
.SAMBA_BINARY('ctdb_mutex_ceph_rados_helper',
742 source
='utils/ceph/ctdb_mutex_ceph_rados_helper.c',
743 deps
='talloc tevent rados',
745 install_path
='${CTDB_HELPER_BINDIR}')
747 sed_expr1
= 's|/usr/local/var/lib/ctdb|%s|g' % (bld
.env
.CTDB_VARDIR
)
748 sed_expr2
= 's|/usr/local/etc/ctdb|%s|g' % (bld
.env
.CTDB_ETCDIR
)
749 sed_expr3
= 's|/usr/local/var/log|%s|g' % (bld
.env
.CTDB_LOGDIR
)
750 sed_expr4
= 's|/usr/local/var/run/ctdb|%s|g' % (bld
.env
.CTDB_RUNDIR
)
751 sed_expr5
= 's|/usr/local/sbin|%s|g' % (bld
.env
.SBINDIR
)
752 sed_expr6
= 's|/usr/local/libexec/ctdb|%s|g' % (bld
.env
.CTDB_HELPER_BINDIR
)
753 sed_expr7
= 's|/usr/local/bin|%s|g' % (bld
.env
.BINDIR
)
754 sed_expr8
= 's|/usr/local/share/ctdb|%s|g' % (bld
.env
.CTDB_DATADIR
)
755 sed_cmdline
= '-e "%s" ' * 8 % \
756 (sed_expr1
, sed_expr2
, sed_expr3
, sed_expr4
, sed_expr5
,
757 sed_expr6
, sed_expr7
, sed_expr8
)
759 manpages_extra
= list(manpages_misc
)
760 if bld
.env
.etcd_reclock
:
761 manpages_extra
+= manpages_etcd
762 if bld
.env
.HAVE_LIBRADOS
:
763 manpages_extra
+= manpages_ceph
764 for f
in manpages_binary
+ manpages_extra
:
766 bld
.SAMBA_GENERATOR(x
,
767 source
=os
.path
.join('doc', x
),
769 rule
='sed %s ${SRC} > ${TGT}' % (sed_cmdline
))
771 if bld
.env
.ctdb_generate_manpages
:
772 bld
.MANPAGES(' '.join(manpages_extra
), True)
774 for m
in bld
.env
.ctdb_prebuilt_manpages
:
775 bld
.SAMBA_GENERATOR(m
,
776 source
=os
.path
.join("doc", m
),
778 rule
='sed %s ${SRC} > ${TGT}' % (sed_cmdline
))
779 bld
.INSTALL_FILES('${MANDIR}/man%s' % m
[-1], m
)
781 bld
.SAMBA_GENERATOR('ctdb-onnode',
782 source
='tools/onnode',
784 rule
='sed %s ${SRC} > ${TGT}' % (sed_cmdline
))
785 bld
.INSTALL_FILES('${BINDIR}', 'onnode',
786 destname
='onnode', chmod
=MODE_755
)
788 bld
.SAMBA_GENERATOR('ctdb-diagnostics',
789 source
='tools/ctdb_diagnostics',
790 target
='ctdb_diagnostics',
791 rule
='sed %s ${SRC} > ${TGT}' % (sed_cmdline
))
792 bld
.INSTALL_FILES('${BINDIR}', 'ctdb_diagnostics',
793 destname
='ctdb_diagnostics', chmod
=MODE_755
)
795 if bld
.env
.etcd_reclock
:
796 bld
.SAMBA_GENERATOR('ctdb-etcd-lock',
797 source
='utils/etcd/ctdb_etcd_lock',
798 target
='ctdb_etcd_lock',
799 rule
='sed %s ${SRC} > ${TGT}' % (sed_cmdline
))
800 bld
.INSTALL_FILES('${CTDB_HELPER_BINDIR}', 'ctdb_etcd_lock',
801 destname
='ctdb_etcd_lock', chmod
=MODE_744
)
803 bld
.SAMBA_GENERATOR('ctdb-natgw',
804 source
='tools/ctdb_natgw',
806 rule
='sed %s ${SRC} > ${TGT}' % (sed_cmdline
))
807 bld
.INSTALL_FILES('${CTDB_HELPER_BINDIR}', 'ctdb_natgw',
808 destname
='ctdb_natgw', chmod
=MODE_755
)
810 bld
.SAMBA_GENERATOR('ctdb-lvs',
811 source
='tools/ctdb_lvs',
813 rule
='sed %s ${SRC} > ${TGT}' % (sed_cmdline
))
814 bld
.INSTALL_FILES('${CTDB_HELPER_BINDIR}', 'ctdb_lvs',
815 destname
='ctdb_lvs', chmod
=MODE_755
)
817 def SUBDIR_MODE_callback(arg
, dirname
, fnames
):
819 fl
= os
.path
.join(dirname
, f
)
820 if os
.path
.isdir(fl
) or os
.path
.islink(fl
):
822 mode
= os
.lstat(fl
).st_mode
& MODE_777
824 fl
= samba_utils
.os
.path
.relpath(fl
, arg
['trim_path'])
825 arg
['file_list'].append([fl
, mode
])
827 def SUBDIR_MODE(path
, trim_path
=None):
828 pd
= {'trim_path': trim_path
, 'file_list': []}
829 for dirname
, _subdirs
, fnames
in os
.walk(path
):
830 SUBDIR_MODE_callback(pd
, dirname
, fnames
)
831 return pd
['file_list']
833 event_script_subdirs
= [
841 if bld
.env
.standalone_ctdb
:
844 configdir
= 'ctdb/config'
846 for t
in event_script_subdirs
:
847 bld
.INSTALL_DIR(os
.path
.join(bld
.env
.CTDB_ETCDIR
, t
))
848 files
= SUBDIR_MODE('%s/%s' % (configdir
, t
), trim_path
=configdir
)
850 bld
.INSTALL_FILES(bld
.env
.CTDB_DATADIR
, 'config/%s' % fmode
[0],
851 destname
=fmode
[0], chmod
=fmode
[1])
853 for t
in etc_subdirs
:
854 files
= SUBDIR_MODE('%s/%s' % (configdir
, t
), trim_path
=configdir
)
856 bld
.INSTALL_FILES(bld
.env
.CTDB_ETCDIR
, 'config/%s' % fmode
[0],
857 destname
=fmode
[0], chmod
=fmode
[1])
859 # If this is a direct install and there are no event scripts
860 # linked/enabled then enable some standard ones
861 if os
.environ
.get('DESTDIR') is None:
862 fmt
= 'events/legacy/%s.script'
863 required_script
= '00.ctdb'
864 required_path
= os
.path
.join(bld
.env
.CTDB_ETCDIR
,
865 fmt
% (required_script
))
866 if not os
.path
.islink(required_path
) and \
867 not os
.path
.exists(required_path
):
868 default_scripts
= [ required_script
,
873 for t
in default_scripts
:
874 tgt
= os
.path
.join(bld
.env
.CTDB_DATADIR
, fmt
% (t
))
875 name
= os
.path
.join(bld
.env
.CTDB_ETCDIR
, fmt
% (t
))
876 bld
.symlink_as(name
, tgt
)
878 bld
.SAMBA_GENERATOR('ctdb-functions',
879 source
='config/functions',
881 rule
='sed %s ${SRC} > ${TGT}' % (sed_cmdline
))
882 bld
.INSTALL_FILES(bld
.env
.CTDB_ETCDIR
, 'functions', destname
='functions')
885 'ctdb-crash-cleanup.sh',
886 'debug-hung-script.sh',
888 'nfs-linux-kernel-callout',
893 for t
in etc_scripts
:
894 bld
.INSTALL_FILES(bld
.env
.CTDB_ETCDIR
, 'config/%s' % t
,
895 destname
=t
, chmod
=MODE_755
)
897 bld
.SAMBA_GENERATOR('ctdb-sudoers',
898 source
='config/ctdb.sudoers',
899 target
='ctdb.sudoers',
900 rule
='sed %s ${SRC} > ${TGT}' % (sed_cmdline
))
901 bld
.INSTALL_FILES('${SYSCONFDIR}/sudoers.d', 'ctdb.sudoers',
904 bld
.INSTALL_FILES('${CTDB_ETCDIR}/events/notification',
905 'config/notification.README',
908 bld
.INSTALL_DIR(bld
.env
.CTDB_LOGDIR
)
909 bld
.INSTALL_DIR(bld
.env
.CTDB_RUNDIR
)
910 bld
.INSTALL_DIR(bld
.env
.CTDB_VARDIR
)
912 for d
in ['volatile', 'persistent', 'state']:
913 bld
.INSTALL_DIR(os
.path
.join(bld
.env
.CTDB_VARDIR
, d
))
916 # Test-only below this point
919 if not bld
.env
.standalone_ctdb
and not bld
.CONFIG_GET('ENABLE_SELFTEST'):
922 bld
.SAMBA_BINARY('errcode',
923 source
='tests/src/errcode.c',
925 install_path
='${CTDB_TEST_LIBEXECDIR}')
927 bld
.SAMBA_BINARY('sigcode',
928 source
='tests/src/sigcode.c',
930 install_path
='${CTDB_TEST_LIBEXECDIR}')
952 for target
in ctdb_util_tests
:
953 src
= 'tests/src/' + target
+ '.c'
955 bld
.SAMBA_BINARY(target
,
957 deps
='''ctdb-tests-backtrace
967 install_path
='${CTDB_TEST_LIBEXECDIR}')
969 bld
.SAMBA_BINARY('reqid_test',
970 source
='tests/src/reqid_test.c',
971 deps
='samba-util talloc',
972 install_path
='${CTDB_TEST_LIBEXECDIR}')
974 bld
.SAMBA_BINARY('rb_test',
975 source
='tests/src/rb_test.c',
976 deps
='samba-util talloc',
977 install_path
='${CTDB_TEST_LIBEXECDIR}')
979 bld
.SAMBA_BINARY('ctdb_packet_parse',
980 source
='tests/src/ctdb_packet_parse.c',
981 deps
='talloc tevent tdb ctdb-protocol',
982 install_path
='${CTDB_TEST_LIBEXECDIR}')
984 bld
.SAMBA_BINARY('system_socket_test',
985 source
='tests/src/system_socket_test.c',
986 deps
='''ctdb-tests-backtrace
991 install_path
='${CTDB_TEST_LIBEXECDIR}')
993 bld
.SAMBA_BINARY('porting_tests',
994 source
='tests/src/porting_tests.c',
995 deps
='samba-util ctdb-system popt',
996 install_path
='${CTDB_TEST_LIBEXECDIR}')
998 bld
.SAMBA_BINARY('sock_daemon_test',
999 source
='tests/src/sock_daemon_test.c',
1000 deps
='''ctdb-system talloc tevent tevent-util
1001 LIBASYNC_REQ samba-util sys_rw''',
1002 install_path
='${CTDB_TEST_LIBEXECDIR}')
1004 bld
.SAMBA_BINARY('ctdb_io_test',
1005 source
='tests/src/ctdb_io_test.c',
1006 deps
='''talloc tevent tdb samba-util sys_rw''',
1007 install_path
='${CTDB_TEST_LIBEXECDIR}')
1009 bld
.SAMBA_BINARY('ctdb-db-test',
1010 source
='tests/src/db_test_tool.c',
1011 cflags
='-DCTDB_DB_TEST_TOOL',
1012 deps
='''ctdb-client ctdb-protocol
1013 ctdb-util samba-util talloc tevent replace''',
1014 install_path
='${CTDB_TEST_LIBEXECDIR}')
1016 for target
in ['tmon_ping_test', 'tmon_test']:
1017 src
= 'tests/src/' + target
+ '.c'
1019 bld
.SAMBA_BINARY(target
,
1022 ctdb-tests-backtrace
1032 install_path
='${CTDB_TEST_LIBEXECDIR}')
1034 bld
.SAMBA_SUBSYSTEM('ctdb-protocol-tests-basic',
1035 source
=bld
.SUBDIR('tests/src',
1036 'protocol_common_basic.c'),
1037 deps
='samba-util replace talloc')
1039 bld
.SAMBA_SUBSYSTEM('ctdb-protocol-tests-common',
1040 source
=bld
.SUBDIR('tests/src',
1041 '''protocol_common.c
1042 protocol_common_ctdb.c
1044 deps
='ctdb-protocol-tests-basic replace talloc tdb')
1046 bld
.SAMBA_BINARY('protocol_basic_test',
1047 source
=bld
.SUBDIR('tests/src', 'protocol_basic_test.c'),
1048 deps
='ctdb-protocol-tests-basic talloc',
1049 install_path
='${CTDB_TEST_LIBEXECDIR}')
1051 ctdb_protocol_tests
= [
1052 'protocol_types_test',
1053 'protocol_ctdb_test',
1054 'protocol_util_test',
1055 'protocol_types_compat_test',
1056 'protocol_ctdb_compat_test',
1059 for target
in ctdb_protocol_tests
:
1060 src
= 'tests/src/' + target
+ '.c'
1062 bld
.SAMBA_BINARY(target
,
1064 deps
='''ctdb-protocol-tests-common
1065 samba-util ctdb-util talloc tdb''',
1066 install_path
='${CTDB_TEST_LIBEXECDIR}')
1068 bld
.SAMBA_BINARY('event_protocol_test',
1069 source
='event/event_protocol_test.c',
1070 deps
='''ctdb-protocol-tests-basic
1071 ctdb-protocol-basic talloc''',
1072 install_path
='${CTDB_TEST_LIBEXECDIR}')
1074 bld
.SAMBA_SUBSYSTEM('ctdb-tests-common',
1075 source
=bld
.SUBDIR('tests/src',
1087 bld
.SAMBA_SUBSYSTEM('ctdb-tests-backtrace',
1088 source
=bld
.SUBDIR('tests/src',
1089 'test_backtrace.c'),
1101 'fetch_readonly_loop',
1104 'update_record_persistent',
1111 for target
in ctdb_tests
:
1112 src
= 'tests/src/' + target
+ '.c'
1114 bld
.SAMBA_BINARY(target
,
1117 deps
='''ctdb-client ctdb-protocol ctdb-util
1118 samba-util ctdb-tests-common''',
1119 install_path
='${CTDB_TEST_LIBEXECDIR}')
1121 bld
.SAMBA_BINARY('ctdb_takeover_tests',
1122 source
='''tests/src/ctdb_takeover_tests.c
1123 tests/src/ipalloc_read_known_ips.c''',
1124 deps
='''replace popt tdb tevent talloc ctdb-system
1125 samba-util tdb-wrap talloc_report
1126 ctdb-ipalloc ctdb-protocol ctdb-util''',
1128 install_path
='${CTDB_TEST_LIBEXECDIR}')
1130 bld
.SAMBA_BINARY('fake_ctdbd',
1131 source
='''tests/src/fake_ctdbd.c
1132 tests/src/ipalloc_read_known_ips.c''',
1133 deps
='''ctdb-util ctdb-protocol ctdb-protocol-util
1134 ctdb-system samba-util tevent-util
1135 LIBASYNC_REQ popt''',
1136 install_path
='${CTDB_TEST_LIBEXECDIR}')
1138 bld
.SAMBA_BINARY('cluster_mutex_test',
1139 source
='tests/src/cluster_mutex_test.c',
1140 deps
='''ctdb-tests-backtrace
1145 install_path
='${CTDB_TEST_LIBEXECDIR}')
1147 if bld
.env
.HAVE_INFINIBAND
:
1148 bld
.SAMBA_BINARY('ibwrapper_test',
1149 source
='ib/ibwrapper_test.c',
1151 deps
='replace talloc ctdb-common sys_rw' +
1153 install_path
='${CTDB_TEST_LIBEXECDIR}')
1155 if bld
.env
.HAVE_ROBUST_MUTEXES
and sys
.platform
.startswith('linux') and bld
.env
.DEVELOPER
:
1156 bld
.SAMBA_BINARY('test_mutex_raw',
1157 source
='tests/src/test_mutex_raw.c',
1159 install_path
='${CTDB_TEST_LIBEXECDIR}')
1168 if bld
.env
.standalone_ctdb
:
1171 testdir
= 'ctdb/tests'
1173 for t
in test_subdirs
:
1174 files
= SUBDIR_MODE('%s/%s' % (testdir
, t
), trim_path
=testdir
)
1176 bld
.INSTALL_FILES(bld
.env
.CTDB_TEST_DATADIR
, 'tests/%s' % fmode
[0],
1177 destname
=fmode
[0], chmod
=fmode
[1])
1179 # Install tests/scripts directory, excluding files that need munging
1184 'integration_local_daemons.bash',
1185 'integration_real_cluster.bash',
1189 for t
in test_scripts
:
1190 bld
.INSTALL_FILES(bld
.env
.CTDB_TEST_DATADIR
,
1191 os
.path
.join('tests/scripts', t
),
1192 destname
=os
.path
.join('scripts', t
))
1194 bld
.INSTALL_FILES(bld
.env
.CTDB_TEST_DATADIR
,
1195 'tests/scripts/test_wrap',
1196 destname
='scripts/test_wrap',
1199 bld
.SAMBA_GENERATOR('ctdb-test-script-install-paths',
1200 source
='tests/scripts/script_install_paths.sh',
1201 target
='script_install_paths.sh',
1202 rule
='sed %s ${SRC} > ${TGT}' % (sed_cmdline
))
1203 bld
.INSTALL_FILES(bld
.env
.CTDB_TEST_DATADIR
+"/scripts",
1204 'script_install_paths.sh',
1205 destname
='script_install_paths.sh', chmod
=MODE_644
)
1207 sed_expr1
= 's@^\\(%s\\)=.*@\\1=%s@' % (
1208 'CTDB_TEST_DIR', bld
.env
.CTDB_TEST_DATADIR
)
1209 sed_expr2
= 's@^\\(CTDB_TESTS_ARE_INSTALLED\\)=false@\\\\1=true@'
1210 bld
.SAMBA_GENERATOR('ctdb-test-runner',
1211 source
='tests/run_tests.sh',
1212 target
='ctdb_run_tests.sh',
1213 rule
='sed -e "%s" -e "%s" ${SRC} > ${TGT}' % (
1214 sed_expr1
, sed_expr2
))
1215 bld
.INSTALL_FILES('${BINDIR}', 'ctdb_run_tests.sh',
1216 destname
='ctdb_run_tests', chmod
=MODE_755
)
1217 bld
.symlink_as(os
.path
.join(bld
.env
.BINDIR
, 'ctdb_run_cluster_tests'),
1220 bld
.SAMBA_GENERATOR('ctdb-local-daemons',
1221 source
='tests/local_daemons.sh',
1222 target
='ctdb_local_daemons.sh',
1223 rule
='sed -e "%s" -e "%s" ${SRC} > ${TGT}' % (
1224 sed_expr1
, sed_expr2
))
1225 bld
.INSTALL_FILES('${BINDIR}', 'ctdb_local_daemons.sh',
1226 destname
='ctdb_local_daemons', chmod
=MODE_755
)
1230 cmd
= 'tests/run_tests.sh'
1231 ret
= samba_utils
.RUN_COMMAND(cmd
)
1233 print('tests exited with exit status %d' % ret
)
1238 Options
.commands
.append('build')
1239 Options
.commands
.append('testonly')
1243 env
= samba_utils
.LOAD_ENVIRONMENT()
1244 cmd
= 'tests/run_tests.sh -eL -S %s' % env
.SOCKET_WRAPPER_SO_PATH
1245 ret
= samba_utils
.RUN_COMMAND(cmd
)
1247 print('autotest exited with exit status %d' % ret
)
1251 def show_version(ctx
):
1252 print(get_version_string())
1256 BASE_URL
= 'http://docbook.sourceforge.net/release/xsl/current'
1257 MAN_XSL
= '%s/manpages/docbook.xsl' % BASE_URL
1258 HTML_XSL
= '%s/html/docbook.xsl' % BASE_URL
1259 CMD_TEMPLATE
= 'xsltproc --xinclude -o %s --nonet %s %s'
1260 manpages
= manpages_binary
+ manpages_misc
+ manpages_etcd
+ manpages_ceph
1262 cmd
= CMD_TEMPLATE
% ('doc/%s' % t
, MAN_XSL
, 'doc/%s.xml' % t
)
1263 ret
= samba_utils
.RUN_COMMAND(cmd
)
1265 print('Command %s failed with exit status %d' % (cmd
, ret
))
1268 cmd
= CMD_TEMPLATE
% ('doc/%s.html' % t
, HTML_XSL
, 'doc/%s.xml' % t
)
1269 ret
= samba_utils
.RUN_COMMAND(cmd
)
1271 print('Command %s failed with exit status %d' % (cmd
, ret
))
1276 samba_dist
.DIST_FILES('VERSION:VERSION', extend
=True)
1279 sed_expr1
= 's/@VERSION@/%s/g' % get_version_string()
1280 sed_expr2
= 's/@RELEASE@/%s/g' % '1'
1281 cmd
= 'sed -e "%s" -e "%s" packaging/RPM/ctdb.spec.in > %s' % (
1282 sed_expr1
, sed_expr2
, t
)
1283 ret
= samba_utils
.RUN_COMMAND(cmd
)
1285 print('Command "%s" failed with exit status %d' % (cmd
, ret
))
1287 samba_dist
.DIST_FILES('ctdb/%s:%s' % (t
, t
), extend
=True)
1289 manpages
= manpages_binary
+ manpages_misc
+ manpages_etcd
+ manpages_ceph
1291 samba_dist
.DIST_FILES('ctdb/doc/%s:doc/%s' % (t
, t
), extend
=True)
1292 samba_dist
.DIST_FILES('ctdb/doc/%s.html:doc/%s.html' % (t
, t
),
1299 Options
.commands
.append('manpages')
1300 Options
.commands
.append('distonly')
1304 opts
= os
.getenv('RPM_OPTIONS') or ''
1305 cmd
= 'rpmbuild -ta --clean --rmsource %s ctdb-%s.tar.gz' % \
1306 (opts
, get_version_string())
1307 ret
= samba_utils
.RUN_COMMAND(cmd
)
1309 print('rpmbuild exited with exit status %d' % ret
)
1314 Options
.commands
.append('manpages')
1315 Options
.commands
.append('distonly')
1316 Options
.commands
.append('rpmonly')
1320 "build 'tags' file using ctags"
1321 source_root
= os
.path
.dirname(Context
.g_module
.root_path
)
1322 cmd
= 'ctags $(find %s -name "*.[ch]")' % source_root
1323 print("Running: %s" % cmd
)
1324 ret
= samba_utils
.RUN_COMMAND(cmd
)
1326 print('ctags failed with exit status %d' % ret
)