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