ctdb-vl.spec 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173
  1. %define initdir %{_sysconfdir}/rc.d/init.d
  2. Summary: A Clustered Database based on Samba's Trivial Database (TDB)
  3. Name: ctdb
  4. Version: 2.4
  5. Release: 1%{?_dist_release}
  6. License: GPLv3+
  7. Group: System Environment/Daemons
  8. URL: http://ctdb.samba.org/
  9. Vendor: Project Vine
  10. Distribution: Vine Linux
  11. Packager: tomop
  12. # Tarfile created using git
  13. # git clone git://git.samba.org/sahlberg/ctdb.git ctdb
  14. # cd ctdb
  15. # git-archive --format=tar --prefix=%{name}-%{version}/ %{name}-%{version} | bzip2 > %{name}-%{version}.tar.bz2
  16. Source0: %{name}-%{version}.tar.gz
  17. # Fedora specific patch, ctdb should not be enabled by default in the runlevels
  18. #Patch1: ctdb-no_default_runlevel.patch
  19. Requires: chkconfig coreutils psmisc
  20. Requires: fileutils sed
  21. Requires: tdb-tools
  22. Requires(preun): chkconfig initscripts
  23. Requires(post): chkconfig
  24. Requires(postun): initscripts
  25. BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
  26. BuildRequires: autoconf net-tools popt-devel
  27. %description
  28. CTDB is a cluster implementation of the TDB database used by Samba and other
  29. projects to store temporary data. If an application is already using TDB for
  30. temporary data it is very easy to convert that application to be cluster aware
  31. and use CTDB instead.
  32. %package devel
  33. Group: Development/Libraries
  34. Summary: CTDB clustered database development package
  35. Requires: ctdb = %{version}-%{release}
  36. Provides: ctdb-static = %{version}-%{release}
  37. %description devel
  38. Libraries, include files, etc you can use to develop CTDB applications.
  39. CTDB is a cluster implementation of the TDB database used by Samba and other
  40. projects to store temporary data. If an application is already using TDB for
  41. temporary data it is very easy to convert that application to be cluster aware
  42. and use CTDB instead.
  43. #######################################################################
  44. %prep
  45. %setup -q
  46. # setup the init script and sysconfig file
  47. %setup -T -D -n ctdb-%{version} -q
  48. #%patch1 -p1
  49. %build
  50. CC="gcc"
  51. ## always run autogen.sh
  52. ./autogen.sh
  53. CFLAGS="$(echo '%{optflags}') $EXTRA -D_GNU_SOURCE -DCTDB_VERS=\"%{version}-%{release}\"" %configure
  54. perl -pi -e 's|rpcgen|rpcgen -Y /usr/bin|g' Makefile
  55. make showflags
  56. make %{_smp_mflags}
  57. %install
  58. # Clean up in case there is trash left from a previous build
  59. rm -rf %{buildroot}
  60. # Create the target build directory hierarchy
  61. mkdir -p %{buildroot}%{_sysconfdir}/sysconfig
  62. mkdir -p %{buildroot}%{initdir}
  63. make DESTDIR=%{buildroot} install
  64. install -m644 config/ctdb.sysconfig %{buildroot}%{_sysconfdir}/sysconfig/ctdb
  65. install -m755 config/ctdb.init %{buildroot}%{initdir}/ctdb
  66. mkdir -p %{buildroot}%{_docdir}/ctdb/tests/bin
  67. install -m755 tests/bin/ctdb_transaction %{buildroot}%{_docdir}/ctdb/tests/bin
  68. # Remove "*.old" files
  69. find %{buildroot} -name "*.old" -exec rm -f {} \;
  70. # fix doc path
  71. mv %{buildroot}%{_docdir}/ctdb %{buildroot}%{_docdir}/ctdb-%{version}
  72. cp -r COPYING web %{buildroot}%{_docdir}/ctdb-%{version}
  73. %clean
  74. rm -rf %{buildroot}
  75. %post
  76. /sbin/chkconfig --add ctdb
  77. %preun
  78. if [ "$1" -eq "0" ] ; then
  79. /sbin/service ctdb stop > /dev/null 2>&1
  80. /sbin/chkconfig --del ctdb
  81. fi
  82. %postun
  83. if [ "$1" -ge "1" ]; then
  84. /sbin/service ctdb condrestart >/dev/null 2>&1 || true
  85. fi
  86. # Files section
  87. %files
  88. %defattr(-,root,root,-)
  89. %config(noreplace) %{_sysconfdir}/sysconfig/ctdb
  90. %config(noreplace) %{_sysconfdir}/ctdb/notify.sh
  91. %config(noreplace) %{_sysconfdir}/ctdb/ctdb-crash-cleanup.sh
  92. %config(noreplace) %{_sysconfdir}/ctdb/functions
  93. %attr(755,root,root) %{initdir}/ctdb
  94. %{_docdir}/ctdb-%{version}
  95. %dir %{_sysconfdir}/ctdb
  96. %{_sysconfdir}/ctdb/statd-callout
  97. %{_sysconfdir}/ctdb/events.d/
  98. %{_sysconfdir}/ctdb/debug-hung-script.sh
  99. %{_sysconfdir}/ctdb/gcore_trace.sh
  100. %{_sbindir}/ctdbd
  101. %{_bindir}/ctdb
  102. %{_bindir}/smnotify
  103. %{_bindir}/ping_pong
  104. %{_bindir}/ctdb_diagnostics
  105. %{_bindir}/onnode
  106. %{_bindir}/ltdbtool
  107. %{_mandir}/man1/ctdb.1.gz
  108. %{_mandir}/man1/ctdbd.1.gz
  109. %{_mandir}/man1/onnode.1.gz
  110. %{_mandir}/man1/ltdbtool.1.gz
  111. %{_mandir}/man1/ping_pong.1.gz
  112. %files devel
  113. %defattr(-,root,root,-)
  114. %{_includedir}/ctdb.h
  115. %{_includedir}/ctdb_client.h
  116. %{_includedir}/ctdb_protocol.h
  117. %{_includedir}/ctdb_private.h
  118. %{_includedir}/ctdb_typesafe_cb.h
  119. %{_libdir}/libctdb.a
  120. %{_libdir}/pkgconfig/ctdb.pc
  121. %changelog
  122. * Tue Oct 08 2013 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.4-1
  123. - new upstream release.
  124. * Mon Dec 17 2012 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.0-1
  125. - new upstream release.
  126. - initial build for Vine Linux.
  127. * Mon Jun 27 2011 Michael Schwendt <mschwendt@fedoraproject.org> - 1.2.28-2
  128. - Provide virtual -static package to meet guidelines (#700029).
  129. * Mon Apr 18 2011 Sumit Bose <sbose@redhat.com> - 1.2.28-1
  130. - Update to ctdb version 1.2.28
  131. * Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.114-2
  132. - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
  133. * Tue Feb 08 2011 Sumit Bose <sbose@redhat.com> - 1.0.114-1
  134. - Changed $RPM_BUILD_ROOT to %{buildroot}
  135. - Update to ctdb version 1.0.114
  136. - Added patch to fix configure issue
  137. - Added assorted backport patches recommended by upstream developer
  138. * Thu Jan 14 2010 Sumit Bose <sbose@redhat.com> - 1.0.113-1
  139. - Update to ctdb version 1.0.113
  140. * Wed Jan 13 2010 : Version 1.0.113
  141. - Incorrect use of dup2() could cause ctdb to spin eating 100% cpu.
  142. * Tue Jan 12 2010 : Version 1.0.112
  143. - Revert the use of wbinfo --ping-dc as it is proving too unreliable.
  144. - Minor testsuite changes.
  145. * Fri Dec 18 2009 : Version 1.0.111
  146. - Fix a logging bug when an eventscript is aborted that could cause a crash.
  147. - Add back cb_status that was lost in a previous commit.
  148. * Fri Dec 18 2009 : Version 1.0.110
  149. - Metxe: fix for filedescriptor leak in the new eventscript code.
  150. - Rusty: fix for a crash bug in the eventscript code.
  151. * Thu Dec 17 2009 : Version 1.0.109
  152. - Massive eventscript updates. (bz58828)
  153. - Nice the daemon instead of using realtime scheduler, also use mlockall() to
  154. reduce the risk of blockign due to paging.
  155. - Workarounds for valgrind when forking once for each script. Valgrind
  156. consumes massive cpu when terminating the scripts on virtual systems.
  157. - Sync the tdb library with upstream, and use the new TDB_DISALLOW_NESTING
  158. flag.
  159. - Add new command "ctdb dumpdbbackup"
  160. - Start using the new tdb check framework to validate tdb files upon startup.
  161. - A new framework where we can control health for individual tdb databases.
  162. - Fix a crash bug in the logging code.
  163. - New transaction code for persistent databases.
  164. - Various other smaller fixes.
  165. * Tue Dec 8 2009 Sumit Bose <sbose@redhat.com> - 1.0.108-1
  166. - Update to ctdb version 1.0.108
  167. - added fix for bz537223
  168. - added tdb-tools to Requires, fixes bz526479
  169. * Wed Dec 2 2009 Sumit Bose <sbose@redhat.com> - 1.0.107-1
  170. - Update to ctdb version 1.0.107
  171. * Wed Dec 2 2009 : Version 1.0.107
  172. - fix for rusty to solve a double-free that can happen when there are
  173. multiple packets queued and the connection is destroyed before
  174. all packets are processed.
  175. * Tue Dec 1 2009 : Version 1.0.106
  176. - Buildscript changes from Michael Adam
  177. - Dont do a full recovery when there is a mismatch detected for ip addresses,
  178. just do a less disruptive ip-reallocation
  179. - When starting ctdbd, wait until all initial recoveries have finished
  180. before we issue the "startup" event.
  181. So dont start services or monitoring until the cluster has
  182. stabilized.
  183. - Major eventscript overhaul by Ronnie, Rusty and Martins and fixes of a few
  184. bugs found.
  185. * Thu Nov 19 2009 : Version 1.0.105
  186. - Fix a bug where we could SEGV if multiple concurrent "ctdb eventscript ..."
  187. are used and some of them block.
  188. - Monitor the daemon from the syslog child process so we shutdown cleanly when
  189. the main daemon terminates.
  190. - Add a 500k line ringbuffer in memory where all log messages are stored.
  191. - Add a "ctdb getlog <level>" command to pull log messages from the in memory
  192. ringbuffer.
  193. - From martin : fixes to cifs and nfs autotests
  194. - from michael a : fix a bashism in 11.natgw
  195. * Fri Nov 6 2009 : Version 1.0.104
  196. - Suggestion from Metze, we can now use killtcp to kill local connections
  197. for nfs so change the killtcp script to kill both directions of an NFS
  198. connection.
  199. We used to deliberately only kill one direction in these cases due to
  200. limitations.
  201. - Suggestion from christian Ambach, when using natgw, try to avoid using a
  202. UNHEALTHY node as the natgw master.
  203. - From Michael Adam: Fix a SEGV bug in the recent change to the eventscripts
  204. to allow the timeout to apply to each individual script.
  205. - fix a talloc bug in teh vacuuming code that produced nasty valgrind
  206. warnings.
  207. - From Rusty: Set up ulimit to create core files for ctdb, and spawned
  208. processes by default. This is useful for debugging and testing but can be
  209. disabled by setting CTDB_SUPRESS_COREFILE=yes in the sysconfig file.
  210. - Remove the wbinfo -t check from the startup check that winbindd is happy.
  211. - Enhance the test for bond devices so we also check if the sysadmin have
  212. disabled all slave devices using "ifdown".
  213. * Tue Nov 3 2009 : Version 1.0.103
  214. - Dont use vacuuming on persistent databases
  215. - Michael A : transaction updates to persistent databases
  216. - Dont activate service automatically when installing the RPM. Leave this to
  217. the admin.
  218. - Create a child process to send all log messages to, to prevent a hung/slow
  219. syslogd from blocking the main daemon. In this case, discard log messages
  220. instead and let the child process block.
  221. - Michael A: updates to log messages
  222. * Thu Oct 29 2009 : Version 1.0.102
  223. - Wolfgang: fix for the vacuuming code
  224. - Wolfgang: stronger tests for persistent database filename tests
  225. - Improve the log message when we refuse to startup since wbinfo -t fails
  226. to make it easier to spot in the log.
  227. - Update the uptime command output and the man page to indicate that
  228. "time since last ..." if from either the last recovery OR the last failover
  229. - Michael A: transaction updates
  230. * Wed Oct 28 2009 : Version 1.0.101
  231. - create a separate context for non-monitoring events so they dont interfere
  232. with the monitor event
  233. - make sure to return status 0 in teh callback when we abort an event
  234. * Wed Oct 28 2009 : Version 1.0.100
  235. - Change eventscript handling to allow EventScriptTimeout for each individual
  236. script instead of for all scripts as a whole.
  237. - Enhanced logging from the eventscripts, log the name and the duration for
  238. each script as it finishes.
  239. - Add a check to use wbinfo -t for the startup event of samba
  240. - TEMP: allow clients to attach to databases even when teh node is in recovery
  241. mode
  242. - dont run the monitor event as frequently after an event has failed
  243. - DEBUG: in the eventloops, check the local time and warn if the time changes
  244. backward or rapidly forward
  245. - From Metze, fix a bug where recovery master becoming unhealthy did not
  246. trigger an ip failover.
  247. - Disable the multipath script by default
  248. - Automatically re-activate the reclock checking if the reclock file is
  249. specified at runtime. Update manpage to reflect this.
  250. - Add a mechanism where samba can register a SRVID and if samba unexpectedly
  251. disconnects, a message will be broadcasted to all other samba daemons.
  252. - Log the pstree on hung scripts to a file in /tmp isntead of
  253. /var/log/messages
  254. - change ban count before unhealthy/banned to 10
  255. * Thu Oct 22 2009 : Version 1.0.99
  256. - Fix a SEGV in the new db priority code.
  257. - From Wolfgang : eliminate a ctdb_fatal() if there is a dmaster violation
  258. detected.
  259. - During testing we often add/delete eventscripts at runtime. This could cause
  260. an eventscript to fail and mark the node unhealthy if an eventscript was
  261. deleted while we were listing the names. Handle the errorcode and make sure
  262. the node does not becomne unhealthy in this case.
  263. - Lower the debuglevel for the messages when ctdb creates a filedescruiptor so
  264. we dont spam the logs with these messages.
  265. - Dont have the RPM automatically restart ctdb
  266. - Volker : add a missing transaction_cancel() in the handling of persistent
  267. databases
  268. - Treat interfaces with the anme ethX* as bond devices in 10.interfaces so we
  269. do the correct test for if they are up or not.
  270. * Tue Oct 20 2009 : Version 1.0.98
  271. - Fix for the vacuuming database from Wolfgang M
  272. - Create a directory where the test framework can put temporary overrides
  273. to variables and functions.
  274. - Wait a lot longer before shutting down the node when the reclock file
  275. is incorrectly configured, and log where it is configured.
  276. - Try to avoid running the "monitor" event when databases are frozen.
  277. - Add logging for every time we create a filedescriptor so we can trap
  278. fd leaks.
  279. * Wed Oct 14 2009 : Version 1.0.97
  280. - From martins : update onnode.
  281. Update onnode to allow specifying an alternative nodes file from
  282. the command line and also to be able to specify hostnames on the
  283. list of targets :
  284. onnode host1,host2,...
  285. * Wed Oct 14 2009 Sumit Bose <sbose@redhat.com> - 1.0.96-1
  286. - Update to ctdb version 1.0.96
  287. * Tue Oct 13 2009 : Version 1.0.96
  288. - Add more debugging output when eventscripts have trouble. Print a
  289. "pstree -p" to the log when scripts have hung.
  290. - Update the initscript, only print the "No reclock file used" warning
  291. when we do "service ctdb start", dont also print them for all other
  292. actions.
  293. - When changing between unhealthy/healthy state, push a request to the
  294. recovery master to perform an ip reallocation instead of waiting for the
  295. recovery master to pull and check the state change.
  296. - Fix a bug in the new db-priority handling where a pre-.95 recovery master
  297. could no longer lock the databases on a post-.95 daemon.
  298. - Always create the nfs state directories during the "monitor" event.
  299. This makes it easier to configure and enable nfs at runtime.
  300. - From Volker, forward-port a simper deadlock avoiding patch from the 1.0.82
  301. branch. This is a simpler versionof the "db priority lock order" patch
  302. that went into 1.0.95, and will be kept for a few versions until samba
  303. has been updated to use the functionality from 1.0.95.
  304. * Mon Oct 12 2009 : Version 1.0.95
  305. - Add database priorities. Allow samba to set the priority of databases
  306. and lock the databases in priority order during recovery
  307. to avoid a deadlock when samba locks one database then blocks indefinitely
  308. while waiting for the second databaso to become locked.
  309. - Be aggressive and ban nodes where the recovery transaction start call
  310. fails.
  311. * Sat Oct 10 2009 : Version 1.0.94
  312. - Be very aggressive and quickly ban nodes that can not freeze their databases
  313. * Thu Oct 8 2009 : Version 1.0.93
  314. - When adding an ip, make sure to update this assignment on all nodes
  315. so it wont show up as -1 on other nodes.
  316. - When adding an ip and immediately deleting it, it was possible that
  317. the daemon would crash accessing already freed memory.
  318. Readjust the memory hierarchy so the destructors are called in the right
  319. order.
  320. - Add a handshake to the recovery daemon to eliminate some rare cases where
  321. addip/delip might cause a recovery to occur.
  322. - updated onnode documenation from Martin S
  323. - Updates to the natgw eventscript to allow disabling natgw at runtime
  324. * Fri Oct 2 2009 : Version 1.0.92
  325. - Test updates and merge from martin
  326. - Add notification for "startup"
  327. - Add documentation for notification
  328. - from martin, a fix for restarting vsftpd in the eventscript
  329. * Tue Sep 29 2009 Sumit Bose <sbose@redhat.com> - 1.0.91-1
  330. - Update to ctdb version 1.0.91
  331. * Tue Sep 29 2009 : Version 1.0.91
  332. - New vacuum and repack design from Wolgang Mueller.
  333. - Add a new eventscript 01.reclock that will first mark a node unhealthy and
  334. later ban the node if the reclock file can not be accessed.
  335. - Add machinereadable output to the ctdb getreclock command
  336. - merge transaction updates from Michael Adam
  337. - In the new banning code, reset the culprit count to 0 for all nodes that
  338. could successfully compelte a full recovery.
  339. - dont mark the recovery master as a ban culprit because a node in the cluster
  340. needs a recovery. this happens naturally when using ctdb recover command so
  341. dont make this cause a node to be banned.
  342. * Wed Sep 23 2009 Sumit Bose <sbose@redhat.com> - 1.0.90-1
  343. - Update to ctdb version 1.0.90
  344. * Sat Sep 12 2009 : Version 1.0.90
  345. - Be more forgiving for eventscripts that hang during startup
  346. - Fix for a banning bug in the new banning logic
  347. * Thu Sep 3 2009 : Version 1.0.89
  348. - Make it possible to manage winbind independently of samba.
  349. - Add new prototype banning code
  350. - Overwrite the vsftpd state file instead of appending. This eliminates
  351. annoying errors in the log.
  352. - Redirect some iptables commands to dev null
  353. - From Michael A, explicitely set the broadcast when we takeover a public ip
  354. - Remove a reclock file check we no longer need
  355. - Skip any persistent database files ending in .bak
  356. * Mon Aug 17 2009 Sumit Bose <sbose@redhat.com> - 1.0.88-1
  357. - Update to ctdb version 1.0.88
  358. * Mon Aug 17 2009 : Version 1.0.88
  359. - Add a new state for eventscripts : DISABLED.
  360. Add two new commands "ctdb enablescript/disablescript" to enable/disable
  361. eventscripts at runtime.
  362. - Bugfixes for TDB from rusty.
  363. - Merge/Port changes from upstream TDB library by rusty.
  364. - Additional new tests from MartinS. Tests for stop/continue.
  365. - Initial patch to rework vacuuming/repacking process from Wolfgang Mueller.
  366. - Updates from Michael Adam for persistent writes.
  367. - Updates from MartinS to handle the new STOPPED bit in the test framework.
  368. - Make it possible to enable/disable the RECMASTER and LMASTER roles
  369. at runtime. Add two new commands
  370. "ctdb setlmasterrole/setrecmasterrole on/off"
  371. - Make it possible to enable/disable the natgw feature at runtime. Add
  372. the command "ctdb setnatgwstate on/off"
  373. * Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.87-2
  374. - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
  375. * Fri Jul 17 2009 Sumit Bose <sbose@redhat.com> - 1.0.87-1
  376. - Update to ctdb version 1.0.87
  377. * Fri Jul 17 2009 : Version 1.0.87
  378. - Add a new event "stopped" that is called when a node is stopped.
  379. - Documentation of the STOPPED flag and the stop/continue commands
  380. - Make it possible to start a node in STOPPED mode.
  381. - Add a new node flag : STOPPED and commands "ctdb stop" "ctdb continue"
  382. These commands are similar to "diasble/enable" but will also remove the node
  383. from the vnnmap, while disable only fails all ip addresses over.
  384. - tests for NFS , CIFS by martins
  385. - major updates to the init script by martins
  386. - Send gratious arps with a 1.1 second stride instead of a 1 second stride to
  387. workaround interesting "features" of common linux stacks.
  388. - Various test enhancements from martins:
  389. - additional other tests
  390. - add tests for grat arp generation, ping during failover, ssh and failover
  391. - New/updated tcp tickle tests and supprot functions
  392. - provide better debugging when a test fails
  393. - make ctdbd restarts more reliable in the tests
  394. - update the "wait bar" to make the wait progress in tests more obvious
  395. - various cleanups
  396. - when dispatching a message to a handler, make the message a real talloc
  397. object so that we can reparent the object in the tallic hierarchy.
  398. - document the ipreallocate command
  399. - Updates to enable/disable to use the ipreallocate command to block until the
  400. following ipreallocation has completed.
  401. - Update the main daemon and the tools to allow debug level to be a string
  402. instead of an integer.
  403. - Update the sysconfig file to show using string literals instead of numeric
  404. values for the debuglevels used.
  405. - If no debuglevel is specific, make "ctdb setdebug" show the available
  406. options.
  407. - When trying to allocate network packets, add explicit checks if the network
  408. transport has been shutdown before trying and failing, to make log messages
  409. easier to read. Add this extra check and logging to every plave packets are
  410. allocated.
  411. * Wed Jul 1 2009 Sumit Bose <sbose@redhat.com> - 1.0.86-1
  412. - Update to ctdb version 1.0.86
  413. * Tue Jun 30 2009 : Version 1.0.86
  414. - Do not access the reclock at all if VerifyRecoveryLock is zero, not even try
  415. to probe it.
  416. - Allow setting the reclock file as "", which means that no reclock file at
  417. all should be used.
  418. - Document that a reclock file is no longer required, but that it is
  419. dangerous.
  420. - Add a control that can be used to set/clear/change the reclock file in the
  421. daemon during runtime.
  422. - Update the recovery daemon to poll whether a reclock file should be sued and
  423. if so which file at runtime in each monitoring cycle.
  424. - Automatically disable VerifyRecoveryLock everytime a user changes the
  425. location of the reclock file.
  426. - do not allow the VerifyRecoveryLock to be set using ctdb setvar if there is
  427. no recovery lock file specified.
  428. - Add two commands "ctdb getreclock" and "ctdb setreclock" to modify the
  429. reclock file.
  430. * Tue Jun 23 2009 : Version 1.0.85
  431. - From William Jojo : Dont use getopt on AIX
  432. - Make it possible to use "ctdb listnodes" also when the daemon is not running
  433. - Provide machinereadable output to "ctdb listnodes"
  434. - Dont list DELETED nodes in the ctdb listnodes output
  435. - Try to avoid causing a recovery for the average case when
  436. adding/deleting/moving an ip
  437. - When banning a node, drop the IPs on that node only and not all nodes.
  438. - Add tests for NFS and CIFS tickles
  439. - Rename 99.routing to 11.routing so it executes before NFS and LVS scripts
  440. - Increase the default timeout before we deem an unresponsive recovery daemon
  441. hung and shutdown
  442. - Reduce the reclock timout to 5 seconds
  443. - Spawn a child process in the recovery daemon ot check the reclock file to
  444. avoid blocking the process if the underlying filesystem is unresponsive
  445. - fix for filedescriptor leak when a child process timesout
  446. - Dont log errors if waitpid() returns -1
  447. - Onnode updates by Martins
  448. - Test and initscript cleanups from Martin S
  449. * Fri Jun 5 2009 Sumit Bose <sbose@redhat.com> - 1.0.84-1
  450. - Update to ctdb version 1.0.84
  451. * Tue Jun 2 2009 : Version 1.0.84
  452. - Fix a bug in onnode that could not handle dead nodes
  453. * Tue Jun 2 2009 : Version 1.0.83
  454. - Document how to remove a ndoe from a running cluster.
  455. - Hide all deleted nodes from ctdb output.
  456. - Lower the loglevel on some eventscript related items
  457. - Dont queue packets to deleted nodes
  458. - When building initial vnnmap, ignode any nonexisting nodes
  459. - Add a new nodestate : DELETED that is used when deleting a node from an
  460. existing cluster.
  461. - dont remove the ctdb socket when shutting down. This prevents a race in the
  462. initscripts when restarting ctdb quickly after stopping it.
  463. - TDB nesting reworked.
  464. - Remove obsolete ipmux
  465. - From Flavio Carmo Junior: Add eventscript and documentation for ClamAV
  466. antivirus engine
  467. - From Sumit Bose: fix the regex in the test to handle the new ctdb
  468. statistics output that was recently added.
  469. - change the socket type we use for grauitious arps from the obsolete
  470. AF_INET/SOCK_PACKET to instead use PF_PACKET/SOCK_RAW.
  471. - Check return codes for some functions, from Sumit Bose, based on codereview
  472. by Jim Meyering.
  473. - Sumit Bose: Remove structure memeber node_list_file that is no longer used.
  474. - Sumit Bose: fix configure warning for netfilter.h
  475. - Updates to the webpages by Volker.
  476. - Remove error messages about missing /var/log/log.ctdb file from
  477. ctdb_diagnostics.sh from christian Ambach
  478. - Additional error logs if hte eventscript switching from dameon to client
  479. mode fails.
  480. - track how long it takes for ctdbd and the recovery daemon to perform the
  481. rec-lock fcntl() lock attemt and show this in the ctdb statistics output.
  482. * Thu May 14 2009 Sumit Bose <sbose@redhat.com> - 1.0.82-1
  483. - Update to ctdb version 1.0.82
  484. * Thu May 14 2009 : Version 1.0.82
  485. - Update the "ctdb lvsmaster" command to return -1 on error.
  486. - Add a -Y flag to "ctdb lvsmaster"
  487. - RHEL5 apache leaks semaphores when crashing. Add semaphore cleanup to the
  488. 41.httpd eventscript and try to restart apache when it has crashed.
  489. - Fixes to some tests
  490. - Add a -o option to "onnode" which will redirect all stdout to a file for
  491. each of the nodes.
  492. - Add a natgw and a lvs node specifier to onnode so that we can use
  493. "onnode natgw ..."
  494. - Assign the natgw address to lo instead of the private network so it can also
  495. be used where private and public networks are the same.
  496. - Add GPL boilerplates to two missing scripts.
  497. - Change the natgw prefix NATGW_ to CTDB_NATGW_
  498. * Fri May 8 2009 Sumit Bose <sbose@redhat.com> - 1.0.81-1
  499. - Update to ctdb version 1.0.81
  500. * Fri May 8 2009 : Version 1.0.81
  501. - use smbstatus -np instead of smbstatus -n in the 50.samba eventscript
  502. since this avoids performing an expensive traverse on the locking and brlock
  503. databases.
  504. - make ctdb automatically terminate all traverse child processes clusterwide
  505. associated to a client application that terminates before the traversal is
  506. completed.
  507. - From Sumit Bose : fixes to AC_INIT handling.
  508. - From Michael Adam, add Tridge's "ping_pong" tool the the ctdb distro since
  509. this is very useful for testing the backend filesystem.
  510. - From Sumit bose, add support for additional 64 bit platforms.
  511. - Add a link from the webpage to Michael Adams SambaXP paper on CTDB.
  512. * Fri May 1 2009 : Version 1.0.80
  513. - change init shutdown level to 01 for ctdb so it stops before any of the
  514. other services
  515. - if we can not pull a database from a remote node during recovery, mark that
  516. node as a culprit so it becomes banned
  517. - increase the loglevel when we volunteer to drop all ip addresses after
  518. beeing in recovery mode for too long. Make this timeout tuneable with
  519. "RecoveryDropAllIPs" and have it default to 60 seconds
  520. - Add a new flag TDB_NO_NESTING to the tdb layer to prevent nested
  521. transactions which ctdb does not use and does not expect. Have ctdb set this
  522. flag to prevent nested transactions from occuring.
  523. - dont unconditionally kill off ctdb and restrat it on "service ctdb start".
  524. Fail "service ctdb start" with an error if ctdb is already running.
  525. - Add a new tunable "VerifyRecoveryLock" that can be set to 0 to prevent the
  526. main ctdb daemon to verify that the recovery master has locked the reclock
  527. file correctly before allowing it to set the recovery mode to active.
  528. - fix a cosmetic bug with ctdb statistics where certain counters could become
  529. negative.
  530. * Thu Apr 30 2009 Sumit Bose <sbose@redhat.com> - 1.0.79-2
  531. - fixed a ppc64 build issue
  532. * Wed Apr 29 2009 Sumit Bose <sbose@redhat.com> - 1.0.79-1
  533. - Update to ctdb version 1.0.79
  534. * Wed Apr 8 2009 : Version 1.0.79
  535. - From Mathieu Parent: add a ctdb pkgconfig file
  536. - Fix bug 6250
  537. - add a funciton remove_ip to safely remove an ip from an interface, taking
  538. care to workaround an issue with linux alias interfaces.
  539. - Update the natgw eventscript to use the safe remove_ip() function
  540. - fix a bug in the eventscript child process that would cause the socket to be
  541. removed.
  542. - dont verify nodemap on banned nodes during cluster monitoring
  543. - Update the dodgy SeqnumInterval to have ms resolution
  544. * Tue Mar 31 2009 : Version 1.0.78
  545. - Add a notify mechanism so we can send snmptraps/email to external management
  546. systems when the node becomes unhealthy
  547. - include 11.natgw eventscript in thew install so that the NATGW feature works
  548. * Tue Mar 31 2009 : Version 1.0.77
  549. - Update the 99.routing eventscript to also try to add the routes (back)
  550. during a releaseip event. Similar to the reasons why we must add addresses
  551. back during releaseip in 10.interfaces
  552. * Tue Mar 24 2009 : Version 1.0.76
  553. - Add a debugging command "xpnn" which can print the pnn of the node even when
  554. ctdbd is not running.
  555. - Redo the NATGW implementation to allow multiple disjoing NATGW groups in the
  556. same cluster.
  557. * Tue Mar 24 2009 : Version 1.0.75
  558. - Various updates to LVS
  559. - Fix a bug in the killtcp control where we did not set the port correctly
  560. - add a new "ctdb scriptstatus" command that shows the status of the
  561. eventrscripts.
  562. * Mon Mar 16 2009 : Version 1.0.74
  563. - Fixes to AIX from C Cowan.
  564. - Fixes to ctdb_diagnostics so we collect correct GPFS data
  565. - Fixes to the net conf list command in ctdb_diagnostics
  566. - Check the static-routes file IFF it exists in ctdb_diagnostics
  567. * Thu Mar 05 2009 Sumit Bose <sbose@redhat.com> - 1.0.73-1
  568. - Update to ctdb version 1.0.73
  569. * Wed Mar 4 2009 : Version 1.0.73
  570. - Add possibility to disable the check of shares for NFS and Samba
  571. - From Sumit Bose, fix dependencies so make -j works
  572. * Tue Feb 24 2009 Sumit Bose <sbose@redhat.com> - 1.0.72-3
  573. - fix a make -j dependency problem
  574. * Tue Feb 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.72-2
  575. - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
  576. * Wed Feb 18 2009 Sumit Bose <sbose@redhat.com> - 1.0.72-1
  577. - Update to ctdb version 1.0.72
  578. * Wed Feb 18 2009 : Version 1.0.72
  579. - Updates to test scripts by martin s
  580. - Adding a COPYING file
  581. - Use netstat to check for services and ports and fallback to netcat
  582. only if netstat is unavailable.
  583. * Tue Feb 17 2009 Sumit Bose <sbose@redhat.com> - 1.0.71-5
  584. - more fixed according to https://bugzilla.redhat.com/show_bug.cgi?id=459444
  585. * Sun Feb 8 2009 Sumit Bose <sbose@redhat.com> - 1.0.71-4
  586. - added upstream patch with license file
  587. * Fri Feb 6 2009 Sumit Bose <sbose@redhat.com> - 1.0.71-3
  588. - fixed package according to https://bugzilla.redhat.com/show_bug.cgi?id=459444
  589. * Thu Feb 5 2009 Guenther Deschner <gdeschner@redhat.com> - 1.0.71-2
  590. - Update to ctdb version 1.0.71
  591. * Sun Feb 01 2009 : Version 1.0.71
  592. - Additional ipv6 fixes from Michael Adams
  593. * Thu Jan 15 2009 : Version 1.0.70
  594. - IPv6 support is completed. this is backward compatible with ipv4-only
  595. systems. To use IPv6 with samba and ctdb you need current GIT of samba 3.3
  596. or michael adams samba-ctdeb branch.
  597. - Many enhancements to the build system and scripts to make it more SUSE
  598. friendly by Michael Adams.
  599. - Change of how the naming of the package is structured. We are now
  600. using "1.0.70" as a release and "-1" as the revision instead of as
  601. previously using "1.0" as release and ".70" as the revision.
  602. By Michael Adams.
  603. * Wed Dec 17 2008 : Version 1.0.69
  604. - Various fixes to scripts by M Adam
  605. - Dont call ctdb_fatal() when the transport is down during shutdown
  606. * Thu Dec 11 2008 : Version 1.0.68
  607. - Fixes for monitoring of interfaces status from Michael Adam.
  608. - Use -q instead of >/dev/null for grep to enhance readability of the
  609. scripts from Michael Adam.
  610. - Update to the "ctdb recover" command. This command now block until the
  611. has completed. This makes it much easier to use in scripts and avoids
  612. the common workaround :
  613. ctdb recover
  614. ... loop while waiting for recovery completes ...
  615. continue ...
  616. - Add a CTDB_TIMEOUT variable. If set, this variable provides an automatic
  617. timeout for "ctdb <command>", similar to using -T <timeout>
  618. - Set a unique errorcode for "ctdb <command>" when it terminates due to a
  619. timeout so that scripts can distinguish between a hung command and what was
  620. just a failure.
  621. - Update "ctdb ban/unban" so that if the cluster is in recovery these commands
  622. blocks and waits until after recovery is complete before the perform the
  623. ban/unban operation. This is necessary since the recovery process can cause
  624. nodes to become automatically unbanned.
  625. - Update "ctdb ban/unban" to block until the recovery that will follow shortly
  626. after this command has completed.
  627. This makes it much easier to use in scripts and avoids the common
  628. workaround :
  629. ctdb ban/unban
  630. ... loop while waiting for recovery completes ...
  631. continue ...
  632. - Bugfix for the new flags handling in 1.0.67. Abort and restart monitoring
  633. if we failed to get proper nodemaps from a remote node instead of
  634. dereferencing a null pointer.
  635. - If ctdbd was explicitely started with the '--socket' argument, make
  636. ctdbd automatically set CTDB_SOCKET to the specified argument.
  637. This ensures that eventscripts spawned by the ctdb daemon will default to
  638. using the same socket and talk to the correct daemon.
  639. This primarily affects running multiple daemons on the same host and where
  640. you want each instance of ctdb daemons have their eventscripts talk to the
  641. "correct" daemon.
  642. - Update "ctdb ping" to return an error code if the ping fail so that it
  643. can be used in scripts.
  644. - Update to how to synchronize management of node flags across the cluster.
  645. * Tue Dec 02 2008 : Version 1.0.67
  646. - Add a document describing the recovery process.
  647. - Fix a bug in "ctdb setdebug" where it would refuse to set a negative
  648. debug level.
  649. - Print the list of literals for debug names if an invalid one was given
  650. to "ctdb setdebug"
  651. - Redesign how "ctdb reloadnodes" works and reduce the amont of tcp teardowns
  652. used during this event.
  653. - Make it possible to delete a public ip from all nodes at once using
  654. "ctdb delip -n all"
  655. * Sun Nov 23 2008 : Version 1.0.66
  656. - Allow to change the recmaster even when we are not frozen.
  657. - Remove two redundant SAMBA_CHECK variables from the sysconf example
  658. - After a node failure it can take very long before some lock operations
  659. ctdb needs to perform are allowed/works with gpfs again. Workaround this
  660. by treating a hang/timeout as success.
  661. - Dont override CTDB_BASE is fet in the shell already
  662. - Always send keepalive packets regardless of whether the link is idle or not.
  663. - Rewrite the disable/enable flag update logic to prevent a race between
  664. "ctdb disable/enable" and the recovery daemon when updating the flags to
  665. all nodes.
  666. * Wed Nov 12 2008 : Version 1.0.65
  667. - Update the sysconfig example: The default debug level is 2 (NOTICE) and not
  668. 0 (ERROR)
  669. - Add support for a CTDB_SOCKET environment variable for the ctdb command
  670. line tool. If set, this overrides the default socket the ctdb tool will
  671. use.
  672. - Add logging of high latency operations.
  673. * Tue Oct 21 2008 : Version 1.0.64
  674. - Add a context and a timed event so that once we have been in recovery for
  675. too long we drop all public addresses.
  676. * Sun Oct 19 2008 : Version 1.0.63
  677. - Remove logging of "periodic cleanup ..." in 50.samba
  678. - When we reload a nodes file, we must detect this and reload the file also
  679. in the recovery daemon before we try to dereference somethoung beyond the end
  680. of the nodes array.
  681. * Wed Oct 15 2008 : Version 1.0.62
  682. - Allow multiple eventscritps using the same prefix number.
  683. It is undefined which order scripts with the same prefix will execute in.
  684. * Tue Oct 14 2008 : Version 1.0.61
  685. - Use "route add -net" instead of "ip route add" when adding routes in 99.routing
  686. - lower the loglevel os several debug statements
  687. - check the status returned from ctdb_ctrl_get_tickles() before we try to
  688. print them out to the screen.
  689. - install a new eventscript 20.multipathd whoich can be used to monitor that
  690. multipath devices are healthy
  691. * Tue Oct 14 2008 : Version 1.0.60
  692. - Verify that nodes we try to ban/unban are reachable and print an error othervise.
  693. - Update the client and server sides of TAKEIP/RELEASEIP/GETPUBLICIPS and
  694. GETNODEMAP to fall back to the old style ipv4-only controls if the new
  695. ipv4/ipv6 controls fail. This allows an ipv4/v6 enabled ctdb daemon to
  696. interoperate with earlier ipv4-only versions of the daemons.
  697. - From Mathieu Parent : log debian systems log the package versions in ctdb
  698. diagnostics
  699. - From Mathieu Parent : specify logdir location for debian (this patch was
  700. later reversed)
  701. - From Michael Adams : allow # comments in nodes/public_addresses files
  702. * Mon Oct 06 2008 : Version 1.0.59
  703. - Updated "reloadnodes" logic. Instead of bouncing the entire tcp layer it is
  704. sufficient to just close and reopen all outgoing tcp connections.
  705. - New eventscript 99.routing which can be used to re-attach routes to public
  706. interfaces after a takeip event. (routes may be deleted by the kernel when we
  707. release an ip)
  708. - IDR tree fix from Jim Houston
  709. - Better handling of critical events if the local clock is suddenly changed
  710. forward by a lot.
  711. - Fix three slow memory leaks in the recovery daemon
  712. - New ctdb command : ctdb recmaster which prints the pnn of the recmaster
  713. - Onnode enhancements from Martin S : "healthy" and "connected" are now
  714. possible nodespecifiers
  715. - From Martin S : doc fixes
  716. - lowering some debug levels for some nonvital informational messages
  717. - Make the daemon daemon monitoring stronger and allow ctdbd to detect a hung
  718. recovery daemon.
  719. - From C Cowan : patches to compile ipv6 under AIX
  720. - zero out some structs to keep valgrind happy
  721. * Mon Sep 8 2008 Abhijith Das <adas@redhat.com> - 1.0.58-1
  722. - This release repackages upstream's version 1.0.58 for fedora
  723. * Wed Aug 27 2008 : Version 1.0.58
  724. - revert the name change tcp_tcp_client back to tcp_control_tcp so
  725. samba can build.
  726. - Updates to the init script from Abhijith Das <adas@redhat.com>
  727. * Mon Aug 25 2008 : Version 1.0.57
  728. - initial support for IPv6
  729. * Mon Aug 11 2008 : Version 1.0.56
  730. - fix a memory leak in the recovery daemon.
  731. * Mon Aug 11 2008 : Version 1.0.55
  732. - Fix the releaseip message we seond to samba.
  733. * Fri Aug 8 2008 : Version 1.0.54
  734. - fix a looping error in the transaction code
  735. - provide a more detailed error code for persistent store errors
  736. so clients can make more intelligent choices on how to try to recover
  737. * Thu Aug 7 2008 : Version 1.0.53
  738. - Remove the reclock.pnn file it can cause gpfs to fail to umount
  739. - New transaction code
  740. * Mon Aug 4 2008 : Version 1.0.52
  741. - Send an explicit gratious arp when starting sending the tcp tickles.
  742. - When doing failover, issue a killtcp to non-NFS/non-CIFS clients
  743. so that they fail quickly. NFS and CIFS already fail and recover
  744. quickly.
  745. - Update the test scripts to handle CTRL-C to kill off the test.
  746. * Mon Jul 28 2008 : Version 1.0.51
  747. - Strip off the vlan tag from bond devices before we check in /proc
  748. if the interface is up or not.
  749. - Use testparm in the background in the scripts to allow probing
  750. that the shares do exist.
  751. - Fix a bug in the logging code to handle multiline entries better
  752. - Rename private elements from private to private_data
  753. * Fri Jul 18 2008 : Version 1.0.50
  754. - Dont assume that just because we can establish a TCP connection
  755. that we are actually talking to a functioning ctdb daemon.
  756. So dont mark the node as CONNECTED just because the tcp handshake
  757. was successful.
  758. - Dont try to set the recmaster to ourself during elections for those
  759. cases we know this will fail. To remove some annoying benign but scary
  760. looking entries from the log.
  761. - Bugfix for eventsystem for signal handling that could cause a node to
  762. hang.
  763. * Thu Jul 17 2008 : Version 1.0.49
  764. - Update the safe persistent update fix to work with unpatched samba
  765. servers.
  766. * Thu Jul 17 2008 : Version 1.0.48
  767. - Update the spec file.
  768. - Do not start new user-triggered eventscripts if we are already
  769. inside recovery mode.
  770. - Add two new controls to start/cancel a persistent update.
  771. A client such as samba can use these to tell ctdbd that it will soon
  772. be writing directly to the persistent database tdb file. So if
  773. samba is -9ed before it has eitehr done the persistent_store or
  774. canceled the operation, ctdb knows that the persistent databases
  775. 'may' be out of sync and therefore a full blown recovery is called for.
  776. - Add two new options :
  777. CTDB_SAMBA_SKIP_CONF_CHECK and CTDB_SAMBA_CHECK_PORTS that can be used
  778. to override what checks to do when monitoring samba health.
  779. We can no longer use the smbstatus, net or testparm commands to check
  780. if samba or its config is healthy since these commands may block
  781. indefinitely and thus can not be used in scripts.
  782. * Fri Jul 11 2008 : Version 1.0.47
  783. - Fix a double free bug where if a user striggered (ctdb eventscript)
  784. hung and while the timeout handler was being processed a new user
  785. triggered eventscript was started we would free state twice.
  786. - Rewrite of onnode and associated documentation.
  787. * Thu Jul 10 2008 : Version 1.0.46
  788. - Document both the LVS:cingle-ip-address and the REMOTE-NODE:wan-accelerator
  789. capabilities.
  790. - Add commands "ctdb pnn", "ctdb lvs", "ctdb lvsmaster".
  791. - LVS improvements. LVS is the single-ip-address mode for a ctdb cluster.
  792. - Fixes to supress rpmlint warnings
  793. - AXI compile fixes.
  794. - Change \s to [[:space:]] in some scripts. Not all RHEL5 packages come
  795. with a egrep that handles \s even same version but different arch.
  796. - Revert the change to NFS restart. CTDB should NOT attempt to restart
  797. failed services.
  798. - Rewrite of the waitpid() patch to use the eventsystem for handling
  799. signals.
  800. * Tue Jul 8 2008 : Version 1.0.45
  801. - Try to restart the nfs service if it has failed to respond 3 times in a row.
  802. - waitpid() can block if the child does not respond promptly to SIGTERM.
  803. ignore all SIGCHILD signals by setting SIGCHLD to SIG_DEF.
  804. get rid of all calls to waitpid().
  805. - make handling of eventscripts hanging more liberal.
  806. only consider the script to have failed and making the node unhealthy
  807. IF the eventscript terminated wiht an error
  808. OR the eventscript hung 5 or more times in a row
  809. * Mon Jul 7 2008 : Version 1.0.44
  810. - Add a CTDB_VALGRIND option to /etc/sysconfig/ctdb to make it start
  811. ctdb under valgrind. Logs go to /var/log/ctdb_valgrind.PID
  812. - Add a hack to show the control opcode that caused uninitialized data
  813. in the valgrind output by encoding the opcode as the line number.
  814. - Initialize structures and allocated memory in various places in
  815. ctdb to make it valgrind-clean and remove all valgrind errors/warnings.
  816. - If/when we destroy a lockwait child, also make sure we cancel any pending transactions
  817. - If a transaction_commit fails, delete/cancel any pending transactions and
  818. return an error instead of calling ctdb_fatal()
  819. - When running ctdb under valgrind, make sure we run it with --nosetsched and also
  820. ensure that we do not use mem-mapped i/o when accessing the tdb's.
  821. - zero out ctdb->freeze_handle when we free/destroy a freeze-child.
  822. This prevent a heap corruption/ctdb crash bug that could trigger
  823. if the freeze child times out.
  824. - we dont need to explicitely thaw the databases from the recovery daemon
  825. since this is done implicitely when we restore the recovery mode back to normal.
  826. - track when we start and stop a recovery. Add the 'time it took to complete the
  827. recovery' to the 'ctdb uptime' output.
  828. Ensure by tracking the start/stop recovery timestamps that we do not
  829. check that the ip allocation is consistend from inside the recovery daemon
  830. while a different node (recovery master) is performing a recovery.
  831. This prevent a race that could cause a full recovery to trigger if the
  832. 'ctdb disable/enable' commands took very long.
  833. - The freeze child indicates to the master daemon that all databases are locked
  834. by writing data to the pipe shared with the master daemon.
  835. This write sometimes fail and thus the master daemon never notices that the databases
  836. are locked cvausing long timeouts and extra recoveries.
  837. Check that the write is successful and try the write again if it failed.
  838. - In each node, verify that the recmaster have the right node flags for us
  839. and force a push of our flags to the recmaster if wrong.
  840. * Tue Jul 1 2008 : Version 1.0.43
  841. - Updates and bugfixes to the specfile to keep rpmlint happy
  842. - Force a global flags update after each recovery event.
  843. - Verify that the recmaster agrees with our node flags and update the
  844. recmaster othervise.
  845. - When writing back to the parent from a freeze-child across the pipe,
  846. loop over the write in case the write failed with an error othervise
  847. the parent will never be notified tha the child has completed the operation.
  848. - Automatically thaw all databases when recmaster marks us as being in normal
  849. mode instead of recovery mode.
  850. * Fri Jun 13 2008 : Version 1.0.42
  851. - When event scripts have hung/timedout more than EventScriptBanCount times
  852. in a row the node will ban itself.
  853. - Many updates to persistent write tests and the test scripts.
  854. * Wed May 28 2008 : Version 1.0.41
  855. - Reactivate the safe writes to persistent databases and solve the
  856. locking issues. Locking issues are solved the only possible way,
  857. by using a child process to do the writes. Expensive and slow but... .
  858. * Tue May 27 2008 : Version 1.0.40
  859. - Read the samba sysconfig file from the 50.samba eventscript
  860. - Fix some emmory hierarchical bugs in the persistent write handling
  861. * Thu May 22 2008 : Version 1.0.39
  862. - Moved a CTDB_MANAGES_NFS, CTDB_MANAGES_ISCSI and CTDB_MANAGES_CSFTPD
  863. into /etc/sysconfig/ctdb
  864. - Lowered some debug messages to not fill the logfile with entries
  865. that normally occur in the default configuration.
  866. * Fri May 16 2008 : Version 1.0.38
  867. - Add machine readable output support to "ctdb getmonmode"
  868. - Lots of tweaks and enhancements if the event scripts are "slow"
  869. - Merge from tridge: an attempt to break the chicken-and-egg deadlock that
  870. net conf introduces if used from an eventscript.
  871. - Enhance tickles so we can tickle an ipv6 connection.
  872. - Start adding ipv6 support : create a new container to replace sockaddr_in.
  873. - Add a checksum routine for ipv6/tcp
  874. - When starting up ctdb, let the init script do a tdbdump on all
  875. persistent databases and verify that they are good (i.e. not corrupted).
  876. - Try to use "safe transactions" when writing to a persistent database
  877. that was opened with the TDB_NOSYNC flag. If we can get the transaction
  878. thats great, if we cant we have to write anyway since we cant block here.
  879. * Mon May 12 2008 : Version 1.0.37
  880. - When we shutdown ctdb we close the transport down before we run the
  881. "shutdown" eventscripts. If ctdb decides to send a packet to a remote node
  882. after we have shutdown the transport but before we have shutdown ctdbd
  883. itself this could lead to a SEGV instead of a clean shutdown. Fix.
  884. - When using the "exportfs" command to extract which NFS export directories
  885. to monitor, exportfs violates the "principle of least surprise" and
  886. sometimes report a single export line as two lines of text output
  887. causing the monitoring to fail.
  888. * Fri May 9 2008 : Version 1.0.36
  889. - fix a memory corruption bug that could cause the recovery daemon to crash.
  890. - fix a bug with distributing public ip addresses during recovery.
  891. If the node that is the recovery master did NOT use public addresses,
  892. then it assumed that no other node in the cluster used them either and
  893. thus skipped the entire step of reallocating public addresses.
  894. * Wed May 7 2008 : Version 1.0.35
  895. - During recovery, when we define the new set of lmasters (vnnmap)
  896. only consider those nodes that have the can-be-lmaster capability
  897. when we create the vnnmap. unless there are no nodes available which
  898. supports this capability in which case we allow the recmaster to
  899. become lmaster capable (temporarily).
  900. - Extend the async framework so that we can use paralell async calls
  901. to controls that return data.
  902. - If we do not have the "can be recmaster" capability, make sure we will
  903. lose any recmaster elections, unless there are no nodes available that
  904. have the capability, in which case we "take/win" the election anyway.
  905. - Close and reopen the reclock pnn file at regular intervals.
  906. Make it a non-fatal event if we occasionally fail to open/read/write
  907. to this file.
  908. - Monitor that the recovery daemon is still running from the main ctdb
  909. daemon and shutdown the main daemon when recovery daemon has terminated.
  910. - Add a "ctdb getcapabilities" command to read the capabilities off a node.
  911. - Define two new capabilities : can be recmaster and can be lmaster
  912. and default both capabilities to YES.
  913. - Log denied tcp connection attempts with DEBUG_ERR and not DEBUG_WARNING
  914. * Thu Apr 24 2008 : Version 1.0.34
  915. - When deleting a public ip from a node, try to migrate the ip to a different
  916. node first.
  917. - Change catdb to produce output similar to tdbdump
  918. - When adding a new public ip address, if this ip does not exist yet in
  919. the cluster, then grab the ip on the local node and activate it.
  920. - When a node disagrees with the recmaster on WHO is the recmaster, then
  921. mark that node as a recovery culprit so it will eventually become
  922. banned.
  923. - Make ctdb eventscript support the -n all argument.
  924. * Thu Apr 10 2008 : Version 1.0.33
  925. - Add facilities to include site local adaptations to the eventscript
  926. by /etc/ctdb/rc.local which will be read by all eventscripts.
  927. - Add a "ctdb version" command.
  928. - Secure the domain socket with proper permissions from Chris Cowan
  929. - Bugfixes for AIX from Chris Cowan
  930. * Wed Apr 02 2008 : Version 1.0.32
  931. - Add a control to have a node execute the eventscripts with arbitrary
  932. command line arguments.
  933. - Add a control "rddumpmemory" that will dump the talloc memory allocations
  934. for the recovery daemon.
  935. - Decorate the talloc memdump to produce better and easier memory leak
  936. tracking.
  937. - Update the RHEL5 iscsi tgtd scripts to allow one iscsi target for each
  938. public address.
  939. - Add two new controls "addip/delip" that can be used to add/remove public
  940. addresses to a node at runtime. After using these controls a "ctdb recover"
  941. ir required to make the changes take.
  942. - Fix a couple of slow memory leaks.
  943. * Tue Mar 25 2008 : Version 1.0.31
  944. - Add back controls to disable/enable monitoring on a node.
  945. - Fix a memory leak where we used to attach CALL data to the ctdb structure
  946. when performing a local call. Memory which would be lost if the call was
  947. aborted.
  948. - Reduce the loglevel for the log output when someone connects to a non
  949. public ip address for samba.
  950. - Redo and optimize the vacuuming process to send only one control to each
  951. other node containing all records to be vacuumed instead of one
  952. control per node per record.
  953. * Tue Mar 04 2008 : Version 1.0.30
  954. - Update documentation cor new commands and tuneables
  955. - Add machinereadable output to the ip,uptime and getdebug commands
  956. - Add a moveip command to manually failover/failback public ips
  957. - Add NoIPFallback tuneable that prevents ip address failback
  958. - Use file locking inside the CFS as alternative to verify when other nodes
  959. Are connected/disconnected to be able to recover from split network
  960. - Add DisableWhenUnhealthy tunable
  961. - Add CTDB_START_AS_DISABLED sysconfig param
  962. - Add --start-as-disabled flag to ctdb
  963. - Add ability to monitor for OOM condition
  964. * Thu Feb 21 2008 : Version 1.0.29
  965. - Add a new command to make expansion of an existing cluster easier
  966. - Fix bug with references to freed objects in the ctdb structure
  967. - Propagate debuglevel changes to the recovery daemon
  968. - Merge patches to event scripts from Mathieu Parent :
  969. - MP: Simulate "service" on systems which do not provide this tool
  970. - MP: Set correct permissions for events.d/README
  971. - Add nice helper functions to start/stop nfs from the event scripts
  972. * Fri Feb 08 2008 : Version 1.0.28
  973. - Fix a problem where we tried to use ethtool on non-ethernet interfaces
  974. - Warn if the ipvsadm packege is missing when LVS is used
  975. - Dont use absolute pathnames in some of the event scripts
  976. - Fix for persistent tdbs growing inifinitely.
  977. * Wed Feb 06 2008 : Version 1.0.27
  978. - Add eventscript for iscsi
  979. * Thu Jan 31 2008 : Version 1.0.26
  980. - Fix crashbug in tdb transaction code
  981. * Tue Jan 29 2008 : Version 1.0.25
  982. - added async recovery code
  983. - make event scripts more portable
  984. - fixed ctdb dumpmemory
  985. - more efficient tdb allocation code
  986. - improved machine readable ctdb status output
  987. - added ctdb uptime
  988. * Wed Jan 16 2008 : Version 1.0.24
  989. - added syslog support
  990. - documentation updates
  991. * Wed Jan 16 2008 : Version 1.0.23
  992. - fixed a memory leak in the recoveryd
  993. - fixed a corruption bug in the new transaction code
  994. - fixed a case where an packet for a disconnected client could be processed
  995. - added http event script
  996. - updated documentation
  997. * Thu Jan 10 2008 : Version 1.0.22
  998. - auto-run vacuum and repack ops
  999. * Wed Jan 09 2008 : Version 1.0.21
  1000. - added ctdb vacuum and ctdb repack code
  1001. * Sun Jan 06 2008 : Version 1.0.20
  1002. - new transaction based recovery code
  1003. * Sat Jan 05 2008 : Version 1.0.19
  1004. - fixed non-master bug
  1005. - big speedup in recovery for large databases
  1006. - lots of changes to improve tdb and ctdb for high churn databases
  1007. * Thu Dec 27 2007 : Version 1.0.18
  1008. - fixed crash bug in monitor_handler
  1009. * Tue Dec 04 2007 : Version 1.0.17
  1010. - fixed bugs related to ban/unban of nodes
  1011. - fixed a race condition that could lead to monitoring being permanently disabled,
  1012. which would lead to long recovery times
  1013. - make deterministic IPs the default
  1014. - fixed a bug related to continuous recovery
  1015. - added a debugging option --node-ip