ctdb-daemon: Move switch_from_server_to_client() to ctdb_daemon.c
[kai/samba-autobuild/.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                         buildtools:buildtools third_party/waf:third_party/waf''')
38
39 manpages = [
40     'ctdb.1',
41     'ctdb.7',
42     'ctdbd.1',
43     'ctdbd.conf.5',
44     'ctdbd_wrapper.1',
45     'ctdb-statistics.7',
46     'ctdb-tunables.7',
47     'ltdbtool.1',
48     'onnode.1',
49     'ping_pong.1'
50 ]
51
52
53 def set_options(opt):
54     opt.PRIVATE_EXTENSION_DEFAULT('ctdb')
55
56     opt.RECURSE('lib/replace')
57
58     opt.RECURSE('lib/util')
59
60     opt.RECURSE('lib/talloc')
61     opt.RECURSE('lib/tevent')
62     opt.RECURSE('lib/tdb')
63
64     opt.add_option('--enable-infiniband',
65                    help=("Turn on infiniband support (default=no)"),
66                    action="store_true", dest='ctdb_infiniband', default=False)
67     opt.add_option('--enable-pmda',
68                    help=("Turn on PCP pmda support (default=no)"),
69                    action="store_true", dest='ctdb_pmda', default=False)
70
71     opt.add_option('--with-logdir',
72                    help=("Path to log directory"),
73                    action="store", dest='ctdb_logdir', default=None)
74     opt.add_option('--with-socketpath',
75                    help=("path to CTDB daemon socket"),
76                    action="store", dest='ctdb_sockpath', default=None)
77
78
79 def configure(conf):
80
81     # CTDB relies on nested event loops
82     conf.env.TEVENT_DEPRECATED = 1
83
84     # No need to build python bindings for talloc/tevent/tdb
85     if conf.IN_LAUNCH_DIR():
86         conf.env.standalone_ctdb = True
87         Options.options.disable_python = True
88
89     conf.RECURSE('lib/replace')
90
91     if conf.env.standalone_ctdb:
92         conf.SAMBA_CHECK_PERL(mandatory=True)
93
94         conf.SAMBA_CHECK_PYTHON(mandatory=True, version=(2,5,0))
95         conf.SAMBA_CHECK_PYTHON_HEADERS(mandatory=True)
96
97     if conf.CHECK_FOR_THIRD_PARTY():
98         conf.RECURSE('third_party/popt')
99     else:
100         if not conf.CHECK_POPT():
101             raise Utils.WafError('popt development packages have not been found\nIf third_party is installed, check that it is in the proper place.')
102         else:
103             conf.define('USING_SYSTEM_POPT', 1)
104
105     conf.RECURSE('lib/util')
106
107     conf.RECURSE('lib/talloc')
108     conf.RECURSE('lib/tevent')
109     conf.RECURSE('lib/tdb')
110     if conf.env.standalone_ctdb or conf.CONFIG_GET('ENABLE_SELFTEST'):
111         conf.RECURSE('lib/socket_wrapper')
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     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     if have_infiniband:
176         Logs.info('Building with Infiniband support')
177         conf.define('HAVE_INFINIBAND', 1)
178         conf.define('USE_INFINIBAND', 1)
179
180     conf.env.CTDB_BINDIR = os.path.join(conf.env.EXEC_PREFIX, 'bin')
181     conf.env.CTDB_ETCDIR = os.path.join(conf.env.SYSCONFDIR, 'ctdb')
182     conf.env.CTDB_VARDIR = os.path.join(conf.env.LOCALSTATEDIR, 'lib/ctdb')
183     conf.env.CTDB_RUNDIR = os.path.join(conf.env.LOCALSTATEDIR, 'run/ctdb')
184
185     if Options.options.ctdb_logdir:
186         conf.env.CTDB_LOGDIR = Options.options.ctdb_logdir
187     else:
188         conf.env.CTDB_LOGDIR = os.path.join(conf.env.LOCALSTATEDIR, 'log')
189
190     if Options.options.ctdb_sockpath:
191         conf.env.CTDB_SOCKPATH = Options.options.ctdb_sockpath
192     else:
193         conf.env.CTDB_SOCKPATH = os.path.join(conf.env.CTDB_RUNDIR,
194                                               'ctdbd.socket')
195     conf.define('CTDB_SOCKET', conf.env.CTDB_SOCKPATH)
196
197     conf.ADD_CFLAGS('''-DCTDB_HELPER_BINDIR=\"%s\"
198                        -DLOGDIR=\"%s\"
199                        -DCTDB_ETCDIR=\"%s\"
200                        -DCTDB_VARDIR=\"%s\"
201                        -DCTDB_RUNDIR=\"%s\"''' % (
202                     conf.env.CTDB_BINDIR,
203                     conf.env.CTDB_LOGDIR,
204                     conf.env.CTDB_ETCDIR,
205                     conf.env.CTDB_VARDIR,
206                     conf.env.CTDB_RUNDIR))
207
208     conf.env.CTDB_TEST_DATADIR = os.path.join(conf.env.EXEC_PREFIX,
209                                               'share/ctdb-tests')
210     conf.env.CTDB_TEST_LIBDIR = os.path.join(conf.env.LIBDIR, 'ctdb-tests')
211
212     # Allow unified compilation and separate compilation of utilities
213     # to find includes
214     if not conf.env.standalone_ctdb:
215         conf.ADD_EXTRA_INCLUDES('#include/public #ctdb/include #ctdb')
216     else:
217         if srcdir == '.':
218             # Building from tarball
219             conf.ADD_EXTRA_INCLUDES('#include')
220         else:
221             # Building standalone CTDB from within Samba tree
222             conf.ADD_EXTRA_INCLUDES('#ctdb/include')
223             conf.ADD_EXTRA_INCLUDES('#ctdb')
224         conf.ADD_EXTRA_INCLUDES('#lib #lib/replace')
225
226         conf.DEFINE('HAVE_CONFIG_H', 1, add_to_cflags=True)
227         conf.DEFINE('SAMBA_UTIL_CORE_ONLY', 1, add_to_cflags=True)
228         conf.SAMBA_CONFIG_H()
229
230     if 'XSLTPROC_MANPAGES' in conf.env and conf.env['XSLTPROC_MANPAGES']:
231         conf.env.ctdb_generate_manpages = True
232     else:
233         conf.env.ctdb_generate_manpages = False
234
235         Logs.info("xsltproc unavailable, checking for pre-built manpages")
236         conf.env.ctdb_prebuilt_manpages = []
237         for m in manpages:
238             if os.path.exists(os.path.join("doc", m)):
239                 Logs.info("  %s: yes" % (m))
240                 conf.env.ctdb_prebuilt_manpages.append(m)
241             else:
242                 Logs.info("  %s: no" % (m))
243
244 def build(bld):
245     if bld.env.standalone_ctdb:
246         # enable building of public headers in the build tree
247         bld.env.build_public_headers = 'include/public'
248
249     version_h = samba_utils.os_path_relpath(os.path.join(Options.launch_dir,
250                                                          "version.h"),
251                                             bld.curdir)
252
253     if bld.env.standalone_ctdb:
254         ctdb_mkversion = '../packaging/mkversion.sh'
255         t = bld.SAMBA_GENERATOR('ctdb-version-header',
256                                 target='include/ctdb_version.h',
257                                 rule='%s ${TGT} %s' % (ctdb_mkversion, VERSION),
258                                 dep_vars=['VERSION'])
259         t.env.VERSION = VERSION
260
261         t = bld.SAMBA_GENERATOR('ctdb-samba-version-header',
262                                 target=version_h,
263                                 rule='printf "#include \\"ctdb_version.h\\" \\n#define SAMBA_VERSION_STRING CTDB_VERSION_STRING\\n" > ${TGT}',
264                                 dep_vars=['VERSION'])
265         t.env.VERSION = VERSION
266     else:
267         t = bld.SAMBA_GENERATOR('ctdb-samba-version-header',
268                                 target='include/ctdb_version.h',
269                                 rule='printf "#include \\"%s\\" \\n#define CTDB_VERSION_STRING SAMBA_VERSION_STRING\\n" > ${TGT}' % version_h,
270                                 dep_vars=['VERSION'])
271         t.env.VERSION = VERSION
272
273     bld.env.PKGCONFIGDIR = '${LIBDIR}/pkgconfig'
274
275     bld.RECURSE('lib/replace')
276     if bld.CHECK_FOR_THIRD_PARTY():
277         bld.RECURSE('third_party/popt')
278
279     bld.RECURSE('lib/tdb_wrap')
280     bld.RECURSE('lib/util')
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')
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 == 'kfreebsd':
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='common/system_common.c ' + CTDB_SYSTEM_SRC,
329                         includes='include',
330                         deps='replace talloc tevent tdb pcap')
331
332     bld.SAMBA_SUBSYSTEM('ctdb-common',
333                         source=bld.SUBDIR('common',
334                                           '''ctdb_io.c ctdb_util.c ctdb_ltdb.c
335                                              cmdline.c rb_tree.c
336                                              ctdb_fork.c'''),
337                         includes='include',
338                         deps='replace popt talloc tevent tdb popt ctdb-system')
339
340     bld.SAMBA_SUBSYSTEM('ctdb-common-util',
341                         source=bld.SUBDIR('common',
342                                           'system_util.c ctdb_logging.c'),
343                         includes='include',
344                         deps='replace tevent tdb')
345
346     bld.SAMBA_SUBSYSTEM('ctdb-util',
347                         source=bld.SUBDIR('common',
348                                           '''db_hash.c srvid.c reqid.c
349                                              pkt_read.c pkt_write.c comm.c
350                                              logging.c'''),
351                         deps='replace talloc tevent tdb tevent-unix-util')
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_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-server',
382                         source='server/ctdbd.c ' +
383                                bld.SUBDIR('server',
384                                           '''ctdb_daemon.c ctdb_recoverd.c
385                                              ctdb_recover.c ctdb_freeze.c
386                                              ctdb_tunables.c ctdb_monitor.c
387                                              ctdb_server.c ctdb_control.c
388                                              ctdb_call.c ctdb_ltdb_server.c
389                                              ctdb_traverse.c eventscript.c
390                                              ctdb_takeover.c ctdb_serverids.c
391                                              ctdb_persistent.c ctdb_keepalive.c
392                                              ctdb_logging.c
393                                              ctdb_logging_syslog.c
394                                              ctdb_logging_file.c
395                                              ctdb_uptime.c
396                                              ctdb_vacuum.c ctdb_banning.c
397                                              ctdb_statistics.c
398                                              ctdb_update_record.c
399                                              ctdb_lock.c'''),
400                         includes='include',
401                         deps='replace popt talloc tevent tdb talloc_report')
402
403     bld.SAMBA_BINARY('ctdbd',
404                      source='',
405                      deps='''ctdb-server ctdb-client ctdb-common
406                              ctdb-common-util ctdb-tcp ctdb-util''' +
407                           ib_deps,
408                      install_path='${SBINDIR}',
409                      manpages='ctdbd.1')
410
411     bld.SAMBA_BINARY('ctdb',
412                      source='tools/ctdb.c',
413                      deps='''ctdb-client ctdb-common ctdb-common-util
414                              ctdb-util''',
415                      includes='include',
416                      install_path='${BINDIR}',
417                      manpages='ctdb.1')
418
419     bld.SAMBA_BINARY('ltdbtool',
420                      source='tools/ltdbtool.c',
421                      includes='include',
422                      deps='tdb',
423                      install_path='${BINDIR}',
424                      manpages='ltdbtool.1')
425
426     bld.SAMBA_BINARY('ctdb_lock_helper',
427                      source='server/ctdb_lock_helper.c',
428                      deps='samba-util ctdb-common-util talloc tdb',
429                      includes='include',
430                      install_path='${BINDIR}')
431
432     bld.SAMBA_BINARY('ctdb_event_helper',
433                      source='server/ctdb_event_helper.c',
434                      includes='include',
435                      deps='samba-util ctdb-common-util replace tdb',
436                      install_path='${BINDIR}')
437
438     bld.SAMBA_BINARY('ctdb_recovery_helper',
439                      source='server/ctdb_recovery_helper.c',
440                      deps='''ctdb-client2 ctdb-protocol ctdb-util
441                              samba-util replace tdb''',
442                      install_path='${BINDIR}')
443
444     bld.SAMBA_GENERATOR('ctdb-smnotify-h',
445                         source='utils/smnotify/smnotify.x',
446                         target='utils/smnotify/smnotify.h',
447                         rule='rpcgen -h ${SRC} > ${TGT}')
448
449     xdr_buf_hack = 'sed -e "s@^\([ \t]*register int32_t \*buf\);@\\1 = buf;@"'
450
451     bld.SAMBA_GENERATOR('ctdb-smnotify-x',
452                         source='utils/smnotify/smnotify.x',
453                         target='utils/smnotify/gen_xdr.c',
454                         rule='rpcgen -c ${SRC} | ' + xdr_buf_hack + ' > ${TGT}')
455
456     bld.SAMBA_GENERATOR('ctdb-smnotify-c',
457                         source='utils/smnotify/smnotify.x',
458                         target='utils/smnotify/gen_smnotify.c',
459                         rule='rpcgen -l ${SRC} > ${TGT}')
460
461     bld.SAMBA_BINARY('smnotify',
462                      source=bld.SUBDIR('utils/smnotify',
463                                        'smnotify.c gen_smnotify.c gen_xdr.c'),
464                      deps='ctdb-smnotify-h ctdb-smnotify-c ctdb-smnotify-x popt',
465                      includes='utils utils/smnotify',
466                      install_path='${BINDIR}')
467
468     bld.SAMBA_BINARY('ping_pong',
469                      source='utils/ping_pong/ping_pong.c',
470                      deps='',
471                      install_path='${BINDIR}',
472                      manpages='ping_pong.1')
473
474     if bld.env.HAVE_PMDA:
475         bld.SAMBA_BINARY('pmdactdb',
476                          source='utils/pmda/pmda_ctdb.c',
477                          includes='include',
478                          deps='''ctdb-client ctdb-common
479                                  ctdb-common-util pcp_pmda pcp''',
480                          install_path='${CTDB_PMDADIR}')
481         bld.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/Install',
482                           destname='Install')
483         bld.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/Remove',
484                           destname='Remove')
485         bld.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/pmns',
486                           destname='pmns')
487         bld.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/domain.h',
488                           destname='domain.h')
489         bld.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/help',
490                           destname='help')
491         bld.INSTALL_FILES('${CTDB_PMDADIR}', 'utils/pmda/README',
492                           destname='README')
493
494     sed_expr1 = 's|/usr/local/var/lib/ctdb|%s|g'  % (bld.env.CTDB_VARDIR)
495     sed_expr2 = 's|/usr/local/etc/ctdb|%s|g'      % (bld.env.CTDB_ETCDIR)
496     sed_expr3 = 's|/usr/local/var/log|%s|g'       % (bld.env.CTDB_LOGDIR)
497     sed_expr4 = 's|/usr/local/var/run/ctdb|%s|g'  % (bld.env.CTDB_RUNDIR)
498     sed_expr5 = 's|/usr/local/sbin|%s|g'          % (bld.env.SBINDIR)
499     sed_cmdline = '-e "%s" -e "%s" -e "%s" -e "%s" -e "%s"' % \
500                        (sed_expr1, sed_expr2, sed_expr3, sed_expr4, sed_expr5)
501
502     for f in manpages:
503         x = '%s.xml' % (f)
504         bld.SAMBA_GENERATOR(x,
505                             source=os.path.join('doc', x),
506                             target=x,
507                             rule='sed %s ${SRC} > ${TGT}' % (sed_cmdline))
508
509     if bld.env.ctdb_generate_manpages:
510         bld.MANPAGES('''onnode.1 ctdbd_wrapper.1 ctdbd.conf.5
511                         ctdb.7 ctdb-statistics.7 ctdb-tunables.7''',
512                       True)
513     else:
514         for m in bld.env.ctdb_prebuilt_manpages:
515             bld.SAMBA_GENERATOR(m,
516                                 source=os.path.join("doc", m),
517                                 target=m,
518                                 rule='sed %s ${SRC} > ${TGT}' % (sed_cmdline))
519             bld.INSTALL_FILES('${MANDIR}/man%s' % m[-1], m)
520
521     bld.SAMBA_GENERATOR('ctdb-onnode',
522                         source='tools/onnode',
523                         target='onnode',
524                         rule='sed %s ${SRC} > ${TGT}' % (sed_cmdline))
525     bld.INSTALL_FILES('${BINDIR}', 'onnode',
526                       destname='onnode', chmod=0755)
527
528     bld.SAMBA_GENERATOR('ctdb-diagnostics',
529                         source='tools/ctdb_diagnostics',
530                         target='ctdb_diagnostics',
531                         rule='sed %s ${SRC} > ${TGT}' % (sed_cmdline))
532     bld.INSTALL_FILES('${BINDIR}', 'ctdb_diagnostics',
533                       destname='ctdb_diagnostics', chmod=0755)
534
535     bld.SAMBA_GENERATOR('ctdbd-wrapper',
536                         source='config/ctdbd_wrapper',
537                         target='ctdbd_wrapper',
538                         rule='sed %s ${SRC} > ${TGT}' % (sed_cmdline))
539     bld.INSTALL_FILES('${SBINDIR}', 'ctdbd_wrapper',
540                       destname='ctdbd_wrapper', chmod=0755)
541
542     def SUBDIR_MODE_callback(arg, dirname, fnames):
543         for f in fnames:
544             fl = os.path.join(dirname, f)
545             if os.path.isdir(fl) or os.path.islink(fl):
546                 continue
547             mode = os.lstat(fl).st_mode & 0777
548             if arg['trim_path']:
549                 fl = samba_utils.os_path_relpath(fl, arg['trim_path'])
550             arg['file_list'].append([fl, mode])
551
552     def SUBDIR_MODE(path, trim_path=None):
553         pd = {'trim_path': trim_path, 'file_list': []}
554         os.path.walk(path, SUBDIR_MODE_callback, pd)
555         return pd['file_list']
556
557     etc_subdirs = [
558         'events.d',
559         'nfs-checks.d'
560     ]
561
562     if bld.env.standalone_ctdb:
563         configdir = 'config'
564     else:
565         configdir = 'ctdb/config'
566
567     for t in etc_subdirs:
568         files = SUBDIR_MODE('%s/%s' % (configdir, t), trim_path=configdir)
569         for fmode in files:
570             bld.INSTALL_FILES(bld.env.CTDB_ETCDIR, 'config/%s' % fmode[0],
571                               destname=fmode[0], chmod=fmode[1])
572
573     bld.SAMBA_GENERATOR('ctdb-functions',
574                         source='config/functions',
575                         target='functions',
576                         rule='sed %s ${SRC} > ${TGT}' % (sed_cmdline))
577     bld.INSTALL_FILES(bld.env.CTDB_ETCDIR, 'functions', destname='functions')
578
579     etc_scripts = [
580         'ctdb-crash-cleanup.sh',
581         'debug-hung-script.sh',
582         'debug_locks.sh',
583         'gcore_trace.sh',
584         'nfs-linux-kernel-callout',
585         'notify.sh',
586         'statd-callout'
587     ]
588
589     for t in etc_scripts:
590         bld.INSTALL_FILES(bld.env.CTDB_ETCDIR, 'config/%s' % t,
591                           destname=t, chmod=0755)
592
593     bld.SAMBA_GENERATOR('ctdb-sudoers',
594                         source='config/ctdb.sudoers',
595                         target='ctdb.sudoers',
596                         rule='sed %s ${SRC} > ${TGT}' % (sed_cmdline))
597     bld.INSTALL_FILES('${SYSCONFDIR}/sudoers.d', 'ctdb.sudoers',
598                       destname='ctdb')
599
600     bld.INSTALL_FILES('${CTDB_ETCDIR}/notify.d', 'config/notify.d.README',
601                       destname='README')
602
603     bld.install_dir(bld.env.CTDB_LOGDIR)
604     bld.install_dir(bld.env.CTDB_RUNDIR)
605     bld.install_dir(bld.env.CTDB_VARDIR)
606
607     sed_expr = 's/@PACKAGE_VERSION@/%s/g' % VERSION
608     t = bld.SAMBA_GENERATOR('ctdb-pc',
609                             source='ctdb.pc.in',
610                             target='ctdb.pc',
611                             rule='sed -e "%s" ${SRC} > ${TGT}' % sed_expr,
612                             dep_vars=['VERSION'])
613     t.env.VERSION = VERSION
614     bld.INSTALL_FILES('${LIBDIR}/pkgconfig', 'ctdb.pc')
615
616     # Unit tests
617     ctdb_unit_tests = [
618         'db_hash_test',
619         'srvid_test',
620         'pkt_read_test',
621         'pkt_write_test',
622         'comm_test',
623         'comm_server_test',
624         'comm_client_test',
625         'protocol_types_test',
626         'protocol_client_test',
627     ]
628
629     for target in ctdb_unit_tests:
630         src = 'tests/src/' + target + '.c'
631
632         bld.SAMBA_BINARY(target,
633                          source=src,
634                          deps='talloc tevent tdb tevent-unix-util',
635                          install_path='${CTDB_TEST_LIBDIR}')
636
637     bld.SAMBA_BINARY('reqid_test',
638                      source='tests/src/reqid_test.c',
639                      deps='samba-util',
640                      install_path='${CTDB_TEST_LIBDIR}')
641
642     # Test binaries
643     ctdb_tests = [
644         'rb_test',
645         'ctdb_bench',
646         'ctdb_fetch',
647         'ctdb_fetch_one',
648         'ctdb_fetch_readonly_once',
649         'ctdb_fetch_readonly_loop',
650         'ctdb_trackingdb_test',
651         'ctdb_update_record',
652         'ctdb_update_record_persistent',
653         'ctdb_store',
654         'ctdb_traverse',
655         'ctdb_randrec',
656         'ctdb_persistent',
657         'ctdb_porting_tests',
658         'ctdb_transaction',
659         'ctdb_lock_tdb'
660     ]
661
662     for target in ctdb_tests:
663         src = 'tests/src/' + target + '.c'
664
665         bld.SAMBA_BINARY(target,
666                          source=src,
667                          includes='include',
668                          deps='''ctdb-client ctdb-common ctdb-common-util
669                                  ctdb-util''',
670                          install_path='${CTDB_TEST_LIBDIR}')
671
672     bld.SAMBA_BINARY('ctdb_takeover_tests',
673                      source='tests/src/ctdb_takeover_tests.c',
674                      deps='''replace popt tdb tevent talloc ctdb-system
675                              samba-util tdb-wrap talloc_report''' +
676                           ib_deps,
677                      includes='include',
678                      install_path='${CTDB_TEST_LIBDIR}')
679
680     bld.SAMBA_BINARY('ctdb_functest',
681                      source='tests/src/ctdb_functest.c',
682                      deps='''replace tdb tevent talloc popt ctdb-system
683                              samba-util tdb-wrap''',
684                      includes='include',
685                      install_path='${CTDB_TEST_LIBDIR}')
686
687     bld.SAMBA_BINARY('ctdb_stubtest',
688                      source='tests/src/ctdb_test.c',
689                      deps='''replace tdb tevent talloc popt ctdb-system
690                              samba-util tdb-wrap''',
691                      includes='include',
692                      install_path='${CTDB_TEST_LIBDIR}')
693
694     if bld.env.HAVE_INFINIBAND:
695         bld.SAMBA_BINARY('ibwrapper_test',
696                          source='ib/ibwrapper_test.c',
697                          includes='include',
698                          deps='''replace talloc ctdb-client ctdb-common
699                                  ctdb-common-util''' +
700                               ib_deps,
701                          install_path='${CTDB_TEST_LIBDIR}')
702
703     test_subdirs = [
704         'complex',
705         'cunit',
706         'events.d',
707         'eventscripts',
708         'onnode',
709         'simple',
710         'takeover',
711         'tool'
712     ]
713
714     for t in test_subdirs:
715         files = SUBDIR_MODE('tests/%s' % t, trim_path='tests')
716         for fmode in files:
717             bld.INSTALL_FILES(bld.env.CTDB_TEST_DATADIR, 'tests/%s' % fmode[0],
718                               destname=fmode[0], chmod=fmode[1])
719
720     # Install tests/scripts directory without test_wrap
721     test_scripts = [
722         'common.sh',
723         'integration.bash',
724         'unit.sh'
725     ]
726
727     for t in test_scripts:
728         bld.INSTALL_FILES(bld.env.CTDB_TEST_DATADIR,
729                           os.path.join('tests/scripts', t),
730                           destname=os.path.join('scripts', t))
731
732     sed_expr = 's@^TEST_SCRIPTS_DIR=.*@&\\nexport TEST_BIN_DIR=\"%s\"@' % (
733                bld.env.CTDB_TEST_LIBDIR)
734     bld.SAMBA_GENERATOR('ctdb-test-wrap',
735                         source='tests/scripts/test_wrap',
736                         target='test_wrap',
737                         rule='sed -e "%s" ${SRC} > ${TGT}' % sed_expr)
738     bld.INSTALL_FILES(bld.env.CTDB_TEST_DATADIR+"/scripts", 'test_wrap',
739                       destname='test_wrap', chmod=0755)
740
741     sed_expr1 = 's@^test_dir=.*@test_dir=%s\\nexport TEST_BIN_DIR=\"%s\"@' % (
742                 bld.env.CTDB_TEST_DATADIR, bld.env.CTDB_TEST_LIBDIR)
743     sed_expr2 = 's@^\(export CTDB_TESTS_ARE_INSTALLED\)=false@\\1=true@'
744     bld.SAMBA_GENERATOR('ctdb-test-runner',
745                         source='tests/run_tests.sh',
746                         target='ctdb_run_tests.sh',
747                         rule='sed -e "%s" -e "%s" ${SRC} > ${TGT}' % (
748                              sed_expr1, sed_expr2))
749     bld.INSTALL_FILES('${BINDIR}', 'ctdb_run_tests.sh',
750                       destname='ctdb_run_tests', chmod=0755)
751     bld.symlink_as(os.path.join(bld.env.BINDIR, 'ctdb_run_cluster_tests'),
752                    'ctdb_run_tests')
753
754     test_eventscript_links = [
755         'events.d',
756         'functions',
757         'nfs-checks.d',
758         'nfs-linux-kernel-callout',
759         'statd-callout'
760     ]
761
762     test_link_dir = os.path.join(bld.env.CTDB_TEST_DATADIR,
763                                  'eventscripts/etc-ctdb')
764     for t in test_eventscript_links:
765         bld.symlink_as(os.path.join(test_link_dir, t),
766                        os.path.join(bld.env.CTDB_ETCDIR, t))
767
768     # Tests that use onnode need to overwrite link to in-tree
769     # functions file when installed
770     bld.symlink_as(os.path.join(bld.env.CTDB_TEST_DATADIR, 'onnode/functions'),
771                    os.path.join(bld.env.CTDB_ETCDIR, 'functions'))
772     bld.symlink_as(os.path.join(bld.env.CTDB_TEST_DATADIR, 'simple/functions'),
773                    os.path.join(bld.env.CTDB_ETCDIR, 'functions'))
774
775     # Need a link to nodes file because $CTDB_BASE is overridden
776     bld.symlink_as(os.path.join(bld.env.CTDB_TEST_DATADIR, 'simple/nodes'),
777                    os.path.join(bld.env.CTDB_ETCDIR, 'nodes'))
778
779
780 def testonly(ctx):
781     cmd = 'tests/run_tests.sh -V tests/var'
782     ret = samba_utils.RUN_COMMAND(cmd)
783     if ret != 0:
784         print('tests exited with exit status %d' % ret)
785         sys.exit(ret)
786
787
788 def test(ctx):
789     import Scripting
790     Scripting.commands.append('build')
791     Scripting.commands.append('testonly')
792
793
794 def autotest(ctx):
795     ld = 'LD_PRELOAD=%s/bin/shared/libsocket-wrapper.so' % os.getcwd()
796     cmd = '%s tests/run_tests.sh -e -S -C' % ld
797     ret = samba_utils.RUN_COMMAND(cmd)
798     if ret != 0:
799         print('autotest exited with exit status %d' % ret)
800         sys.exit(ret)
801
802
803 def show_version(ctx):
804     print VERSION
805
806
807 def dist():
808     samba_dist.DIST_FILES('VERSION:VERSION', extend=True)
809
810     t = 'include/ctdb_version.h'
811     cmd = 'packaging/mkversion.sh %s %s' % (t, VERSION)
812     ret = samba_utils.RUN_COMMAND(cmd)
813     if ret != 0:
814         print('Command "%s" failed with exit status %d' % (cmd, ret))
815         sys.exit(ret)
816     samba_dist.DIST_FILES('ctdb/%s:%s' % (t, t), extend=True)
817
818     t = 'ctdb.spec'
819     sed_expr1 = 's/@VERSION@/%s/g' % VERSION
820     sed_expr2 = 's/@RELEASE@/%s/g' % '1'
821     cmd = 'sed -e "%s" -e "%s" packaging/RPM/ctdb.spec.in > %s' % (
822         sed_expr1, sed_expr2, t)
823     ret = samba_utils.RUN_COMMAND(cmd)
824     if ret != 0:
825         print('Command "%s" failed with exit status %d' % (cmd, ret))
826         sys.exit(ret)
827     samba_dist.DIST_FILES('ctdb/%s:%s' % (t, t), extend=True)
828
829     cmd = 'make -C doc'
830     ret = samba_utils.RUN_COMMAND(cmd)
831     if ret != 0:
832         print('Command "%s" failed with exit status %d' % (cmd, ret))
833         sys.exit(ret)
834     for t in manpages:
835         samba_dist.DIST_FILES('ctdb/doc/%s:doc/%s' % (t, t), extend=True)
836         samba_dist.DIST_FILES('ctdb/doc/%s.html:doc/%s.html' % (t, t),
837                               extend=True)
838
839     samba_dist.dist()
840
841
842 def rpmonly(ctx):
843     opts = os.getenv('RPM_OPTIONS') or ''
844     cmd = 'rpmbuild -ta --clean --rmsource %s ctdb-%s.tar.gz' % (opts, VERSION)
845     ret = samba_utils.RUN_COMMAND(cmd)
846     if ret != 0:
847         print('rpmbuild exited with exit status %d' % ret)
848         sys.exit(ret)
849
850
851 def rpm(ctx):
852     import Scripting
853     Scripting.commands.append('dist')
854     Scripting.commands.append('rpmonly')
855
856
857 def ctags(ctx):
858     "build 'tags' file using ctags"
859     import Utils
860     source_root = os.path.dirname(Utils.g_module.root_path)
861     cmd = 'ctags $(find %s -name "*.[ch]")' % source_root
862     print("Running: %s" % cmd)
863     ret = samba_utils.RUN_COMMAND(cmd)
864     if ret != 0:
865         print('ctags failed with exit status %d' % ret)
866         sys.exit(ret)