heartbeat.c 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797
  1. /* -*- mode: c; c-basic-offset: 8; -*-
  2. * vim: noexpandtab sw=8 ts=8 sts=0:
  3. *
  4. * Copyright (C) 2004, 2005 Oracle. All rights reserved.
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2 of the License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public
  17. * License along with this program; if not, write to the
  18. * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  19. * Boston, MA 021110-1307, USA.
  20. */
  21. #include <linux/kernel.h>
  22. #include <linux/sched.h>
  23. #include <linux/jiffies.h>
  24. #include <linux/module.h>
  25. #include <linux/fs.h>
  26. #include <linux/bio.h>
  27. #include <linux/blkdev.h>
  28. #include <linux/delay.h>
  29. #include <linux/file.h>
  30. #include <linux/kthread.h>
  31. #include <linux/configfs.h>
  32. #include <linux/random.h>
  33. #include <linux/crc32.h>
  34. #include <linux/time.h>
  35. #include "heartbeat.h"
  36. #include "tcp.h"
  37. #include "nodemanager.h"
  38. #include "quorum.h"
  39. #include "masklog.h"
  40. /*
  41. * The first heartbeat pass had one global thread that would serialize all hb
  42. * callback calls. This global serializing sem should only be removed once
  43. * we've made sure that all callees can deal with being called concurrently
  44. * from multiple hb region threads.
  45. */
  46. static DECLARE_RWSEM(o2hb_callback_sem);
  47. /*
  48. * multiple hb threads are watching multiple regions. A node is live
  49. * whenever any of the threads sees activity from the node in its region.
  50. */
  51. static spinlock_t o2hb_live_lock = SPIN_LOCK_UNLOCKED;
  52. static struct list_head o2hb_live_slots[O2NM_MAX_NODES];
  53. static unsigned long o2hb_live_node_bitmap[BITS_TO_LONGS(O2NM_MAX_NODES)];
  54. static LIST_HEAD(o2hb_node_events);
  55. static DECLARE_WAIT_QUEUE_HEAD(o2hb_steady_queue);
  56. static LIST_HEAD(o2hb_all_regions);
  57. static struct o2hb_callback {
  58. struct list_head list;
  59. } o2hb_callbacks[O2HB_NUM_CB];
  60. static struct o2hb_callback *hbcall_from_type(enum o2hb_callback_type type);
  61. #define O2HB_DEFAULT_BLOCK_BITS 9
  62. unsigned int o2hb_dead_threshold = O2HB_DEFAULT_DEAD_THRESHOLD;
  63. /* Only sets a new threshold if there are no active regions.
  64. *
  65. * No locking or otherwise interesting code is required for reading
  66. * o2hb_dead_threshold as it can't change once regions are active and
  67. * it's not interesting to anyone until then anyway. */
  68. static void o2hb_dead_threshold_set(unsigned int threshold)
  69. {
  70. if (threshold > O2HB_MIN_DEAD_THRESHOLD) {
  71. spin_lock(&o2hb_live_lock);
  72. if (list_empty(&o2hb_all_regions))
  73. o2hb_dead_threshold = threshold;
  74. spin_unlock(&o2hb_live_lock);
  75. }
  76. }
  77. struct o2hb_node_event {
  78. struct list_head hn_item;
  79. enum o2hb_callback_type hn_event_type;
  80. struct o2nm_node *hn_node;
  81. int hn_node_num;
  82. };
  83. struct o2hb_disk_slot {
  84. struct o2hb_disk_heartbeat_block *ds_raw_block;
  85. u8 ds_node_num;
  86. u64 ds_last_time;
  87. u64 ds_last_generation;
  88. u16 ds_equal_samples;
  89. u16 ds_changed_samples;
  90. struct list_head ds_live_item;
  91. };
  92. /* each thread owns a region.. when we're asked to tear down the region
  93. * we ask the thread to stop, who cleans up the region */
  94. struct o2hb_region {
  95. struct config_item hr_item;
  96. struct list_head hr_all_item;
  97. unsigned hr_unclean_stop:1;
  98. /* protected by the hr_callback_sem */
  99. struct task_struct *hr_task;
  100. unsigned int hr_blocks;
  101. unsigned long long hr_start_block;
  102. unsigned int hr_block_bits;
  103. unsigned int hr_block_bytes;
  104. unsigned int hr_slots_per_page;
  105. unsigned int hr_num_pages;
  106. struct page **hr_slot_data;
  107. struct block_device *hr_bdev;
  108. struct o2hb_disk_slot *hr_slots;
  109. /* let the person setting up hb wait for it to return until it
  110. * has reached a 'steady' state. This will be fixed when we have
  111. * a more complete api that doesn't lead to this sort of fragility. */
  112. atomic_t hr_steady_iterations;
  113. char hr_dev_name[BDEVNAME_SIZE];
  114. unsigned int hr_timeout_ms;
  115. /* randomized as the region goes up and down so that a node
  116. * recognizes a node going up and down in one iteration */
  117. u64 hr_generation;
  118. struct work_struct hr_write_timeout_work;
  119. unsigned long hr_last_timeout_start;
  120. /* Used during o2hb_check_slot to hold a copy of the block
  121. * being checked because we temporarily have to zero out the
  122. * crc field. */
  123. struct o2hb_disk_heartbeat_block *hr_tmp_block;
  124. };
  125. struct o2hb_bio_wait_ctxt {
  126. atomic_t wc_num_reqs;
  127. struct completion wc_io_complete;
  128. };
  129. static void o2hb_write_timeout(void *arg)
  130. {
  131. struct o2hb_region *reg = arg;
  132. mlog(ML_ERROR, "Heartbeat write timeout to device %s after %u "
  133. "milliseconds\n", reg->hr_dev_name,
  134. jiffies_to_msecs(jiffies - reg->hr_last_timeout_start));
  135. o2quo_disk_timeout();
  136. }
  137. static void o2hb_arm_write_timeout(struct o2hb_region *reg)
  138. {
  139. mlog(0, "Queue write timeout for %u ms\n", O2HB_MAX_WRITE_TIMEOUT_MS);
  140. cancel_delayed_work(&reg->hr_write_timeout_work);
  141. reg->hr_last_timeout_start = jiffies;
  142. schedule_delayed_work(&reg->hr_write_timeout_work,
  143. msecs_to_jiffies(O2HB_MAX_WRITE_TIMEOUT_MS));
  144. }
  145. static void o2hb_disarm_write_timeout(struct o2hb_region *reg)
  146. {
  147. cancel_delayed_work(&reg->hr_write_timeout_work);
  148. flush_scheduled_work();
  149. }
  150. static inline void o2hb_bio_wait_init(struct o2hb_bio_wait_ctxt *wc,
  151. unsigned int num_ios)
  152. {
  153. atomic_set(&wc->wc_num_reqs, num_ios);
  154. init_completion(&wc->wc_io_complete);
  155. }
  156. /* Used in error paths too */
  157. static inline void o2hb_bio_wait_dec(struct o2hb_bio_wait_ctxt *wc,
  158. unsigned int num)
  159. {
  160. /* sadly atomic_sub_and_test() isn't available on all platforms. The
  161. * good news is that the fast path only completes one at a time */
  162. while(num--) {
  163. if (atomic_dec_and_test(&wc->wc_num_reqs)) {
  164. BUG_ON(num > 0);
  165. complete(&wc->wc_io_complete);
  166. }
  167. }
  168. }
  169. static void o2hb_wait_on_io(struct o2hb_region *reg,
  170. struct o2hb_bio_wait_ctxt *wc)
  171. {
  172. struct address_space *mapping = reg->hr_bdev->bd_inode->i_mapping;
  173. blk_run_address_space(mapping);
  174. wait_for_completion(&wc->wc_io_complete);
  175. }
  176. static int o2hb_bio_end_io(struct bio *bio,
  177. unsigned int bytes_done,
  178. int error)
  179. {
  180. struct o2hb_bio_wait_ctxt *wc = bio->bi_private;
  181. if (error)
  182. mlog(ML_ERROR, "IO Error %d\n", error);
  183. if (bio->bi_size)
  184. return 1;
  185. o2hb_bio_wait_dec(wc, 1);
  186. return 0;
  187. }
  188. /* Setup a Bio to cover I/O against num_slots slots starting at
  189. * start_slot. */
  190. static struct bio *o2hb_setup_one_bio(struct o2hb_region *reg,
  191. struct o2hb_bio_wait_ctxt *wc,
  192. unsigned int start_slot,
  193. unsigned int num_slots)
  194. {
  195. int i, nr_vecs, len, first_page, last_page;
  196. unsigned int vec_len, vec_start;
  197. unsigned int bits = reg->hr_block_bits;
  198. unsigned int spp = reg->hr_slots_per_page;
  199. struct bio *bio;
  200. struct page *page;
  201. nr_vecs = (num_slots + spp - 1) / spp;
  202. /* Testing has shown this allocation to take long enough under
  203. * GFP_KERNEL that the local node can get fenced. It would be
  204. * nicest if we could pre-allocate these bios and avoid this
  205. * all together. */
  206. bio = bio_alloc(GFP_ATOMIC, nr_vecs);
  207. if (!bio) {
  208. mlog(ML_ERROR, "Could not alloc slots BIO!\n");
  209. bio = ERR_PTR(-ENOMEM);
  210. goto bail;
  211. }
  212. /* Must put everything in 512 byte sectors for the bio... */
  213. bio->bi_sector = (reg->hr_start_block + start_slot) << (bits - 9);
  214. bio->bi_bdev = reg->hr_bdev;
  215. bio->bi_private = wc;
  216. bio->bi_end_io = o2hb_bio_end_io;
  217. first_page = start_slot / spp;
  218. last_page = first_page + nr_vecs;
  219. vec_start = (start_slot << bits) % PAGE_CACHE_SIZE;
  220. for(i = first_page; i < last_page; i++) {
  221. page = reg->hr_slot_data[i];
  222. vec_len = PAGE_CACHE_SIZE;
  223. /* last page might be short */
  224. if (((i + 1) * spp) > (start_slot + num_slots))
  225. vec_len = ((num_slots + start_slot) % spp) << bits;
  226. vec_len -= vec_start;
  227. mlog(ML_HB_BIO, "page %d, vec_len = %u, vec_start = %u\n",
  228. i, vec_len, vec_start);
  229. len = bio_add_page(bio, page, vec_len, vec_start);
  230. if (len != vec_len) {
  231. bio_put(bio);
  232. bio = ERR_PTR(-EIO);
  233. mlog(ML_ERROR, "Error adding page to bio i = %d, "
  234. "vec_len = %u, len = %d\n, start = %u\n",
  235. i, vec_len, len, vec_start);
  236. goto bail;
  237. }
  238. vec_start = 0;
  239. }
  240. bail:
  241. return bio;
  242. }
  243. /*
  244. * Compute the maximum number of sectors the bdev can handle in one bio,
  245. * as a power of two.
  246. *
  247. * Stolen from oracleasm, thanks Joel!
  248. */
  249. static int compute_max_sectors(struct block_device *bdev)
  250. {
  251. int max_pages, max_sectors, pow_two_sectors;
  252. struct request_queue *q;
  253. q = bdev_get_queue(bdev);
  254. max_pages = q->max_sectors >> (PAGE_SHIFT - 9);
  255. if (max_pages > BIO_MAX_PAGES)
  256. max_pages = BIO_MAX_PAGES;
  257. if (max_pages > q->max_phys_segments)
  258. max_pages = q->max_phys_segments;
  259. if (max_pages > q->max_hw_segments)
  260. max_pages = q->max_hw_segments;
  261. max_pages--; /* Handle I/Os that straddle a page */
  262. max_sectors = max_pages << (PAGE_SHIFT - 9);
  263. /* Why is fls() 1-based???? */
  264. pow_two_sectors = 1 << (fls(max_sectors) - 1);
  265. return pow_two_sectors;
  266. }
  267. static inline void o2hb_compute_request_limits(struct o2hb_region *reg,
  268. unsigned int num_slots,
  269. unsigned int *num_bios,
  270. unsigned int *slots_per_bio)
  271. {
  272. unsigned int max_sectors, io_sectors;
  273. max_sectors = compute_max_sectors(reg->hr_bdev);
  274. io_sectors = num_slots << (reg->hr_block_bits - 9);
  275. *num_bios = (io_sectors + max_sectors - 1) / max_sectors;
  276. *slots_per_bio = max_sectors >> (reg->hr_block_bits - 9);
  277. mlog(ML_HB_BIO, "My io size is %u sectors for %u slots. This "
  278. "device can handle %u sectors of I/O\n", io_sectors, num_slots,
  279. max_sectors);
  280. mlog(ML_HB_BIO, "Will need %u bios holding %u slots each\n",
  281. *num_bios, *slots_per_bio);
  282. }
  283. static int o2hb_read_slots(struct o2hb_region *reg,
  284. unsigned int max_slots)
  285. {
  286. unsigned int num_bios, slots_per_bio, start_slot, num_slots;
  287. int i, status;
  288. struct o2hb_bio_wait_ctxt wc;
  289. struct bio **bios;
  290. struct bio *bio;
  291. o2hb_compute_request_limits(reg, max_slots, &num_bios, &slots_per_bio);
  292. bios = kcalloc(num_bios, sizeof(struct bio *), GFP_KERNEL);
  293. if (!bios) {
  294. status = -ENOMEM;
  295. mlog_errno(status);
  296. return status;
  297. }
  298. o2hb_bio_wait_init(&wc, num_bios);
  299. num_slots = slots_per_bio;
  300. for(i = 0; i < num_bios; i++) {
  301. start_slot = i * slots_per_bio;
  302. /* adjust num_slots at last bio */
  303. if (max_slots < (start_slot + num_slots))
  304. num_slots = max_slots - start_slot;
  305. bio = o2hb_setup_one_bio(reg, &wc, start_slot, num_slots);
  306. if (IS_ERR(bio)) {
  307. o2hb_bio_wait_dec(&wc, num_bios - i);
  308. status = PTR_ERR(bio);
  309. mlog_errno(status);
  310. goto bail_and_wait;
  311. }
  312. bios[i] = bio;
  313. submit_bio(READ, bio);
  314. }
  315. status = 0;
  316. bail_and_wait:
  317. o2hb_wait_on_io(reg, &wc);
  318. if (bios) {
  319. for(i = 0; i < num_bios; i++)
  320. if (bios[i])
  321. bio_put(bios[i]);
  322. kfree(bios);
  323. }
  324. return status;
  325. }
  326. static int o2hb_issue_node_write(struct o2hb_region *reg,
  327. struct bio **write_bio,
  328. struct o2hb_bio_wait_ctxt *write_wc)
  329. {
  330. int status;
  331. unsigned int slot;
  332. struct bio *bio;
  333. o2hb_bio_wait_init(write_wc, 1);
  334. slot = o2nm_this_node();
  335. bio = o2hb_setup_one_bio(reg, write_wc, slot, 1);
  336. if (IS_ERR(bio)) {
  337. status = PTR_ERR(bio);
  338. mlog_errno(status);
  339. goto bail;
  340. }
  341. submit_bio(WRITE, bio);
  342. *write_bio = bio;
  343. status = 0;
  344. bail:
  345. return status;
  346. }
  347. static u32 o2hb_compute_block_crc_le(struct o2hb_region *reg,
  348. struct o2hb_disk_heartbeat_block *hb_block)
  349. {
  350. __le32 old_cksum;
  351. u32 ret;
  352. /* We want to compute the block crc with a 0 value in the
  353. * hb_cksum field. Save it off here and replace after the
  354. * crc. */
  355. old_cksum = hb_block->hb_cksum;
  356. hb_block->hb_cksum = 0;
  357. ret = crc32_le(0, (unsigned char *) hb_block, reg->hr_block_bytes);
  358. hb_block->hb_cksum = old_cksum;
  359. return ret;
  360. }
  361. static void o2hb_dump_slot(struct o2hb_disk_heartbeat_block *hb_block)
  362. {
  363. mlog(ML_ERROR, "Dump slot information: seq = 0x%"MLFx64", node = %u, "
  364. "cksum = 0x%x, generation 0x%"MLFx64"\n",
  365. le64_to_cpu(hb_block->hb_seq), hb_block->hb_node,
  366. le32_to_cpu(hb_block->hb_cksum),
  367. le64_to_cpu(hb_block->hb_generation));
  368. }
  369. static int o2hb_verify_crc(struct o2hb_region *reg,
  370. struct o2hb_disk_heartbeat_block *hb_block)
  371. {
  372. u32 read, computed;
  373. read = le32_to_cpu(hb_block->hb_cksum);
  374. computed = o2hb_compute_block_crc_le(reg, hb_block);
  375. return read == computed;
  376. }
  377. /* We want to make sure that nobody is heartbeating on top of us --
  378. * this will help detect an invalid configuration. */
  379. static int o2hb_check_last_timestamp(struct o2hb_region *reg)
  380. {
  381. int node_num, ret;
  382. struct o2hb_disk_slot *slot;
  383. struct o2hb_disk_heartbeat_block *hb_block;
  384. node_num = o2nm_this_node();
  385. ret = 1;
  386. slot = &reg->hr_slots[node_num];
  387. /* Don't check on our 1st timestamp */
  388. if (slot->ds_last_time) {
  389. hb_block = slot->ds_raw_block;
  390. if (le64_to_cpu(hb_block->hb_seq) != slot->ds_last_time)
  391. ret = 0;
  392. }
  393. return ret;
  394. }
  395. static inline void o2hb_prepare_block(struct o2hb_region *reg,
  396. u64 generation)
  397. {
  398. int node_num;
  399. u64 cputime;
  400. struct o2hb_disk_slot *slot;
  401. struct o2hb_disk_heartbeat_block *hb_block;
  402. node_num = o2nm_this_node();
  403. slot = &reg->hr_slots[node_num];
  404. hb_block = (struct o2hb_disk_heartbeat_block *)slot->ds_raw_block;
  405. memset(hb_block, 0, reg->hr_block_bytes);
  406. /* TODO: time stuff */
  407. cputime = CURRENT_TIME.tv_sec;
  408. if (!cputime)
  409. cputime = 1;
  410. hb_block->hb_seq = cpu_to_le64(cputime);
  411. hb_block->hb_node = node_num;
  412. hb_block->hb_generation = cpu_to_le64(generation);
  413. /* This step must always happen last! */
  414. hb_block->hb_cksum = cpu_to_le32(o2hb_compute_block_crc_le(reg,
  415. hb_block));
  416. mlog(ML_HB_BIO, "our node generation = 0x%"MLFx64", cksum = 0x%x\n",
  417. cpu_to_le64(generation), le32_to_cpu(hb_block->hb_cksum));
  418. }
  419. static void o2hb_fire_callbacks(struct o2hb_callback *hbcall,
  420. struct o2nm_node *node,
  421. int idx)
  422. {
  423. struct list_head *iter;
  424. struct o2hb_callback_func *f;
  425. list_for_each(iter, &hbcall->list) {
  426. f = list_entry(iter, struct o2hb_callback_func, hc_item);
  427. mlog(ML_HEARTBEAT, "calling funcs %p\n", f);
  428. (f->hc_func)(node, idx, f->hc_data);
  429. }
  430. }
  431. /* Will run the list in order until we process the passed event */
  432. static void o2hb_run_event_list(struct o2hb_node_event *queued_event)
  433. {
  434. int empty;
  435. struct o2hb_callback *hbcall;
  436. struct o2hb_node_event *event;
  437. spin_lock(&o2hb_live_lock);
  438. empty = list_empty(&queued_event->hn_item);
  439. spin_unlock(&o2hb_live_lock);
  440. if (empty)
  441. return;
  442. /* Holding callback sem assures we don't alter the callback
  443. * lists when doing this, and serializes ourselves with other
  444. * processes wanting callbacks. */
  445. down_write(&o2hb_callback_sem);
  446. spin_lock(&o2hb_live_lock);
  447. while (!list_empty(&o2hb_node_events)
  448. && !list_empty(&queued_event->hn_item)) {
  449. event = list_entry(o2hb_node_events.next,
  450. struct o2hb_node_event,
  451. hn_item);
  452. list_del_init(&event->hn_item);
  453. spin_unlock(&o2hb_live_lock);
  454. mlog(ML_HEARTBEAT, "Node %s event for %d\n",
  455. event->hn_event_type == O2HB_NODE_UP_CB ? "UP" : "DOWN",
  456. event->hn_node_num);
  457. hbcall = hbcall_from_type(event->hn_event_type);
  458. /* We should *never* have gotten on to the list with a
  459. * bad type... This isn't something that we should try
  460. * to recover from. */
  461. BUG_ON(IS_ERR(hbcall));
  462. o2hb_fire_callbacks(hbcall, event->hn_node, event->hn_node_num);
  463. spin_lock(&o2hb_live_lock);
  464. }
  465. spin_unlock(&o2hb_live_lock);
  466. up_write(&o2hb_callback_sem);
  467. }
  468. static void o2hb_queue_node_event(struct o2hb_node_event *event,
  469. enum o2hb_callback_type type,
  470. struct o2nm_node *node,
  471. int node_num)
  472. {
  473. assert_spin_locked(&o2hb_live_lock);
  474. event->hn_event_type = type;
  475. event->hn_node = node;
  476. event->hn_node_num = node_num;
  477. mlog(ML_HEARTBEAT, "Queue node %s event for node %d\n",
  478. type == O2HB_NODE_UP_CB ? "UP" : "DOWN", node_num);
  479. list_add_tail(&event->hn_item, &o2hb_node_events);
  480. }
  481. static void o2hb_shutdown_slot(struct o2hb_disk_slot *slot)
  482. {
  483. struct o2hb_node_event event =
  484. { .hn_item = LIST_HEAD_INIT(event.hn_item), };
  485. struct o2nm_node *node;
  486. node = o2nm_get_node_by_num(slot->ds_node_num);
  487. if (!node)
  488. return;
  489. spin_lock(&o2hb_live_lock);
  490. if (!list_empty(&slot->ds_live_item)) {
  491. mlog(ML_HEARTBEAT, "Shutdown, node %d leaves region\n",
  492. slot->ds_node_num);
  493. list_del_init(&slot->ds_live_item);
  494. if (list_empty(&o2hb_live_slots[slot->ds_node_num])) {
  495. clear_bit(slot->ds_node_num, o2hb_live_node_bitmap);
  496. o2hb_queue_node_event(&event, O2HB_NODE_DOWN_CB, node,
  497. slot->ds_node_num);
  498. }
  499. }
  500. spin_unlock(&o2hb_live_lock);
  501. o2hb_run_event_list(&event);
  502. o2nm_node_put(node);
  503. }
  504. static int o2hb_check_slot(struct o2hb_region *reg,
  505. struct o2hb_disk_slot *slot)
  506. {
  507. int changed = 0, gen_changed = 0;
  508. struct o2hb_node_event event =
  509. { .hn_item = LIST_HEAD_INIT(event.hn_item), };
  510. struct o2nm_node *node;
  511. struct o2hb_disk_heartbeat_block *hb_block = reg->hr_tmp_block;
  512. u64 cputime;
  513. memcpy(hb_block, slot->ds_raw_block, reg->hr_block_bytes);
  514. /* Is this correct? Do we assume that the node doesn't exist
  515. * if we're not configured for him? */
  516. node = o2nm_get_node_by_num(slot->ds_node_num);
  517. if (!node)
  518. return 0;
  519. if (!o2hb_verify_crc(reg, hb_block)) {
  520. /* all paths from here will drop o2hb_live_lock for
  521. * us. */
  522. spin_lock(&o2hb_live_lock);
  523. /* Don't print an error on the console in this case -
  524. * a freshly formatted heartbeat area will not have a
  525. * crc set on it. */
  526. if (list_empty(&slot->ds_live_item))
  527. goto out;
  528. /* The node is live but pushed out a bad crc. We
  529. * consider it a transient miss but don't populate any
  530. * other values as they may be junk. */
  531. mlog(ML_ERROR, "Node %d has written a bad crc to %s\n",
  532. slot->ds_node_num, reg->hr_dev_name);
  533. o2hb_dump_slot(hb_block);
  534. slot->ds_equal_samples++;
  535. goto fire_callbacks;
  536. }
  537. /* we don't care if these wrap.. the state transitions below
  538. * clear at the right places */
  539. cputime = le64_to_cpu(hb_block->hb_seq);
  540. if (slot->ds_last_time != cputime)
  541. slot->ds_changed_samples++;
  542. else
  543. slot->ds_equal_samples++;
  544. slot->ds_last_time = cputime;
  545. /* The node changed heartbeat generations. We assume this to
  546. * mean it dropped off but came back before we timed out. We
  547. * want to consider it down for the time being but don't want
  548. * to lose any changed_samples state we might build up to
  549. * considering it live again. */
  550. if (slot->ds_last_generation != le64_to_cpu(hb_block->hb_generation)) {
  551. gen_changed = 1;
  552. slot->ds_equal_samples = 0;
  553. mlog(ML_HEARTBEAT, "Node %d changed generation (0x%"MLFx64" "
  554. "to 0x%"MLFx64")\n", slot->ds_node_num,
  555. slot->ds_last_generation,
  556. le64_to_cpu(hb_block->hb_generation));
  557. }
  558. slot->ds_last_generation = le64_to_cpu(hb_block->hb_generation);
  559. mlog(ML_HEARTBEAT, "Slot %d gen 0x%"MLFx64" cksum 0x%x "
  560. "seq %"MLFu64" last %"MLFu64" changed %u equal %u\n",
  561. slot->ds_node_num, slot->ds_last_generation,
  562. le32_to_cpu(hb_block->hb_cksum), le64_to_cpu(hb_block->hb_seq),
  563. slot->ds_last_time, slot->ds_changed_samples,
  564. slot->ds_equal_samples);
  565. spin_lock(&o2hb_live_lock);
  566. fire_callbacks:
  567. /* dead nodes only come to life after some number of
  568. * changes at any time during their dead time */
  569. if (list_empty(&slot->ds_live_item) &&
  570. slot->ds_changed_samples >= O2HB_LIVE_THRESHOLD) {
  571. mlog(ML_HEARTBEAT, "Node %d (id 0x%"MLFx64") joined my "
  572. "region\n", slot->ds_node_num, slot->ds_last_generation);
  573. /* first on the list generates a callback */
  574. if (list_empty(&o2hb_live_slots[slot->ds_node_num])) {
  575. set_bit(slot->ds_node_num, o2hb_live_node_bitmap);
  576. o2hb_queue_node_event(&event, O2HB_NODE_UP_CB, node,
  577. slot->ds_node_num);
  578. changed = 1;
  579. }
  580. list_add_tail(&slot->ds_live_item,
  581. &o2hb_live_slots[slot->ds_node_num]);
  582. slot->ds_equal_samples = 0;
  583. goto out;
  584. }
  585. /* if the list is dead, we're done.. */
  586. if (list_empty(&slot->ds_live_item))
  587. goto out;
  588. /* live nodes only go dead after enough consequtive missed
  589. * samples.. reset the missed counter whenever we see
  590. * activity */
  591. if (slot->ds_equal_samples >= o2hb_dead_threshold || gen_changed) {
  592. mlog(ML_HEARTBEAT, "Node %d left my region\n",
  593. slot->ds_node_num);
  594. /* last off the live_slot generates a callback */
  595. list_del_init(&slot->ds_live_item);
  596. if (list_empty(&o2hb_live_slots[slot->ds_node_num])) {
  597. clear_bit(slot->ds_node_num, o2hb_live_node_bitmap);
  598. o2hb_queue_node_event(&event, O2HB_NODE_DOWN_CB, node,
  599. slot->ds_node_num);
  600. changed = 1;
  601. }
  602. /* We don't clear this because the node is still
  603. * actually writing new blocks. */
  604. if (!gen_changed)
  605. slot->ds_changed_samples = 0;
  606. goto out;
  607. }
  608. if (slot->ds_changed_samples) {
  609. slot->ds_changed_samples = 0;
  610. slot->ds_equal_samples = 0;
  611. }
  612. out:
  613. spin_unlock(&o2hb_live_lock);
  614. o2hb_run_event_list(&event);
  615. o2nm_node_put(node);
  616. return changed;
  617. }
  618. /* This could be faster if we just implmented a find_last_bit, but I
  619. * don't think the circumstances warrant it. */
  620. static int o2hb_highest_node(unsigned long *nodes,
  621. int numbits)
  622. {
  623. int highest, node;
  624. highest = numbits;
  625. node = -1;
  626. while ((node = find_next_bit(nodes, numbits, node + 1)) != -1) {
  627. if (node >= numbits)
  628. break;
  629. highest = node;
  630. }
  631. return highest;
  632. }
  633. static void o2hb_do_disk_heartbeat(struct o2hb_region *reg)
  634. {
  635. int i, ret, highest_node, change = 0;
  636. unsigned long configured_nodes[BITS_TO_LONGS(O2NM_MAX_NODES)];
  637. struct bio *write_bio;
  638. struct o2hb_bio_wait_ctxt write_wc;
  639. if (o2nm_configured_node_map(configured_nodes, sizeof(configured_nodes)))
  640. return;
  641. highest_node = o2hb_highest_node(configured_nodes, O2NM_MAX_NODES);
  642. if (highest_node >= O2NM_MAX_NODES) {
  643. mlog(ML_NOTICE, "ocfs2_heartbeat: no configured nodes found!\n");
  644. return;
  645. }
  646. /* No sense in reading the slots of nodes that don't exist
  647. * yet. Of course, if the node definitions have holes in them
  648. * then we're reading an empty slot anyway... Consider this
  649. * best-effort. */
  650. ret = o2hb_read_slots(reg, highest_node + 1);
  651. if (ret < 0) {
  652. mlog_errno(ret);
  653. return;
  654. }
  655. /* With an up to date view of the slots, we can check that no
  656. * other node has been improperly configured to heartbeat in
  657. * our slot. */
  658. if (!o2hb_check_last_timestamp(reg))
  659. mlog(ML_ERROR, "Device \"%s\": another node is heartbeating "
  660. "in our slot!\n", reg->hr_dev_name);
  661. /* fill in the proper info for our next heartbeat */
  662. o2hb_prepare_block(reg, reg->hr_generation);
  663. /* And fire off the write. Note that we don't wait on this I/O
  664. * until later. */
  665. ret = o2hb_issue_node_write(reg, &write_bio, &write_wc);
  666. if (ret < 0) {
  667. mlog_errno(ret);
  668. return;
  669. }
  670. i = -1;
  671. while((i = find_next_bit(configured_nodes, O2NM_MAX_NODES, i + 1)) < O2NM_MAX_NODES) {
  672. change |= o2hb_check_slot(reg, &reg->hr_slots[i]);
  673. }
  674. /*
  675. * We have to be sure we've advertised ourselves on disk
  676. * before we can go to steady state. This ensures that
  677. * people we find in our steady state have seen us.
  678. */
  679. o2hb_wait_on_io(reg, &write_wc);
  680. bio_put(write_bio);
  681. o2hb_arm_write_timeout(reg);
  682. /* let the person who launched us know when things are steady */
  683. if (!change && (atomic_read(&reg->hr_steady_iterations) != 0)) {
  684. if (atomic_dec_and_test(&reg->hr_steady_iterations))
  685. wake_up(&o2hb_steady_queue);
  686. }
  687. }
  688. /* Subtract b from a, storing the result in a. a *must* have a larger
  689. * value than b. */
  690. static void o2hb_tv_subtract(struct timeval *a,
  691. struct timeval *b)
  692. {
  693. /* just return 0 when a is after b */
  694. if (a->tv_sec < b->tv_sec ||
  695. (a->tv_sec == b->tv_sec && a->tv_usec < b->tv_usec)) {
  696. a->tv_sec = 0;
  697. a->tv_usec = 0;
  698. return;
  699. }
  700. a->tv_sec -= b->tv_sec;
  701. a->tv_usec -= b->tv_usec;
  702. while ( a->tv_usec < 0 ) {
  703. a->tv_sec--;
  704. a->tv_usec += 1000000;
  705. }
  706. }
  707. static unsigned int o2hb_elapsed_msecs(struct timeval *start,
  708. struct timeval *end)
  709. {
  710. struct timeval res = *end;
  711. o2hb_tv_subtract(&res, start);
  712. return res.tv_sec * 1000 + res.tv_usec / 1000;
  713. }
  714. /*
  715. * we ride the region ref that the region dir holds. before the region
  716. * dir is removed and drops it ref it will wait to tear down this
  717. * thread.
  718. */
  719. static int o2hb_thread(void *data)
  720. {
  721. int i, ret;
  722. struct o2hb_region *reg = data;
  723. struct bio *write_bio;
  724. struct o2hb_bio_wait_ctxt write_wc;
  725. struct timeval before_hb, after_hb;
  726. unsigned int elapsed_msec;
  727. mlog(ML_HEARTBEAT|ML_KTHREAD, "hb thread running\n");
  728. set_user_nice(current, -20);
  729. while (!kthread_should_stop() && !reg->hr_unclean_stop) {
  730. /* We track the time spent inside
  731. * o2hb_do_disk_heartbeat so that we avoid more then
  732. * hr_timeout_ms between disk writes. On busy systems
  733. * this should result in a heartbeat which is less
  734. * likely to time itself out. */
  735. do_gettimeofday(&before_hb);
  736. o2hb_do_disk_heartbeat(reg);
  737. do_gettimeofday(&after_hb);
  738. elapsed_msec = o2hb_elapsed_msecs(&before_hb, &after_hb);
  739. mlog(0, "start = %lu.%lu, end = %lu.%lu, msec = %u\n",
  740. before_hb.tv_sec, before_hb.tv_usec,
  741. after_hb.tv_sec, after_hb.tv_usec, elapsed_msec);
  742. if (elapsed_msec < reg->hr_timeout_ms) {
  743. /* the kthread api has blocked signals for us so no
  744. * need to record the return value. */
  745. msleep_interruptible(reg->hr_timeout_ms - elapsed_msec);
  746. }
  747. }
  748. o2hb_disarm_write_timeout(reg);
  749. /* unclean stop is only used in very bad situation */
  750. for(i = 0; !reg->hr_unclean_stop && i < reg->hr_blocks; i++)
  751. o2hb_shutdown_slot(&reg->hr_slots[i]);
  752. /* Explicit down notification - avoid forcing the other nodes
  753. * to timeout on this region when we could just as easily
  754. * write a clear generation - thus indicating to them that
  755. * this node has left this region.
  756. *
  757. * XXX: Should we skip this on unclean_stop? */
  758. o2hb_prepare_block(reg, 0);
  759. ret = o2hb_issue_node_write(reg, &write_bio, &write_wc);
  760. if (ret == 0) {
  761. o2hb_wait_on_io(reg, &write_wc);
  762. bio_put(write_bio);
  763. } else {
  764. mlog_errno(ret);
  765. }
  766. mlog(ML_HEARTBEAT|ML_KTHREAD, "hb thread exiting\n");
  767. return 0;
  768. }
  769. void o2hb_init(void)
  770. {
  771. int i;
  772. for (i = 0; i < ARRAY_SIZE(o2hb_callbacks); i++)
  773. INIT_LIST_HEAD(&o2hb_callbacks[i].list);
  774. for (i = 0; i < ARRAY_SIZE(o2hb_live_slots); i++)
  775. INIT_LIST_HEAD(&o2hb_live_slots[i]);
  776. INIT_LIST_HEAD(&o2hb_node_events);
  777. memset(o2hb_live_node_bitmap, 0, sizeof(o2hb_live_node_bitmap));
  778. }
  779. /* if we're already in a callback then we're already serialized by the sem */
  780. static void o2hb_fill_node_map_from_callback(unsigned long *map,
  781. unsigned bytes)
  782. {
  783. BUG_ON(bytes < (BITS_TO_LONGS(O2NM_MAX_NODES) * sizeof(unsigned long)));
  784. memcpy(map, &o2hb_live_node_bitmap, bytes);
  785. }
  786. /*
  787. * get a map of all nodes that are heartbeating in any regions
  788. */
  789. void o2hb_fill_node_map(unsigned long *map, unsigned bytes)
  790. {
  791. /* callers want to serialize this map and callbacks so that they
  792. * can trust that they don't miss nodes coming to the party */
  793. down_read(&o2hb_callback_sem);
  794. spin_lock(&o2hb_live_lock);
  795. o2hb_fill_node_map_from_callback(map, bytes);
  796. spin_unlock(&o2hb_live_lock);
  797. up_read(&o2hb_callback_sem);
  798. }
  799. EXPORT_SYMBOL_GPL(o2hb_fill_node_map);
  800. /*
  801. * heartbeat configfs bits. The heartbeat set is a default set under
  802. * the cluster set in nodemanager.c.
  803. */
  804. static struct o2hb_region *to_o2hb_region(struct config_item *item)
  805. {
  806. return item ? container_of(item, struct o2hb_region, hr_item) : NULL;
  807. }
  808. /* drop_item only drops its ref after killing the thread, nothing should
  809. * be using the region anymore. this has to clean up any state that
  810. * attributes might have built up. */
  811. static void o2hb_region_release(struct config_item *item)
  812. {
  813. int i;
  814. struct page *page;
  815. struct o2hb_region *reg = to_o2hb_region(item);
  816. if (reg->hr_tmp_block)
  817. kfree(reg->hr_tmp_block);
  818. if (reg->hr_slot_data) {
  819. for (i = 0; i < reg->hr_num_pages; i++) {
  820. page = reg->hr_slot_data[i];
  821. if (page)
  822. __free_page(page);
  823. }
  824. kfree(reg->hr_slot_data);
  825. }
  826. if (reg->hr_bdev)
  827. blkdev_put(reg->hr_bdev);
  828. if (reg->hr_slots)
  829. kfree(reg->hr_slots);
  830. spin_lock(&o2hb_live_lock);
  831. list_del(&reg->hr_all_item);
  832. spin_unlock(&o2hb_live_lock);
  833. kfree(reg);
  834. }
  835. static int o2hb_read_block_input(struct o2hb_region *reg,
  836. const char *page,
  837. size_t count,
  838. unsigned long *ret_bytes,
  839. unsigned int *ret_bits)
  840. {
  841. unsigned long bytes;
  842. char *p = (char *)page;
  843. bytes = simple_strtoul(p, &p, 0);
  844. if (!p || (*p && (*p != '\n')))
  845. return -EINVAL;
  846. /* Heartbeat and fs min / max block sizes are the same. */
  847. if (bytes > 4096 || bytes < 512)
  848. return -ERANGE;
  849. if (hweight16(bytes) != 1)
  850. return -EINVAL;
  851. if (ret_bytes)
  852. *ret_bytes = bytes;
  853. if (ret_bits)
  854. *ret_bits = ffs(bytes) - 1;
  855. return 0;
  856. }
  857. static ssize_t o2hb_region_block_bytes_read(struct o2hb_region *reg,
  858. char *page)
  859. {
  860. return sprintf(page, "%u\n", reg->hr_block_bytes);
  861. }
  862. static ssize_t o2hb_region_block_bytes_write(struct o2hb_region *reg,
  863. const char *page,
  864. size_t count)
  865. {
  866. int status;
  867. unsigned long block_bytes;
  868. unsigned int block_bits;
  869. if (reg->hr_bdev)
  870. return -EINVAL;
  871. status = o2hb_read_block_input(reg, page, count,
  872. &block_bytes, &block_bits);
  873. if (status)
  874. return status;
  875. reg->hr_block_bytes = (unsigned int)block_bytes;
  876. reg->hr_block_bits = block_bits;
  877. return count;
  878. }
  879. static ssize_t o2hb_region_start_block_read(struct o2hb_region *reg,
  880. char *page)
  881. {
  882. return sprintf(page, "%llu\n", reg->hr_start_block);
  883. }
  884. static ssize_t o2hb_region_start_block_write(struct o2hb_region *reg,
  885. const char *page,
  886. size_t count)
  887. {
  888. unsigned long long tmp;
  889. char *p = (char *)page;
  890. if (reg->hr_bdev)
  891. return -EINVAL;
  892. tmp = simple_strtoull(p, &p, 0);
  893. if (!p || (*p && (*p != '\n')))
  894. return -EINVAL;
  895. reg->hr_start_block = tmp;
  896. return count;
  897. }
  898. static ssize_t o2hb_region_blocks_read(struct o2hb_region *reg,
  899. char *page)
  900. {
  901. return sprintf(page, "%d\n", reg->hr_blocks);
  902. }
  903. static ssize_t o2hb_region_blocks_write(struct o2hb_region *reg,
  904. const char *page,
  905. size_t count)
  906. {
  907. unsigned long tmp;
  908. char *p = (char *)page;
  909. if (reg->hr_bdev)
  910. return -EINVAL;
  911. tmp = simple_strtoul(p, &p, 0);
  912. if (!p || (*p && (*p != '\n')))
  913. return -EINVAL;
  914. if (tmp > O2NM_MAX_NODES || tmp == 0)
  915. return -ERANGE;
  916. reg->hr_blocks = (unsigned int)tmp;
  917. return count;
  918. }
  919. static ssize_t o2hb_region_dev_read(struct o2hb_region *reg,
  920. char *page)
  921. {
  922. unsigned int ret = 0;
  923. if (reg->hr_bdev)
  924. ret = sprintf(page, "%s\n", reg->hr_dev_name);
  925. return ret;
  926. }
  927. static void o2hb_init_region_params(struct o2hb_region *reg)
  928. {
  929. reg->hr_slots_per_page = PAGE_CACHE_SIZE >> reg->hr_block_bits;
  930. reg->hr_timeout_ms = O2HB_REGION_TIMEOUT_MS;
  931. mlog(ML_HEARTBEAT, "hr_start_block = %llu, hr_blocks = %u\n",
  932. reg->hr_start_block, reg->hr_blocks);
  933. mlog(ML_HEARTBEAT, "hr_block_bytes = %u, hr_block_bits = %u\n",
  934. reg->hr_block_bytes, reg->hr_block_bits);
  935. mlog(ML_HEARTBEAT, "hr_timeout_ms = %u\n", reg->hr_timeout_ms);
  936. mlog(ML_HEARTBEAT, "dead threshold = %u\n", o2hb_dead_threshold);
  937. }
  938. static int o2hb_map_slot_data(struct o2hb_region *reg)
  939. {
  940. int i, j;
  941. unsigned int last_slot;
  942. unsigned int spp = reg->hr_slots_per_page;
  943. struct page *page;
  944. char *raw;
  945. struct o2hb_disk_slot *slot;
  946. reg->hr_tmp_block = kmalloc(reg->hr_block_bytes, GFP_KERNEL);
  947. if (reg->hr_tmp_block == NULL) {
  948. mlog_errno(-ENOMEM);
  949. return -ENOMEM;
  950. }
  951. reg->hr_slots = kcalloc(reg->hr_blocks,
  952. sizeof(struct o2hb_disk_slot), GFP_KERNEL);
  953. if (reg->hr_slots == NULL) {
  954. mlog_errno(-ENOMEM);
  955. return -ENOMEM;
  956. }
  957. for(i = 0; i < reg->hr_blocks; i++) {
  958. slot = &reg->hr_slots[i];
  959. slot->ds_node_num = i;
  960. INIT_LIST_HEAD(&slot->ds_live_item);
  961. slot->ds_raw_block = NULL;
  962. }
  963. reg->hr_num_pages = (reg->hr_blocks + spp - 1) / spp;
  964. mlog(ML_HEARTBEAT, "Going to require %u pages to cover %u blocks "
  965. "at %u blocks per page\n",
  966. reg->hr_num_pages, reg->hr_blocks, spp);
  967. reg->hr_slot_data = kcalloc(reg->hr_num_pages, sizeof(struct page *),
  968. GFP_KERNEL);
  969. if (!reg->hr_slot_data) {
  970. mlog_errno(-ENOMEM);
  971. return -ENOMEM;
  972. }
  973. for(i = 0; i < reg->hr_num_pages; i++) {
  974. page = alloc_page(GFP_KERNEL);
  975. if (!page) {
  976. mlog_errno(-ENOMEM);
  977. return -ENOMEM;
  978. }
  979. reg->hr_slot_data[i] = page;
  980. last_slot = i * spp;
  981. raw = page_address(page);
  982. for (j = 0;
  983. (j < spp) && ((j + last_slot) < reg->hr_blocks);
  984. j++) {
  985. BUG_ON((j + last_slot) >= reg->hr_blocks);
  986. slot = &reg->hr_slots[j + last_slot];
  987. slot->ds_raw_block =
  988. (struct o2hb_disk_heartbeat_block *) raw;
  989. raw += reg->hr_block_bytes;
  990. }
  991. }
  992. return 0;
  993. }
  994. /* Read in all the slots available and populate the tracking
  995. * structures so that we can start with a baseline idea of what's
  996. * there. */
  997. static int o2hb_populate_slot_data(struct o2hb_region *reg)
  998. {
  999. int ret, i;
  1000. struct o2hb_disk_slot *slot;
  1001. struct o2hb_disk_heartbeat_block *hb_block;
  1002. mlog_entry_void();
  1003. ret = o2hb_read_slots(reg, reg->hr_blocks);
  1004. if (ret) {
  1005. mlog_errno(ret);
  1006. goto out;
  1007. }
  1008. /* We only want to get an idea of the values initially in each
  1009. * slot, so we do no verification - o2hb_check_slot will
  1010. * actually determine if each configured slot is valid and
  1011. * whether any values have changed. */
  1012. for(i = 0; i < reg->hr_blocks; i++) {
  1013. slot = &reg->hr_slots[i];
  1014. hb_block = (struct o2hb_disk_heartbeat_block *) slot->ds_raw_block;
  1015. /* Only fill the values that o2hb_check_slot uses to
  1016. * determine changing slots */
  1017. slot->ds_last_time = le64_to_cpu(hb_block->hb_seq);
  1018. slot->ds_last_generation = le64_to_cpu(hb_block->hb_generation);
  1019. }
  1020. out:
  1021. mlog_exit(ret);
  1022. return ret;
  1023. }
  1024. /* this is acting as commit; we set up all of hr_bdev and hr_task or nothing */
  1025. static ssize_t o2hb_region_dev_write(struct o2hb_region *reg,
  1026. const char *page,
  1027. size_t count)
  1028. {
  1029. long fd;
  1030. int sectsize;
  1031. char *p = (char *)page;
  1032. struct file *filp = NULL;
  1033. struct inode *inode = NULL;
  1034. ssize_t ret = -EINVAL;
  1035. if (reg->hr_bdev)
  1036. goto out;
  1037. /* We can't heartbeat without having had our node number
  1038. * configured yet. */
  1039. if (o2nm_this_node() == O2NM_MAX_NODES)
  1040. goto out;
  1041. fd = simple_strtol(p, &p, 0);
  1042. if (!p || (*p && (*p != '\n')))
  1043. goto out;
  1044. if (fd < 0 || fd >= INT_MAX)
  1045. goto out;
  1046. filp = fget(fd);
  1047. if (filp == NULL)
  1048. goto out;
  1049. if (reg->hr_blocks == 0 || reg->hr_start_block == 0 ||
  1050. reg->hr_block_bytes == 0)
  1051. goto out;
  1052. inode = igrab(filp->f_mapping->host);
  1053. if (inode == NULL)
  1054. goto out;
  1055. if (!S_ISBLK(inode->i_mode))
  1056. goto out;
  1057. reg->hr_bdev = I_BDEV(filp->f_mapping->host);
  1058. ret = blkdev_get(reg->hr_bdev, FMODE_WRITE | FMODE_READ, 0);
  1059. if (ret) {
  1060. reg->hr_bdev = NULL;
  1061. goto out;
  1062. }
  1063. inode = NULL;
  1064. bdevname(reg->hr_bdev, reg->hr_dev_name);
  1065. sectsize = bdev_hardsect_size(reg->hr_bdev);
  1066. if (sectsize != reg->hr_block_bytes) {
  1067. mlog(ML_ERROR,
  1068. "blocksize %u incorrect for device, expected %d",
  1069. reg->hr_block_bytes, sectsize);
  1070. ret = -EINVAL;
  1071. goto out;
  1072. }
  1073. o2hb_init_region_params(reg);
  1074. /* Generation of zero is invalid */
  1075. do {
  1076. get_random_bytes(&reg->hr_generation,
  1077. sizeof(reg->hr_generation));
  1078. } while (reg->hr_generation == 0);
  1079. ret = o2hb_map_slot_data(reg);
  1080. if (ret) {
  1081. mlog_errno(ret);
  1082. goto out;
  1083. }
  1084. ret = o2hb_populate_slot_data(reg);
  1085. if (ret) {
  1086. mlog_errno(ret);
  1087. goto out;
  1088. }
  1089. INIT_WORK(&reg->hr_write_timeout_work, o2hb_write_timeout, reg);
  1090. /*
  1091. * A node is considered live after it has beat LIVE_THRESHOLD
  1092. * times. We're not steady until we've given them a chance
  1093. * _after_ our first read.
  1094. */
  1095. atomic_set(&reg->hr_steady_iterations, O2HB_LIVE_THRESHOLD + 1);
  1096. reg->hr_task = kthread_run(o2hb_thread, reg, "o2hb-%s",
  1097. reg->hr_item.ci_name);
  1098. if (IS_ERR(reg->hr_task)) {
  1099. ret = PTR_ERR(reg->hr_task);
  1100. mlog_errno(ret);
  1101. reg->hr_task = NULL;
  1102. goto out;
  1103. }
  1104. ret = wait_event_interruptible(o2hb_steady_queue,
  1105. atomic_read(&reg->hr_steady_iterations) == 0);
  1106. if (ret) {
  1107. kthread_stop(reg->hr_task);
  1108. reg->hr_task = NULL;
  1109. goto out;
  1110. }
  1111. ret = count;
  1112. out:
  1113. if (filp)
  1114. fput(filp);
  1115. if (inode)
  1116. iput(inode);
  1117. if (ret < 0) {
  1118. if (reg->hr_bdev) {
  1119. blkdev_put(reg->hr_bdev);
  1120. reg->hr_bdev = NULL;
  1121. }
  1122. }
  1123. return ret;
  1124. }
  1125. struct o2hb_region_attribute {
  1126. struct configfs_attribute attr;
  1127. ssize_t (*show)(struct o2hb_region *, char *);
  1128. ssize_t (*store)(struct o2hb_region *, const char *, size_t);
  1129. };
  1130. static struct o2hb_region_attribute o2hb_region_attr_block_bytes = {
  1131. .attr = { .ca_owner = THIS_MODULE,
  1132. .ca_name = "block_bytes",
  1133. .ca_mode = S_IRUGO | S_IWUSR },
  1134. .show = o2hb_region_block_bytes_read,
  1135. .store = o2hb_region_block_bytes_write,
  1136. };
  1137. static struct o2hb_region_attribute o2hb_region_attr_start_block = {
  1138. .attr = { .ca_owner = THIS_MODULE,
  1139. .ca_name = "start_block",
  1140. .ca_mode = S_IRUGO | S_IWUSR },
  1141. .show = o2hb_region_start_block_read,
  1142. .store = o2hb_region_start_block_write,
  1143. };
  1144. static struct o2hb_region_attribute o2hb_region_attr_blocks = {
  1145. .attr = { .ca_owner = THIS_MODULE,
  1146. .ca_name = "blocks",
  1147. .ca_mode = S_IRUGO | S_IWUSR },
  1148. .show = o2hb_region_blocks_read,
  1149. .store = o2hb_region_blocks_write,
  1150. };
  1151. static struct o2hb_region_attribute o2hb_region_attr_dev = {
  1152. .attr = { .ca_owner = THIS_MODULE,
  1153. .ca_name = "dev",
  1154. .ca_mode = S_IRUGO | S_IWUSR },
  1155. .show = o2hb_region_dev_read,
  1156. .store = o2hb_region_dev_write,
  1157. };
  1158. static struct configfs_attribute *o2hb_region_attrs[] = {
  1159. &o2hb_region_attr_block_bytes.attr,
  1160. &o2hb_region_attr_start_block.attr,
  1161. &o2hb_region_attr_blocks.attr,
  1162. &o2hb_region_attr_dev.attr,
  1163. NULL,
  1164. };
  1165. static ssize_t o2hb_region_show(struct config_item *item,
  1166. struct configfs_attribute *attr,
  1167. char *page)
  1168. {
  1169. struct o2hb_region *reg = to_o2hb_region(item);
  1170. struct o2hb_region_attribute *o2hb_region_attr =
  1171. container_of(attr, struct o2hb_region_attribute, attr);
  1172. ssize_t ret = 0;
  1173. if (o2hb_region_attr->show)
  1174. ret = o2hb_region_attr->show(reg, page);
  1175. return ret;
  1176. }
  1177. static ssize_t o2hb_region_store(struct config_item *item,
  1178. struct configfs_attribute *attr,
  1179. const char *page, size_t count)
  1180. {
  1181. struct o2hb_region *reg = to_o2hb_region(item);
  1182. struct o2hb_region_attribute *o2hb_region_attr =
  1183. container_of(attr, struct o2hb_region_attribute, attr);
  1184. ssize_t ret = -EINVAL;
  1185. if (o2hb_region_attr->store)
  1186. ret = o2hb_region_attr->store(reg, page, count);
  1187. return ret;
  1188. }
  1189. static struct configfs_item_operations o2hb_region_item_ops = {
  1190. .release = o2hb_region_release,
  1191. .show_attribute = o2hb_region_show,
  1192. .store_attribute = o2hb_region_store,
  1193. };
  1194. static struct config_item_type o2hb_region_type = {
  1195. .ct_item_ops = &o2hb_region_item_ops,
  1196. .ct_attrs = o2hb_region_attrs,
  1197. .ct_owner = THIS_MODULE,
  1198. };
  1199. /* heartbeat set */
  1200. struct o2hb_heartbeat_group {
  1201. struct config_group hs_group;
  1202. /* some stuff? */
  1203. };
  1204. static struct o2hb_heartbeat_group *to_o2hb_heartbeat_group(struct config_group *group)
  1205. {
  1206. return group ?
  1207. container_of(group, struct o2hb_heartbeat_group, hs_group)
  1208. : NULL;
  1209. }
  1210. static struct config_item *o2hb_heartbeat_group_make_item(struct config_group *group,
  1211. const char *name)
  1212. {
  1213. struct o2hb_region *reg = NULL;
  1214. struct config_item *ret = NULL;
  1215. reg = kcalloc(1, sizeof(struct o2hb_region), GFP_KERNEL);
  1216. if (reg == NULL)
  1217. goto out; /* ENOMEM */
  1218. config_item_init_type_name(&reg->hr_item, name, &o2hb_region_type);
  1219. ret = &reg->hr_item;
  1220. spin_lock(&o2hb_live_lock);
  1221. list_add_tail(&reg->hr_all_item, &o2hb_all_regions);
  1222. spin_unlock(&o2hb_live_lock);
  1223. out:
  1224. if (ret == NULL)
  1225. kfree(reg);
  1226. return ret;
  1227. }
  1228. static void o2hb_heartbeat_group_drop_item(struct config_group *group,
  1229. struct config_item *item)
  1230. {
  1231. struct o2hb_region *reg = to_o2hb_region(item);
  1232. /* stop the thread when the user removes the region dir */
  1233. if (reg->hr_task) {
  1234. kthread_stop(reg->hr_task);
  1235. reg->hr_task = NULL;
  1236. }
  1237. config_item_put(item);
  1238. }
  1239. struct o2hb_heartbeat_group_attribute {
  1240. struct configfs_attribute attr;
  1241. ssize_t (*show)(struct o2hb_heartbeat_group *, char *);
  1242. ssize_t (*store)(struct o2hb_heartbeat_group *, const char *, size_t);
  1243. };
  1244. static ssize_t o2hb_heartbeat_group_show(struct config_item *item,
  1245. struct configfs_attribute *attr,
  1246. char *page)
  1247. {
  1248. struct o2hb_heartbeat_group *reg = to_o2hb_heartbeat_group(to_config_group(item));
  1249. struct o2hb_heartbeat_group_attribute *o2hb_heartbeat_group_attr =
  1250. container_of(attr, struct o2hb_heartbeat_group_attribute, attr);
  1251. ssize_t ret = 0;
  1252. if (o2hb_heartbeat_group_attr->show)
  1253. ret = o2hb_heartbeat_group_attr->show(reg, page);
  1254. return ret;
  1255. }
  1256. static ssize_t o2hb_heartbeat_group_store(struct config_item *item,
  1257. struct configfs_attribute *attr,
  1258. const char *page, size_t count)
  1259. {
  1260. struct o2hb_heartbeat_group *reg = to_o2hb_heartbeat_group(to_config_group(item));
  1261. struct o2hb_heartbeat_group_attribute *o2hb_heartbeat_group_attr =
  1262. container_of(attr, struct o2hb_heartbeat_group_attribute, attr);
  1263. ssize_t ret = -EINVAL;
  1264. if (o2hb_heartbeat_group_attr->store)
  1265. ret = o2hb_heartbeat_group_attr->store(reg, page, count);
  1266. return ret;
  1267. }
  1268. static ssize_t o2hb_heartbeat_group_threshold_show(struct o2hb_heartbeat_group *group,
  1269. char *page)
  1270. {
  1271. return sprintf(page, "%u\n", o2hb_dead_threshold);
  1272. }
  1273. static ssize_t o2hb_heartbeat_group_threshold_store(struct o2hb_heartbeat_group *group,
  1274. const char *page,
  1275. size_t count)
  1276. {
  1277. unsigned long tmp;
  1278. char *p = (char *)page;
  1279. tmp = simple_strtoul(p, &p, 10);
  1280. if (!p || (*p && (*p != '\n')))
  1281. return -EINVAL;
  1282. /* this will validate ranges for us. */
  1283. o2hb_dead_threshold_set((unsigned int) tmp);
  1284. return count;
  1285. }
  1286. static struct o2hb_heartbeat_group_attribute o2hb_heartbeat_group_attr_threshold = {
  1287. .attr = { .ca_owner = THIS_MODULE,
  1288. .ca_name = "dead_threshold",
  1289. .ca_mode = S_IRUGO | S_IWUSR },
  1290. .show = o2hb_heartbeat_group_threshold_show,
  1291. .store = o2hb_heartbeat_group_threshold_store,
  1292. };
  1293. static struct configfs_attribute *o2hb_heartbeat_group_attrs[] = {
  1294. &o2hb_heartbeat_group_attr_threshold.attr,
  1295. NULL,
  1296. };
  1297. static struct configfs_item_operations o2hb_hearbeat_group_item_ops = {
  1298. .show_attribute = o2hb_heartbeat_group_show,
  1299. .store_attribute = o2hb_heartbeat_group_store,
  1300. };
  1301. static struct configfs_group_operations o2hb_heartbeat_group_group_ops = {
  1302. .make_item = o2hb_heartbeat_group_make_item,
  1303. .drop_item = o2hb_heartbeat_group_drop_item,
  1304. };
  1305. static struct config_item_type o2hb_heartbeat_group_type = {
  1306. .ct_group_ops = &o2hb_heartbeat_group_group_ops,
  1307. .ct_item_ops = &o2hb_hearbeat_group_item_ops,
  1308. .ct_attrs = o2hb_heartbeat_group_attrs,
  1309. .ct_owner = THIS_MODULE,
  1310. };
  1311. /* this is just here to avoid touching group in heartbeat.h which the
  1312. * entire damn world #includes */
  1313. struct config_group *o2hb_alloc_hb_set(void)
  1314. {
  1315. struct o2hb_heartbeat_group *hs = NULL;
  1316. struct config_group *ret = NULL;
  1317. hs = kcalloc(1, sizeof(struct o2hb_heartbeat_group), GFP_KERNEL);
  1318. if (hs == NULL)
  1319. goto out;
  1320. config_group_init_type_name(&hs->hs_group, "heartbeat",
  1321. &o2hb_heartbeat_group_type);
  1322. ret = &hs->hs_group;
  1323. out:
  1324. if (ret == NULL)
  1325. kfree(hs);
  1326. return ret;
  1327. }
  1328. void o2hb_free_hb_set(struct config_group *group)
  1329. {
  1330. struct o2hb_heartbeat_group *hs = to_o2hb_heartbeat_group(group);
  1331. kfree(hs);
  1332. }
  1333. /* hb callback registration and issueing */
  1334. static struct o2hb_callback *hbcall_from_type(enum o2hb_callback_type type)
  1335. {
  1336. if (type == O2HB_NUM_CB)
  1337. return ERR_PTR(-EINVAL);
  1338. return &o2hb_callbacks[type];
  1339. }
  1340. void o2hb_setup_callback(struct o2hb_callback_func *hc,
  1341. enum o2hb_callback_type type,
  1342. o2hb_cb_func *func,
  1343. void *data,
  1344. int priority)
  1345. {
  1346. INIT_LIST_HEAD(&hc->hc_item);
  1347. hc->hc_func = func;
  1348. hc->hc_data = data;
  1349. hc->hc_priority = priority;
  1350. hc->hc_type = type;
  1351. hc->hc_magic = O2HB_CB_MAGIC;
  1352. }
  1353. EXPORT_SYMBOL_GPL(o2hb_setup_callback);
  1354. int o2hb_register_callback(struct o2hb_callback_func *hc)
  1355. {
  1356. struct o2hb_callback_func *tmp;
  1357. struct list_head *iter;
  1358. struct o2hb_callback *hbcall;
  1359. int ret;
  1360. BUG_ON(hc->hc_magic != O2HB_CB_MAGIC);
  1361. BUG_ON(!list_empty(&hc->hc_item));
  1362. hbcall = hbcall_from_type(hc->hc_type);
  1363. if (IS_ERR(hbcall)) {
  1364. ret = PTR_ERR(hbcall);
  1365. goto out;
  1366. }
  1367. down_write(&o2hb_callback_sem);
  1368. list_for_each(iter, &hbcall->list) {
  1369. tmp = list_entry(iter, struct o2hb_callback_func, hc_item);
  1370. if (hc->hc_priority < tmp->hc_priority) {
  1371. list_add_tail(&hc->hc_item, iter);
  1372. break;
  1373. }
  1374. }
  1375. if (list_empty(&hc->hc_item))
  1376. list_add_tail(&hc->hc_item, &hbcall->list);
  1377. up_write(&o2hb_callback_sem);
  1378. ret = 0;
  1379. out:
  1380. mlog(ML_HEARTBEAT, "returning %d on behalf of %p for funcs %p\n",
  1381. ret, __builtin_return_address(0), hc);
  1382. return ret;
  1383. }
  1384. EXPORT_SYMBOL_GPL(o2hb_register_callback);
  1385. int o2hb_unregister_callback(struct o2hb_callback_func *hc)
  1386. {
  1387. BUG_ON(hc->hc_magic != O2HB_CB_MAGIC);
  1388. mlog(ML_HEARTBEAT, "on behalf of %p for funcs %p\n",
  1389. __builtin_return_address(0), hc);
  1390. if (list_empty(&hc->hc_item))
  1391. return 0;
  1392. down_write(&o2hb_callback_sem);
  1393. list_del_init(&hc->hc_item);
  1394. up_write(&o2hb_callback_sem);
  1395. return 0;
  1396. }
  1397. EXPORT_SYMBOL_GPL(o2hb_unregister_callback);
  1398. int o2hb_check_node_heartbeating(u8 node_num)
  1399. {
  1400. unsigned long testing_map[BITS_TO_LONGS(O2NM_MAX_NODES)];
  1401. o2hb_fill_node_map(testing_map, sizeof(testing_map));
  1402. if (!test_bit(node_num, testing_map)) {
  1403. mlog(ML_HEARTBEAT,
  1404. "node (%u) does not have heartbeating enabled.\n",
  1405. node_num);
  1406. return 0;
  1407. }
  1408. return 1;
  1409. }
  1410. EXPORT_SYMBOL_GPL(o2hb_check_node_heartbeating);
  1411. int o2hb_check_node_heartbeating_from_callback(u8 node_num)
  1412. {
  1413. unsigned long testing_map[BITS_TO_LONGS(O2NM_MAX_NODES)];
  1414. o2hb_fill_node_map_from_callback(testing_map, sizeof(testing_map));
  1415. if (!test_bit(node_num, testing_map)) {
  1416. mlog(ML_HEARTBEAT,
  1417. "node (%u) does not have heartbeating enabled.\n",
  1418. node_num);
  1419. return 0;
  1420. }
  1421. return 1;
  1422. }
  1423. EXPORT_SYMBOL_GPL(o2hb_check_node_heartbeating_from_callback);
  1424. /* Makes sure our local node is configured with a node number, and is
  1425. * heartbeating. */
  1426. int o2hb_check_local_node_heartbeating(void)
  1427. {
  1428. u8 node_num;
  1429. /* if this node was set then we have networking */
  1430. node_num = o2nm_this_node();
  1431. if (node_num == O2NM_MAX_NODES) {
  1432. mlog(ML_HEARTBEAT, "this node has not been configured.\n");
  1433. return 0;
  1434. }
  1435. return o2hb_check_node_heartbeating(node_num);
  1436. }
  1437. EXPORT_SYMBOL_GPL(o2hb_check_local_node_heartbeating);
  1438. /*
  1439. * this is just a hack until we get the plumbing which flips file systems
  1440. * read only and drops the hb ref instead of killing the node dead.
  1441. */
  1442. void o2hb_stop_all_regions(void)
  1443. {
  1444. struct o2hb_region *reg;
  1445. mlog(ML_ERROR, "stopping heartbeat on all active regions.\n");
  1446. spin_lock(&o2hb_live_lock);
  1447. list_for_each_entry(reg, &o2hb_all_regions, hr_all_item)
  1448. reg->hr_unclean_stop = 1;
  1449. spin_unlock(&o2hb_live_lock);
  1450. }
  1451. EXPORT_SYMBOL_GPL(o2hb_stop_all_regions);