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