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