blob: a76b9ea7722e6d7d00d8c0c58217a4a0387f0ff0 [file] [log] [blame]
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001/* -*- 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
22#include <linux/kernel.h>
23#include <linux/sched.h>
24#include <linux/jiffies.h>
25#include <linux/module.h>
26#include <linux/fs.h>
27#include <linux/bio.h>
28#include <linux/blkdev.h>
29#include <linux/delay.h>
30#include <linux/file.h>
31#include <linux/kthread.h>
32#include <linux/configfs.h>
33#include <linux/random.h>
34#include <linux/crc32.h>
35#include <linux/time.h>
Sunil Mushran87d3d3f2008-12-17 14:17:42 -080036#include <linux/debugfs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090037#include <linux/slab.h>
Akinobu Mitaa8f70de2013-11-12 15:06:58 -080038#include <linux/bitmap.h>
Tina Ruchandani40476b82015-09-04 15:44:43 -070039#include <linux/ktime.h>
Mark Fasheha7f6a5f2005-12-15 14:31:23 -080040#include "heartbeat.h"
41#include "tcp.h"
42#include "nodemanager.h"
43#include "quorum.h"
44
45#include "masklog.h"
46
47
48/*
49 * The first heartbeat pass had one global thread that would serialize all hb
50 * callback calls. This global serializing sem should only be removed once
51 * we've made sure that all callees can deal with being called concurrently
52 * from multiple hb region threads.
53 */
54static DECLARE_RWSEM(o2hb_callback_sem);
55
56/*
57 * multiple hb threads are watching multiple regions. A node is live
58 * whenever any of the threads sees activity from the node in its region.
59 */
Ingo Molnar34af9462006-06-27 02:53:55 -070060static DEFINE_SPINLOCK(o2hb_live_lock);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -080061static struct list_head o2hb_live_slots[O2NM_MAX_NODES];
62static unsigned long o2hb_live_node_bitmap[BITS_TO_LONGS(O2NM_MAX_NODES)];
63static LIST_HEAD(o2hb_node_events);
64static DECLARE_WAIT_QUEUE_HEAD(o2hb_steady_queue);
65
Sunil Mushran536f0742010-10-07 17:03:07 -070066/*
67 * In global heartbeat, we maintain a series of region bitmaps.
68 * - o2hb_region_bitmap allows us to limit the region number to max region.
Sunil Mushrane7d656b2010-10-06 17:55:18 -070069 * - o2hb_live_region_bitmap tracks live regions (seen steady iterations).
Sunil Mushran43182d22010-10-06 17:55:16 -070070 * - o2hb_quorum_region_bitmap tracks live regions that have seen all nodes
71 * heartbeat on it.
Sunil Mushranb1c5ebf2010-10-07 17:05:52 -070072 * - o2hb_failed_region_bitmap tracks the regions that have seen io timeouts.
Sunil Mushran536f0742010-10-07 17:03:07 -070073 */
74static unsigned long o2hb_region_bitmap[BITS_TO_LONGS(O2NM_MAX_REGIONS)];
Sunil Mushrane7d656b2010-10-06 17:55:18 -070075static unsigned long o2hb_live_region_bitmap[BITS_TO_LONGS(O2NM_MAX_REGIONS)];
Sunil Mushran43182d22010-10-06 17:55:16 -070076static unsigned long o2hb_quorum_region_bitmap[BITS_TO_LONGS(O2NM_MAX_REGIONS)];
Sunil Mushranb1c5ebf2010-10-07 17:05:52 -070077static unsigned long o2hb_failed_region_bitmap[BITS_TO_LONGS(O2NM_MAX_REGIONS)];
Sunil Mushran536f0742010-10-07 17:03:07 -070078
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -070079#define O2HB_DB_TYPE_LIVENODES 0
Sunil Mushrana6de0132010-10-06 17:55:13 -070080#define O2HB_DB_TYPE_LIVEREGIONS 1
81#define O2HB_DB_TYPE_QUORUMREGIONS 2
82#define O2HB_DB_TYPE_FAILEDREGIONS 3
Sunil Mushran1f285302010-10-06 17:55:12 -070083#define O2HB_DB_TYPE_REGION_LIVENODES 4
84#define O2HB_DB_TYPE_REGION_NUMBER 5
Sunil Mushran43695d02010-10-06 17:55:09 -070085#define O2HB_DB_TYPE_REGION_ELAPSED_TIME 6
Sunil Mushrancb0586b2010-12-14 14:14:30 -080086#define O2HB_DB_TYPE_REGION_PINNED 7
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -070087struct o2hb_debug_buf {
88 int db_type;
89 int db_size;
90 int db_len;
91 void *db_data;
92};
93
94static struct o2hb_debug_buf *o2hb_db_livenodes;
Sunil Mushrana6de0132010-10-06 17:55:13 -070095static struct o2hb_debug_buf *o2hb_db_liveregions;
96static struct o2hb_debug_buf *o2hb_db_quorumregions;
97static struct o2hb_debug_buf *o2hb_db_failedregions;
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -070098
Sunil Mushran87d3d3f2008-12-17 14:17:42 -080099#define O2HB_DEBUG_DIR "o2hb"
100#define O2HB_DEBUG_LIVENODES "livenodes"
Sunil Mushrana6de0132010-10-06 17:55:13 -0700101#define O2HB_DEBUG_LIVEREGIONS "live_regions"
102#define O2HB_DEBUG_QUORUMREGIONS "quorum_regions"
103#define O2HB_DEBUG_FAILEDREGIONS "failed_regions"
Sunil Mushran1f285302010-10-06 17:55:12 -0700104#define O2HB_DEBUG_REGION_NUMBER "num"
Sunil Mushran43695d02010-10-06 17:55:09 -0700105#define O2HB_DEBUG_REGION_ELAPSED_TIME "elapsed_time_in_ms"
Sunil Mushrancb0586b2010-12-14 14:14:30 -0800106#define O2HB_DEBUG_REGION_PINNED "pinned"
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -0700107
Sunil Mushran87d3d3f2008-12-17 14:17:42 -0800108static struct dentry *o2hb_debug_dir;
109static struct dentry *o2hb_debug_livenodes;
Sunil Mushrana6de0132010-10-06 17:55:13 -0700110static struct dentry *o2hb_debug_liveregions;
111static struct dentry *o2hb_debug_quorumregions;
112static struct dentry *o2hb_debug_failedregions;
Sunil Mushran87d3d3f2008-12-17 14:17:42 -0800113
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800114static LIST_HEAD(o2hb_all_regions);
115
116static struct o2hb_callback {
117 struct list_head list;
118} o2hb_callbacks[O2HB_NUM_CB];
119
120static struct o2hb_callback *hbcall_from_type(enum o2hb_callback_type type);
121
122#define O2HB_DEFAULT_BLOCK_BITS 9
123
Sunil Mushran54b51872010-10-07 15:26:08 -0700124enum o2hb_heartbeat_modes {
125 O2HB_HEARTBEAT_LOCAL = 0,
126 O2HB_HEARTBEAT_GLOBAL,
127 O2HB_HEARTBEAT_NUM_MODES,
128};
129
130char *o2hb_heartbeat_mode_desc[O2HB_HEARTBEAT_NUM_MODES] = {
131 "local", /* O2HB_HEARTBEAT_LOCAL */
132 "global", /* O2HB_HEARTBEAT_GLOBAL */
133};
134
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800135unsigned int o2hb_dead_threshold = O2HB_DEFAULT_DEAD_THRESHOLD;
Sunil Mushran54b51872010-10-07 15:26:08 -0700136unsigned int o2hb_heartbeat_mode = O2HB_HEARTBEAT_LOCAL;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800137
Sunil Mushran58a31582010-12-14 14:14:29 -0800138/*
139 * o2hb_dependent_users tracks the number of registered callbacks that depend
140 * on heartbeat. o2net and o2dlm are two entities that register this callback.
141 * However only o2dlm depends on the heartbeat. It does not want the heartbeat
142 * to stop while a dlm domain is still active.
143 */
144unsigned int o2hb_dependent_users;
145
146/*
147 * In global heartbeat mode, all regions are pinned if there are one or more
148 * dependent users and the quorum region count is <= O2HB_PIN_CUT_OFF. All
149 * regions are unpinned if the region count exceeds the cut off or the number
150 * of dependent users falls to zero.
151 */
152#define O2HB_PIN_CUT_OFF 3
153
154/*
155 * In local heartbeat mode, we assume the dlm domain name to be the same as
156 * region uuid. This is true for domains created for the file system but not
157 * necessarily true for userdlm domains. This is a known limitation.
158 *
159 * In global heartbeat mode, we pin/unpin all o2hb regions. This solution
160 * works for both file system and userdlm domains.
161 */
162static int o2hb_region_pin(const char *region_uuid);
163static void o2hb_region_unpin(const char *region_uuid);
164
Sunil Mushran2bd63212010-01-25 16:57:38 -0800165/* Only sets a new threshold if there are no active regions.
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800166 *
167 * No locking or otherwise interesting code is required for reading
168 * o2hb_dead_threshold as it can't change once regions are active and
169 * it's not interesting to anyone until then anyway. */
170static void o2hb_dead_threshold_set(unsigned int threshold)
171{
172 if (threshold > O2HB_MIN_DEAD_THRESHOLD) {
173 spin_lock(&o2hb_live_lock);
174 if (list_empty(&o2hb_all_regions))
175 o2hb_dead_threshold = threshold;
176 spin_unlock(&o2hb_live_lock);
177 }
178}
179
Jie Liu70f651e2013-07-03 15:01:06 -0700180static int o2hb_global_heartbeat_mode_set(unsigned int hb_mode)
Sunil Mushran54b51872010-10-07 15:26:08 -0700181{
182 int ret = -1;
183
184 if (hb_mode < O2HB_HEARTBEAT_NUM_MODES) {
185 spin_lock(&o2hb_live_lock);
186 if (list_empty(&o2hb_all_regions)) {
187 o2hb_heartbeat_mode = hb_mode;
188 ret = 0;
189 }
190 spin_unlock(&o2hb_live_lock);
191 }
192
193 return ret;
194}
195
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800196struct o2hb_node_event {
197 struct list_head hn_item;
198 enum o2hb_callback_type hn_event_type;
199 struct o2nm_node *hn_node;
200 int hn_node_num;
201};
202
203struct o2hb_disk_slot {
204 struct o2hb_disk_heartbeat_block *ds_raw_block;
205 u8 ds_node_num;
206 u64 ds_last_time;
207 u64 ds_last_generation;
208 u16 ds_equal_samples;
209 u16 ds_changed_samples;
210 struct list_head ds_live_item;
211};
212
213/* each thread owns a region.. when we're asked to tear down the region
214 * we ask the thread to stop, who cleans up the region */
215struct o2hb_region {
216 struct config_item hr_item;
217
218 struct list_head hr_all_item;
Sunil Mushran58a31582010-12-14 14:14:29 -0800219 unsigned hr_unclean_stop:1,
Sunil Mushrand2eece32011-07-24 10:21:54 -0700220 hr_aborted_start:1,
Sunil Mushran58a31582010-12-14 14:14:29 -0800221 hr_item_pinned:1,
Joseph Qi0986fe9b2015-11-05 18:44:07 -0800222 hr_item_dropped:1,
223 hr_node_deleted:1;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800224
225 /* protected by the hr_callback_sem */
226 struct task_struct *hr_task;
227
228 unsigned int hr_blocks;
229 unsigned long long hr_start_block;
230
231 unsigned int hr_block_bits;
232 unsigned int hr_block_bytes;
233
234 unsigned int hr_slots_per_page;
235 unsigned int hr_num_pages;
236
237 struct page **hr_slot_data;
238 struct block_device *hr_bdev;
239 struct o2hb_disk_slot *hr_slots;
240
Sunil Mushran823a6372010-10-06 17:55:21 -0700241 /* live node map of this region */
242 unsigned long hr_live_node_bitmap[BITS_TO_LONGS(O2NM_MAX_NODES)];
Sunil Mushran536f0742010-10-07 17:03:07 -0700243 unsigned int hr_region_num;
Sunil Mushran823a6372010-10-06 17:55:21 -0700244
Sunil Mushran1f285302010-10-06 17:55:12 -0700245 struct dentry *hr_debug_dir;
246 struct dentry *hr_debug_livenodes;
247 struct dentry *hr_debug_regnum;
Sunil Mushran43695d02010-10-06 17:55:09 -0700248 struct dentry *hr_debug_elapsed_time;
Sunil Mushrancb0586b2010-12-14 14:14:30 -0800249 struct dentry *hr_debug_pinned;
Sunil Mushran1f285302010-10-06 17:55:12 -0700250 struct o2hb_debug_buf *hr_db_livenodes;
251 struct o2hb_debug_buf *hr_db_regnum;
Sunil Mushran43695d02010-10-06 17:55:09 -0700252 struct o2hb_debug_buf *hr_db_elapsed_time;
Sunil Mushrancb0586b2010-12-14 14:14:30 -0800253 struct o2hb_debug_buf *hr_db_pinned;
Sunil Mushran1f285302010-10-06 17:55:12 -0700254
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800255 /* let the person setting up hb wait for it to return until it
256 * has reached a 'steady' state. This will be fixed when we have
257 * a more complete api that doesn't lead to this sort of fragility. */
258 atomic_t hr_steady_iterations;
259
Sunil Mushrand2eece32011-07-24 10:21:54 -0700260 /* terminate o2hb thread if it does not reach steady state
261 * (hr_steady_iterations == 0) within hr_unsteady_iterations */
262 atomic_t hr_unsteady_iterations;
263
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800264 char hr_dev_name[BDEVNAME_SIZE];
265
266 unsigned int hr_timeout_ms;
267
268 /* randomized as the region goes up and down so that a node
269 * recognizes a node going up and down in one iteration */
270 u64 hr_generation;
271
David Howellsc4028952006-11-22 14:57:56 +0000272 struct delayed_work hr_write_timeout_work;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800273 unsigned long hr_last_timeout_start;
274
275 /* Used during o2hb_check_slot to hold a copy of the block
276 * being checked because we temporarily have to zero out the
277 * crc field. */
278 struct o2hb_disk_heartbeat_block *hr_tmp_block;
279};
280
281struct o2hb_bio_wait_ctxt {
282 atomic_t wc_num_reqs;
283 struct completion wc_io_complete;
Mark Fasheha9e2ae32006-03-24 14:20:17 -0800284 int wc_error;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800285};
286
David Howellsc4028952006-11-22 14:57:56 +0000287static void o2hb_write_timeout(struct work_struct *work)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800288{
Sunil Mushranb1c5ebf2010-10-07 17:05:52 -0700289 int failed, quorum;
290 unsigned long flags;
David Howellsc4028952006-11-22 14:57:56 +0000291 struct o2hb_region *reg =
292 container_of(work, struct o2hb_region,
293 hr_write_timeout_work.work);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800294
295 mlog(ML_ERROR, "Heartbeat write timeout to device %s after %u "
296 "milliseconds\n", reg->hr_dev_name,
Sunil Mushran2bd63212010-01-25 16:57:38 -0800297 jiffies_to_msecs(jiffies - reg->hr_last_timeout_start));
Sunil Mushranb1c5ebf2010-10-07 17:05:52 -0700298
299 if (o2hb_global_heartbeat_active()) {
300 spin_lock_irqsave(&o2hb_live_lock, flags);
301 if (test_bit(reg->hr_region_num, o2hb_quorum_region_bitmap))
302 set_bit(reg->hr_region_num, o2hb_failed_region_bitmap);
Akinobu Mitaa8f70de2013-11-12 15:06:58 -0800303 failed = bitmap_weight(o2hb_failed_region_bitmap,
Sunil Mushranb1c5ebf2010-10-07 17:05:52 -0700304 O2NM_MAX_REGIONS);
Akinobu Mitaa8f70de2013-11-12 15:06:58 -0800305 quorum = bitmap_weight(o2hb_quorum_region_bitmap,
Sunil Mushranb1c5ebf2010-10-07 17:05:52 -0700306 O2NM_MAX_REGIONS);
307 spin_unlock_irqrestore(&o2hb_live_lock, flags);
308
309 mlog(ML_HEARTBEAT, "Number of regions %d, failed regions %d\n",
310 quorum, failed);
311
312 /*
313 * Fence if the number of failed regions >= half the number
314 * of quorum regions
315 */
316 if ((failed << 1) < quorum)
317 return;
318 }
319
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800320 o2quo_disk_timeout();
321}
322
323static void o2hb_arm_write_timeout(struct o2hb_region *reg)
324{
Sunil Mushrand2eece32011-07-24 10:21:54 -0700325 /* Arm writeout only after thread reaches steady state */
326 if (atomic_read(&reg->hr_steady_iterations) != 0)
327 return;
328
Tao Mab31d3082009-12-22 10:32:15 +0800329 mlog(ML_HEARTBEAT, "Queue write timeout for %u ms\n",
330 O2HB_MAX_WRITE_TIMEOUT_MS);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800331
Sunil Mushranb1c5ebf2010-10-07 17:05:52 -0700332 if (o2hb_global_heartbeat_active()) {
333 spin_lock(&o2hb_live_lock);
334 clear_bit(reg->hr_region_num, o2hb_failed_region_bitmap);
335 spin_unlock(&o2hb_live_lock);
336 }
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800337 cancel_delayed_work(&reg->hr_write_timeout_work);
338 reg->hr_last_timeout_start = jiffies;
339 schedule_delayed_work(&reg->hr_write_timeout_work,
340 msecs_to_jiffies(O2HB_MAX_WRITE_TIMEOUT_MS));
341}
342
343static void o2hb_disarm_write_timeout(struct o2hb_region *reg)
344{
Tejun Heo9b00a812010-12-24 15:59:06 +0100345 cancel_delayed_work_sync(&reg->hr_write_timeout_work);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800346}
347
Philipp Reisnerb5592922007-01-11 10:58:10 +0100348static inline void o2hb_bio_wait_init(struct o2hb_bio_wait_ctxt *wc)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800349{
Philipp Reisnerb5592922007-01-11 10:58:10 +0100350 atomic_set(&wc->wc_num_reqs, 1);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800351 init_completion(&wc->wc_io_complete);
Mark Fasheha9e2ae32006-03-24 14:20:17 -0800352 wc->wc_error = 0;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800353}
354
355/* Used in error paths too */
356static inline void o2hb_bio_wait_dec(struct o2hb_bio_wait_ctxt *wc,
357 unsigned int num)
358{
359 /* sadly atomic_sub_and_test() isn't available on all platforms. The
360 * good news is that the fast path only completes one at a time */
361 while(num--) {
362 if (atomic_dec_and_test(&wc->wc_num_reqs)) {
363 BUG_ON(num > 0);
364 complete(&wc->wc_io_complete);
365 }
366 }
367}
368
369static void o2hb_wait_on_io(struct o2hb_region *reg,
370 struct o2hb_bio_wait_ctxt *wc)
371{
Philipp Reisnerb5592922007-01-11 10:58:10 +0100372 o2hb_bio_wait_dec(wc, 1);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800373 wait_for_completion(&wc->wc_io_complete);
374}
375
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200376static void o2hb_bio_end_io(struct bio *bio)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800377{
378 struct o2hb_bio_wait_ctxt *wc = bio->bi_private;
379
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200380 if (bio->bi_error) {
381 mlog(ML_ERROR, "IO Error %d\n", bio->bi_error);
382 wc->wc_error = bio->bi_error;
Mark Fasheha9e2ae32006-03-24 14:20:17 -0800383 }
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800384
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800385 o2hb_bio_wait_dec(wc, 1);
Philipp Reisnerb5592922007-01-11 10:58:10 +0100386 bio_put(bio);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800387}
388
389/* Setup a Bio to cover I/O against num_slots slots starting at
390 * start_slot. */
391static struct bio *o2hb_setup_one_bio(struct o2hb_region *reg,
392 struct o2hb_bio_wait_ctxt *wc,
Philipp Reisnerb5592922007-01-11 10:58:10 +0100393 unsigned int *current_slot,
394 unsigned int max_slots)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800395{
Philipp Reisnerb5592922007-01-11 10:58:10 +0100396 int len, current_page;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800397 unsigned int vec_len, vec_start;
398 unsigned int bits = reg->hr_block_bits;
399 unsigned int spp = reg->hr_slots_per_page;
Philipp Reisnerb5592922007-01-11 10:58:10 +0100400 unsigned int cs = *current_slot;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800401 struct bio *bio;
402 struct page *page;
403
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800404 /* Testing has shown this allocation to take long enough under
405 * GFP_KERNEL that the local node can get fenced. It would be
406 * nicest if we could pre-allocate these bios and avoid this
407 * all together. */
Philipp Reisnerb5592922007-01-11 10:58:10 +0100408 bio = bio_alloc(GFP_ATOMIC, 16);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800409 if (!bio) {
410 mlog(ML_ERROR, "Could not alloc slots BIO!\n");
411 bio = ERR_PTR(-ENOMEM);
412 goto bail;
413 }
414
415 /* Must put everything in 512 byte sectors for the bio... */
Kent Overstreet4f024f32013-10-11 15:44:27 -0700416 bio->bi_iter.bi_sector = (reg->hr_start_block + cs) << (bits - 9);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800417 bio->bi_bdev = reg->hr_bdev;
418 bio->bi_private = wc;
419 bio->bi_end_io = o2hb_bio_end_io;
420
Philipp Reisnerb5592922007-01-11 10:58:10 +0100421 vec_start = (cs << bits) % PAGE_CACHE_SIZE;
422 while(cs < max_slots) {
423 current_page = cs / spp;
424 page = reg->hr_slot_data[current_page];
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800425
Jan Karabc7e97c2007-10-10 16:25:42 +0200426 vec_len = min(PAGE_CACHE_SIZE - vec_start,
Philipp Reisnerb5592922007-01-11 10:58:10 +0100427 (max_slots-cs) * (PAGE_CACHE_SIZE/spp) );
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800428
429 mlog(ML_HB_BIO, "page %d, vec_len = %u, vec_start = %u\n",
Philipp Reisnerb5592922007-01-11 10:58:10 +0100430 current_page, vec_len, vec_start);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800431
432 len = bio_add_page(bio, page, vec_len, vec_start);
Philipp Reisnerb5592922007-01-11 10:58:10 +0100433 if (len != vec_len) break;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800434
Philipp Reisnerb5592922007-01-11 10:58:10 +0100435 cs += vec_len / (PAGE_CACHE_SIZE/spp);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800436 vec_start = 0;
437 }
438
439bail:
Philipp Reisnerb5592922007-01-11 10:58:10 +0100440 *current_slot = cs;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800441 return bio;
442}
443
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800444static int o2hb_read_slots(struct o2hb_region *reg,
445 unsigned int max_slots)
446{
Philipp Reisnerb5592922007-01-11 10:58:10 +0100447 unsigned int current_slot=0;
448 int status;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800449 struct o2hb_bio_wait_ctxt wc;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800450 struct bio *bio;
451
Philipp Reisnerb5592922007-01-11 10:58:10 +0100452 o2hb_bio_wait_init(&wc);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800453
Philipp Reisnerb5592922007-01-11 10:58:10 +0100454 while(current_slot < max_slots) {
455 bio = o2hb_setup_one_bio(reg, &wc, &current_slot, max_slots);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800456 if (IS_ERR(bio)) {
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800457 status = PTR_ERR(bio);
458 mlog_errno(status);
459 goto bail_and_wait;
460 }
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800461
Philipp Reisnerb5592922007-01-11 10:58:10 +0100462 atomic_inc(&wc.wc_num_reqs);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800463 submit_bio(READ, bio);
464 }
465
466 status = 0;
467
468bail_and_wait:
469 o2hb_wait_on_io(reg, &wc);
Mark Fasheha9e2ae32006-03-24 14:20:17 -0800470 if (wc.wc_error && !status)
471 status = wc.wc_error;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800472
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800473 return status;
474}
475
476static int o2hb_issue_node_write(struct o2hb_region *reg,
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800477 struct o2hb_bio_wait_ctxt *write_wc)
478{
479 int status;
480 unsigned int slot;
481 struct bio *bio;
482
Philipp Reisnerb5592922007-01-11 10:58:10 +0100483 o2hb_bio_wait_init(write_wc);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800484
485 slot = o2nm_this_node();
486
Philipp Reisnerb5592922007-01-11 10:58:10 +0100487 bio = o2hb_setup_one_bio(reg, write_wc, &slot, slot+1);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800488 if (IS_ERR(bio)) {
489 status = PTR_ERR(bio);
490 mlog_errno(status);
491 goto bail;
492 }
493
Philipp Reisnerb5592922007-01-11 10:58:10 +0100494 atomic_inc(&write_wc->wc_num_reqs);
Noboru Iwamatsue873fdb2013-07-03 15:01:04 -0700495 submit_bio(WRITE_SYNC, bio);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800496
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800497 status = 0;
498bail:
499 return status;
500}
501
502static u32 o2hb_compute_block_crc_le(struct o2hb_region *reg,
503 struct o2hb_disk_heartbeat_block *hb_block)
504{
505 __le32 old_cksum;
506 u32 ret;
507
508 /* We want to compute the block crc with a 0 value in the
509 * hb_cksum field. Save it off here and replace after the
510 * crc. */
511 old_cksum = hb_block->hb_cksum;
512 hb_block->hb_cksum = 0;
513
514 ret = crc32_le(0, (unsigned char *) hb_block, reg->hr_block_bytes);
515
516 hb_block->hb_cksum = old_cksum;
517
518 return ret;
519}
520
521static void o2hb_dump_slot(struct o2hb_disk_heartbeat_block *hb_block)
522{
Mark Fasheh70bacbd2006-03-02 11:10:05 -0800523 mlog(ML_ERROR, "Dump slot information: seq = 0x%llx, node = %u, "
524 "cksum = 0x%x, generation 0x%llx\n",
525 (long long)le64_to_cpu(hb_block->hb_seq),
526 hb_block->hb_node, le32_to_cpu(hb_block->hb_cksum),
527 (long long)le64_to_cpu(hb_block->hb_generation));
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800528}
529
530static int o2hb_verify_crc(struct o2hb_region *reg,
531 struct o2hb_disk_heartbeat_block *hb_block)
532{
533 u32 read, computed;
534
535 read = le32_to_cpu(hb_block->hb_cksum);
536 computed = o2hb_compute_block_crc_le(reg, hb_block);
537
538 return read == computed;
539}
540
Sunil Mushrand2eece32011-07-24 10:21:54 -0700541/*
542 * Compare the slot data with what we wrote in the last iteration.
543 * If the match fails, print an appropriate error message. This is to
544 * detect errors like... another node hearting on the same slot,
545 * flaky device that is losing writes, etc.
546 * Returns 1 if check succeeds, 0 otherwise.
547 */
548static int o2hb_check_own_slot(struct o2hb_region *reg)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800549{
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800550 struct o2hb_disk_slot *slot;
551 struct o2hb_disk_heartbeat_block *hb_block;
Sunil Mushran33c12a52011-05-04 10:28:01 -0700552 char *errstr;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800553
Sunil Mushran33c12a52011-05-04 10:28:01 -0700554 slot = &reg->hr_slots[o2nm_this_node()];
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800555 /* Don't check on our 1st timestamp */
Sunil Mushran33c12a52011-05-04 10:28:01 -0700556 if (!slot->ds_last_time)
Sunil Mushrand2eece32011-07-24 10:21:54 -0700557 return 0;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800558
Sunil Mushran33c12a52011-05-04 10:28:01 -0700559 hb_block = slot->ds_raw_block;
560 if (le64_to_cpu(hb_block->hb_seq) == slot->ds_last_time &&
561 le64_to_cpu(hb_block->hb_generation) == slot->ds_last_generation &&
562 hb_block->hb_node == slot->ds_node_num)
Sunil Mushrand2eece32011-07-24 10:21:54 -0700563 return 1;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800564
Sunil Mushran33c12a52011-05-04 10:28:01 -0700565#define ERRSTR1 "Another node is heartbeating on device"
566#define ERRSTR2 "Heartbeat generation mismatch on device"
567#define ERRSTR3 "Heartbeat sequence mismatch on device"
568
569 if (hb_block->hb_node != slot->ds_node_num)
570 errstr = ERRSTR1;
571 else if (le64_to_cpu(hb_block->hb_generation) !=
572 slot->ds_last_generation)
573 errstr = ERRSTR2;
574 else
575 errstr = ERRSTR3;
576
577 mlog(ML_ERROR, "%s (%s): expected(%u:0x%llx, 0x%llx), "
578 "ondisk(%u:0x%llx, 0x%llx)\n", errstr, reg->hr_dev_name,
579 slot->ds_node_num, (unsigned long long)slot->ds_last_generation,
580 (unsigned long long)slot->ds_last_time, hb_block->hb_node,
581 (unsigned long long)le64_to_cpu(hb_block->hb_generation),
582 (unsigned long long)le64_to_cpu(hb_block->hb_seq));
Sunil Mushrand2eece32011-07-24 10:21:54 -0700583
584 return 0;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800585}
586
587static inline void o2hb_prepare_block(struct o2hb_region *reg,
588 u64 generation)
589{
590 int node_num;
591 u64 cputime;
592 struct o2hb_disk_slot *slot;
593 struct o2hb_disk_heartbeat_block *hb_block;
594
595 node_num = o2nm_this_node();
596 slot = &reg->hr_slots[node_num];
597
598 hb_block = (struct o2hb_disk_heartbeat_block *)slot->ds_raw_block;
599 memset(hb_block, 0, reg->hr_block_bytes);
600 /* TODO: time stuff */
601 cputime = CURRENT_TIME.tv_sec;
602 if (!cputime)
603 cputime = 1;
604
605 hb_block->hb_seq = cpu_to_le64(cputime);
606 hb_block->hb_node = node_num;
607 hb_block->hb_generation = cpu_to_le64(generation);
Mark Fasheh0db638f2006-05-09 15:09:35 -0700608 hb_block->hb_dead_ms = cpu_to_le32(o2hb_dead_threshold * O2HB_REGION_TIMEOUT_MS);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800609
610 /* This step must always happen last! */
611 hb_block->hb_cksum = cpu_to_le32(o2hb_compute_block_crc_le(reg,
612 hb_block));
613
Mark Fasheh70bacbd2006-03-02 11:10:05 -0800614 mlog(ML_HB_BIO, "our node generation = 0x%llx, cksum = 0x%x\n",
Mark Fasheh5fdf1e62007-04-27 16:50:03 -0700615 (long long)generation,
Mark Fasheh70bacbd2006-03-02 11:10:05 -0800616 le32_to_cpu(hb_block->hb_cksum));
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800617}
618
619static void o2hb_fire_callbacks(struct o2hb_callback *hbcall,
620 struct o2nm_node *node,
621 int idx)
622{
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800623 struct o2hb_callback_func *f;
624
Dong Fangdf53cd32013-09-11 14:19:50 -0700625 list_for_each_entry(f, &hbcall->list, hc_item) {
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800626 mlog(ML_HEARTBEAT, "calling funcs %p\n", f);
627 (f->hc_func)(node, idx, f->hc_data);
628 }
629}
630
631/* Will run the list in order until we process the passed event */
632static void o2hb_run_event_list(struct o2hb_node_event *queued_event)
633{
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800634 struct o2hb_callback *hbcall;
635 struct o2hb_node_event *event;
636
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800637 /* Holding callback sem assures we don't alter the callback
638 * lists when doing this, and serializes ourselves with other
639 * processes wanting callbacks. */
640 down_write(&o2hb_callback_sem);
641
642 spin_lock(&o2hb_live_lock);
643 while (!list_empty(&o2hb_node_events)
644 && !list_empty(&queued_event->hn_item)) {
645 event = list_entry(o2hb_node_events.next,
646 struct o2hb_node_event,
647 hn_item);
648 list_del_init(&event->hn_item);
649 spin_unlock(&o2hb_live_lock);
650
651 mlog(ML_HEARTBEAT, "Node %s event for %d\n",
652 event->hn_event_type == O2HB_NODE_UP_CB ? "UP" : "DOWN",
653 event->hn_node_num);
654
655 hbcall = hbcall_from_type(event->hn_event_type);
656
657 /* We should *never* have gotten on to the list with a
658 * bad type... This isn't something that we should try
659 * to recover from. */
660 BUG_ON(IS_ERR(hbcall));
661
662 o2hb_fire_callbacks(hbcall, event->hn_node, event->hn_node_num);
663
664 spin_lock(&o2hb_live_lock);
665 }
666 spin_unlock(&o2hb_live_lock);
667
668 up_write(&o2hb_callback_sem);
669}
670
671static void o2hb_queue_node_event(struct o2hb_node_event *event,
672 enum o2hb_callback_type type,
673 struct o2nm_node *node,
674 int node_num)
675{
676 assert_spin_locked(&o2hb_live_lock);
677
Sunil Mushran0e105d32010-10-07 17:00:16 -0700678 BUG_ON((!node) && (type != O2HB_NODE_DOWN_CB));
679
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800680 event->hn_event_type = type;
681 event->hn_node = node;
682 event->hn_node_num = node_num;
683
684 mlog(ML_HEARTBEAT, "Queue node %s event for node %d\n",
685 type == O2HB_NODE_UP_CB ? "UP" : "DOWN", node_num);
686
687 list_add_tail(&event->hn_item, &o2hb_node_events);
688}
689
690static void o2hb_shutdown_slot(struct o2hb_disk_slot *slot)
691{
692 struct o2hb_node_event event =
693 { .hn_item = LIST_HEAD_INIT(event.hn_item), };
694 struct o2nm_node *node;
Joyce6f8648e2013-09-11 14:20:03 -0700695 int queued = 0;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800696
697 node = o2nm_get_node_by_num(slot->ds_node_num);
698 if (!node)
699 return;
700
701 spin_lock(&o2hb_live_lock);
702 if (!list_empty(&slot->ds_live_item)) {
703 mlog(ML_HEARTBEAT, "Shutdown, node %d leaves region\n",
704 slot->ds_node_num);
705
706 list_del_init(&slot->ds_live_item);
707
708 if (list_empty(&o2hb_live_slots[slot->ds_node_num])) {
709 clear_bit(slot->ds_node_num, o2hb_live_node_bitmap);
710
711 o2hb_queue_node_event(&event, O2HB_NODE_DOWN_CB, node,
712 slot->ds_node_num);
Joyce6f8648e2013-09-11 14:20:03 -0700713 queued = 1;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800714 }
715 }
716 spin_unlock(&o2hb_live_lock);
717
Joyce6f8648e2013-09-11 14:20:03 -0700718 if (queued)
719 o2hb_run_event_list(&event);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800720
721 o2nm_node_put(node);
722}
723
Sunil Mushrand2eece32011-07-24 10:21:54 -0700724static void o2hb_set_quorum_device(struct o2hb_region *reg)
Sunil Mushran43182d22010-10-06 17:55:16 -0700725{
Sunil Mushran43182d22010-10-06 17:55:16 -0700726 if (!o2hb_global_heartbeat_active())
727 return;
728
Sunil Mushrand2eece32011-07-24 10:21:54 -0700729 /* Prevent race with o2hb_heartbeat_group_drop_item() */
730 if (kthread_should_stop())
Sunil Mushran43182d22010-10-06 17:55:16 -0700731 return;
732
Sunil Mushrand2eece32011-07-24 10:21:54 -0700733 /* Tag region as quorum only after thread reaches steady state */
734 if (atomic_read(&reg->hr_steady_iterations) != 0)
735 return;
736
737 spin_lock(&o2hb_live_lock);
738
739 if (test_bit(reg->hr_region_num, o2hb_quorum_region_bitmap))
740 goto unlock;
741
Sunil Mushran43182d22010-10-06 17:55:16 -0700742 /*
743 * A region can be added to the quorum only when it sees all
744 * live nodes heartbeat on it. In other words, the region has been
745 * added to all nodes.
746 */
747 if (memcmp(reg->hr_live_node_bitmap, o2hb_live_node_bitmap,
748 sizeof(o2hb_live_node_bitmap)))
Sunil Mushrand2eece32011-07-24 10:21:54 -0700749 goto unlock;
Sunil Mushran43182d22010-10-06 17:55:16 -0700750
Sunil Mushrand2eece32011-07-24 10:21:54 -0700751 printk(KERN_NOTICE "o2hb: Region %s (%s) is now a quorum device\n",
752 config_item_name(&reg->hr_item), reg->hr_dev_name);
Sunil Mushran43182d22010-10-06 17:55:16 -0700753
754 set_bit(reg->hr_region_num, o2hb_quorum_region_bitmap);
Sunil Mushran58a31582010-12-14 14:14:29 -0800755
756 /*
757 * If global heartbeat active, unpin all regions if the
758 * region count > CUT_OFF
759 */
Akinobu Mitaa8f70de2013-11-12 15:06:58 -0800760 if (bitmap_weight(o2hb_quorum_region_bitmap,
Sunil Mushran58a31582010-12-14 14:14:29 -0800761 O2NM_MAX_REGIONS) > O2HB_PIN_CUT_OFF)
762 o2hb_region_unpin(NULL);
Sunil Mushrand2eece32011-07-24 10:21:54 -0700763unlock:
764 spin_unlock(&o2hb_live_lock);
Sunil Mushran43182d22010-10-06 17:55:16 -0700765}
766
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800767static int o2hb_check_slot(struct o2hb_region *reg,
768 struct o2hb_disk_slot *slot)
769{
770 int changed = 0, gen_changed = 0;
771 struct o2hb_node_event event =
772 { .hn_item = LIST_HEAD_INIT(event.hn_item), };
773 struct o2nm_node *node;
774 struct o2hb_disk_heartbeat_block *hb_block = reg->hr_tmp_block;
775 u64 cputime;
Mark Fasheh0db638f2006-05-09 15:09:35 -0700776 unsigned int dead_ms = o2hb_dead_threshold * O2HB_REGION_TIMEOUT_MS;
777 unsigned int slot_dead_ms;
Sunil Mushran0e105d32010-10-07 17:00:16 -0700778 int tmp;
Joyce6f8648e2013-09-11 14:20:03 -0700779 int queued = 0;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800780
781 memcpy(hb_block, slot->ds_raw_block, reg->hr_block_bytes);
782
Sunil Mushran0e105d32010-10-07 17:00:16 -0700783 /*
784 * If a node is no longer configured but is still in the livemap, we
785 * may need to clear that bit from the livemap.
786 */
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800787 node = o2nm_get_node_by_num(slot->ds_node_num);
Sunil Mushran0e105d32010-10-07 17:00:16 -0700788 if (!node) {
789 spin_lock(&o2hb_live_lock);
790 tmp = test_bit(slot->ds_node_num, o2hb_live_node_bitmap);
791 spin_unlock(&o2hb_live_lock);
792 if (!tmp)
793 return 0;
794 }
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800795
796 if (!o2hb_verify_crc(reg, hb_block)) {
797 /* all paths from here will drop o2hb_live_lock for
798 * us. */
799 spin_lock(&o2hb_live_lock);
800
801 /* Don't print an error on the console in this case -
802 * a freshly formatted heartbeat area will not have a
803 * crc set on it. */
804 if (list_empty(&slot->ds_live_item))
805 goto out;
806
807 /* The node is live but pushed out a bad crc. We
808 * consider it a transient miss but don't populate any
809 * other values as they may be junk. */
810 mlog(ML_ERROR, "Node %d has written a bad crc to %s\n",
811 slot->ds_node_num, reg->hr_dev_name);
812 o2hb_dump_slot(hb_block);
813
814 slot->ds_equal_samples++;
815 goto fire_callbacks;
816 }
817
818 /* we don't care if these wrap.. the state transitions below
819 * clear at the right places */
820 cputime = le64_to_cpu(hb_block->hb_seq);
821 if (slot->ds_last_time != cputime)
822 slot->ds_changed_samples++;
823 else
824 slot->ds_equal_samples++;
825 slot->ds_last_time = cputime;
826
827 /* The node changed heartbeat generations. We assume this to
828 * mean it dropped off but came back before we timed out. We
829 * want to consider it down for the time being but don't want
830 * to lose any changed_samples state we might build up to
831 * considering it live again. */
832 if (slot->ds_last_generation != le64_to_cpu(hb_block->hb_generation)) {
833 gen_changed = 1;
834 slot->ds_equal_samples = 0;
Mark Fasheh70bacbd2006-03-02 11:10:05 -0800835 mlog(ML_HEARTBEAT, "Node %d changed generation (0x%llx "
836 "to 0x%llx)\n", slot->ds_node_num,
837 (long long)slot->ds_last_generation,
838 (long long)le64_to_cpu(hb_block->hb_generation));
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800839 }
840
841 slot->ds_last_generation = le64_to_cpu(hb_block->hb_generation);
842
Mark Fasheh70bacbd2006-03-02 11:10:05 -0800843 mlog(ML_HEARTBEAT, "Slot %d gen 0x%llx cksum 0x%x "
844 "seq %llu last %llu changed %u equal %u\n",
845 slot->ds_node_num, (long long)slot->ds_last_generation,
846 le32_to_cpu(hb_block->hb_cksum),
Sunil Mushran2bd63212010-01-25 16:57:38 -0800847 (unsigned long long)le64_to_cpu(hb_block->hb_seq),
Mark Fasheh70bacbd2006-03-02 11:10:05 -0800848 (unsigned long long)slot->ds_last_time, slot->ds_changed_samples,
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800849 slot->ds_equal_samples);
850
851 spin_lock(&o2hb_live_lock);
852
853fire_callbacks:
854 /* dead nodes only come to life after some number of
855 * changes at any time during their dead time */
856 if (list_empty(&slot->ds_live_item) &&
857 slot->ds_changed_samples >= O2HB_LIVE_THRESHOLD) {
Mark Fasheh70bacbd2006-03-02 11:10:05 -0800858 mlog(ML_HEARTBEAT, "Node %d (id 0x%llx) joined my region\n",
859 slot->ds_node_num, (long long)slot->ds_last_generation);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800860
Sunil Mushran823a6372010-10-06 17:55:21 -0700861 set_bit(slot->ds_node_num, reg->hr_live_node_bitmap);
862
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800863 /* first on the list generates a callback */
864 if (list_empty(&o2hb_live_slots[slot->ds_node_num])) {
Sunil Mushrand6aa1c72010-10-06 18:50:50 -0700865 mlog(ML_HEARTBEAT, "o2hb: Add node %d to live nodes "
866 "bitmap\n", slot->ds_node_num);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800867 set_bit(slot->ds_node_num, o2hb_live_node_bitmap);
868
869 o2hb_queue_node_event(&event, O2HB_NODE_UP_CB, node,
870 slot->ds_node_num);
871
872 changed = 1;
Joyce6f8648e2013-09-11 14:20:03 -0700873 queued = 1;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800874 }
875
876 list_add_tail(&slot->ds_live_item,
877 &o2hb_live_slots[slot->ds_node_num]);
878
879 slot->ds_equal_samples = 0;
Mark Fasheh0db638f2006-05-09 15:09:35 -0700880
881 /* We want to be sure that all nodes agree on the
882 * number of milliseconds before a node will be
883 * considered dead. The self-fencing timeout is
884 * computed from this value, and a discrepancy might
885 * result in heartbeat calling a node dead when it
886 * hasn't self-fenced yet. */
887 slot_dead_ms = le32_to_cpu(hb_block->hb_dead_ms);
888 if (slot_dead_ms && slot_dead_ms != dead_ms) {
889 /* TODO: Perhaps we can fail the region here. */
890 mlog(ML_ERROR, "Node %d on device %s has a dead count "
891 "of %u ms, but our count is %u ms.\n"
892 "Please double check your configuration values "
893 "for 'O2CB_HEARTBEAT_THRESHOLD'\n",
894 slot->ds_node_num, reg->hr_dev_name, slot_dead_ms,
895 dead_ms);
896 }
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800897 goto out;
898 }
899
900 /* if the list is dead, we're done.. */
901 if (list_empty(&slot->ds_live_item))
902 goto out;
903
904 /* live nodes only go dead after enough consequtive missed
905 * samples.. reset the missed counter whenever we see
906 * activity */
907 if (slot->ds_equal_samples >= o2hb_dead_threshold || gen_changed) {
908 mlog(ML_HEARTBEAT, "Node %d left my region\n",
909 slot->ds_node_num);
910
Sunil Mushran823a6372010-10-06 17:55:21 -0700911 clear_bit(slot->ds_node_num, reg->hr_live_node_bitmap);
912
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800913 /* last off the live_slot generates a callback */
914 list_del_init(&slot->ds_live_item);
915 if (list_empty(&o2hb_live_slots[slot->ds_node_num])) {
Sunil Mushrand6aa1c72010-10-06 18:50:50 -0700916 mlog(ML_HEARTBEAT, "o2hb: Remove node %d from live "
917 "nodes bitmap\n", slot->ds_node_num);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800918 clear_bit(slot->ds_node_num, o2hb_live_node_bitmap);
919
Sunil Mushran0e105d32010-10-07 17:00:16 -0700920 /* node can be null */
921 o2hb_queue_node_event(&event, O2HB_NODE_DOWN_CB,
922 node, slot->ds_node_num);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800923
924 changed = 1;
Joyce6f8648e2013-09-11 14:20:03 -0700925 queued = 1;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800926 }
927
928 /* We don't clear this because the node is still
929 * actually writing new blocks. */
930 if (!gen_changed)
931 slot->ds_changed_samples = 0;
932 goto out;
933 }
934 if (slot->ds_changed_samples) {
935 slot->ds_changed_samples = 0;
936 slot->ds_equal_samples = 0;
937 }
938out:
939 spin_unlock(&o2hb_live_lock);
940
Joyce6f8648e2013-09-11 14:20:03 -0700941 if (queued)
942 o2hb_run_event_list(&event);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800943
Sunil Mushran0e105d32010-10-07 17:00:16 -0700944 if (node)
945 o2nm_node_put(node);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800946 return changed;
947}
948
Akinobu Mita518df6b2013-11-12 15:07:01 -0800949static int o2hb_highest_node(unsigned long *nodes, int numbits)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800950{
Akinobu Mita518df6b2013-11-12 15:07:01 -0800951 return find_last_bit(nodes, numbits);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800952}
953
Mark Fasheha9e2ae32006-03-24 14:20:17 -0800954static int o2hb_do_disk_heartbeat(struct o2hb_region *reg)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800955{
Sunil Mushrand2eece32011-07-24 10:21:54 -0700956 int i, ret, highest_node;
957 int membership_change = 0, own_slot_ok = 0;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800958 unsigned long configured_nodes[BITS_TO_LONGS(O2NM_MAX_NODES)];
Sunil Mushran0e105d32010-10-07 17:00:16 -0700959 unsigned long live_node_bitmap[BITS_TO_LONGS(O2NM_MAX_NODES)];
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800960 struct o2hb_bio_wait_ctxt write_wc;
961
Mark Fasheha9e2ae32006-03-24 14:20:17 -0800962 ret = o2nm_configured_node_map(configured_nodes,
963 sizeof(configured_nodes));
964 if (ret) {
965 mlog_errno(ret);
Sunil Mushrand2eece32011-07-24 10:21:54 -0700966 goto bail;
Mark Fasheha9e2ae32006-03-24 14:20:17 -0800967 }
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800968
Sunil Mushran0e105d32010-10-07 17:00:16 -0700969 /*
970 * If a node is not configured but is in the livemap, we still need
971 * to read the slot so as to be able to remove it from the livemap.
972 */
973 o2hb_fill_node_map(live_node_bitmap, sizeof(live_node_bitmap));
974 i = -1;
975 while ((i = find_next_bit(live_node_bitmap,
976 O2NM_MAX_NODES, i + 1)) < O2NM_MAX_NODES) {
977 set_bit(i, configured_nodes);
978 }
979
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800980 highest_node = o2hb_highest_node(configured_nodes, O2NM_MAX_NODES);
981 if (highest_node >= O2NM_MAX_NODES) {
Sunil Mushrand2eece32011-07-24 10:21:54 -0700982 mlog(ML_NOTICE, "o2hb: No configured nodes found!\n");
983 ret = -EINVAL;
984 goto bail;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800985 }
986
987 /* No sense in reading the slots of nodes that don't exist
988 * yet. Of course, if the node definitions have holes in them
989 * then we're reading an empty slot anyway... Consider this
990 * best-effort. */
991 ret = o2hb_read_slots(reg, highest_node + 1);
992 if (ret < 0) {
993 mlog_errno(ret);
Sunil Mushrand2eece32011-07-24 10:21:54 -0700994 goto bail;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800995 }
996
997 /* With an up to date view of the slots, we can check that no
998 * other node has been improperly configured to heartbeat in
999 * our slot. */
Sunil Mushrand2eece32011-07-24 10:21:54 -07001000 own_slot_ok = o2hb_check_own_slot(reg);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001001
1002 /* fill in the proper info for our next heartbeat */
1003 o2hb_prepare_block(reg, reg->hr_generation);
1004
Philipp Reisnerb5592922007-01-11 10:58:10 +01001005 ret = o2hb_issue_node_write(reg, &write_wc);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001006 if (ret < 0) {
1007 mlog_errno(ret);
Sunil Mushrand2eece32011-07-24 10:21:54 -07001008 goto bail;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001009 }
1010
1011 i = -1;
Sunil Mushran33c12a52011-05-04 10:28:01 -07001012 while((i = find_next_bit(configured_nodes,
1013 O2NM_MAX_NODES, i + 1)) < O2NM_MAX_NODES) {
Sunil Mushrand2eece32011-07-24 10:21:54 -07001014 membership_change |= o2hb_check_slot(reg, &reg->hr_slots[i]);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001015 }
1016
1017 /*
1018 * We have to be sure we've advertised ourselves on disk
1019 * before we can go to steady state. This ensures that
1020 * people we find in our steady state have seen us.
1021 */
1022 o2hb_wait_on_io(reg, &write_wc);
Mark Fasheha9e2ae32006-03-24 14:20:17 -08001023 if (write_wc.wc_error) {
1024 /* Do not re-arm the write timeout on I/O error - we
1025 * can't be sure that the new block ever made it to
1026 * disk */
1027 mlog(ML_ERROR, "Write error %d on device \"%s\"\n",
1028 write_wc.wc_error, reg->hr_dev_name);
Sunil Mushrand2eece32011-07-24 10:21:54 -07001029 ret = write_wc.wc_error;
1030 goto bail;
Mark Fasheha9e2ae32006-03-24 14:20:17 -08001031 }
1032
Sunil Mushrand2eece32011-07-24 10:21:54 -07001033 /* Skip disarming the timeout if own slot has stale/bad data */
1034 if (own_slot_ok) {
1035 o2hb_set_quorum_device(reg);
1036 o2hb_arm_write_timeout(reg);
1037 }
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001038
Sunil Mushrand2eece32011-07-24 10:21:54 -07001039bail:
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001040 /* let the person who launched us know when things are steady */
Sunil Mushrand2eece32011-07-24 10:21:54 -07001041 if (atomic_read(&reg->hr_steady_iterations) != 0) {
1042 if (!ret && own_slot_ok && !membership_change) {
1043 if (atomic_dec_and_test(&reg->hr_steady_iterations))
1044 wake_up(&o2hb_steady_queue);
1045 }
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001046 }
Mark Fasheha9e2ae32006-03-24 14:20:17 -08001047
Sunil Mushrand2eece32011-07-24 10:21:54 -07001048 if (atomic_read(&reg->hr_steady_iterations) != 0) {
1049 if (atomic_dec_and_test(&reg->hr_unsteady_iterations)) {
1050 printk(KERN_NOTICE "o2hb: Unable to stabilize "
1051 "heartbeart on region %s (%s)\n",
1052 config_item_name(&reg->hr_item),
1053 reg->hr_dev_name);
1054 atomic_set(&reg->hr_steady_iterations, 0);
1055 reg->hr_aborted_start = 1;
1056 wake_up(&o2hb_steady_queue);
1057 ret = -EIO;
1058 }
1059 }
1060
1061 return ret;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001062}
1063
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001064/*
1065 * we ride the region ref that the region dir holds. before the region
1066 * dir is removed and drops it ref it will wait to tear down this
1067 * thread.
1068 */
1069static int o2hb_thread(void *data)
1070{
1071 int i, ret;
1072 struct o2hb_region *reg = data;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001073 struct o2hb_bio_wait_ctxt write_wc;
Tina Ruchandani40476b82015-09-04 15:44:43 -07001074 ktime_t before_hb, after_hb;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001075 unsigned int elapsed_msec;
1076
1077 mlog(ML_HEARTBEAT|ML_KTHREAD, "hb thread running\n");
1078
Dongsheng Yang8698a742014-03-11 18:09:12 +08001079 set_user_nice(current, MIN_NICE);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001080
Sunil Mushrancfc069d2010-12-14 14:14:31 -08001081 /* Pin node */
Joseph Qi0986fe9b2015-11-05 18:44:07 -08001082 ret = o2nm_depend_this_node();
1083 if (ret) {
1084 mlog(ML_ERROR, "Node has been deleted, ret = %d\n", ret);
1085 reg->hr_node_deleted = 1;
1086 wake_up(&o2hb_steady_queue);
1087 return 0;
1088 }
Sunil Mushrancfc069d2010-12-14 14:14:31 -08001089
Sunil Mushrand2eece32011-07-24 10:21:54 -07001090 while (!kthread_should_stop() &&
1091 !reg->hr_unclean_stop && !reg->hr_aborted_start) {
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001092 /* We track the time spent inside
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02001093 * o2hb_do_disk_heartbeat so that we avoid more than
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001094 * hr_timeout_ms between disk writes. On busy systems
1095 * this should result in a heartbeat which is less
1096 * likely to time itself out. */
Tina Ruchandani40476b82015-09-04 15:44:43 -07001097 before_hb = ktime_get_real();
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001098
Sunil Mushrand2eece32011-07-24 10:21:54 -07001099 ret = o2hb_do_disk_heartbeat(reg);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001100
Tina Ruchandani40476b82015-09-04 15:44:43 -07001101 after_hb = ktime_get_real();
1102
1103 elapsed_msec = (unsigned int)
1104 ktime_ms_delta(after_hb, before_hb);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001105
Tao Mab31d3082009-12-22 10:32:15 +08001106 mlog(ML_HEARTBEAT,
Tina Ruchandani40476b82015-09-04 15:44:43 -07001107 "start = %lld, end = %lld, msec = %u, ret = %d\n",
1108 before_hb.tv64, after_hb.tv64, elapsed_msec, ret);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001109
Sunil Mushrand2eece32011-07-24 10:21:54 -07001110 if (!kthread_should_stop() &&
1111 elapsed_msec < reg->hr_timeout_ms) {
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001112 /* the kthread api has blocked signals for us so no
1113 * need to record the return value. */
1114 msleep_interruptible(reg->hr_timeout_ms - elapsed_msec);
1115 }
1116 }
1117
1118 o2hb_disarm_write_timeout(reg);
1119
1120 /* unclean stop is only used in very bad situation */
1121 for(i = 0; !reg->hr_unclean_stop && i < reg->hr_blocks; i++)
1122 o2hb_shutdown_slot(&reg->hr_slots[i]);
1123
1124 /* Explicit down notification - avoid forcing the other nodes
1125 * to timeout on this region when we could just as easily
1126 * write a clear generation - thus indicating to them that
1127 * this node has left this region.
Sunil Mushrand2eece32011-07-24 10:21:54 -07001128 */
1129 if (!reg->hr_unclean_stop && !reg->hr_aborted_start) {
1130 o2hb_prepare_block(reg, 0);
1131 ret = o2hb_issue_node_write(reg, &write_wc);
1132 if (ret == 0)
1133 o2hb_wait_on_io(reg, &write_wc);
1134 else
1135 mlog_errno(ret);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001136 }
1137
Sunil Mushrancfc069d2010-12-14 14:14:31 -08001138 /* Unpin node */
1139 o2nm_undepend_this_node();
1140
Sunil Mushrand2eece32011-07-24 10:21:54 -07001141 mlog(ML_HEARTBEAT|ML_KTHREAD, "o2hb thread exiting\n");
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001142
1143 return 0;
1144}
1145
Sunil Mushran87d3d3f2008-12-17 14:17:42 -08001146#ifdef CONFIG_DEBUG_FS
1147static int o2hb_debug_open(struct inode *inode, struct file *file)
1148{
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001149 struct o2hb_debug_buf *db = inode->i_private;
Sunil Mushran1f285302010-10-06 17:55:12 -07001150 struct o2hb_region *reg;
Sunil Mushran87d3d3f2008-12-17 14:17:42 -08001151 unsigned long map[BITS_TO_LONGS(O2NM_MAX_NODES)];
Sunil Mushranbb570a52011-07-24 10:31:54 -07001152 unsigned long lts;
Sunil Mushran87d3d3f2008-12-17 14:17:42 -08001153 char *buf = NULL;
1154 int i = -1;
1155 int out = 0;
1156
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001157 /* max_nodes should be the largest bitmap we pass here */
1158 BUG_ON(sizeof(map) < db->db_size);
1159
Sunil Mushran87d3d3f2008-12-17 14:17:42 -08001160 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
1161 if (!buf)
1162 goto bail;
1163
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001164 switch (db->db_type) {
1165 case O2HB_DB_TYPE_LIVENODES:
Sunil Mushrana6de0132010-10-06 17:55:13 -07001166 case O2HB_DB_TYPE_LIVEREGIONS:
1167 case O2HB_DB_TYPE_QUORUMREGIONS:
1168 case O2HB_DB_TYPE_FAILEDREGIONS:
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001169 spin_lock(&o2hb_live_lock);
1170 memcpy(map, db->db_data, db->db_size);
1171 spin_unlock(&o2hb_live_lock);
1172 break;
Sunil Mushran87d3d3f2008-12-17 14:17:42 -08001173
Sunil Mushran1f285302010-10-06 17:55:12 -07001174 case O2HB_DB_TYPE_REGION_LIVENODES:
1175 spin_lock(&o2hb_live_lock);
1176 reg = (struct o2hb_region *)db->db_data;
1177 memcpy(map, reg->hr_live_node_bitmap, db->db_size);
1178 spin_unlock(&o2hb_live_lock);
1179 break;
1180
1181 case O2HB_DB_TYPE_REGION_NUMBER:
1182 reg = (struct o2hb_region *)db->db_data;
1183 out += snprintf(buf + out, PAGE_SIZE - out, "%d\n",
1184 reg->hr_region_num);
1185 goto done;
1186
Sunil Mushran43695d02010-10-06 17:55:09 -07001187 case O2HB_DB_TYPE_REGION_ELAPSED_TIME:
1188 reg = (struct o2hb_region *)db->db_data;
Sunil Mushranbb570a52011-07-24 10:31:54 -07001189 lts = reg->hr_last_timeout_start;
1190 /* If 0, it has never been set before */
1191 if (lts)
1192 lts = jiffies_to_msecs(jiffies - lts);
1193 out += snprintf(buf + out, PAGE_SIZE - out, "%lu\n", lts);
Sunil Mushran43695d02010-10-06 17:55:09 -07001194 goto done;
1195
Sunil Mushrancb0586b2010-12-14 14:14:30 -08001196 case O2HB_DB_TYPE_REGION_PINNED:
1197 reg = (struct o2hb_region *)db->db_data;
1198 out += snprintf(buf + out, PAGE_SIZE - out, "%u\n",
1199 !!reg->hr_item_pinned);
1200 goto done;
1201
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001202 default:
1203 goto done;
1204 }
1205
1206 while ((i = find_next_bit(map, db->db_len, i + 1)) < db->db_len)
Sunil Mushran87d3d3f2008-12-17 14:17:42 -08001207 out += snprintf(buf + out, PAGE_SIZE - out, "%d ", i);
1208 out += snprintf(buf + out, PAGE_SIZE - out, "\n");
1209
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001210done:
Sunil Mushran87d3d3f2008-12-17 14:17:42 -08001211 i_size_write(inode, out);
1212
1213 file->private_data = buf;
1214
1215 return 0;
1216bail:
1217 return -ENOMEM;
1218}
1219
1220static int o2hb_debug_release(struct inode *inode, struct file *file)
1221{
1222 kfree(file->private_data);
1223 return 0;
1224}
1225
1226static ssize_t o2hb_debug_read(struct file *file, char __user *buf,
1227 size_t nbytes, loff_t *ppos)
1228{
1229 return simple_read_from_buffer(buf, nbytes, ppos, file->private_data,
1230 i_size_read(file->f_mapping->host));
1231}
1232#else
1233static int o2hb_debug_open(struct inode *inode, struct file *file)
1234{
1235 return 0;
1236}
1237static int o2hb_debug_release(struct inode *inode, struct file *file)
1238{
1239 return 0;
1240}
1241static ssize_t o2hb_debug_read(struct file *file, char __user *buf,
1242 size_t nbytes, loff_t *ppos)
1243{
1244 return 0;
1245}
1246#endif /* CONFIG_DEBUG_FS */
1247
Alexey Dobriyan828c0952009-10-01 15:43:56 -07001248static const struct file_operations o2hb_debug_fops = {
Sunil Mushran87d3d3f2008-12-17 14:17:42 -08001249 .open = o2hb_debug_open,
1250 .release = o2hb_debug_release,
1251 .read = o2hb_debug_read,
1252 .llseek = generic_file_llseek,
1253};
1254
1255void o2hb_exit(void)
1256{
Sunil Mushrana6de0132010-10-06 17:55:13 -07001257 debugfs_remove(o2hb_debug_failedregions);
1258 debugfs_remove(o2hb_debug_quorumregions);
1259 debugfs_remove(o2hb_debug_liveregions);
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001260 debugfs_remove(o2hb_debug_livenodes);
1261 debugfs_remove(o2hb_debug_dir);
Joseph Qia4a1dfa2016-02-02 16:57:21 -08001262 kfree(o2hb_db_livenodes);
1263 kfree(o2hb_db_liveregions);
1264 kfree(o2hb_db_quorumregions);
1265 kfree(o2hb_db_failedregions);
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001266}
1267
1268static struct dentry *o2hb_debug_create(const char *name, struct dentry *dir,
1269 struct o2hb_debug_buf **db, int db_len,
1270 int type, int size, int len, void *data)
1271{
1272 *db = kmalloc(db_len, GFP_KERNEL);
1273 if (!*db)
1274 return NULL;
1275
1276 (*db)->db_type = type;
1277 (*db)->db_size = size;
1278 (*db)->db_len = len;
1279 (*db)->db_data = data;
1280
1281 return debugfs_create_file(name, S_IFREG|S_IRUSR, dir, *db,
1282 &o2hb_debug_fops);
1283}
1284
1285static int o2hb_debug_init(void)
1286{
1287 int ret = -ENOMEM;
1288
1289 o2hb_debug_dir = debugfs_create_dir(O2HB_DEBUG_DIR, NULL);
Linus Torvalds8f443e22015-04-21 09:17:28 -07001290 if (!o2hb_debug_dir) {
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001291 mlog_errno(ret);
1292 goto bail;
1293 }
1294
1295 o2hb_debug_livenodes = o2hb_debug_create(O2HB_DEBUG_LIVENODES,
1296 o2hb_debug_dir,
1297 &o2hb_db_livenodes,
1298 sizeof(*o2hb_db_livenodes),
1299 O2HB_DB_TYPE_LIVENODES,
1300 sizeof(o2hb_live_node_bitmap),
1301 O2NM_MAX_NODES,
1302 o2hb_live_node_bitmap);
Linus Torvalds8f443e22015-04-21 09:17:28 -07001303 if (!o2hb_debug_livenodes) {
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001304 mlog_errno(ret);
1305 goto bail;
1306 }
Sunil Mushrana6de0132010-10-06 17:55:13 -07001307
1308 o2hb_debug_liveregions = o2hb_debug_create(O2HB_DEBUG_LIVEREGIONS,
1309 o2hb_debug_dir,
1310 &o2hb_db_liveregions,
1311 sizeof(*o2hb_db_liveregions),
1312 O2HB_DB_TYPE_LIVEREGIONS,
1313 sizeof(o2hb_live_region_bitmap),
1314 O2NM_MAX_REGIONS,
1315 o2hb_live_region_bitmap);
Linus Torvalds8f443e22015-04-21 09:17:28 -07001316 if (!o2hb_debug_liveregions) {
Sunil Mushrana6de0132010-10-06 17:55:13 -07001317 mlog_errno(ret);
1318 goto bail;
1319 }
1320
1321 o2hb_debug_quorumregions =
1322 o2hb_debug_create(O2HB_DEBUG_QUORUMREGIONS,
1323 o2hb_debug_dir,
1324 &o2hb_db_quorumregions,
1325 sizeof(*o2hb_db_quorumregions),
1326 O2HB_DB_TYPE_QUORUMREGIONS,
1327 sizeof(o2hb_quorum_region_bitmap),
1328 O2NM_MAX_REGIONS,
1329 o2hb_quorum_region_bitmap);
Linus Torvalds8f443e22015-04-21 09:17:28 -07001330 if (!o2hb_debug_quorumregions) {
Sunil Mushrana6de0132010-10-06 17:55:13 -07001331 mlog_errno(ret);
1332 goto bail;
1333 }
1334
1335 o2hb_debug_failedregions =
1336 o2hb_debug_create(O2HB_DEBUG_FAILEDREGIONS,
1337 o2hb_debug_dir,
1338 &o2hb_db_failedregions,
1339 sizeof(*o2hb_db_failedregions),
1340 O2HB_DB_TYPE_FAILEDREGIONS,
1341 sizeof(o2hb_failed_region_bitmap),
1342 O2NM_MAX_REGIONS,
1343 o2hb_failed_region_bitmap);
Linus Torvalds8f443e22015-04-21 09:17:28 -07001344 if (!o2hb_debug_failedregions) {
Sunil Mushrana6de0132010-10-06 17:55:13 -07001345 mlog_errno(ret);
1346 goto bail;
1347 }
1348
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001349 ret = 0;
1350bail:
1351 if (ret)
1352 o2hb_exit();
1353
1354 return ret;
Sunil Mushran87d3d3f2008-12-17 14:17:42 -08001355}
1356
1357int o2hb_init(void)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001358{
1359 int i;
1360
1361 for (i = 0; i < ARRAY_SIZE(o2hb_callbacks); i++)
1362 INIT_LIST_HEAD(&o2hb_callbacks[i].list);
1363
1364 for (i = 0; i < ARRAY_SIZE(o2hb_live_slots); i++)
1365 INIT_LIST_HEAD(&o2hb_live_slots[i]);
1366
1367 INIT_LIST_HEAD(&o2hb_node_events);
1368
1369 memset(o2hb_live_node_bitmap, 0, sizeof(o2hb_live_node_bitmap));
Sunil Mushran536f0742010-10-07 17:03:07 -07001370 memset(o2hb_region_bitmap, 0, sizeof(o2hb_region_bitmap));
Sunil Mushrane7d656b2010-10-06 17:55:18 -07001371 memset(o2hb_live_region_bitmap, 0, sizeof(o2hb_live_region_bitmap));
Sunil Mushran43182d22010-10-06 17:55:16 -07001372 memset(o2hb_quorum_region_bitmap, 0, sizeof(o2hb_quorum_region_bitmap));
Sunil Mushranb1c5ebf2010-10-07 17:05:52 -07001373 memset(o2hb_failed_region_bitmap, 0, sizeof(o2hb_failed_region_bitmap));
Sunil Mushran87d3d3f2008-12-17 14:17:42 -08001374
Sunil Mushran58a31582010-12-14 14:14:29 -08001375 o2hb_dependent_users = 0;
1376
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001377 return o2hb_debug_init();
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001378}
1379
1380/* if we're already in a callback then we're already serialized by the sem */
1381static void o2hb_fill_node_map_from_callback(unsigned long *map,
1382 unsigned bytes)
1383{
1384 BUG_ON(bytes < (BITS_TO_LONGS(O2NM_MAX_NODES) * sizeof(unsigned long)));
1385
1386 memcpy(map, &o2hb_live_node_bitmap, bytes);
1387}
1388
1389/*
1390 * get a map of all nodes that are heartbeating in any regions
1391 */
1392void o2hb_fill_node_map(unsigned long *map, unsigned bytes)
1393{
1394 /* callers want to serialize this map and callbacks so that they
1395 * can trust that they don't miss nodes coming to the party */
1396 down_read(&o2hb_callback_sem);
1397 spin_lock(&o2hb_live_lock);
1398 o2hb_fill_node_map_from_callback(map, bytes);
1399 spin_unlock(&o2hb_live_lock);
1400 up_read(&o2hb_callback_sem);
1401}
1402EXPORT_SYMBOL_GPL(o2hb_fill_node_map);
1403
1404/*
1405 * heartbeat configfs bits. The heartbeat set is a default set under
1406 * the cluster set in nodemanager.c.
1407 */
1408
1409static struct o2hb_region *to_o2hb_region(struct config_item *item)
1410{
1411 return item ? container_of(item, struct o2hb_region, hr_item) : NULL;
1412}
1413
1414/* drop_item only drops its ref after killing the thread, nothing should
1415 * be using the region anymore. this has to clean up any state that
1416 * attributes might have built up. */
1417static void o2hb_region_release(struct config_item *item)
1418{
1419 int i;
1420 struct page *page;
1421 struct o2hb_region *reg = to_o2hb_region(item);
1422
Sunil Mushrand2eece32011-07-24 10:21:54 -07001423 mlog(ML_HEARTBEAT, "hb region release (%s)\n", reg->hr_dev_name);
1424
Tim Gardnerd787ab02013-02-21 16:42:44 -08001425 kfree(reg->hr_tmp_block);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001426
1427 if (reg->hr_slot_data) {
1428 for (i = 0; i < reg->hr_num_pages; i++) {
1429 page = reg->hr_slot_data[i];
1430 if (page)
1431 __free_page(page);
1432 }
1433 kfree(reg->hr_slot_data);
1434 }
1435
1436 if (reg->hr_bdev)
Al Viro9a1c3542008-02-22 20:40:24 -05001437 blkdev_put(reg->hr_bdev, FMODE_READ|FMODE_WRITE);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001438
Tim Gardnerd787ab02013-02-21 16:42:44 -08001439 kfree(reg->hr_slots);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001440
Sunil Mushran1f285302010-10-06 17:55:12 -07001441 debugfs_remove(reg->hr_debug_livenodes);
1442 debugfs_remove(reg->hr_debug_regnum);
Sunil Mushrand4396ea2010-10-15 11:57:21 -07001443 debugfs_remove(reg->hr_debug_elapsed_time);
Sunil Mushrancb0586b2010-12-14 14:14:30 -08001444 debugfs_remove(reg->hr_debug_pinned);
Sunil Mushran1f285302010-10-06 17:55:12 -07001445 debugfs_remove(reg->hr_debug_dir);
Joseph Qia4a1dfa2016-02-02 16:57:21 -08001446 kfree(reg->hr_db_livenodes);
1447 kfree(reg->hr_db_regnum);
1448 kfree(reg->hr_debug_elapsed_time);
1449 kfree(reg->hr_debug_pinned);
Sunil Mushran1f285302010-10-06 17:55:12 -07001450
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001451 spin_lock(&o2hb_live_lock);
1452 list_del(&reg->hr_all_item);
1453 spin_unlock(&o2hb_live_lock);
1454
1455 kfree(reg);
1456}
1457
1458static int o2hb_read_block_input(struct o2hb_region *reg,
1459 const char *page,
1460 size_t count,
1461 unsigned long *ret_bytes,
1462 unsigned int *ret_bits)
1463{
1464 unsigned long bytes;
1465 char *p = (char *)page;
1466
1467 bytes = simple_strtoul(p, &p, 0);
1468 if (!p || (*p && (*p != '\n')))
1469 return -EINVAL;
1470
1471 /* Heartbeat and fs min / max block sizes are the same. */
1472 if (bytes > 4096 || bytes < 512)
1473 return -ERANGE;
1474 if (hweight16(bytes) != 1)
1475 return -EINVAL;
1476
1477 if (ret_bytes)
1478 *ret_bytes = bytes;
1479 if (ret_bits)
1480 *ret_bits = ffs(bytes) - 1;
1481
1482 return 0;
1483}
1484
Christoph Hellwig45b99772015-10-03 15:32:58 +02001485static ssize_t o2hb_region_block_bytes_show(struct config_item *item,
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001486 char *page)
1487{
Christoph Hellwig45b99772015-10-03 15:32:58 +02001488 return sprintf(page, "%u\n", to_o2hb_region(item)->hr_block_bytes);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001489}
1490
Christoph Hellwig45b99772015-10-03 15:32:58 +02001491static ssize_t o2hb_region_block_bytes_store(struct config_item *item,
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001492 const char *page,
1493 size_t count)
1494{
Christoph Hellwig45b99772015-10-03 15:32:58 +02001495 struct o2hb_region *reg = to_o2hb_region(item);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001496 int status;
1497 unsigned long block_bytes;
1498 unsigned int block_bits;
1499
1500 if (reg->hr_bdev)
1501 return -EINVAL;
1502
1503 status = o2hb_read_block_input(reg, page, count,
1504 &block_bytes, &block_bits);
1505 if (status)
1506 return status;
1507
1508 reg->hr_block_bytes = (unsigned int)block_bytes;
1509 reg->hr_block_bits = block_bits;
1510
1511 return count;
1512}
1513
Christoph Hellwig45b99772015-10-03 15:32:58 +02001514static ssize_t o2hb_region_start_block_show(struct config_item *item,
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001515 char *page)
1516{
Christoph Hellwig45b99772015-10-03 15:32:58 +02001517 return sprintf(page, "%llu\n", to_o2hb_region(item)->hr_start_block);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001518}
1519
Christoph Hellwig45b99772015-10-03 15:32:58 +02001520static ssize_t o2hb_region_start_block_store(struct config_item *item,
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001521 const char *page,
1522 size_t count)
1523{
Christoph Hellwig45b99772015-10-03 15:32:58 +02001524 struct o2hb_region *reg = to_o2hb_region(item);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001525 unsigned long long tmp;
1526 char *p = (char *)page;
1527
1528 if (reg->hr_bdev)
1529 return -EINVAL;
1530
1531 tmp = simple_strtoull(p, &p, 0);
1532 if (!p || (*p && (*p != '\n')))
1533 return -EINVAL;
1534
1535 reg->hr_start_block = tmp;
1536
1537 return count;
1538}
1539
Christoph Hellwig45b99772015-10-03 15:32:58 +02001540static ssize_t o2hb_region_blocks_show(struct config_item *item, char *page)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001541{
Christoph Hellwig45b99772015-10-03 15:32:58 +02001542 return sprintf(page, "%d\n", to_o2hb_region(item)->hr_blocks);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001543}
1544
Christoph Hellwig45b99772015-10-03 15:32:58 +02001545static ssize_t o2hb_region_blocks_store(struct config_item *item,
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001546 const char *page,
1547 size_t count)
1548{
Christoph Hellwig45b99772015-10-03 15:32:58 +02001549 struct o2hb_region *reg = to_o2hb_region(item);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001550 unsigned long tmp;
1551 char *p = (char *)page;
1552
1553 if (reg->hr_bdev)
1554 return -EINVAL;
1555
1556 tmp = simple_strtoul(p, &p, 0);
1557 if (!p || (*p && (*p != '\n')))
1558 return -EINVAL;
1559
1560 if (tmp > O2NM_MAX_NODES || tmp == 0)
1561 return -ERANGE;
1562
1563 reg->hr_blocks = (unsigned int)tmp;
1564
1565 return count;
1566}
1567
Christoph Hellwig45b99772015-10-03 15:32:58 +02001568static ssize_t o2hb_region_dev_show(struct config_item *item, char *page)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001569{
1570 unsigned int ret = 0;
1571
Christoph Hellwig45b99772015-10-03 15:32:58 +02001572 if (to_o2hb_region(item)->hr_bdev)
1573 ret = sprintf(page, "%s\n", to_o2hb_region(item)->hr_dev_name);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001574
1575 return ret;
1576}
1577
1578static void o2hb_init_region_params(struct o2hb_region *reg)
1579{
1580 reg->hr_slots_per_page = PAGE_CACHE_SIZE >> reg->hr_block_bits;
1581 reg->hr_timeout_ms = O2HB_REGION_TIMEOUT_MS;
1582
1583 mlog(ML_HEARTBEAT, "hr_start_block = %llu, hr_blocks = %u\n",
1584 reg->hr_start_block, reg->hr_blocks);
1585 mlog(ML_HEARTBEAT, "hr_block_bytes = %u, hr_block_bits = %u\n",
1586 reg->hr_block_bytes, reg->hr_block_bits);
1587 mlog(ML_HEARTBEAT, "hr_timeout_ms = %u\n", reg->hr_timeout_ms);
1588 mlog(ML_HEARTBEAT, "dead threshold = %u\n", o2hb_dead_threshold);
1589}
1590
1591static int o2hb_map_slot_data(struct o2hb_region *reg)
1592{
1593 int i, j;
1594 unsigned int last_slot;
1595 unsigned int spp = reg->hr_slots_per_page;
1596 struct page *page;
1597 char *raw;
1598 struct o2hb_disk_slot *slot;
1599
1600 reg->hr_tmp_block = kmalloc(reg->hr_block_bytes, GFP_KERNEL);
Christophe JAILLET372a4472015-09-04 15:43:46 -07001601 if (reg->hr_tmp_block == NULL)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001602 return -ENOMEM;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001603
1604 reg->hr_slots = kcalloc(reg->hr_blocks,
1605 sizeof(struct o2hb_disk_slot), GFP_KERNEL);
Christophe JAILLET372a4472015-09-04 15:43:46 -07001606 if (reg->hr_slots == NULL)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001607 return -ENOMEM;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001608
1609 for(i = 0; i < reg->hr_blocks; i++) {
1610 slot = &reg->hr_slots[i];
1611 slot->ds_node_num = i;
1612 INIT_LIST_HEAD(&slot->ds_live_item);
1613 slot->ds_raw_block = NULL;
1614 }
1615
1616 reg->hr_num_pages = (reg->hr_blocks + spp - 1) / spp;
1617 mlog(ML_HEARTBEAT, "Going to require %u pages to cover %u blocks "
1618 "at %u blocks per page\n",
1619 reg->hr_num_pages, reg->hr_blocks, spp);
1620
1621 reg->hr_slot_data = kcalloc(reg->hr_num_pages, sizeof(struct page *),
1622 GFP_KERNEL);
Christophe JAILLET372a4472015-09-04 15:43:46 -07001623 if (!reg->hr_slot_data)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001624 return -ENOMEM;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001625
1626 for(i = 0; i < reg->hr_num_pages; i++) {
1627 page = alloc_page(GFP_KERNEL);
Christophe JAILLET372a4472015-09-04 15:43:46 -07001628 if (!page)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001629 return -ENOMEM;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001630
1631 reg->hr_slot_data[i] = page;
1632
1633 last_slot = i * spp;
1634 raw = page_address(page);
1635 for (j = 0;
1636 (j < spp) && ((j + last_slot) < reg->hr_blocks);
1637 j++) {
1638 BUG_ON((j + last_slot) >= reg->hr_blocks);
1639
1640 slot = &reg->hr_slots[j + last_slot];
1641 slot->ds_raw_block =
1642 (struct o2hb_disk_heartbeat_block *) raw;
1643
1644 raw += reg->hr_block_bytes;
1645 }
1646 }
1647
1648 return 0;
1649}
1650
1651/* Read in all the slots available and populate the tracking
1652 * structures so that we can start with a baseline idea of what's
1653 * there. */
1654static int o2hb_populate_slot_data(struct o2hb_region *reg)
1655{
1656 int ret, i;
1657 struct o2hb_disk_slot *slot;
1658 struct o2hb_disk_heartbeat_block *hb_block;
1659
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001660 ret = o2hb_read_slots(reg, reg->hr_blocks);
Christophe JAILLET372a4472015-09-04 15:43:46 -07001661 if (ret)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001662 goto out;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001663
1664 /* We only want to get an idea of the values initially in each
1665 * slot, so we do no verification - o2hb_check_slot will
1666 * actually determine if each configured slot is valid and
1667 * whether any values have changed. */
1668 for(i = 0; i < reg->hr_blocks; i++) {
1669 slot = &reg->hr_slots[i];
1670 hb_block = (struct o2hb_disk_heartbeat_block *) slot->ds_raw_block;
1671
1672 /* Only fill the values that o2hb_check_slot uses to
1673 * determine changing slots */
1674 slot->ds_last_time = le64_to_cpu(hb_block->hb_seq);
1675 slot->ds_last_generation = le64_to_cpu(hb_block->hb_generation);
1676 }
1677
1678out:
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001679 return ret;
1680}
1681
1682/* this is acting as commit; we set up all of hr_bdev and hr_task or nothing */
Christoph Hellwig45b99772015-10-03 15:32:58 +02001683static ssize_t o2hb_region_dev_store(struct config_item *item,
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001684 const char *page,
1685 size_t count)
1686{
Christoph Hellwig45b99772015-10-03 15:32:58 +02001687 struct o2hb_region *reg = to_o2hb_region(item);
Joel Beckere6c352d2007-02-03 03:04:20 -08001688 struct task_struct *hb_task;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001689 long fd;
1690 int sectsize;
1691 char *p = (char *)page;
Al Viro2903ff02012-08-28 12:52:22 -04001692 struct fd f;
1693 struct inode *inode;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001694 ssize_t ret = -EINVAL;
Sunil Mushran76d9fc22011-05-04 10:28:00 -07001695 int live_threshold;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001696
1697 if (reg->hr_bdev)
1698 goto out;
1699
1700 /* We can't heartbeat without having had our node number
1701 * configured yet. */
1702 if (o2nm_this_node() == O2NM_MAX_NODES)
1703 goto out;
1704
1705 fd = simple_strtol(p, &p, 0);
1706 if (!p || (*p && (*p != '\n')))
1707 goto out;
1708
1709 if (fd < 0 || fd >= INT_MAX)
1710 goto out;
1711
Al Viro2903ff02012-08-28 12:52:22 -04001712 f = fdget(fd);
1713 if (f.file == NULL)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001714 goto out;
1715
1716 if (reg->hr_blocks == 0 || reg->hr_start_block == 0 ||
1717 reg->hr_block_bytes == 0)
Al Viro2903ff02012-08-28 12:52:22 -04001718 goto out2;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001719
Al Viro2903ff02012-08-28 12:52:22 -04001720 inode = igrab(f.file->f_mapping->host);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001721 if (inode == NULL)
Al Viro2903ff02012-08-28 12:52:22 -04001722 goto out2;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001723
1724 if (!S_ISBLK(inode->i_mode))
Al Viro2903ff02012-08-28 12:52:22 -04001725 goto out3;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001726
Al Viro2903ff02012-08-28 12:52:22 -04001727 reg->hr_bdev = I_BDEV(f.file->f_mapping->host);
Tejun Heoe525fd82010-11-13 11:55:17 +01001728 ret = blkdev_get(reg->hr_bdev, FMODE_WRITE | FMODE_READ, NULL);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001729 if (ret) {
1730 reg->hr_bdev = NULL;
Al Viro2903ff02012-08-28 12:52:22 -04001731 goto out3;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001732 }
1733 inode = NULL;
1734
1735 bdevname(reg->hr_bdev, reg->hr_dev_name);
1736
Martin K. Petersene1defc42009-05-22 17:17:49 -04001737 sectsize = bdev_logical_block_size(reg->hr_bdev);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001738 if (sectsize != reg->hr_block_bytes) {
1739 mlog(ML_ERROR,
1740 "blocksize %u incorrect for device, expected %d",
1741 reg->hr_block_bytes, sectsize);
1742 ret = -EINVAL;
Al Viro2903ff02012-08-28 12:52:22 -04001743 goto out3;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001744 }
1745
1746 o2hb_init_region_params(reg);
1747
1748 /* Generation of zero is invalid */
1749 do {
1750 get_random_bytes(&reg->hr_generation,
1751 sizeof(reg->hr_generation));
1752 } while (reg->hr_generation == 0);
1753
1754 ret = o2hb_map_slot_data(reg);
1755 if (ret) {
1756 mlog_errno(ret);
Al Viro2903ff02012-08-28 12:52:22 -04001757 goto out3;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001758 }
1759
1760 ret = o2hb_populate_slot_data(reg);
1761 if (ret) {
1762 mlog_errno(ret);
Al Viro2903ff02012-08-28 12:52:22 -04001763 goto out3;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001764 }
1765
David Howellsc4028952006-11-22 14:57:56 +00001766 INIT_DELAYED_WORK(&reg->hr_write_timeout_work, o2hb_write_timeout);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001767
1768 /*
1769 * A node is considered live after it has beat LIVE_THRESHOLD
1770 * times. We're not steady until we've given them a chance
1771 * _after_ our first read.
Sunil Mushran76d9fc22011-05-04 10:28:00 -07001772 * The default threshold is bare minimum so as to limit the delay
1773 * during mounts. For global heartbeat, the threshold doubled for the
1774 * first region.
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001775 */
Sunil Mushran76d9fc22011-05-04 10:28:00 -07001776 live_threshold = O2HB_LIVE_THRESHOLD;
1777 if (o2hb_global_heartbeat_active()) {
1778 spin_lock(&o2hb_live_lock);
Akinobu Mitaa8f70de2013-11-12 15:06:58 -08001779 if (bitmap_weight(o2hb_region_bitmap, O2NM_MAX_REGIONS) == 1)
Sunil Mushran76d9fc22011-05-04 10:28:00 -07001780 live_threshold <<= 1;
1781 spin_unlock(&o2hb_live_lock);
1782 }
Sunil Mushrand2eece32011-07-24 10:21:54 -07001783 ++live_threshold;
1784 atomic_set(&reg->hr_steady_iterations, live_threshold);
Junxiao Bia84ac332016-01-14 15:17:15 -08001785 /* unsteady_iterations is triple the steady_iterations */
1786 atomic_set(&reg->hr_unsteady_iterations, (live_threshold * 3));
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001787
Joel Beckere6c352d2007-02-03 03:04:20 -08001788 hb_task = kthread_run(o2hb_thread, reg, "o2hb-%s",
1789 reg->hr_item.ci_name);
1790 if (IS_ERR(hb_task)) {
1791 ret = PTR_ERR(hb_task);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001792 mlog_errno(ret);
Al Viro2903ff02012-08-28 12:52:22 -04001793 goto out3;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001794 }
1795
Joel Beckere6c352d2007-02-03 03:04:20 -08001796 spin_lock(&o2hb_live_lock);
1797 reg->hr_task = hb_task;
1798 spin_unlock(&o2hb_live_lock);
1799
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001800 ret = wait_event_interruptible(o2hb_steady_queue,
Joseph Qi0986fe9b2015-11-05 18:44:07 -08001801 atomic_read(&reg->hr_steady_iterations) == 0 ||
1802 reg->hr_node_deleted);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001803 if (ret) {
Sunil Mushrand2eece32011-07-24 10:21:54 -07001804 atomic_set(&reg->hr_steady_iterations, 0);
1805 reg->hr_aborted_start = 1;
1806 }
Joel Beckere6c352d2007-02-03 03:04:20 -08001807
Sunil Mushrand2eece32011-07-24 10:21:54 -07001808 if (reg->hr_aborted_start) {
1809 ret = -EIO;
Al Viro2903ff02012-08-28 12:52:22 -04001810 goto out3;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001811 }
1812
Joseph Qi0986fe9b2015-11-05 18:44:07 -08001813 if (reg->hr_node_deleted) {
1814 ret = -EINVAL;
1815 goto out3;
1816 }
1817
Joel Beckere6df3a62007-02-06 15:45:39 -08001818 /* Ok, we were woken. Make sure it wasn't by drop_item() */
1819 spin_lock(&o2hb_live_lock);
1820 hb_task = reg->hr_task;
Sunil Mushrane7d656b2010-10-06 17:55:18 -07001821 if (o2hb_global_heartbeat_active())
1822 set_bit(reg->hr_region_num, o2hb_live_region_bitmap);
Joel Beckere6df3a62007-02-06 15:45:39 -08001823 spin_unlock(&o2hb_live_lock);
1824
1825 if (hb_task)
1826 ret = count;
1827 else
1828 ret = -EIO;
1829
Sunil Mushran18c50cb2010-10-06 18:26:59 -07001830 if (hb_task && o2hb_global_heartbeat_active())
Sunil Mushrand2eece32011-07-24 10:21:54 -07001831 printk(KERN_NOTICE "o2hb: Heartbeat started on region %s (%s)\n",
1832 config_item_name(&reg->hr_item), reg->hr_dev_name);
Sunil Mushran18c50cb2010-10-06 18:26:59 -07001833
Al Viro2903ff02012-08-28 12:52:22 -04001834out3:
1835 iput(inode);
1836out2:
1837 fdput(f);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001838out:
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001839 if (ret < 0) {
1840 if (reg->hr_bdev) {
Al Viro9a1c3542008-02-22 20:40:24 -05001841 blkdev_put(reg->hr_bdev, FMODE_READ|FMODE_WRITE);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001842 reg->hr_bdev = NULL;
1843 }
1844 }
1845 return ret;
1846}
1847
Christoph Hellwig45b99772015-10-03 15:32:58 +02001848static ssize_t o2hb_region_pid_show(struct config_item *item, char *page)
Zhen Wei92efc152006-12-08 00:48:17 -07001849{
Christoph Hellwig45b99772015-10-03 15:32:58 +02001850 struct o2hb_region *reg = to_o2hb_region(item);
Joel Beckere6c352d2007-02-03 03:04:20 -08001851 pid_t pid = 0;
1852
1853 spin_lock(&o2hb_live_lock);
1854 if (reg->hr_task)
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001855 pid = task_pid_nr(reg->hr_task);
Joel Beckere6c352d2007-02-03 03:04:20 -08001856 spin_unlock(&o2hb_live_lock);
1857
1858 if (!pid)
Zhen Wei92efc152006-12-08 00:48:17 -07001859 return 0;
1860
Joel Beckere6c352d2007-02-03 03:04:20 -08001861 return sprintf(page, "%u\n", pid);
Zhen Wei92efc152006-12-08 00:48:17 -07001862}
1863
Christoph Hellwig45b99772015-10-03 15:32:58 +02001864CONFIGFS_ATTR(o2hb_region_, block_bytes);
1865CONFIGFS_ATTR(o2hb_region_, start_block);
1866CONFIGFS_ATTR(o2hb_region_, blocks);
1867CONFIGFS_ATTR(o2hb_region_, dev);
1868CONFIGFS_ATTR_RO(o2hb_region_, pid);
Zhen Wei92efc152006-12-08 00:48:17 -07001869
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001870static struct configfs_attribute *o2hb_region_attrs[] = {
Christoph Hellwig45b99772015-10-03 15:32:58 +02001871 &o2hb_region_attr_block_bytes,
1872 &o2hb_region_attr_start_block,
1873 &o2hb_region_attr_blocks,
1874 &o2hb_region_attr_dev,
1875 &o2hb_region_attr_pid,
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001876 NULL,
1877};
1878
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001879static struct configfs_item_operations o2hb_region_item_ops = {
1880 .release = o2hb_region_release,
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001881};
1882
1883static struct config_item_type o2hb_region_type = {
1884 .ct_item_ops = &o2hb_region_item_ops,
1885 .ct_attrs = o2hb_region_attrs,
1886 .ct_owner = THIS_MODULE,
1887};
1888
1889/* heartbeat set */
1890
1891struct o2hb_heartbeat_group {
1892 struct config_group hs_group;
1893 /* some stuff? */
1894};
1895
1896static struct o2hb_heartbeat_group *to_o2hb_heartbeat_group(struct config_group *group)
1897{
1898 return group ?
1899 container_of(group, struct o2hb_heartbeat_group, hs_group)
1900 : NULL;
1901}
1902
Sunil Mushran1f285302010-10-06 17:55:12 -07001903static int o2hb_debug_region_init(struct o2hb_region *reg, struct dentry *dir)
1904{
1905 int ret = -ENOMEM;
1906
1907 reg->hr_debug_dir =
1908 debugfs_create_dir(config_item_name(&reg->hr_item), dir);
Linus Torvalds8f443e22015-04-21 09:17:28 -07001909 if (!reg->hr_debug_dir) {
Sunil Mushran1f285302010-10-06 17:55:12 -07001910 mlog_errno(ret);
1911 goto bail;
1912 }
1913
1914 reg->hr_debug_livenodes =
1915 o2hb_debug_create(O2HB_DEBUG_LIVENODES,
1916 reg->hr_debug_dir,
1917 &(reg->hr_db_livenodes),
1918 sizeof(*(reg->hr_db_livenodes)),
1919 O2HB_DB_TYPE_REGION_LIVENODES,
1920 sizeof(reg->hr_live_node_bitmap),
1921 O2NM_MAX_NODES, reg);
Linus Torvalds8f443e22015-04-21 09:17:28 -07001922 if (!reg->hr_debug_livenodes) {
Sunil Mushran1f285302010-10-06 17:55:12 -07001923 mlog_errno(ret);
1924 goto bail;
1925 }
1926
1927 reg->hr_debug_regnum =
1928 o2hb_debug_create(O2HB_DEBUG_REGION_NUMBER,
1929 reg->hr_debug_dir,
1930 &(reg->hr_db_regnum),
1931 sizeof(*(reg->hr_db_regnum)),
1932 O2HB_DB_TYPE_REGION_NUMBER,
1933 0, O2NM_MAX_NODES, reg);
Linus Torvalds8f443e22015-04-21 09:17:28 -07001934 if (!reg->hr_debug_regnum) {
Sunil Mushran1f285302010-10-06 17:55:12 -07001935 mlog_errno(ret);
1936 goto bail;
1937 }
1938
Sunil Mushran43695d02010-10-06 17:55:09 -07001939 reg->hr_debug_elapsed_time =
1940 o2hb_debug_create(O2HB_DEBUG_REGION_ELAPSED_TIME,
1941 reg->hr_debug_dir,
1942 &(reg->hr_db_elapsed_time),
1943 sizeof(*(reg->hr_db_elapsed_time)),
1944 O2HB_DB_TYPE_REGION_ELAPSED_TIME,
1945 0, 0, reg);
Linus Torvalds8f443e22015-04-21 09:17:28 -07001946 if (!reg->hr_debug_elapsed_time) {
Sunil Mushran43695d02010-10-06 17:55:09 -07001947 mlog_errno(ret);
1948 goto bail;
1949 }
1950
Sunil Mushrancb0586b2010-12-14 14:14:30 -08001951 reg->hr_debug_pinned =
1952 o2hb_debug_create(O2HB_DEBUG_REGION_PINNED,
1953 reg->hr_debug_dir,
1954 &(reg->hr_db_pinned),
1955 sizeof(*(reg->hr_db_pinned)),
1956 O2HB_DB_TYPE_REGION_PINNED,
1957 0, 0, reg);
Linus Torvalds8f443e22015-04-21 09:17:28 -07001958 if (!reg->hr_debug_pinned) {
Sunil Mushrancb0586b2010-12-14 14:14:30 -08001959 mlog_errno(ret);
1960 goto bail;
1961 }
1962
Linus Torvalds8f443e22015-04-21 09:17:28 -07001963 ret = 0;
Sunil Mushran1f285302010-10-06 17:55:12 -07001964bail:
1965 return ret;
1966}
1967
Joel Beckerf89ab862008-07-17 14:53:48 -07001968static struct config_item *o2hb_heartbeat_group_make_item(struct config_group *group,
1969 const char *name)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001970{
1971 struct o2hb_region *reg = NULL;
Sunil Mushran1f285302010-10-06 17:55:12 -07001972 int ret;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001973
Robert P. J. Daycd861282006-12-13 00:34:52 -08001974 reg = kzalloc(sizeof(struct o2hb_region), GFP_KERNEL);
Joel Beckerf89ab862008-07-17 14:53:48 -07001975 if (reg == NULL)
Joel Beckera6795e92008-07-17 15:21:29 -07001976 return ERR_PTR(-ENOMEM);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001977
Jiri Slaby1cf257f2010-11-06 10:06:52 +01001978 if (strlen(name) > O2HB_MAX_REGION_NAME_LEN) {
1979 ret = -ENAMETOOLONG;
1980 goto free;
1981 }
Sunil Mushranb3c85c42010-10-07 14:31:06 -07001982
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001983 spin_lock(&o2hb_live_lock);
Sunil Mushran536f0742010-10-07 17:03:07 -07001984 reg->hr_region_num = 0;
1985 if (o2hb_global_heartbeat_active()) {
1986 reg->hr_region_num = find_first_zero_bit(o2hb_region_bitmap,
1987 O2NM_MAX_REGIONS);
1988 if (reg->hr_region_num >= O2NM_MAX_REGIONS) {
1989 spin_unlock(&o2hb_live_lock);
Jiri Slaby1cf257f2010-11-06 10:06:52 +01001990 ret = -EFBIG;
1991 goto free;
Sunil Mushran536f0742010-10-07 17:03:07 -07001992 }
1993 set_bit(reg->hr_region_num, o2hb_region_bitmap);
1994 }
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001995 list_add_tail(&reg->hr_all_item, &o2hb_all_regions);
1996 spin_unlock(&o2hb_live_lock);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001997
Sunil Mushran536f0742010-10-07 17:03:07 -07001998 config_item_init_type_name(&reg->hr_item, name, &o2hb_region_type);
1999
Sunil Mushran1f285302010-10-06 17:55:12 -07002000 ret = o2hb_debug_region_init(reg, o2hb_debug_dir);
2001 if (ret) {
2002 config_item_put(&reg->hr_item);
Jiri Slaby1cf257f2010-11-06 10:06:52 +01002003 goto free;
Sunil Mushran1f285302010-10-06 17:55:12 -07002004 }
2005
Joel Beckera6795e92008-07-17 15:21:29 -07002006 return &reg->hr_item;
Jiri Slaby1cf257f2010-11-06 10:06:52 +01002007free:
2008 kfree(reg);
2009 return ERR_PTR(ret);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002010}
2011
2012static void o2hb_heartbeat_group_drop_item(struct config_group *group,
2013 struct config_item *item)
2014{
Joel Beckere6c352d2007-02-03 03:04:20 -08002015 struct task_struct *hb_task;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002016 struct o2hb_region *reg = to_o2hb_region(item);
Sunil Mushran58a31582010-12-14 14:14:29 -08002017 int quorum_region = 0;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002018
2019 /* stop the thread when the user removes the region dir */
Joel Beckere6c352d2007-02-03 03:04:20 -08002020 spin_lock(&o2hb_live_lock);
2021 hb_task = reg->hr_task;
2022 reg->hr_task = NULL;
Sunil Mushran58a31582010-12-14 14:14:29 -08002023 reg->hr_item_dropped = 1;
Joel Beckere6c352d2007-02-03 03:04:20 -08002024 spin_unlock(&o2hb_live_lock);
2025
2026 if (hb_task)
2027 kthread_stop(hb_task);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002028
Sunil Mushrand2eece32011-07-24 10:21:54 -07002029 if (o2hb_global_heartbeat_active()) {
2030 spin_lock(&o2hb_live_lock);
2031 clear_bit(reg->hr_region_num, o2hb_region_bitmap);
2032 clear_bit(reg->hr_region_num, o2hb_live_region_bitmap);
2033 if (test_bit(reg->hr_region_num, o2hb_quorum_region_bitmap))
2034 quorum_region = 1;
2035 clear_bit(reg->hr_region_num, o2hb_quorum_region_bitmap);
2036 spin_unlock(&o2hb_live_lock);
2037 printk(KERN_NOTICE "o2hb: Heartbeat %s on region %s (%s)\n",
2038 ((atomic_read(&reg->hr_steady_iterations) == 0) ?
2039 "stopped" : "start aborted"), config_item_name(item),
2040 reg->hr_dev_name);
2041 }
2042
Joel Beckere6df3a62007-02-06 15:45:39 -08002043 /*
2044 * If we're racing a dev_write(), we need to wake them. They will
2045 * check reg->hr_task
2046 */
2047 if (atomic_read(&reg->hr_steady_iterations) != 0) {
Sunil Mushrand2eece32011-07-24 10:21:54 -07002048 reg->hr_aborted_start = 1;
Joel Beckere6df3a62007-02-06 15:45:39 -08002049 atomic_set(&reg->hr_steady_iterations, 0);
2050 wake_up(&o2hb_steady_queue);
2051 }
2052
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002053 config_item_put(item);
Sunil Mushran58a31582010-12-14 14:14:29 -08002054
2055 if (!o2hb_global_heartbeat_active() || !quorum_region)
2056 return;
2057
2058 /*
2059 * If global heartbeat active and there are dependent users,
2060 * pin all regions if quorum region count <= CUT_OFF
2061 */
2062 spin_lock(&o2hb_live_lock);
2063
2064 if (!o2hb_dependent_users)
2065 goto unlock;
2066
Akinobu Mitaa8f70de2013-11-12 15:06:58 -08002067 if (bitmap_weight(o2hb_quorum_region_bitmap,
Sunil Mushran58a31582010-12-14 14:14:29 -08002068 O2NM_MAX_REGIONS) <= O2HB_PIN_CUT_OFF)
2069 o2hb_region_pin(NULL);
2070
2071unlock:
2072 spin_unlock(&o2hb_live_lock);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002073}
2074
Christoph Hellwig45b99772015-10-03 15:32:58 +02002075static ssize_t o2hb_heartbeat_group_threshold_show(struct config_item *item,
2076 char *page)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002077{
2078 return sprintf(page, "%u\n", o2hb_dead_threshold);
2079}
2080
Christoph Hellwig45b99772015-10-03 15:32:58 +02002081static ssize_t o2hb_heartbeat_group_threshold_store(struct config_item *item,
2082 const char *page, size_t count)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002083{
2084 unsigned long tmp;
2085 char *p = (char *)page;
2086
2087 tmp = simple_strtoul(p, &p, 10);
2088 if (!p || (*p && (*p != '\n')))
2089 return -EINVAL;
2090
2091 /* this will validate ranges for us. */
2092 o2hb_dead_threshold_set((unsigned int) tmp);
2093
2094 return count;
2095}
2096
Christoph Hellwig45b99772015-10-03 15:32:58 +02002097static ssize_t o2hb_heartbeat_group_mode_show(struct config_item *item,
2098 char *page)
Sunil Mushran54b51872010-10-07 15:26:08 -07002099{
2100 return sprintf(page, "%s\n",
2101 o2hb_heartbeat_mode_desc[o2hb_heartbeat_mode]);
2102}
2103
Christoph Hellwig45b99772015-10-03 15:32:58 +02002104static ssize_t o2hb_heartbeat_group_mode_store(struct config_item *item,
2105 const char *page, size_t count)
Sunil Mushran54b51872010-10-07 15:26:08 -07002106{
2107 unsigned int i;
2108 int ret;
2109 size_t len;
2110
2111 len = (page[count - 1] == '\n') ? count - 1 : count;
2112 if (!len)
2113 return -EINVAL;
2114
2115 for (i = 0; i < O2HB_HEARTBEAT_NUM_MODES; ++i) {
Rasmus Villemoes2bd63322014-10-13 15:54:37 -07002116 if (strncasecmp(page, o2hb_heartbeat_mode_desc[i], len))
Sunil Mushran54b51872010-10-07 15:26:08 -07002117 continue;
2118
Jie Liu70f651e2013-07-03 15:01:06 -07002119 ret = o2hb_global_heartbeat_mode_set(i);
Sunil Mushran54b51872010-10-07 15:26:08 -07002120 if (!ret)
Sunil Mushran18c50cb2010-10-06 18:26:59 -07002121 printk(KERN_NOTICE "o2hb: Heartbeat mode set to %s\n",
Sunil Mushran54b51872010-10-07 15:26:08 -07002122 o2hb_heartbeat_mode_desc[i]);
2123 return count;
2124 }
2125
2126 return -EINVAL;
2127
2128}
2129
Christoph Hellwig45b99772015-10-03 15:32:58 +02002130CONFIGFS_ATTR(o2hb_heartbeat_group_, threshold);
2131CONFIGFS_ATTR(o2hb_heartbeat_group_, mode);
Sunil Mushran54b51872010-10-07 15:26:08 -07002132
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002133static struct configfs_attribute *o2hb_heartbeat_group_attrs[] = {
Christoph Hellwig45b99772015-10-03 15:32:58 +02002134 &o2hb_heartbeat_group_attr_threshold,
2135 &o2hb_heartbeat_group_attr_mode,
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002136 NULL,
2137};
2138
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002139static struct configfs_group_operations o2hb_heartbeat_group_group_ops = {
2140 .make_item = o2hb_heartbeat_group_make_item,
2141 .drop_item = o2hb_heartbeat_group_drop_item,
2142};
2143
2144static struct config_item_type o2hb_heartbeat_group_type = {
2145 .ct_group_ops = &o2hb_heartbeat_group_group_ops,
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002146 .ct_attrs = o2hb_heartbeat_group_attrs,
2147 .ct_owner = THIS_MODULE,
2148};
2149
2150/* this is just here to avoid touching group in heartbeat.h which the
2151 * entire damn world #includes */
2152struct config_group *o2hb_alloc_hb_set(void)
2153{
2154 struct o2hb_heartbeat_group *hs = NULL;
2155 struct config_group *ret = NULL;
2156
Robert P. J. Daycd861282006-12-13 00:34:52 -08002157 hs = kzalloc(sizeof(struct o2hb_heartbeat_group), GFP_KERNEL);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002158 if (hs == NULL)
2159 goto out;
2160
2161 config_group_init_type_name(&hs->hs_group, "heartbeat",
2162 &o2hb_heartbeat_group_type);
2163
2164 ret = &hs->hs_group;
2165out:
2166 if (ret == NULL)
2167 kfree(hs);
2168 return ret;
2169}
2170
2171void o2hb_free_hb_set(struct config_group *group)
2172{
2173 struct o2hb_heartbeat_group *hs = to_o2hb_heartbeat_group(group);
2174 kfree(hs);
2175}
2176
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002177/* hb callback registration and issuing */
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002178
2179static struct o2hb_callback *hbcall_from_type(enum o2hb_callback_type type)
2180{
2181 if (type == O2HB_NUM_CB)
2182 return ERR_PTR(-EINVAL);
2183
2184 return &o2hb_callbacks[type];
2185}
2186
2187void o2hb_setup_callback(struct o2hb_callback_func *hc,
2188 enum o2hb_callback_type type,
2189 o2hb_cb_func *func,
2190 void *data,
2191 int priority)
2192{
2193 INIT_LIST_HEAD(&hc->hc_item);
2194 hc->hc_func = func;
2195 hc->hc_data = data;
2196 hc->hc_priority = priority;
2197 hc->hc_type = type;
2198 hc->hc_magic = O2HB_CB_MAGIC;
2199}
2200EXPORT_SYMBOL_GPL(o2hb_setup_callback);
2201
Sunil Mushran58a31582010-12-14 14:14:29 -08002202/*
2203 * In local heartbeat mode, region_uuid passed matches the dlm domain name.
2204 * In global heartbeat mode, region_uuid passed is NULL.
2205 *
2206 * In local, we only pin the matching region. In global we pin all the active
2207 * regions.
2208 */
2209static int o2hb_region_pin(const char *region_uuid)
Joel Becker14829422007-06-14 21:40:49 -07002210{
Sunil Mushran58a31582010-12-14 14:14:29 -08002211 int ret = 0, found = 0;
2212 struct o2hb_region *reg;
2213 char *uuid;
Joel Becker14829422007-06-14 21:40:49 -07002214
2215 assert_spin_locked(&o2hb_live_lock);
2216
Sunil Mushran58a31582010-12-14 14:14:29 -08002217 list_for_each_entry(reg, &o2hb_all_regions, hr_all_item) {
Xue jiufei4a184b42013-07-03 15:01:10 -07002218 if (reg->hr_item_dropped)
2219 continue;
2220
Sunil Mushran58a31582010-12-14 14:14:29 -08002221 uuid = config_item_name(&reg->hr_item);
2222
2223 /* local heartbeat */
2224 if (region_uuid) {
2225 if (strcmp(region_uuid, uuid))
2226 continue;
2227 found = 1;
Joel Becker14829422007-06-14 21:40:49 -07002228 }
Sunil Mushran58a31582010-12-14 14:14:29 -08002229
2230 if (reg->hr_item_pinned || reg->hr_item_dropped)
2231 goto skip_pin;
2232
2233 /* Ignore ENOENT only for local hb (userdlm domain) */
2234 ret = o2nm_depend_item(&reg->hr_item);
2235 if (!ret) {
2236 mlog(ML_CLUSTER, "Pin region %s\n", uuid);
2237 reg->hr_item_pinned = 1;
2238 } else {
2239 if (ret == -ENOENT && found)
2240 ret = 0;
2241 else {
2242 mlog(ML_ERROR, "Pin region %s fails with %d\n",
2243 uuid, ret);
2244 break;
2245 }
2246 }
2247skip_pin:
2248 if (found)
2249 break;
Joel Becker14829422007-06-14 21:40:49 -07002250 }
2251
Joel Becker14829422007-06-14 21:40:49 -07002252 return ret;
2253}
2254
Sunil Mushran58a31582010-12-14 14:14:29 -08002255/*
2256 * In local heartbeat mode, region_uuid passed matches the dlm domain name.
2257 * In global heartbeat mode, region_uuid passed is NULL.
2258 *
2259 * In local, we only unpin the matching region. In global we unpin all the
2260 * active regions.
2261 */
2262static void o2hb_region_unpin(const char *region_uuid)
Joel Becker14829422007-06-14 21:40:49 -07002263{
2264 struct o2hb_region *reg;
Sunil Mushran58a31582010-12-14 14:14:29 -08002265 char *uuid;
2266 int found = 0;
2267
2268 assert_spin_locked(&o2hb_live_lock);
2269
2270 list_for_each_entry(reg, &o2hb_all_regions, hr_all_item) {
Xue jiufei4a184b42013-07-03 15:01:10 -07002271 if (reg->hr_item_dropped)
2272 continue;
2273
Sunil Mushran58a31582010-12-14 14:14:29 -08002274 uuid = config_item_name(&reg->hr_item);
2275 if (region_uuid) {
2276 if (strcmp(region_uuid, uuid))
2277 continue;
2278 found = 1;
2279 }
2280
2281 if (reg->hr_item_pinned) {
2282 mlog(ML_CLUSTER, "Unpin region %s\n", uuid);
2283 o2nm_undepend_item(&reg->hr_item);
2284 reg->hr_item_pinned = 0;
2285 }
2286 if (found)
2287 break;
2288 }
2289}
2290
2291static int o2hb_region_inc_user(const char *region_uuid)
2292{
2293 int ret = 0;
Joel Becker14829422007-06-14 21:40:49 -07002294
2295 spin_lock(&o2hb_live_lock);
2296
Sunil Mushran58a31582010-12-14 14:14:29 -08002297 /* local heartbeat */
2298 if (!o2hb_global_heartbeat_active()) {
2299 ret = o2hb_region_pin(region_uuid);
2300 goto unlock;
Joel Becker16c6a4f2007-06-19 11:34:03 -07002301 }
Sunil Mushran58a31582010-12-14 14:14:29 -08002302
2303 /*
2304 * if global heartbeat active and this is the first dependent user,
2305 * pin all regions if quorum region count <= CUT_OFF
2306 */
2307 o2hb_dependent_users++;
2308 if (o2hb_dependent_users > 1)
2309 goto unlock;
2310
Akinobu Mitaa8f70de2013-11-12 15:06:58 -08002311 if (bitmap_weight(o2hb_quorum_region_bitmap,
Sunil Mushran58a31582010-12-14 14:14:29 -08002312 O2NM_MAX_REGIONS) <= O2HB_PIN_CUT_OFF)
2313 ret = o2hb_region_pin(NULL);
2314
2315unlock:
2316 spin_unlock(&o2hb_live_lock);
2317 return ret;
2318}
2319
2320void o2hb_region_dec_user(const char *region_uuid)
2321{
2322 spin_lock(&o2hb_live_lock);
2323
2324 /* local heartbeat */
2325 if (!o2hb_global_heartbeat_active()) {
2326 o2hb_region_unpin(region_uuid);
2327 goto unlock;
2328 }
2329
2330 /*
2331 * if global heartbeat active and there are no dependent users,
2332 * unpin all quorum regions
2333 */
2334 o2hb_dependent_users--;
2335 if (!o2hb_dependent_users)
2336 o2hb_region_unpin(NULL);
2337
2338unlock:
2339 spin_unlock(&o2hb_live_lock);
Joel Becker14829422007-06-14 21:40:49 -07002340}
2341
2342int o2hb_register_callback(const char *region_uuid,
2343 struct o2hb_callback_func *hc)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002344{
Dong Fangdf53cd32013-09-11 14:19:50 -07002345 struct o2hb_callback_func *f;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002346 struct o2hb_callback *hbcall;
2347 int ret;
2348
2349 BUG_ON(hc->hc_magic != O2HB_CB_MAGIC);
2350 BUG_ON(!list_empty(&hc->hc_item));
2351
2352 hbcall = hbcall_from_type(hc->hc_type);
2353 if (IS_ERR(hbcall)) {
2354 ret = PTR_ERR(hbcall);
2355 goto out;
2356 }
2357
Joel Becker14829422007-06-14 21:40:49 -07002358 if (region_uuid) {
Sunil Mushran58a31582010-12-14 14:14:29 -08002359 ret = o2hb_region_inc_user(region_uuid);
2360 if (ret) {
2361 mlog_errno(ret);
Joel Becker14829422007-06-14 21:40:49 -07002362 goto out;
Sunil Mushran58a31582010-12-14 14:14:29 -08002363 }
Joel Becker14829422007-06-14 21:40:49 -07002364 }
2365
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002366 down_write(&o2hb_callback_sem);
2367
Dong Fangdf53cd32013-09-11 14:19:50 -07002368 list_for_each_entry(f, &hbcall->list, hc_item) {
2369 if (hc->hc_priority < f->hc_priority) {
2370 list_add_tail(&hc->hc_item, &f->hc_item);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002371 break;
2372 }
2373 }
2374 if (list_empty(&hc->hc_item))
2375 list_add_tail(&hc->hc_item, &hbcall->list);
2376
2377 up_write(&o2hb_callback_sem);
2378 ret = 0;
2379out:
Sunil Mushran58a31582010-12-14 14:14:29 -08002380 mlog(ML_CLUSTER, "returning %d on behalf of %p for funcs %p\n",
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002381 ret, __builtin_return_address(0), hc);
2382 return ret;
2383}
2384EXPORT_SYMBOL_GPL(o2hb_register_callback);
2385
Joel Becker14829422007-06-14 21:40:49 -07002386void o2hb_unregister_callback(const char *region_uuid,
2387 struct o2hb_callback_func *hc)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002388{
2389 BUG_ON(hc->hc_magic != O2HB_CB_MAGIC);
2390
Sunil Mushran58a31582010-12-14 14:14:29 -08002391 mlog(ML_CLUSTER, "on behalf of %p for funcs %p\n",
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002392 __builtin_return_address(0), hc);
2393
Joel Becker14829422007-06-14 21:40:49 -07002394 /* XXX Can this happen _with_ a region reference? */
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002395 if (list_empty(&hc->hc_item))
Joel Beckerc24f72c2007-02-03 03:14:30 -08002396 return;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002397
Joel Becker14829422007-06-14 21:40:49 -07002398 if (region_uuid)
Sunil Mushran58a31582010-12-14 14:14:29 -08002399 o2hb_region_dec_user(region_uuid);
Joel Becker14829422007-06-14 21:40:49 -07002400
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002401 down_write(&o2hb_callback_sem);
2402
2403 list_del_init(&hc->hc_item);
2404
2405 up_write(&o2hb_callback_sem);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002406}
2407EXPORT_SYMBOL_GPL(o2hb_unregister_callback);
2408
2409int o2hb_check_node_heartbeating(u8 node_num)
2410{
2411 unsigned long testing_map[BITS_TO_LONGS(O2NM_MAX_NODES)];
2412
2413 o2hb_fill_node_map(testing_map, sizeof(testing_map));
2414 if (!test_bit(node_num, testing_map)) {
2415 mlog(ML_HEARTBEAT,
2416 "node (%u) does not have heartbeating enabled.\n",
2417 node_num);
2418 return 0;
2419 }
2420
2421 return 1;
2422}
2423EXPORT_SYMBOL_GPL(o2hb_check_node_heartbeating);
2424
Joseph Qi70e82a12014-10-09 15:25:13 -07002425int o2hb_check_node_heartbeating_no_sem(u8 node_num)
2426{
2427 unsigned long testing_map[BITS_TO_LONGS(O2NM_MAX_NODES)];
2428 unsigned long flags;
2429
2430 spin_lock_irqsave(&o2hb_live_lock, flags);
2431 o2hb_fill_node_map_from_callback(testing_map, sizeof(testing_map));
2432 spin_unlock_irqrestore(&o2hb_live_lock, flags);
2433 if (!test_bit(node_num, testing_map)) {
2434 mlog(ML_HEARTBEAT,
2435 "node (%u) does not have heartbeating enabled.\n",
2436 node_num);
2437 return 0;
2438 }
2439
2440 return 1;
2441}
2442EXPORT_SYMBOL_GPL(o2hb_check_node_heartbeating_no_sem);
2443
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002444int o2hb_check_node_heartbeating_from_callback(u8 node_num)
2445{
2446 unsigned long testing_map[BITS_TO_LONGS(O2NM_MAX_NODES)];
2447
2448 o2hb_fill_node_map_from_callback(testing_map, sizeof(testing_map));
2449 if (!test_bit(node_num, testing_map)) {
2450 mlog(ML_HEARTBEAT,
2451 "node (%u) does not have heartbeating enabled.\n",
2452 node_num);
2453 return 0;
2454 }
2455
2456 return 1;
2457}
2458EXPORT_SYMBOL_GPL(o2hb_check_node_heartbeating_from_callback);
2459
2460/* Makes sure our local node is configured with a node number, and is
2461 * heartbeating. */
2462int o2hb_check_local_node_heartbeating(void)
2463{
2464 u8 node_num;
2465
2466 /* if this node was set then we have networking */
2467 node_num = o2nm_this_node();
2468 if (node_num == O2NM_MAX_NODES) {
2469 mlog(ML_HEARTBEAT, "this node has not been configured.\n");
2470 return 0;
2471 }
2472
2473 return o2hb_check_node_heartbeating(node_num);
2474}
2475EXPORT_SYMBOL_GPL(o2hb_check_local_node_heartbeating);
2476
2477/*
2478 * this is just a hack until we get the plumbing which flips file systems
2479 * read only and drops the hb ref instead of killing the node dead.
2480 */
2481void o2hb_stop_all_regions(void)
2482{
2483 struct o2hb_region *reg;
2484
2485 mlog(ML_ERROR, "stopping heartbeat on all active regions.\n");
2486
2487 spin_lock(&o2hb_live_lock);
2488
2489 list_for_each_entry(reg, &o2hb_all_regions, hr_all_item)
2490 reg->hr_unclean_stop = 1;
2491
2492 spin_unlock(&o2hb_live_lock);
2493}
2494EXPORT_SYMBOL_GPL(o2hb_stop_all_regions);
Sunil Mushranb3c85c42010-10-07 14:31:06 -07002495
2496int o2hb_get_all_regions(char *region_uuids, u8 max_regions)
2497{
2498 struct o2hb_region *reg;
2499 int numregs = 0;
2500 char *p;
2501
2502 spin_lock(&o2hb_live_lock);
2503
2504 p = region_uuids;
2505 list_for_each_entry(reg, &o2hb_all_regions, hr_all_item) {
Xue jiufei4a184b42013-07-03 15:01:10 -07002506 if (reg->hr_item_dropped)
2507 continue;
2508
Sunil Mushranb3c85c42010-10-07 14:31:06 -07002509 mlog(0, "Region: %s\n", config_item_name(&reg->hr_item));
2510 if (numregs < max_regions) {
2511 memcpy(p, config_item_name(&reg->hr_item),
2512 O2HB_MAX_REGION_NAME_LEN);
2513 p += O2HB_MAX_REGION_NAME_LEN;
2514 }
2515 numregs++;
2516 }
2517
2518 spin_unlock(&o2hb_live_lock);
2519
2520 return numregs;
2521}
2522EXPORT_SYMBOL_GPL(o2hb_get_all_regions);
2523
2524int o2hb_global_heartbeat_active(void)
2525{
Sunil Mushran4d94aa12010-10-09 10:27:04 -07002526 return (o2hb_heartbeat_mode == O2HB_HEARTBEAT_GLOBAL);
Sunil Mushranb3c85c42010-10-07 14:31:06 -07002527}
2528EXPORT_SYMBOL(o2hb_global_heartbeat_active);