heartbeat.c 46 KB

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