blob: fa15debcc02be1c8fe1d3419d10dd7c5ab0ff968 [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,
222 hr_item_dropped:1;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800223
224 /* protected by the hr_callback_sem */
225 struct task_struct *hr_task;
226
227 unsigned int hr_blocks;
228 unsigned long long hr_start_block;
229
230 unsigned int hr_block_bits;
231 unsigned int hr_block_bytes;
232
233 unsigned int hr_slots_per_page;
234 unsigned int hr_num_pages;
235
236 struct page **hr_slot_data;
237 struct block_device *hr_bdev;
238 struct o2hb_disk_slot *hr_slots;
239
Sunil Mushran823a6372010-10-06 17:55:21 -0700240 /* live node map of this region */
241 unsigned long hr_live_node_bitmap[BITS_TO_LONGS(O2NM_MAX_NODES)];
Sunil Mushran536f0742010-10-07 17:03:07 -0700242 unsigned int hr_region_num;
Sunil Mushran823a6372010-10-06 17:55:21 -0700243
Sunil Mushran1f285302010-10-06 17:55:12 -0700244 struct dentry *hr_debug_dir;
245 struct dentry *hr_debug_livenodes;
246 struct dentry *hr_debug_regnum;
Sunil Mushran43695d02010-10-06 17:55:09 -0700247 struct dentry *hr_debug_elapsed_time;
Sunil Mushrancb0586b2010-12-14 14:14:30 -0800248 struct dentry *hr_debug_pinned;
Sunil Mushran1f285302010-10-06 17:55:12 -0700249 struct o2hb_debug_buf *hr_db_livenodes;
250 struct o2hb_debug_buf *hr_db_regnum;
Sunil Mushran43695d02010-10-06 17:55:09 -0700251 struct o2hb_debug_buf *hr_db_elapsed_time;
Sunil Mushrancb0586b2010-12-14 14:14:30 -0800252 struct o2hb_debug_buf *hr_db_pinned;
Sunil Mushran1f285302010-10-06 17:55:12 -0700253
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800254 /* let the person setting up hb wait for it to return until it
255 * has reached a 'steady' state. This will be fixed when we have
256 * a more complete api that doesn't lead to this sort of fragility. */
257 atomic_t hr_steady_iterations;
258
Sunil Mushrand2eece32011-07-24 10:21:54 -0700259 /* terminate o2hb thread if it does not reach steady state
260 * (hr_steady_iterations == 0) within hr_unsteady_iterations */
261 atomic_t hr_unsteady_iterations;
262
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800263 char hr_dev_name[BDEVNAME_SIZE];
264
265 unsigned int hr_timeout_ms;
266
267 /* randomized as the region goes up and down so that a node
268 * recognizes a node going up and down in one iteration */
269 u64 hr_generation;
270
David Howellsc4028952006-11-22 14:57:56 +0000271 struct delayed_work hr_write_timeout_work;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800272 unsigned long hr_last_timeout_start;
273
274 /* Used during o2hb_check_slot to hold a copy of the block
275 * being checked because we temporarily have to zero out the
276 * crc field. */
277 struct o2hb_disk_heartbeat_block *hr_tmp_block;
278};
279
280struct o2hb_bio_wait_ctxt {
281 atomic_t wc_num_reqs;
282 struct completion wc_io_complete;
Mark Fasheha9e2ae32006-03-24 14:20:17 -0800283 int wc_error;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800284};
285
David Howellsc4028952006-11-22 14:57:56 +0000286static void o2hb_write_timeout(struct work_struct *work)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800287{
Sunil Mushranb1c5ebf2010-10-07 17:05:52 -0700288 int failed, quorum;
289 unsigned long flags;
David Howellsc4028952006-11-22 14:57:56 +0000290 struct o2hb_region *reg =
291 container_of(work, struct o2hb_region,
292 hr_write_timeout_work.work);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800293
294 mlog(ML_ERROR, "Heartbeat write timeout to device %s after %u "
295 "milliseconds\n", reg->hr_dev_name,
Sunil Mushran2bd63212010-01-25 16:57:38 -0800296 jiffies_to_msecs(jiffies - reg->hr_last_timeout_start));
Sunil Mushranb1c5ebf2010-10-07 17:05:52 -0700297
298 if (o2hb_global_heartbeat_active()) {
299 spin_lock_irqsave(&o2hb_live_lock, flags);
300 if (test_bit(reg->hr_region_num, o2hb_quorum_region_bitmap))
301 set_bit(reg->hr_region_num, o2hb_failed_region_bitmap);
Akinobu Mitaa8f70de2013-11-12 15:06:58 -0800302 failed = bitmap_weight(o2hb_failed_region_bitmap,
Sunil Mushranb1c5ebf2010-10-07 17:05:52 -0700303 O2NM_MAX_REGIONS);
Akinobu Mitaa8f70de2013-11-12 15:06:58 -0800304 quorum = bitmap_weight(o2hb_quorum_region_bitmap,
Sunil Mushranb1c5ebf2010-10-07 17:05:52 -0700305 O2NM_MAX_REGIONS);
306 spin_unlock_irqrestore(&o2hb_live_lock, flags);
307
308 mlog(ML_HEARTBEAT, "Number of regions %d, failed regions %d\n",
309 quorum, failed);
310
311 /*
312 * Fence if the number of failed regions >= half the number
313 * of quorum regions
314 */
315 if ((failed << 1) < quorum)
316 return;
317 }
318
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800319 o2quo_disk_timeout();
320}
321
322static void o2hb_arm_write_timeout(struct o2hb_region *reg)
323{
Sunil Mushrand2eece32011-07-24 10:21:54 -0700324 /* Arm writeout only after thread reaches steady state */
325 if (atomic_read(&reg->hr_steady_iterations) != 0)
326 return;
327
Tao Mab31d3082009-12-22 10:32:15 +0800328 mlog(ML_HEARTBEAT, "Queue write timeout for %u ms\n",
329 O2HB_MAX_WRITE_TIMEOUT_MS);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800330
Sunil Mushranb1c5ebf2010-10-07 17:05:52 -0700331 if (o2hb_global_heartbeat_active()) {
332 spin_lock(&o2hb_live_lock);
333 clear_bit(reg->hr_region_num, o2hb_failed_region_bitmap);
334 spin_unlock(&o2hb_live_lock);
335 }
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800336 cancel_delayed_work(&reg->hr_write_timeout_work);
337 reg->hr_last_timeout_start = jiffies;
338 schedule_delayed_work(&reg->hr_write_timeout_work,
339 msecs_to_jiffies(O2HB_MAX_WRITE_TIMEOUT_MS));
340}
341
342static void o2hb_disarm_write_timeout(struct o2hb_region *reg)
343{
Tejun Heo9b00a812010-12-24 15:59:06 +0100344 cancel_delayed_work_sync(&reg->hr_write_timeout_work);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800345}
346
Philipp Reisnerb5592922007-01-11 10:58:10 +0100347static inline void o2hb_bio_wait_init(struct o2hb_bio_wait_ctxt *wc)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800348{
Philipp Reisnerb5592922007-01-11 10:58:10 +0100349 atomic_set(&wc->wc_num_reqs, 1);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800350 init_completion(&wc->wc_io_complete);
Mark Fasheha9e2ae32006-03-24 14:20:17 -0800351 wc->wc_error = 0;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800352}
353
354/* Used in error paths too */
355static inline void o2hb_bio_wait_dec(struct o2hb_bio_wait_ctxt *wc,
356 unsigned int num)
357{
358 /* sadly atomic_sub_and_test() isn't available on all platforms. The
359 * good news is that the fast path only completes one at a time */
360 while(num--) {
361 if (atomic_dec_and_test(&wc->wc_num_reqs)) {
362 BUG_ON(num > 0);
363 complete(&wc->wc_io_complete);
364 }
365 }
366}
367
368static void o2hb_wait_on_io(struct o2hb_region *reg,
369 struct o2hb_bio_wait_ctxt *wc)
370{
Philipp Reisnerb5592922007-01-11 10:58:10 +0100371 o2hb_bio_wait_dec(wc, 1);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800372 wait_for_completion(&wc->wc_io_complete);
373}
374
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200375static void o2hb_bio_end_io(struct bio *bio)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800376{
377 struct o2hb_bio_wait_ctxt *wc = bio->bi_private;
378
Christoph Hellwig4246a0b2015-07-20 15:29:37 +0200379 if (bio->bi_error) {
380 mlog(ML_ERROR, "IO Error %d\n", bio->bi_error);
381 wc->wc_error = bio->bi_error;
Mark Fasheha9e2ae32006-03-24 14:20:17 -0800382 }
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800383
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800384 o2hb_bio_wait_dec(wc, 1);
Philipp Reisnerb5592922007-01-11 10:58:10 +0100385 bio_put(bio);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800386}
387
388/* Setup a Bio to cover I/O against num_slots slots starting at
389 * start_slot. */
390static struct bio *o2hb_setup_one_bio(struct o2hb_region *reg,
391 struct o2hb_bio_wait_ctxt *wc,
Philipp Reisnerb5592922007-01-11 10:58:10 +0100392 unsigned int *current_slot,
393 unsigned int max_slots)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800394{
Philipp Reisnerb5592922007-01-11 10:58:10 +0100395 int len, current_page;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800396 unsigned int vec_len, vec_start;
397 unsigned int bits = reg->hr_block_bits;
398 unsigned int spp = reg->hr_slots_per_page;
Philipp Reisnerb5592922007-01-11 10:58:10 +0100399 unsigned int cs = *current_slot;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800400 struct bio *bio;
401 struct page *page;
402
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800403 /* Testing has shown this allocation to take long enough under
404 * GFP_KERNEL that the local node can get fenced. It would be
405 * nicest if we could pre-allocate these bios and avoid this
406 * all together. */
Philipp Reisnerb5592922007-01-11 10:58:10 +0100407 bio = bio_alloc(GFP_ATOMIC, 16);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800408 if (!bio) {
409 mlog(ML_ERROR, "Could not alloc slots BIO!\n");
410 bio = ERR_PTR(-ENOMEM);
411 goto bail;
412 }
413
414 /* Must put everything in 512 byte sectors for the bio... */
Kent Overstreet4f024f32013-10-11 15:44:27 -0700415 bio->bi_iter.bi_sector = (reg->hr_start_block + cs) << (bits - 9);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800416 bio->bi_bdev = reg->hr_bdev;
417 bio->bi_private = wc;
418 bio->bi_end_io = o2hb_bio_end_io;
419
Philipp Reisnerb5592922007-01-11 10:58:10 +0100420 vec_start = (cs << bits) % PAGE_CACHE_SIZE;
421 while(cs < max_slots) {
422 current_page = cs / spp;
423 page = reg->hr_slot_data[current_page];
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800424
Jan Karabc7e97c2007-10-10 16:25:42 +0200425 vec_len = min(PAGE_CACHE_SIZE - vec_start,
Philipp Reisnerb5592922007-01-11 10:58:10 +0100426 (max_slots-cs) * (PAGE_CACHE_SIZE/spp) );
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800427
428 mlog(ML_HB_BIO, "page %d, vec_len = %u, vec_start = %u\n",
Philipp Reisnerb5592922007-01-11 10:58:10 +0100429 current_page, vec_len, vec_start);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800430
431 len = bio_add_page(bio, page, vec_len, vec_start);
Philipp Reisnerb5592922007-01-11 10:58:10 +0100432 if (len != vec_len) break;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800433
Philipp Reisnerb5592922007-01-11 10:58:10 +0100434 cs += vec_len / (PAGE_CACHE_SIZE/spp);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800435 vec_start = 0;
436 }
437
438bail:
Philipp Reisnerb5592922007-01-11 10:58:10 +0100439 *current_slot = cs;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800440 return bio;
441}
442
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800443static int o2hb_read_slots(struct o2hb_region *reg,
444 unsigned int max_slots)
445{
Philipp Reisnerb5592922007-01-11 10:58:10 +0100446 unsigned int current_slot=0;
447 int status;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800448 struct o2hb_bio_wait_ctxt wc;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800449 struct bio *bio;
450
Philipp Reisnerb5592922007-01-11 10:58:10 +0100451 o2hb_bio_wait_init(&wc);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800452
Philipp Reisnerb5592922007-01-11 10:58:10 +0100453 while(current_slot < max_slots) {
454 bio = o2hb_setup_one_bio(reg, &wc, &current_slot, max_slots);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800455 if (IS_ERR(bio)) {
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800456 status = PTR_ERR(bio);
457 mlog_errno(status);
458 goto bail_and_wait;
459 }
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800460
Philipp Reisnerb5592922007-01-11 10:58:10 +0100461 atomic_inc(&wc.wc_num_reqs);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800462 submit_bio(READ, bio);
463 }
464
465 status = 0;
466
467bail_and_wait:
468 o2hb_wait_on_io(reg, &wc);
Mark Fasheha9e2ae32006-03-24 14:20:17 -0800469 if (wc.wc_error && !status)
470 status = wc.wc_error;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800471
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800472 return status;
473}
474
475static int o2hb_issue_node_write(struct o2hb_region *reg,
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800476 struct o2hb_bio_wait_ctxt *write_wc)
477{
478 int status;
479 unsigned int slot;
480 struct bio *bio;
481
Philipp Reisnerb5592922007-01-11 10:58:10 +0100482 o2hb_bio_wait_init(write_wc);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800483
484 slot = o2nm_this_node();
485
Philipp Reisnerb5592922007-01-11 10:58:10 +0100486 bio = o2hb_setup_one_bio(reg, write_wc, &slot, slot+1);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800487 if (IS_ERR(bio)) {
488 status = PTR_ERR(bio);
489 mlog_errno(status);
490 goto bail;
491 }
492
Philipp Reisnerb5592922007-01-11 10:58:10 +0100493 atomic_inc(&write_wc->wc_num_reqs);
Noboru Iwamatsue873fdb2013-07-03 15:01:04 -0700494 submit_bio(WRITE_SYNC, bio);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800495
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800496 status = 0;
497bail:
498 return status;
499}
500
501static u32 o2hb_compute_block_crc_le(struct o2hb_region *reg,
502 struct o2hb_disk_heartbeat_block *hb_block)
503{
504 __le32 old_cksum;
505 u32 ret;
506
507 /* We want to compute the block crc with a 0 value in the
508 * hb_cksum field. Save it off here and replace after the
509 * crc. */
510 old_cksum = hb_block->hb_cksum;
511 hb_block->hb_cksum = 0;
512
513 ret = crc32_le(0, (unsigned char *) hb_block, reg->hr_block_bytes);
514
515 hb_block->hb_cksum = old_cksum;
516
517 return ret;
518}
519
520static void o2hb_dump_slot(struct o2hb_disk_heartbeat_block *hb_block)
521{
Mark Fasheh70bacbd2006-03-02 11:10:05 -0800522 mlog(ML_ERROR, "Dump slot information: seq = 0x%llx, node = %u, "
523 "cksum = 0x%x, generation 0x%llx\n",
524 (long long)le64_to_cpu(hb_block->hb_seq),
525 hb_block->hb_node, le32_to_cpu(hb_block->hb_cksum),
526 (long long)le64_to_cpu(hb_block->hb_generation));
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800527}
528
529static int o2hb_verify_crc(struct o2hb_region *reg,
530 struct o2hb_disk_heartbeat_block *hb_block)
531{
532 u32 read, computed;
533
534 read = le32_to_cpu(hb_block->hb_cksum);
535 computed = o2hb_compute_block_crc_le(reg, hb_block);
536
537 return read == computed;
538}
539
Sunil Mushrand2eece32011-07-24 10:21:54 -0700540/*
541 * Compare the slot data with what we wrote in the last iteration.
542 * If the match fails, print an appropriate error message. This is to
543 * detect errors like... another node hearting on the same slot,
544 * flaky device that is losing writes, etc.
545 * Returns 1 if check succeeds, 0 otherwise.
546 */
547static int o2hb_check_own_slot(struct o2hb_region *reg)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800548{
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800549 struct o2hb_disk_slot *slot;
550 struct o2hb_disk_heartbeat_block *hb_block;
Sunil Mushran33c12a52011-05-04 10:28:01 -0700551 char *errstr;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800552
Sunil Mushran33c12a52011-05-04 10:28:01 -0700553 slot = &reg->hr_slots[o2nm_this_node()];
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800554 /* Don't check on our 1st timestamp */
Sunil Mushran33c12a52011-05-04 10:28:01 -0700555 if (!slot->ds_last_time)
Sunil Mushrand2eece32011-07-24 10:21:54 -0700556 return 0;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800557
Sunil Mushran33c12a52011-05-04 10:28:01 -0700558 hb_block = slot->ds_raw_block;
559 if (le64_to_cpu(hb_block->hb_seq) == slot->ds_last_time &&
560 le64_to_cpu(hb_block->hb_generation) == slot->ds_last_generation &&
561 hb_block->hb_node == slot->ds_node_num)
Sunil Mushrand2eece32011-07-24 10:21:54 -0700562 return 1;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800563
Sunil Mushran33c12a52011-05-04 10:28:01 -0700564#define ERRSTR1 "Another node is heartbeating on device"
565#define ERRSTR2 "Heartbeat generation mismatch on device"
566#define ERRSTR3 "Heartbeat sequence mismatch on device"
567
568 if (hb_block->hb_node != slot->ds_node_num)
569 errstr = ERRSTR1;
570 else if (le64_to_cpu(hb_block->hb_generation) !=
571 slot->ds_last_generation)
572 errstr = ERRSTR2;
573 else
574 errstr = ERRSTR3;
575
576 mlog(ML_ERROR, "%s (%s): expected(%u:0x%llx, 0x%llx), "
577 "ondisk(%u:0x%llx, 0x%llx)\n", errstr, reg->hr_dev_name,
578 slot->ds_node_num, (unsigned long long)slot->ds_last_generation,
579 (unsigned long long)slot->ds_last_time, hb_block->hb_node,
580 (unsigned long long)le64_to_cpu(hb_block->hb_generation),
581 (unsigned long long)le64_to_cpu(hb_block->hb_seq));
Sunil Mushrand2eece32011-07-24 10:21:54 -0700582
583 return 0;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800584}
585
586static inline void o2hb_prepare_block(struct o2hb_region *reg,
587 u64 generation)
588{
589 int node_num;
590 u64 cputime;
591 struct o2hb_disk_slot *slot;
592 struct o2hb_disk_heartbeat_block *hb_block;
593
594 node_num = o2nm_this_node();
595 slot = &reg->hr_slots[node_num];
596
597 hb_block = (struct o2hb_disk_heartbeat_block *)slot->ds_raw_block;
598 memset(hb_block, 0, reg->hr_block_bytes);
599 /* TODO: time stuff */
600 cputime = CURRENT_TIME.tv_sec;
601 if (!cputime)
602 cputime = 1;
603
604 hb_block->hb_seq = cpu_to_le64(cputime);
605 hb_block->hb_node = node_num;
606 hb_block->hb_generation = cpu_to_le64(generation);
Mark Fasheh0db638f2006-05-09 15:09:35 -0700607 hb_block->hb_dead_ms = cpu_to_le32(o2hb_dead_threshold * O2HB_REGION_TIMEOUT_MS);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800608
609 /* This step must always happen last! */
610 hb_block->hb_cksum = cpu_to_le32(o2hb_compute_block_crc_le(reg,
611 hb_block));
612
Mark Fasheh70bacbd2006-03-02 11:10:05 -0800613 mlog(ML_HB_BIO, "our node generation = 0x%llx, cksum = 0x%x\n",
Mark Fasheh5fdf1e62007-04-27 16:50:03 -0700614 (long long)generation,
Mark Fasheh70bacbd2006-03-02 11:10:05 -0800615 le32_to_cpu(hb_block->hb_cksum));
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800616}
617
618static void o2hb_fire_callbacks(struct o2hb_callback *hbcall,
619 struct o2nm_node *node,
620 int idx)
621{
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800622 struct o2hb_callback_func *f;
623
Dong Fangdf53cd32013-09-11 14:19:50 -0700624 list_for_each_entry(f, &hbcall->list, hc_item) {
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800625 mlog(ML_HEARTBEAT, "calling funcs %p\n", f);
626 (f->hc_func)(node, idx, f->hc_data);
627 }
628}
629
630/* Will run the list in order until we process the passed event */
631static void o2hb_run_event_list(struct o2hb_node_event *queued_event)
632{
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800633 struct o2hb_callback *hbcall;
634 struct o2hb_node_event *event;
635
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800636 /* Holding callback sem assures we don't alter the callback
637 * lists when doing this, and serializes ourselves with other
638 * processes wanting callbacks. */
639 down_write(&o2hb_callback_sem);
640
641 spin_lock(&o2hb_live_lock);
642 while (!list_empty(&o2hb_node_events)
643 && !list_empty(&queued_event->hn_item)) {
644 event = list_entry(o2hb_node_events.next,
645 struct o2hb_node_event,
646 hn_item);
647 list_del_init(&event->hn_item);
648 spin_unlock(&o2hb_live_lock);
649
650 mlog(ML_HEARTBEAT, "Node %s event for %d\n",
651 event->hn_event_type == O2HB_NODE_UP_CB ? "UP" : "DOWN",
652 event->hn_node_num);
653
654 hbcall = hbcall_from_type(event->hn_event_type);
655
656 /* We should *never* have gotten on to the list with a
657 * bad type... This isn't something that we should try
658 * to recover from. */
659 BUG_ON(IS_ERR(hbcall));
660
661 o2hb_fire_callbacks(hbcall, event->hn_node, event->hn_node_num);
662
663 spin_lock(&o2hb_live_lock);
664 }
665 spin_unlock(&o2hb_live_lock);
666
667 up_write(&o2hb_callback_sem);
668}
669
670static void o2hb_queue_node_event(struct o2hb_node_event *event,
671 enum o2hb_callback_type type,
672 struct o2nm_node *node,
673 int node_num)
674{
675 assert_spin_locked(&o2hb_live_lock);
676
Sunil Mushran0e105d32010-10-07 17:00:16 -0700677 BUG_ON((!node) && (type != O2HB_NODE_DOWN_CB));
678
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800679 event->hn_event_type = type;
680 event->hn_node = node;
681 event->hn_node_num = node_num;
682
683 mlog(ML_HEARTBEAT, "Queue node %s event for node %d\n",
684 type == O2HB_NODE_UP_CB ? "UP" : "DOWN", node_num);
685
686 list_add_tail(&event->hn_item, &o2hb_node_events);
687}
688
689static void o2hb_shutdown_slot(struct o2hb_disk_slot *slot)
690{
691 struct o2hb_node_event event =
692 { .hn_item = LIST_HEAD_INIT(event.hn_item), };
693 struct o2nm_node *node;
Joyce6f8648e2013-09-11 14:20:03 -0700694 int queued = 0;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800695
696 node = o2nm_get_node_by_num(slot->ds_node_num);
697 if (!node)
698 return;
699
700 spin_lock(&o2hb_live_lock);
701 if (!list_empty(&slot->ds_live_item)) {
702 mlog(ML_HEARTBEAT, "Shutdown, node %d leaves region\n",
703 slot->ds_node_num);
704
705 list_del_init(&slot->ds_live_item);
706
707 if (list_empty(&o2hb_live_slots[slot->ds_node_num])) {
708 clear_bit(slot->ds_node_num, o2hb_live_node_bitmap);
709
710 o2hb_queue_node_event(&event, O2HB_NODE_DOWN_CB, node,
711 slot->ds_node_num);
Joyce6f8648e2013-09-11 14:20:03 -0700712 queued = 1;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800713 }
714 }
715 spin_unlock(&o2hb_live_lock);
716
Joyce6f8648e2013-09-11 14:20:03 -0700717 if (queued)
718 o2hb_run_event_list(&event);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800719
720 o2nm_node_put(node);
721}
722
Sunil Mushrand2eece32011-07-24 10:21:54 -0700723static void o2hb_set_quorum_device(struct o2hb_region *reg)
Sunil Mushran43182d22010-10-06 17:55:16 -0700724{
Sunil Mushran43182d22010-10-06 17:55:16 -0700725 if (!o2hb_global_heartbeat_active())
726 return;
727
Sunil Mushrand2eece32011-07-24 10:21:54 -0700728 /* Prevent race with o2hb_heartbeat_group_drop_item() */
729 if (kthread_should_stop())
Sunil Mushran43182d22010-10-06 17:55:16 -0700730 return;
731
Sunil Mushrand2eece32011-07-24 10:21:54 -0700732 /* Tag region as quorum only after thread reaches steady state */
733 if (atomic_read(&reg->hr_steady_iterations) != 0)
734 return;
735
736 spin_lock(&o2hb_live_lock);
737
738 if (test_bit(reg->hr_region_num, o2hb_quorum_region_bitmap))
739 goto unlock;
740
Sunil Mushran43182d22010-10-06 17:55:16 -0700741 /*
742 * A region can be added to the quorum only when it sees all
743 * live nodes heartbeat on it. In other words, the region has been
744 * added to all nodes.
745 */
746 if (memcmp(reg->hr_live_node_bitmap, o2hb_live_node_bitmap,
747 sizeof(o2hb_live_node_bitmap)))
Sunil Mushrand2eece32011-07-24 10:21:54 -0700748 goto unlock;
Sunil Mushran43182d22010-10-06 17:55:16 -0700749
Sunil Mushrand2eece32011-07-24 10:21:54 -0700750 printk(KERN_NOTICE "o2hb: Region %s (%s) is now a quorum device\n",
751 config_item_name(&reg->hr_item), reg->hr_dev_name);
Sunil Mushran43182d22010-10-06 17:55:16 -0700752
753 set_bit(reg->hr_region_num, o2hb_quorum_region_bitmap);
Sunil Mushran58a31582010-12-14 14:14:29 -0800754
755 /*
756 * If global heartbeat active, unpin all regions if the
757 * region count > CUT_OFF
758 */
Akinobu Mitaa8f70de2013-11-12 15:06:58 -0800759 if (bitmap_weight(o2hb_quorum_region_bitmap,
Sunil Mushran58a31582010-12-14 14:14:29 -0800760 O2NM_MAX_REGIONS) > O2HB_PIN_CUT_OFF)
761 o2hb_region_unpin(NULL);
Sunil Mushrand2eece32011-07-24 10:21:54 -0700762unlock:
763 spin_unlock(&o2hb_live_lock);
Sunil Mushran43182d22010-10-06 17:55:16 -0700764}
765
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800766static int o2hb_check_slot(struct o2hb_region *reg,
767 struct o2hb_disk_slot *slot)
768{
769 int changed = 0, gen_changed = 0;
770 struct o2hb_node_event event =
771 { .hn_item = LIST_HEAD_INIT(event.hn_item), };
772 struct o2nm_node *node;
773 struct o2hb_disk_heartbeat_block *hb_block = reg->hr_tmp_block;
774 u64 cputime;
Mark Fasheh0db638f2006-05-09 15:09:35 -0700775 unsigned int dead_ms = o2hb_dead_threshold * O2HB_REGION_TIMEOUT_MS;
776 unsigned int slot_dead_ms;
Sunil Mushran0e105d32010-10-07 17:00:16 -0700777 int tmp;
Joyce6f8648e2013-09-11 14:20:03 -0700778 int queued = 0;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800779
780 memcpy(hb_block, slot->ds_raw_block, reg->hr_block_bytes);
781
Sunil Mushran0e105d32010-10-07 17:00:16 -0700782 /*
783 * If a node is no longer configured but is still in the livemap, we
784 * may need to clear that bit from the livemap.
785 */
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800786 node = o2nm_get_node_by_num(slot->ds_node_num);
Sunil Mushran0e105d32010-10-07 17:00:16 -0700787 if (!node) {
788 spin_lock(&o2hb_live_lock);
789 tmp = test_bit(slot->ds_node_num, o2hb_live_node_bitmap);
790 spin_unlock(&o2hb_live_lock);
791 if (!tmp)
792 return 0;
793 }
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800794
795 if (!o2hb_verify_crc(reg, hb_block)) {
796 /* all paths from here will drop o2hb_live_lock for
797 * us. */
798 spin_lock(&o2hb_live_lock);
799
800 /* Don't print an error on the console in this case -
801 * a freshly formatted heartbeat area will not have a
802 * crc set on it. */
803 if (list_empty(&slot->ds_live_item))
804 goto out;
805
806 /* The node is live but pushed out a bad crc. We
807 * consider it a transient miss but don't populate any
808 * other values as they may be junk. */
809 mlog(ML_ERROR, "Node %d has written a bad crc to %s\n",
810 slot->ds_node_num, reg->hr_dev_name);
811 o2hb_dump_slot(hb_block);
812
813 slot->ds_equal_samples++;
814 goto fire_callbacks;
815 }
816
817 /* we don't care if these wrap.. the state transitions below
818 * clear at the right places */
819 cputime = le64_to_cpu(hb_block->hb_seq);
820 if (slot->ds_last_time != cputime)
821 slot->ds_changed_samples++;
822 else
823 slot->ds_equal_samples++;
824 slot->ds_last_time = cputime;
825
826 /* The node changed heartbeat generations. We assume this to
827 * mean it dropped off but came back before we timed out. We
828 * want to consider it down for the time being but don't want
829 * to lose any changed_samples state we might build up to
830 * considering it live again. */
831 if (slot->ds_last_generation != le64_to_cpu(hb_block->hb_generation)) {
832 gen_changed = 1;
833 slot->ds_equal_samples = 0;
Mark Fasheh70bacbd2006-03-02 11:10:05 -0800834 mlog(ML_HEARTBEAT, "Node %d changed generation (0x%llx "
835 "to 0x%llx)\n", slot->ds_node_num,
836 (long long)slot->ds_last_generation,
837 (long long)le64_to_cpu(hb_block->hb_generation));
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800838 }
839
840 slot->ds_last_generation = le64_to_cpu(hb_block->hb_generation);
841
Mark Fasheh70bacbd2006-03-02 11:10:05 -0800842 mlog(ML_HEARTBEAT, "Slot %d gen 0x%llx cksum 0x%x "
843 "seq %llu last %llu changed %u equal %u\n",
844 slot->ds_node_num, (long long)slot->ds_last_generation,
845 le32_to_cpu(hb_block->hb_cksum),
Sunil Mushran2bd63212010-01-25 16:57:38 -0800846 (unsigned long long)le64_to_cpu(hb_block->hb_seq),
Mark Fasheh70bacbd2006-03-02 11:10:05 -0800847 (unsigned long long)slot->ds_last_time, slot->ds_changed_samples,
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800848 slot->ds_equal_samples);
849
850 spin_lock(&o2hb_live_lock);
851
852fire_callbacks:
853 /* dead nodes only come to life after some number of
854 * changes at any time during their dead time */
855 if (list_empty(&slot->ds_live_item) &&
856 slot->ds_changed_samples >= O2HB_LIVE_THRESHOLD) {
Mark Fasheh70bacbd2006-03-02 11:10:05 -0800857 mlog(ML_HEARTBEAT, "Node %d (id 0x%llx) joined my region\n",
858 slot->ds_node_num, (long long)slot->ds_last_generation);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800859
Sunil Mushran823a6372010-10-06 17:55:21 -0700860 set_bit(slot->ds_node_num, reg->hr_live_node_bitmap);
861
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800862 /* first on the list generates a callback */
863 if (list_empty(&o2hb_live_slots[slot->ds_node_num])) {
Sunil Mushrand6aa1c72010-10-06 18:50:50 -0700864 mlog(ML_HEARTBEAT, "o2hb: Add node %d to live nodes "
865 "bitmap\n", slot->ds_node_num);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800866 set_bit(slot->ds_node_num, o2hb_live_node_bitmap);
867
868 o2hb_queue_node_event(&event, O2HB_NODE_UP_CB, node,
869 slot->ds_node_num);
870
871 changed = 1;
Joyce6f8648e2013-09-11 14:20:03 -0700872 queued = 1;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800873 }
874
875 list_add_tail(&slot->ds_live_item,
876 &o2hb_live_slots[slot->ds_node_num]);
877
878 slot->ds_equal_samples = 0;
Mark Fasheh0db638f2006-05-09 15:09:35 -0700879
880 /* We want to be sure that all nodes agree on the
881 * number of milliseconds before a node will be
882 * considered dead. The self-fencing timeout is
883 * computed from this value, and a discrepancy might
884 * result in heartbeat calling a node dead when it
885 * hasn't self-fenced yet. */
886 slot_dead_ms = le32_to_cpu(hb_block->hb_dead_ms);
887 if (slot_dead_ms && slot_dead_ms != dead_ms) {
888 /* TODO: Perhaps we can fail the region here. */
889 mlog(ML_ERROR, "Node %d on device %s has a dead count "
890 "of %u ms, but our count is %u ms.\n"
891 "Please double check your configuration values "
892 "for 'O2CB_HEARTBEAT_THRESHOLD'\n",
893 slot->ds_node_num, reg->hr_dev_name, slot_dead_ms,
894 dead_ms);
895 }
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800896 goto out;
897 }
898
899 /* if the list is dead, we're done.. */
900 if (list_empty(&slot->ds_live_item))
901 goto out;
902
903 /* live nodes only go dead after enough consequtive missed
904 * samples.. reset the missed counter whenever we see
905 * activity */
906 if (slot->ds_equal_samples >= o2hb_dead_threshold || gen_changed) {
907 mlog(ML_HEARTBEAT, "Node %d left my region\n",
908 slot->ds_node_num);
909
Sunil Mushran823a6372010-10-06 17:55:21 -0700910 clear_bit(slot->ds_node_num, reg->hr_live_node_bitmap);
911
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800912 /* last off the live_slot generates a callback */
913 list_del_init(&slot->ds_live_item);
914 if (list_empty(&o2hb_live_slots[slot->ds_node_num])) {
Sunil Mushrand6aa1c72010-10-06 18:50:50 -0700915 mlog(ML_HEARTBEAT, "o2hb: Remove node %d from live "
916 "nodes bitmap\n", slot->ds_node_num);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800917 clear_bit(slot->ds_node_num, o2hb_live_node_bitmap);
918
Sunil Mushran0e105d32010-10-07 17:00:16 -0700919 /* node can be null */
920 o2hb_queue_node_event(&event, O2HB_NODE_DOWN_CB,
921 node, slot->ds_node_num);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800922
923 changed = 1;
Joyce6f8648e2013-09-11 14:20:03 -0700924 queued = 1;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800925 }
926
927 /* We don't clear this because the node is still
928 * actually writing new blocks. */
929 if (!gen_changed)
930 slot->ds_changed_samples = 0;
931 goto out;
932 }
933 if (slot->ds_changed_samples) {
934 slot->ds_changed_samples = 0;
935 slot->ds_equal_samples = 0;
936 }
937out:
938 spin_unlock(&o2hb_live_lock);
939
Joyce6f8648e2013-09-11 14:20:03 -0700940 if (queued)
941 o2hb_run_event_list(&event);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800942
Sunil Mushran0e105d32010-10-07 17:00:16 -0700943 if (node)
944 o2nm_node_put(node);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800945 return changed;
946}
947
Akinobu Mita518df6b2013-11-12 15:07:01 -0800948static int o2hb_highest_node(unsigned long *nodes, int numbits)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800949{
Akinobu Mita518df6b2013-11-12 15:07:01 -0800950 return find_last_bit(nodes, numbits);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800951}
952
Mark Fasheha9e2ae32006-03-24 14:20:17 -0800953static int o2hb_do_disk_heartbeat(struct o2hb_region *reg)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800954{
Sunil Mushrand2eece32011-07-24 10:21:54 -0700955 int i, ret, highest_node;
956 int membership_change = 0, own_slot_ok = 0;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800957 unsigned long configured_nodes[BITS_TO_LONGS(O2NM_MAX_NODES)];
Sunil Mushran0e105d32010-10-07 17:00:16 -0700958 unsigned long live_node_bitmap[BITS_TO_LONGS(O2NM_MAX_NODES)];
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800959 struct o2hb_bio_wait_ctxt write_wc;
960
Mark Fasheha9e2ae32006-03-24 14:20:17 -0800961 ret = o2nm_configured_node_map(configured_nodes,
962 sizeof(configured_nodes));
963 if (ret) {
964 mlog_errno(ret);
Sunil Mushrand2eece32011-07-24 10:21:54 -0700965 goto bail;
Mark Fasheha9e2ae32006-03-24 14:20:17 -0800966 }
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800967
Sunil Mushran0e105d32010-10-07 17:00:16 -0700968 /*
969 * If a node is not configured but is in the livemap, we still need
970 * to read the slot so as to be able to remove it from the livemap.
971 */
972 o2hb_fill_node_map(live_node_bitmap, sizeof(live_node_bitmap));
973 i = -1;
974 while ((i = find_next_bit(live_node_bitmap,
975 O2NM_MAX_NODES, i + 1)) < O2NM_MAX_NODES) {
976 set_bit(i, configured_nodes);
977 }
978
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800979 highest_node = o2hb_highest_node(configured_nodes, O2NM_MAX_NODES);
980 if (highest_node >= O2NM_MAX_NODES) {
Sunil Mushrand2eece32011-07-24 10:21:54 -0700981 mlog(ML_NOTICE, "o2hb: No configured nodes found!\n");
982 ret = -EINVAL;
983 goto bail;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800984 }
985
986 /* No sense in reading the slots of nodes that don't exist
987 * yet. Of course, if the node definitions have holes in them
988 * then we're reading an empty slot anyway... Consider this
989 * best-effort. */
990 ret = o2hb_read_slots(reg, highest_node + 1);
991 if (ret < 0) {
992 mlog_errno(ret);
Sunil Mushrand2eece32011-07-24 10:21:54 -0700993 goto bail;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800994 }
995
996 /* With an up to date view of the slots, we can check that no
997 * other node has been improperly configured to heartbeat in
998 * our slot. */
Sunil Mushrand2eece32011-07-24 10:21:54 -0700999 own_slot_ok = o2hb_check_own_slot(reg);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001000
1001 /* fill in the proper info for our next heartbeat */
1002 o2hb_prepare_block(reg, reg->hr_generation);
1003
Philipp Reisnerb5592922007-01-11 10:58:10 +01001004 ret = o2hb_issue_node_write(reg, &write_wc);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001005 if (ret < 0) {
1006 mlog_errno(ret);
Sunil Mushrand2eece32011-07-24 10:21:54 -07001007 goto bail;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001008 }
1009
1010 i = -1;
Sunil Mushran33c12a52011-05-04 10:28:01 -07001011 while((i = find_next_bit(configured_nodes,
1012 O2NM_MAX_NODES, i + 1)) < O2NM_MAX_NODES) {
Sunil Mushrand2eece32011-07-24 10:21:54 -07001013 membership_change |= o2hb_check_slot(reg, &reg->hr_slots[i]);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001014 }
1015
1016 /*
1017 * We have to be sure we've advertised ourselves on disk
1018 * before we can go to steady state. This ensures that
1019 * people we find in our steady state have seen us.
1020 */
1021 o2hb_wait_on_io(reg, &write_wc);
Mark Fasheha9e2ae32006-03-24 14:20:17 -08001022 if (write_wc.wc_error) {
1023 /* Do not re-arm the write timeout on I/O error - we
1024 * can't be sure that the new block ever made it to
1025 * disk */
1026 mlog(ML_ERROR, "Write error %d on device \"%s\"\n",
1027 write_wc.wc_error, reg->hr_dev_name);
Sunil Mushrand2eece32011-07-24 10:21:54 -07001028 ret = write_wc.wc_error;
1029 goto bail;
Mark Fasheha9e2ae32006-03-24 14:20:17 -08001030 }
1031
Sunil Mushrand2eece32011-07-24 10:21:54 -07001032 /* Skip disarming the timeout if own slot has stale/bad data */
1033 if (own_slot_ok) {
1034 o2hb_set_quorum_device(reg);
1035 o2hb_arm_write_timeout(reg);
1036 }
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001037
Sunil Mushrand2eece32011-07-24 10:21:54 -07001038bail:
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001039 /* let the person who launched us know when things are steady */
Sunil Mushrand2eece32011-07-24 10:21:54 -07001040 if (atomic_read(&reg->hr_steady_iterations) != 0) {
1041 if (!ret && own_slot_ok && !membership_change) {
1042 if (atomic_dec_and_test(&reg->hr_steady_iterations))
1043 wake_up(&o2hb_steady_queue);
1044 }
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001045 }
Mark Fasheha9e2ae32006-03-24 14:20:17 -08001046
Sunil Mushrand2eece32011-07-24 10:21:54 -07001047 if (atomic_read(&reg->hr_steady_iterations) != 0) {
1048 if (atomic_dec_and_test(&reg->hr_unsteady_iterations)) {
1049 printk(KERN_NOTICE "o2hb: Unable to stabilize "
1050 "heartbeart on region %s (%s)\n",
1051 config_item_name(&reg->hr_item),
1052 reg->hr_dev_name);
1053 atomic_set(&reg->hr_steady_iterations, 0);
1054 reg->hr_aborted_start = 1;
1055 wake_up(&o2hb_steady_queue);
1056 ret = -EIO;
1057 }
1058 }
1059
1060 return ret;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001061}
1062
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001063/*
1064 * we ride the region ref that the region dir holds. before the region
1065 * dir is removed and drops it ref it will wait to tear down this
1066 * thread.
1067 */
1068static int o2hb_thread(void *data)
1069{
1070 int i, ret;
1071 struct o2hb_region *reg = data;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001072 struct o2hb_bio_wait_ctxt write_wc;
Tina Ruchandani40476b82015-09-04 15:44:43 -07001073 ktime_t before_hb, after_hb;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001074 unsigned int elapsed_msec;
1075
1076 mlog(ML_HEARTBEAT|ML_KTHREAD, "hb thread running\n");
1077
Dongsheng Yang8698a742014-03-11 18:09:12 +08001078 set_user_nice(current, MIN_NICE);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001079
Sunil Mushrancfc069d2010-12-14 14:14:31 -08001080 /* Pin node */
1081 o2nm_depend_this_node();
1082
Sunil Mushrand2eece32011-07-24 10:21:54 -07001083 while (!kthread_should_stop() &&
1084 !reg->hr_unclean_stop && !reg->hr_aborted_start) {
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001085 /* We track the time spent inside
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02001086 * o2hb_do_disk_heartbeat so that we avoid more than
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001087 * hr_timeout_ms between disk writes. On busy systems
1088 * this should result in a heartbeat which is less
1089 * likely to time itself out. */
Tina Ruchandani40476b82015-09-04 15:44:43 -07001090 before_hb = ktime_get_real();
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001091
Sunil Mushrand2eece32011-07-24 10:21:54 -07001092 ret = o2hb_do_disk_heartbeat(reg);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001093
Tina Ruchandani40476b82015-09-04 15:44:43 -07001094 after_hb = ktime_get_real();
1095
1096 elapsed_msec = (unsigned int)
1097 ktime_ms_delta(after_hb, before_hb);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001098
Tao Mab31d3082009-12-22 10:32:15 +08001099 mlog(ML_HEARTBEAT,
Tina Ruchandani40476b82015-09-04 15:44:43 -07001100 "start = %lld, end = %lld, msec = %u, ret = %d\n",
1101 before_hb.tv64, after_hb.tv64, elapsed_msec, ret);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001102
Sunil Mushrand2eece32011-07-24 10:21:54 -07001103 if (!kthread_should_stop() &&
1104 elapsed_msec < reg->hr_timeout_ms) {
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001105 /* the kthread api has blocked signals for us so no
1106 * need to record the return value. */
1107 msleep_interruptible(reg->hr_timeout_ms - elapsed_msec);
1108 }
1109 }
1110
1111 o2hb_disarm_write_timeout(reg);
1112
1113 /* unclean stop is only used in very bad situation */
1114 for(i = 0; !reg->hr_unclean_stop && i < reg->hr_blocks; i++)
1115 o2hb_shutdown_slot(&reg->hr_slots[i]);
1116
1117 /* Explicit down notification - avoid forcing the other nodes
1118 * to timeout on this region when we could just as easily
1119 * write a clear generation - thus indicating to them that
1120 * this node has left this region.
Sunil Mushrand2eece32011-07-24 10:21:54 -07001121 */
1122 if (!reg->hr_unclean_stop && !reg->hr_aborted_start) {
1123 o2hb_prepare_block(reg, 0);
1124 ret = o2hb_issue_node_write(reg, &write_wc);
1125 if (ret == 0)
1126 o2hb_wait_on_io(reg, &write_wc);
1127 else
1128 mlog_errno(ret);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001129 }
1130
Sunil Mushrancfc069d2010-12-14 14:14:31 -08001131 /* Unpin node */
1132 o2nm_undepend_this_node();
1133
Sunil Mushrand2eece32011-07-24 10:21:54 -07001134 mlog(ML_HEARTBEAT|ML_KTHREAD, "o2hb thread exiting\n");
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001135
1136 return 0;
1137}
1138
Sunil Mushran87d3d3f2008-12-17 14:17:42 -08001139#ifdef CONFIG_DEBUG_FS
1140static int o2hb_debug_open(struct inode *inode, struct file *file)
1141{
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001142 struct o2hb_debug_buf *db = inode->i_private;
Sunil Mushran1f285302010-10-06 17:55:12 -07001143 struct o2hb_region *reg;
Sunil Mushran87d3d3f2008-12-17 14:17:42 -08001144 unsigned long map[BITS_TO_LONGS(O2NM_MAX_NODES)];
Sunil Mushranbb570a52011-07-24 10:31:54 -07001145 unsigned long lts;
Sunil Mushran87d3d3f2008-12-17 14:17:42 -08001146 char *buf = NULL;
1147 int i = -1;
1148 int out = 0;
1149
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001150 /* max_nodes should be the largest bitmap we pass here */
1151 BUG_ON(sizeof(map) < db->db_size);
1152
Sunil Mushran87d3d3f2008-12-17 14:17:42 -08001153 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
1154 if (!buf)
1155 goto bail;
1156
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001157 switch (db->db_type) {
1158 case O2HB_DB_TYPE_LIVENODES:
Sunil Mushrana6de0132010-10-06 17:55:13 -07001159 case O2HB_DB_TYPE_LIVEREGIONS:
1160 case O2HB_DB_TYPE_QUORUMREGIONS:
1161 case O2HB_DB_TYPE_FAILEDREGIONS:
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001162 spin_lock(&o2hb_live_lock);
1163 memcpy(map, db->db_data, db->db_size);
1164 spin_unlock(&o2hb_live_lock);
1165 break;
Sunil Mushran87d3d3f2008-12-17 14:17:42 -08001166
Sunil Mushran1f285302010-10-06 17:55:12 -07001167 case O2HB_DB_TYPE_REGION_LIVENODES:
1168 spin_lock(&o2hb_live_lock);
1169 reg = (struct o2hb_region *)db->db_data;
1170 memcpy(map, reg->hr_live_node_bitmap, db->db_size);
1171 spin_unlock(&o2hb_live_lock);
1172 break;
1173
1174 case O2HB_DB_TYPE_REGION_NUMBER:
1175 reg = (struct o2hb_region *)db->db_data;
1176 out += snprintf(buf + out, PAGE_SIZE - out, "%d\n",
1177 reg->hr_region_num);
1178 goto done;
1179
Sunil Mushran43695d02010-10-06 17:55:09 -07001180 case O2HB_DB_TYPE_REGION_ELAPSED_TIME:
1181 reg = (struct o2hb_region *)db->db_data;
Sunil Mushranbb570a52011-07-24 10:31:54 -07001182 lts = reg->hr_last_timeout_start;
1183 /* If 0, it has never been set before */
1184 if (lts)
1185 lts = jiffies_to_msecs(jiffies - lts);
1186 out += snprintf(buf + out, PAGE_SIZE - out, "%lu\n", lts);
Sunil Mushran43695d02010-10-06 17:55:09 -07001187 goto done;
1188
Sunil Mushrancb0586b2010-12-14 14:14:30 -08001189 case O2HB_DB_TYPE_REGION_PINNED:
1190 reg = (struct o2hb_region *)db->db_data;
1191 out += snprintf(buf + out, PAGE_SIZE - out, "%u\n",
1192 !!reg->hr_item_pinned);
1193 goto done;
1194
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001195 default:
1196 goto done;
1197 }
1198
1199 while ((i = find_next_bit(map, db->db_len, i + 1)) < db->db_len)
Sunil Mushran87d3d3f2008-12-17 14:17:42 -08001200 out += snprintf(buf + out, PAGE_SIZE - out, "%d ", i);
1201 out += snprintf(buf + out, PAGE_SIZE - out, "\n");
1202
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001203done:
Sunil Mushran87d3d3f2008-12-17 14:17:42 -08001204 i_size_write(inode, out);
1205
1206 file->private_data = buf;
1207
1208 return 0;
1209bail:
1210 return -ENOMEM;
1211}
1212
1213static int o2hb_debug_release(struct inode *inode, struct file *file)
1214{
1215 kfree(file->private_data);
1216 return 0;
1217}
1218
1219static ssize_t o2hb_debug_read(struct file *file, char __user *buf,
1220 size_t nbytes, loff_t *ppos)
1221{
1222 return simple_read_from_buffer(buf, nbytes, ppos, file->private_data,
1223 i_size_read(file->f_mapping->host));
1224}
1225#else
1226static int o2hb_debug_open(struct inode *inode, struct file *file)
1227{
1228 return 0;
1229}
1230static int o2hb_debug_release(struct inode *inode, struct file *file)
1231{
1232 return 0;
1233}
1234static ssize_t o2hb_debug_read(struct file *file, char __user *buf,
1235 size_t nbytes, loff_t *ppos)
1236{
1237 return 0;
1238}
1239#endif /* CONFIG_DEBUG_FS */
1240
Alexey Dobriyan828c0952009-10-01 15:43:56 -07001241static const struct file_operations o2hb_debug_fops = {
Sunil Mushran87d3d3f2008-12-17 14:17:42 -08001242 .open = o2hb_debug_open,
1243 .release = o2hb_debug_release,
1244 .read = o2hb_debug_read,
1245 .llseek = generic_file_llseek,
1246};
1247
1248void o2hb_exit(void)
1249{
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001250 kfree(o2hb_db_livenodes);
Sunil Mushrana6de0132010-10-06 17:55:13 -07001251 kfree(o2hb_db_liveregions);
1252 kfree(o2hb_db_quorumregions);
1253 kfree(o2hb_db_failedregions);
1254 debugfs_remove(o2hb_debug_failedregions);
1255 debugfs_remove(o2hb_debug_quorumregions);
1256 debugfs_remove(o2hb_debug_liveregions);
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001257 debugfs_remove(o2hb_debug_livenodes);
1258 debugfs_remove(o2hb_debug_dir);
1259}
1260
1261static struct dentry *o2hb_debug_create(const char *name, struct dentry *dir,
1262 struct o2hb_debug_buf **db, int db_len,
1263 int type, int size, int len, void *data)
1264{
1265 *db = kmalloc(db_len, GFP_KERNEL);
1266 if (!*db)
1267 return NULL;
1268
1269 (*db)->db_type = type;
1270 (*db)->db_size = size;
1271 (*db)->db_len = len;
1272 (*db)->db_data = data;
1273
1274 return debugfs_create_file(name, S_IFREG|S_IRUSR, dir, *db,
1275 &o2hb_debug_fops);
1276}
1277
1278static int o2hb_debug_init(void)
1279{
1280 int ret = -ENOMEM;
1281
1282 o2hb_debug_dir = debugfs_create_dir(O2HB_DEBUG_DIR, NULL);
Linus Torvalds8f443e22015-04-21 09:17:28 -07001283 if (!o2hb_debug_dir) {
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001284 mlog_errno(ret);
1285 goto bail;
1286 }
1287
1288 o2hb_debug_livenodes = o2hb_debug_create(O2HB_DEBUG_LIVENODES,
1289 o2hb_debug_dir,
1290 &o2hb_db_livenodes,
1291 sizeof(*o2hb_db_livenodes),
1292 O2HB_DB_TYPE_LIVENODES,
1293 sizeof(o2hb_live_node_bitmap),
1294 O2NM_MAX_NODES,
1295 o2hb_live_node_bitmap);
Linus Torvalds8f443e22015-04-21 09:17:28 -07001296 if (!o2hb_debug_livenodes) {
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001297 mlog_errno(ret);
1298 goto bail;
1299 }
Sunil Mushrana6de0132010-10-06 17:55:13 -07001300
1301 o2hb_debug_liveregions = o2hb_debug_create(O2HB_DEBUG_LIVEREGIONS,
1302 o2hb_debug_dir,
1303 &o2hb_db_liveregions,
1304 sizeof(*o2hb_db_liveregions),
1305 O2HB_DB_TYPE_LIVEREGIONS,
1306 sizeof(o2hb_live_region_bitmap),
1307 O2NM_MAX_REGIONS,
1308 o2hb_live_region_bitmap);
Linus Torvalds8f443e22015-04-21 09:17:28 -07001309 if (!o2hb_debug_liveregions) {
Sunil Mushrana6de0132010-10-06 17:55:13 -07001310 mlog_errno(ret);
1311 goto bail;
1312 }
1313
1314 o2hb_debug_quorumregions =
1315 o2hb_debug_create(O2HB_DEBUG_QUORUMREGIONS,
1316 o2hb_debug_dir,
1317 &o2hb_db_quorumregions,
1318 sizeof(*o2hb_db_quorumregions),
1319 O2HB_DB_TYPE_QUORUMREGIONS,
1320 sizeof(o2hb_quorum_region_bitmap),
1321 O2NM_MAX_REGIONS,
1322 o2hb_quorum_region_bitmap);
Linus Torvalds8f443e22015-04-21 09:17:28 -07001323 if (!o2hb_debug_quorumregions) {
Sunil Mushrana6de0132010-10-06 17:55:13 -07001324 mlog_errno(ret);
1325 goto bail;
1326 }
1327
1328 o2hb_debug_failedregions =
1329 o2hb_debug_create(O2HB_DEBUG_FAILEDREGIONS,
1330 o2hb_debug_dir,
1331 &o2hb_db_failedregions,
1332 sizeof(*o2hb_db_failedregions),
1333 O2HB_DB_TYPE_FAILEDREGIONS,
1334 sizeof(o2hb_failed_region_bitmap),
1335 O2NM_MAX_REGIONS,
1336 o2hb_failed_region_bitmap);
Linus Torvalds8f443e22015-04-21 09:17:28 -07001337 if (!o2hb_debug_failedregions) {
Sunil Mushrana6de0132010-10-06 17:55:13 -07001338 mlog_errno(ret);
1339 goto bail;
1340 }
1341
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001342 ret = 0;
1343bail:
1344 if (ret)
1345 o2hb_exit();
1346
1347 return ret;
Sunil Mushran87d3d3f2008-12-17 14:17:42 -08001348}
1349
1350int o2hb_init(void)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001351{
1352 int i;
1353
1354 for (i = 0; i < ARRAY_SIZE(o2hb_callbacks); i++)
1355 INIT_LIST_HEAD(&o2hb_callbacks[i].list);
1356
1357 for (i = 0; i < ARRAY_SIZE(o2hb_live_slots); i++)
1358 INIT_LIST_HEAD(&o2hb_live_slots[i]);
1359
1360 INIT_LIST_HEAD(&o2hb_node_events);
1361
1362 memset(o2hb_live_node_bitmap, 0, sizeof(o2hb_live_node_bitmap));
Sunil Mushran536f0742010-10-07 17:03:07 -07001363 memset(o2hb_region_bitmap, 0, sizeof(o2hb_region_bitmap));
Sunil Mushrane7d656b2010-10-06 17:55:18 -07001364 memset(o2hb_live_region_bitmap, 0, sizeof(o2hb_live_region_bitmap));
Sunil Mushran43182d22010-10-06 17:55:16 -07001365 memset(o2hb_quorum_region_bitmap, 0, sizeof(o2hb_quorum_region_bitmap));
Sunil Mushranb1c5ebf2010-10-07 17:05:52 -07001366 memset(o2hb_failed_region_bitmap, 0, sizeof(o2hb_failed_region_bitmap));
Sunil Mushran87d3d3f2008-12-17 14:17:42 -08001367
Sunil Mushran58a31582010-12-14 14:14:29 -08001368 o2hb_dependent_users = 0;
1369
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001370 return o2hb_debug_init();
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001371}
1372
1373/* if we're already in a callback then we're already serialized by the sem */
1374static void o2hb_fill_node_map_from_callback(unsigned long *map,
1375 unsigned bytes)
1376{
1377 BUG_ON(bytes < (BITS_TO_LONGS(O2NM_MAX_NODES) * sizeof(unsigned long)));
1378
1379 memcpy(map, &o2hb_live_node_bitmap, bytes);
1380}
1381
1382/*
1383 * get a map of all nodes that are heartbeating in any regions
1384 */
1385void o2hb_fill_node_map(unsigned long *map, unsigned bytes)
1386{
1387 /* callers want to serialize this map and callbacks so that they
1388 * can trust that they don't miss nodes coming to the party */
1389 down_read(&o2hb_callback_sem);
1390 spin_lock(&o2hb_live_lock);
1391 o2hb_fill_node_map_from_callback(map, bytes);
1392 spin_unlock(&o2hb_live_lock);
1393 up_read(&o2hb_callback_sem);
1394}
1395EXPORT_SYMBOL_GPL(o2hb_fill_node_map);
1396
1397/*
1398 * heartbeat configfs bits. The heartbeat set is a default set under
1399 * the cluster set in nodemanager.c.
1400 */
1401
1402static struct o2hb_region *to_o2hb_region(struct config_item *item)
1403{
1404 return item ? container_of(item, struct o2hb_region, hr_item) : NULL;
1405}
1406
1407/* drop_item only drops its ref after killing the thread, nothing should
1408 * be using the region anymore. this has to clean up any state that
1409 * attributes might have built up. */
1410static void o2hb_region_release(struct config_item *item)
1411{
1412 int i;
1413 struct page *page;
1414 struct o2hb_region *reg = to_o2hb_region(item);
1415
Sunil Mushrand2eece32011-07-24 10:21:54 -07001416 mlog(ML_HEARTBEAT, "hb region release (%s)\n", reg->hr_dev_name);
1417
Tim Gardnerd787ab02013-02-21 16:42:44 -08001418 kfree(reg->hr_tmp_block);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001419
1420 if (reg->hr_slot_data) {
1421 for (i = 0; i < reg->hr_num_pages; i++) {
1422 page = reg->hr_slot_data[i];
1423 if (page)
1424 __free_page(page);
1425 }
1426 kfree(reg->hr_slot_data);
1427 }
1428
1429 if (reg->hr_bdev)
Al Viro9a1c3542008-02-22 20:40:24 -05001430 blkdev_put(reg->hr_bdev, FMODE_READ|FMODE_WRITE);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001431
Tim Gardnerd787ab02013-02-21 16:42:44 -08001432 kfree(reg->hr_slots);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001433
Sunil Mushran1f285302010-10-06 17:55:12 -07001434 kfree(reg->hr_db_regnum);
1435 kfree(reg->hr_db_livenodes);
1436 debugfs_remove(reg->hr_debug_livenodes);
1437 debugfs_remove(reg->hr_debug_regnum);
Sunil Mushrand4396ea2010-10-15 11:57:21 -07001438 debugfs_remove(reg->hr_debug_elapsed_time);
Sunil Mushrancb0586b2010-12-14 14:14:30 -08001439 debugfs_remove(reg->hr_debug_pinned);
Sunil Mushran1f285302010-10-06 17:55:12 -07001440 debugfs_remove(reg->hr_debug_dir);
1441
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001442 spin_lock(&o2hb_live_lock);
1443 list_del(&reg->hr_all_item);
1444 spin_unlock(&o2hb_live_lock);
1445
1446 kfree(reg);
1447}
1448
1449static int o2hb_read_block_input(struct o2hb_region *reg,
1450 const char *page,
1451 size_t count,
1452 unsigned long *ret_bytes,
1453 unsigned int *ret_bits)
1454{
1455 unsigned long bytes;
1456 char *p = (char *)page;
1457
1458 bytes = simple_strtoul(p, &p, 0);
1459 if (!p || (*p && (*p != '\n')))
1460 return -EINVAL;
1461
1462 /* Heartbeat and fs min / max block sizes are the same. */
1463 if (bytes > 4096 || bytes < 512)
1464 return -ERANGE;
1465 if (hweight16(bytes) != 1)
1466 return -EINVAL;
1467
1468 if (ret_bytes)
1469 *ret_bytes = bytes;
1470 if (ret_bits)
1471 *ret_bits = ffs(bytes) - 1;
1472
1473 return 0;
1474}
1475
1476static ssize_t o2hb_region_block_bytes_read(struct o2hb_region *reg,
1477 char *page)
1478{
1479 return sprintf(page, "%u\n", reg->hr_block_bytes);
1480}
1481
1482static ssize_t o2hb_region_block_bytes_write(struct o2hb_region *reg,
1483 const char *page,
1484 size_t count)
1485{
1486 int status;
1487 unsigned long block_bytes;
1488 unsigned int block_bits;
1489
1490 if (reg->hr_bdev)
1491 return -EINVAL;
1492
1493 status = o2hb_read_block_input(reg, page, count,
1494 &block_bytes, &block_bits);
1495 if (status)
1496 return status;
1497
1498 reg->hr_block_bytes = (unsigned int)block_bytes;
1499 reg->hr_block_bits = block_bits;
1500
1501 return count;
1502}
1503
1504static ssize_t o2hb_region_start_block_read(struct o2hb_region *reg,
1505 char *page)
1506{
1507 return sprintf(page, "%llu\n", reg->hr_start_block);
1508}
1509
1510static ssize_t o2hb_region_start_block_write(struct o2hb_region *reg,
1511 const char *page,
1512 size_t count)
1513{
1514 unsigned long long tmp;
1515 char *p = (char *)page;
1516
1517 if (reg->hr_bdev)
1518 return -EINVAL;
1519
1520 tmp = simple_strtoull(p, &p, 0);
1521 if (!p || (*p && (*p != '\n')))
1522 return -EINVAL;
1523
1524 reg->hr_start_block = tmp;
1525
1526 return count;
1527}
1528
1529static ssize_t o2hb_region_blocks_read(struct o2hb_region *reg,
1530 char *page)
1531{
1532 return sprintf(page, "%d\n", reg->hr_blocks);
1533}
1534
1535static ssize_t o2hb_region_blocks_write(struct o2hb_region *reg,
1536 const char *page,
1537 size_t count)
1538{
1539 unsigned long tmp;
1540 char *p = (char *)page;
1541
1542 if (reg->hr_bdev)
1543 return -EINVAL;
1544
1545 tmp = simple_strtoul(p, &p, 0);
1546 if (!p || (*p && (*p != '\n')))
1547 return -EINVAL;
1548
1549 if (tmp > O2NM_MAX_NODES || tmp == 0)
1550 return -ERANGE;
1551
1552 reg->hr_blocks = (unsigned int)tmp;
1553
1554 return count;
1555}
1556
1557static ssize_t o2hb_region_dev_read(struct o2hb_region *reg,
1558 char *page)
1559{
1560 unsigned int ret = 0;
1561
1562 if (reg->hr_bdev)
1563 ret = sprintf(page, "%s\n", reg->hr_dev_name);
1564
1565 return ret;
1566}
1567
1568static void o2hb_init_region_params(struct o2hb_region *reg)
1569{
1570 reg->hr_slots_per_page = PAGE_CACHE_SIZE >> reg->hr_block_bits;
1571 reg->hr_timeout_ms = O2HB_REGION_TIMEOUT_MS;
1572
1573 mlog(ML_HEARTBEAT, "hr_start_block = %llu, hr_blocks = %u\n",
1574 reg->hr_start_block, reg->hr_blocks);
1575 mlog(ML_HEARTBEAT, "hr_block_bytes = %u, hr_block_bits = %u\n",
1576 reg->hr_block_bytes, reg->hr_block_bits);
1577 mlog(ML_HEARTBEAT, "hr_timeout_ms = %u\n", reg->hr_timeout_ms);
1578 mlog(ML_HEARTBEAT, "dead threshold = %u\n", o2hb_dead_threshold);
1579}
1580
1581static int o2hb_map_slot_data(struct o2hb_region *reg)
1582{
1583 int i, j;
1584 unsigned int last_slot;
1585 unsigned int spp = reg->hr_slots_per_page;
1586 struct page *page;
1587 char *raw;
1588 struct o2hb_disk_slot *slot;
1589
1590 reg->hr_tmp_block = kmalloc(reg->hr_block_bytes, GFP_KERNEL);
Christophe JAILLET372a4472015-09-04 15:43:46 -07001591 if (reg->hr_tmp_block == NULL)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001592 return -ENOMEM;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001593
1594 reg->hr_slots = kcalloc(reg->hr_blocks,
1595 sizeof(struct o2hb_disk_slot), GFP_KERNEL);
Christophe JAILLET372a4472015-09-04 15:43:46 -07001596 if (reg->hr_slots == NULL)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001597 return -ENOMEM;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001598
1599 for(i = 0; i < reg->hr_blocks; i++) {
1600 slot = &reg->hr_slots[i];
1601 slot->ds_node_num = i;
1602 INIT_LIST_HEAD(&slot->ds_live_item);
1603 slot->ds_raw_block = NULL;
1604 }
1605
1606 reg->hr_num_pages = (reg->hr_blocks + spp - 1) / spp;
1607 mlog(ML_HEARTBEAT, "Going to require %u pages to cover %u blocks "
1608 "at %u blocks per page\n",
1609 reg->hr_num_pages, reg->hr_blocks, spp);
1610
1611 reg->hr_slot_data = kcalloc(reg->hr_num_pages, sizeof(struct page *),
1612 GFP_KERNEL);
Christophe JAILLET372a4472015-09-04 15:43:46 -07001613 if (!reg->hr_slot_data)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001614 return -ENOMEM;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001615
1616 for(i = 0; i < reg->hr_num_pages; i++) {
1617 page = alloc_page(GFP_KERNEL);
Christophe JAILLET372a4472015-09-04 15:43:46 -07001618 if (!page)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001619 return -ENOMEM;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001620
1621 reg->hr_slot_data[i] = page;
1622
1623 last_slot = i * spp;
1624 raw = page_address(page);
1625 for (j = 0;
1626 (j < spp) && ((j + last_slot) < reg->hr_blocks);
1627 j++) {
1628 BUG_ON((j + last_slot) >= reg->hr_blocks);
1629
1630 slot = &reg->hr_slots[j + last_slot];
1631 slot->ds_raw_block =
1632 (struct o2hb_disk_heartbeat_block *) raw;
1633
1634 raw += reg->hr_block_bytes;
1635 }
1636 }
1637
1638 return 0;
1639}
1640
1641/* Read in all the slots available and populate the tracking
1642 * structures so that we can start with a baseline idea of what's
1643 * there. */
1644static int o2hb_populate_slot_data(struct o2hb_region *reg)
1645{
1646 int ret, i;
1647 struct o2hb_disk_slot *slot;
1648 struct o2hb_disk_heartbeat_block *hb_block;
1649
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001650 ret = o2hb_read_slots(reg, reg->hr_blocks);
Christophe JAILLET372a4472015-09-04 15:43:46 -07001651 if (ret)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001652 goto out;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001653
1654 /* We only want to get an idea of the values initially in each
1655 * slot, so we do no verification - o2hb_check_slot will
1656 * actually determine if each configured slot is valid and
1657 * whether any values have changed. */
1658 for(i = 0; i < reg->hr_blocks; i++) {
1659 slot = &reg->hr_slots[i];
1660 hb_block = (struct o2hb_disk_heartbeat_block *) slot->ds_raw_block;
1661
1662 /* Only fill the values that o2hb_check_slot uses to
1663 * determine changing slots */
1664 slot->ds_last_time = le64_to_cpu(hb_block->hb_seq);
1665 slot->ds_last_generation = le64_to_cpu(hb_block->hb_generation);
1666 }
1667
1668out:
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001669 return ret;
1670}
1671
1672/* this is acting as commit; we set up all of hr_bdev and hr_task or nothing */
1673static ssize_t o2hb_region_dev_write(struct o2hb_region *reg,
1674 const char *page,
1675 size_t count)
1676{
Joel Beckere6c352d2007-02-03 03:04:20 -08001677 struct task_struct *hb_task;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001678 long fd;
1679 int sectsize;
1680 char *p = (char *)page;
Al Viro2903ff02012-08-28 12:52:22 -04001681 struct fd f;
1682 struct inode *inode;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001683 ssize_t ret = -EINVAL;
Sunil Mushran76d9fc22011-05-04 10:28:00 -07001684 int live_threshold;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001685
1686 if (reg->hr_bdev)
1687 goto out;
1688
1689 /* We can't heartbeat without having had our node number
1690 * configured yet. */
1691 if (o2nm_this_node() == O2NM_MAX_NODES)
1692 goto out;
1693
1694 fd = simple_strtol(p, &p, 0);
1695 if (!p || (*p && (*p != '\n')))
1696 goto out;
1697
1698 if (fd < 0 || fd >= INT_MAX)
1699 goto out;
1700
Al Viro2903ff02012-08-28 12:52:22 -04001701 f = fdget(fd);
1702 if (f.file == NULL)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001703 goto out;
1704
1705 if (reg->hr_blocks == 0 || reg->hr_start_block == 0 ||
1706 reg->hr_block_bytes == 0)
Al Viro2903ff02012-08-28 12:52:22 -04001707 goto out2;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001708
Al Viro2903ff02012-08-28 12:52:22 -04001709 inode = igrab(f.file->f_mapping->host);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001710 if (inode == NULL)
Al Viro2903ff02012-08-28 12:52:22 -04001711 goto out2;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001712
1713 if (!S_ISBLK(inode->i_mode))
Al Viro2903ff02012-08-28 12:52:22 -04001714 goto out3;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001715
Al Viro2903ff02012-08-28 12:52:22 -04001716 reg->hr_bdev = I_BDEV(f.file->f_mapping->host);
Tejun Heoe525fd82010-11-13 11:55:17 +01001717 ret = blkdev_get(reg->hr_bdev, FMODE_WRITE | FMODE_READ, NULL);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001718 if (ret) {
1719 reg->hr_bdev = NULL;
Al Viro2903ff02012-08-28 12:52:22 -04001720 goto out3;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001721 }
1722 inode = NULL;
1723
1724 bdevname(reg->hr_bdev, reg->hr_dev_name);
1725
Martin K. Petersene1defc42009-05-22 17:17:49 -04001726 sectsize = bdev_logical_block_size(reg->hr_bdev);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001727 if (sectsize != reg->hr_block_bytes) {
1728 mlog(ML_ERROR,
1729 "blocksize %u incorrect for device, expected %d",
1730 reg->hr_block_bytes, sectsize);
1731 ret = -EINVAL;
Al Viro2903ff02012-08-28 12:52:22 -04001732 goto out3;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001733 }
1734
1735 o2hb_init_region_params(reg);
1736
1737 /* Generation of zero is invalid */
1738 do {
1739 get_random_bytes(&reg->hr_generation,
1740 sizeof(reg->hr_generation));
1741 } while (reg->hr_generation == 0);
1742
1743 ret = o2hb_map_slot_data(reg);
1744 if (ret) {
1745 mlog_errno(ret);
Al Viro2903ff02012-08-28 12:52:22 -04001746 goto out3;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001747 }
1748
1749 ret = o2hb_populate_slot_data(reg);
1750 if (ret) {
1751 mlog_errno(ret);
Al Viro2903ff02012-08-28 12:52:22 -04001752 goto out3;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001753 }
1754
David Howellsc4028952006-11-22 14:57:56 +00001755 INIT_DELAYED_WORK(&reg->hr_write_timeout_work, o2hb_write_timeout);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001756
1757 /*
1758 * A node is considered live after it has beat LIVE_THRESHOLD
1759 * times. We're not steady until we've given them a chance
1760 * _after_ our first read.
Sunil Mushran76d9fc22011-05-04 10:28:00 -07001761 * The default threshold is bare minimum so as to limit the delay
1762 * during mounts. For global heartbeat, the threshold doubled for the
1763 * first region.
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001764 */
Sunil Mushran76d9fc22011-05-04 10:28:00 -07001765 live_threshold = O2HB_LIVE_THRESHOLD;
1766 if (o2hb_global_heartbeat_active()) {
1767 spin_lock(&o2hb_live_lock);
Akinobu Mitaa8f70de2013-11-12 15:06:58 -08001768 if (bitmap_weight(o2hb_region_bitmap, O2NM_MAX_REGIONS) == 1)
Sunil Mushran76d9fc22011-05-04 10:28:00 -07001769 live_threshold <<= 1;
1770 spin_unlock(&o2hb_live_lock);
1771 }
Sunil Mushrand2eece32011-07-24 10:21:54 -07001772 ++live_threshold;
1773 atomic_set(&reg->hr_steady_iterations, live_threshold);
1774 /* unsteady_iterations is double the steady_iterations */
1775 atomic_set(&reg->hr_unsteady_iterations, (live_threshold << 1));
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001776
Joel Beckere6c352d2007-02-03 03:04:20 -08001777 hb_task = kthread_run(o2hb_thread, reg, "o2hb-%s",
1778 reg->hr_item.ci_name);
1779 if (IS_ERR(hb_task)) {
1780 ret = PTR_ERR(hb_task);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001781 mlog_errno(ret);
Al Viro2903ff02012-08-28 12:52:22 -04001782 goto out3;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001783 }
1784
Joel Beckere6c352d2007-02-03 03:04:20 -08001785 spin_lock(&o2hb_live_lock);
1786 reg->hr_task = hb_task;
1787 spin_unlock(&o2hb_live_lock);
1788
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001789 ret = wait_event_interruptible(o2hb_steady_queue,
1790 atomic_read(&reg->hr_steady_iterations) == 0);
1791 if (ret) {
Sunil Mushrand2eece32011-07-24 10:21:54 -07001792 atomic_set(&reg->hr_steady_iterations, 0);
1793 reg->hr_aborted_start = 1;
1794 }
Joel Beckere6c352d2007-02-03 03:04:20 -08001795
Sunil Mushrand2eece32011-07-24 10:21:54 -07001796 if (reg->hr_aborted_start) {
1797 ret = -EIO;
Al Viro2903ff02012-08-28 12:52:22 -04001798 goto out3;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001799 }
1800
Joel Beckere6df3a62007-02-06 15:45:39 -08001801 /* Ok, we were woken. Make sure it wasn't by drop_item() */
1802 spin_lock(&o2hb_live_lock);
1803 hb_task = reg->hr_task;
Sunil Mushrane7d656b2010-10-06 17:55:18 -07001804 if (o2hb_global_heartbeat_active())
1805 set_bit(reg->hr_region_num, o2hb_live_region_bitmap);
Joel Beckere6df3a62007-02-06 15:45:39 -08001806 spin_unlock(&o2hb_live_lock);
1807
1808 if (hb_task)
1809 ret = count;
1810 else
1811 ret = -EIO;
1812
Sunil Mushran18c50cb2010-10-06 18:26:59 -07001813 if (hb_task && o2hb_global_heartbeat_active())
Sunil Mushrand2eece32011-07-24 10:21:54 -07001814 printk(KERN_NOTICE "o2hb: Heartbeat started on region %s (%s)\n",
1815 config_item_name(&reg->hr_item), reg->hr_dev_name);
Sunil Mushran18c50cb2010-10-06 18:26:59 -07001816
Al Viro2903ff02012-08-28 12:52:22 -04001817out3:
1818 iput(inode);
1819out2:
1820 fdput(f);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001821out:
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001822 if (ret < 0) {
1823 if (reg->hr_bdev) {
Al Viro9a1c3542008-02-22 20:40:24 -05001824 blkdev_put(reg->hr_bdev, FMODE_READ|FMODE_WRITE);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001825 reg->hr_bdev = NULL;
1826 }
1827 }
1828 return ret;
1829}
1830
Zhen Wei92efc152006-12-08 00:48:17 -07001831static ssize_t o2hb_region_pid_read(struct o2hb_region *reg,
1832 char *page)
1833{
Joel Beckere6c352d2007-02-03 03:04:20 -08001834 pid_t pid = 0;
1835
1836 spin_lock(&o2hb_live_lock);
1837 if (reg->hr_task)
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001838 pid = task_pid_nr(reg->hr_task);
Joel Beckere6c352d2007-02-03 03:04:20 -08001839 spin_unlock(&o2hb_live_lock);
1840
1841 if (!pid)
Zhen Wei92efc152006-12-08 00:48:17 -07001842 return 0;
1843
Joel Beckere6c352d2007-02-03 03:04:20 -08001844 return sprintf(page, "%u\n", pid);
Zhen Wei92efc152006-12-08 00:48:17 -07001845}
1846
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001847struct o2hb_region_attribute {
1848 struct configfs_attribute attr;
1849 ssize_t (*show)(struct o2hb_region *, char *);
1850 ssize_t (*store)(struct o2hb_region *, const char *, size_t);
1851};
1852
1853static struct o2hb_region_attribute o2hb_region_attr_block_bytes = {
1854 .attr = { .ca_owner = THIS_MODULE,
1855 .ca_name = "block_bytes",
1856 .ca_mode = S_IRUGO | S_IWUSR },
1857 .show = o2hb_region_block_bytes_read,
1858 .store = o2hb_region_block_bytes_write,
1859};
1860
1861static struct o2hb_region_attribute o2hb_region_attr_start_block = {
1862 .attr = { .ca_owner = THIS_MODULE,
1863 .ca_name = "start_block",
1864 .ca_mode = S_IRUGO | S_IWUSR },
1865 .show = o2hb_region_start_block_read,
1866 .store = o2hb_region_start_block_write,
1867};
1868
1869static struct o2hb_region_attribute o2hb_region_attr_blocks = {
1870 .attr = { .ca_owner = THIS_MODULE,
1871 .ca_name = "blocks",
1872 .ca_mode = S_IRUGO | S_IWUSR },
1873 .show = o2hb_region_blocks_read,
1874 .store = o2hb_region_blocks_write,
1875};
1876
1877static struct o2hb_region_attribute o2hb_region_attr_dev = {
1878 .attr = { .ca_owner = THIS_MODULE,
1879 .ca_name = "dev",
1880 .ca_mode = S_IRUGO | S_IWUSR },
1881 .show = o2hb_region_dev_read,
1882 .store = o2hb_region_dev_write,
1883};
1884
Zhen Wei92efc152006-12-08 00:48:17 -07001885static struct o2hb_region_attribute o2hb_region_attr_pid = {
1886 .attr = { .ca_owner = THIS_MODULE,
1887 .ca_name = "pid",
1888 .ca_mode = S_IRUGO | S_IRUSR },
1889 .show = o2hb_region_pid_read,
1890};
1891
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001892static struct configfs_attribute *o2hb_region_attrs[] = {
1893 &o2hb_region_attr_block_bytes.attr,
1894 &o2hb_region_attr_start_block.attr,
1895 &o2hb_region_attr_blocks.attr,
1896 &o2hb_region_attr_dev.attr,
Zhen Wei92efc152006-12-08 00:48:17 -07001897 &o2hb_region_attr_pid.attr,
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001898 NULL,
1899};
1900
1901static ssize_t o2hb_region_show(struct config_item *item,
1902 struct configfs_attribute *attr,
1903 char *page)
1904{
1905 struct o2hb_region *reg = to_o2hb_region(item);
1906 struct o2hb_region_attribute *o2hb_region_attr =
1907 container_of(attr, struct o2hb_region_attribute, attr);
1908 ssize_t ret = 0;
1909
1910 if (o2hb_region_attr->show)
1911 ret = o2hb_region_attr->show(reg, page);
1912 return ret;
1913}
1914
1915static ssize_t o2hb_region_store(struct config_item *item,
1916 struct configfs_attribute *attr,
1917 const char *page, size_t count)
1918{
1919 struct o2hb_region *reg = to_o2hb_region(item);
1920 struct o2hb_region_attribute *o2hb_region_attr =
1921 container_of(attr, struct o2hb_region_attribute, attr);
1922 ssize_t ret = -EINVAL;
1923
1924 if (o2hb_region_attr->store)
1925 ret = o2hb_region_attr->store(reg, page, count);
1926 return ret;
1927}
1928
1929static struct configfs_item_operations o2hb_region_item_ops = {
1930 .release = o2hb_region_release,
1931 .show_attribute = o2hb_region_show,
1932 .store_attribute = o2hb_region_store,
1933};
1934
1935static struct config_item_type o2hb_region_type = {
1936 .ct_item_ops = &o2hb_region_item_ops,
1937 .ct_attrs = o2hb_region_attrs,
1938 .ct_owner = THIS_MODULE,
1939};
1940
1941/* heartbeat set */
1942
1943struct o2hb_heartbeat_group {
1944 struct config_group hs_group;
1945 /* some stuff? */
1946};
1947
1948static struct o2hb_heartbeat_group *to_o2hb_heartbeat_group(struct config_group *group)
1949{
1950 return group ?
1951 container_of(group, struct o2hb_heartbeat_group, hs_group)
1952 : NULL;
1953}
1954
Sunil Mushran1f285302010-10-06 17:55:12 -07001955static int o2hb_debug_region_init(struct o2hb_region *reg, struct dentry *dir)
1956{
1957 int ret = -ENOMEM;
1958
1959 reg->hr_debug_dir =
1960 debugfs_create_dir(config_item_name(&reg->hr_item), dir);
Linus Torvalds8f443e22015-04-21 09:17:28 -07001961 if (!reg->hr_debug_dir) {
Sunil Mushran1f285302010-10-06 17:55:12 -07001962 mlog_errno(ret);
1963 goto bail;
1964 }
1965
1966 reg->hr_debug_livenodes =
1967 o2hb_debug_create(O2HB_DEBUG_LIVENODES,
1968 reg->hr_debug_dir,
1969 &(reg->hr_db_livenodes),
1970 sizeof(*(reg->hr_db_livenodes)),
1971 O2HB_DB_TYPE_REGION_LIVENODES,
1972 sizeof(reg->hr_live_node_bitmap),
1973 O2NM_MAX_NODES, reg);
Linus Torvalds8f443e22015-04-21 09:17:28 -07001974 if (!reg->hr_debug_livenodes) {
Sunil Mushran1f285302010-10-06 17:55:12 -07001975 mlog_errno(ret);
1976 goto bail;
1977 }
1978
1979 reg->hr_debug_regnum =
1980 o2hb_debug_create(O2HB_DEBUG_REGION_NUMBER,
1981 reg->hr_debug_dir,
1982 &(reg->hr_db_regnum),
1983 sizeof(*(reg->hr_db_regnum)),
1984 O2HB_DB_TYPE_REGION_NUMBER,
1985 0, O2NM_MAX_NODES, reg);
Linus Torvalds8f443e22015-04-21 09:17:28 -07001986 if (!reg->hr_debug_regnum) {
Sunil Mushran1f285302010-10-06 17:55:12 -07001987 mlog_errno(ret);
1988 goto bail;
1989 }
1990
Sunil Mushran43695d02010-10-06 17:55:09 -07001991 reg->hr_debug_elapsed_time =
1992 o2hb_debug_create(O2HB_DEBUG_REGION_ELAPSED_TIME,
1993 reg->hr_debug_dir,
1994 &(reg->hr_db_elapsed_time),
1995 sizeof(*(reg->hr_db_elapsed_time)),
1996 O2HB_DB_TYPE_REGION_ELAPSED_TIME,
1997 0, 0, reg);
Linus Torvalds8f443e22015-04-21 09:17:28 -07001998 if (!reg->hr_debug_elapsed_time) {
Sunil Mushran43695d02010-10-06 17:55:09 -07001999 mlog_errno(ret);
2000 goto bail;
2001 }
2002
Sunil Mushrancb0586b2010-12-14 14:14:30 -08002003 reg->hr_debug_pinned =
2004 o2hb_debug_create(O2HB_DEBUG_REGION_PINNED,
2005 reg->hr_debug_dir,
2006 &(reg->hr_db_pinned),
2007 sizeof(*(reg->hr_db_pinned)),
2008 O2HB_DB_TYPE_REGION_PINNED,
2009 0, 0, reg);
Linus Torvalds8f443e22015-04-21 09:17:28 -07002010 if (!reg->hr_debug_pinned) {
Sunil Mushrancb0586b2010-12-14 14:14:30 -08002011 mlog_errno(ret);
2012 goto bail;
2013 }
2014
Linus Torvalds8f443e22015-04-21 09:17:28 -07002015 ret = 0;
Sunil Mushran1f285302010-10-06 17:55:12 -07002016bail:
2017 return ret;
2018}
2019
Joel Beckerf89ab862008-07-17 14:53:48 -07002020static struct config_item *o2hb_heartbeat_group_make_item(struct config_group *group,
2021 const char *name)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002022{
2023 struct o2hb_region *reg = NULL;
Sunil Mushran1f285302010-10-06 17:55:12 -07002024 int ret;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002025
Robert P. J. Daycd861282006-12-13 00:34:52 -08002026 reg = kzalloc(sizeof(struct o2hb_region), GFP_KERNEL);
Joel Beckerf89ab862008-07-17 14:53:48 -07002027 if (reg == NULL)
Joel Beckera6795e92008-07-17 15:21:29 -07002028 return ERR_PTR(-ENOMEM);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002029
Jiri Slaby1cf257f2010-11-06 10:06:52 +01002030 if (strlen(name) > O2HB_MAX_REGION_NAME_LEN) {
2031 ret = -ENAMETOOLONG;
2032 goto free;
2033 }
Sunil Mushranb3c85c42010-10-07 14:31:06 -07002034
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002035 spin_lock(&o2hb_live_lock);
Sunil Mushran536f0742010-10-07 17:03:07 -07002036 reg->hr_region_num = 0;
2037 if (o2hb_global_heartbeat_active()) {
2038 reg->hr_region_num = find_first_zero_bit(o2hb_region_bitmap,
2039 O2NM_MAX_REGIONS);
2040 if (reg->hr_region_num >= O2NM_MAX_REGIONS) {
2041 spin_unlock(&o2hb_live_lock);
Jiri Slaby1cf257f2010-11-06 10:06:52 +01002042 ret = -EFBIG;
2043 goto free;
Sunil Mushran536f0742010-10-07 17:03:07 -07002044 }
2045 set_bit(reg->hr_region_num, o2hb_region_bitmap);
2046 }
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002047 list_add_tail(&reg->hr_all_item, &o2hb_all_regions);
2048 spin_unlock(&o2hb_live_lock);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002049
Sunil Mushran536f0742010-10-07 17:03:07 -07002050 config_item_init_type_name(&reg->hr_item, name, &o2hb_region_type);
2051
Sunil Mushran1f285302010-10-06 17:55:12 -07002052 ret = o2hb_debug_region_init(reg, o2hb_debug_dir);
2053 if (ret) {
2054 config_item_put(&reg->hr_item);
Jiri Slaby1cf257f2010-11-06 10:06:52 +01002055 goto free;
Sunil Mushran1f285302010-10-06 17:55:12 -07002056 }
2057
Joel Beckera6795e92008-07-17 15:21:29 -07002058 return &reg->hr_item;
Jiri Slaby1cf257f2010-11-06 10:06:52 +01002059free:
2060 kfree(reg);
2061 return ERR_PTR(ret);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002062}
2063
2064static void o2hb_heartbeat_group_drop_item(struct config_group *group,
2065 struct config_item *item)
2066{
Joel Beckere6c352d2007-02-03 03:04:20 -08002067 struct task_struct *hb_task;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002068 struct o2hb_region *reg = to_o2hb_region(item);
Sunil Mushran58a31582010-12-14 14:14:29 -08002069 int quorum_region = 0;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002070
2071 /* stop the thread when the user removes the region dir */
Joel Beckere6c352d2007-02-03 03:04:20 -08002072 spin_lock(&o2hb_live_lock);
2073 hb_task = reg->hr_task;
2074 reg->hr_task = NULL;
Sunil Mushran58a31582010-12-14 14:14:29 -08002075 reg->hr_item_dropped = 1;
Joel Beckere6c352d2007-02-03 03:04:20 -08002076 spin_unlock(&o2hb_live_lock);
2077
2078 if (hb_task)
2079 kthread_stop(hb_task);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002080
Sunil Mushrand2eece32011-07-24 10:21:54 -07002081 if (o2hb_global_heartbeat_active()) {
2082 spin_lock(&o2hb_live_lock);
2083 clear_bit(reg->hr_region_num, o2hb_region_bitmap);
2084 clear_bit(reg->hr_region_num, o2hb_live_region_bitmap);
2085 if (test_bit(reg->hr_region_num, o2hb_quorum_region_bitmap))
2086 quorum_region = 1;
2087 clear_bit(reg->hr_region_num, o2hb_quorum_region_bitmap);
2088 spin_unlock(&o2hb_live_lock);
2089 printk(KERN_NOTICE "o2hb: Heartbeat %s on region %s (%s)\n",
2090 ((atomic_read(&reg->hr_steady_iterations) == 0) ?
2091 "stopped" : "start aborted"), config_item_name(item),
2092 reg->hr_dev_name);
2093 }
2094
Joel Beckere6df3a62007-02-06 15:45:39 -08002095 /*
2096 * If we're racing a dev_write(), we need to wake them. They will
2097 * check reg->hr_task
2098 */
2099 if (atomic_read(&reg->hr_steady_iterations) != 0) {
Sunil Mushrand2eece32011-07-24 10:21:54 -07002100 reg->hr_aborted_start = 1;
Joel Beckere6df3a62007-02-06 15:45:39 -08002101 atomic_set(&reg->hr_steady_iterations, 0);
2102 wake_up(&o2hb_steady_queue);
2103 }
2104
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002105 config_item_put(item);
Sunil Mushran58a31582010-12-14 14:14:29 -08002106
2107 if (!o2hb_global_heartbeat_active() || !quorum_region)
2108 return;
2109
2110 /*
2111 * If global heartbeat active and there are dependent users,
2112 * pin all regions if quorum region count <= CUT_OFF
2113 */
2114 spin_lock(&o2hb_live_lock);
2115
2116 if (!o2hb_dependent_users)
2117 goto unlock;
2118
Akinobu Mitaa8f70de2013-11-12 15:06:58 -08002119 if (bitmap_weight(o2hb_quorum_region_bitmap,
Sunil Mushran58a31582010-12-14 14:14:29 -08002120 O2NM_MAX_REGIONS) <= O2HB_PIN_CUT_OFF)
2121 o2hb_region_pin(NULL);
2122
2123unlock:
2124 spin_unlock(&o2hb_live_lock);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002125}
2126
2127struct o2hb_heartbeat_group_attribute {
2128 struct configfs_attribute attr;
2129 ssize_t (*show)(struct o2hb_heartbeat_group *, char *);
2130 ssize_t (*store)(struct o2hb_heartbeat_group *, const char *, size_t);
2131};
2132
2133static ssize_t o2hb_heartbeat_group_show(struct config_item *item,
2134 struct configfs_attribute *attr,
2135 char *page)
2136{
2137 struct o2hb_heartbeat_group *reg = to_o2hb_heartbeat_group(to_config_group(item));
2138 struct o2hb_heartbeat_group_attribute *o2hb_heartbeat_group_attr =
2139 container_of(attr, struct o2hb_heartbeat_group_attribute, attr);
2140 ssize_t ret = 0;
2141
2142 if (o2hb_heartbeat_group_attr->show)
2143 ret = o2hb_heartbeat_group_attr->show(reg, page);
2144 return ret;
2145}
2146
2147static ssize_t o2hb_heartbeat_group_store(struct config_item *item,
2148 struct configfs_attribute *attr,
2149 const char *page, size_t count)
2150{
2151 struct o2hb_heartbeat_group *reg = to_o2hb_heartbeat_group(to_config_group(item));
2152 struct o2hb_heartbeat_group_attribute *o2hb_heartbeat_group_attr =
2153 container_of(attr, struct o2hb_heartbeat_group_attribute, attr);
2154 ssize_t ret = -EINVAL;
2155
2156 if (o2hb_heartbeat_group_attr->store)
2157 ret = o2hb_heartbeat_group_attr->store(reg, page, count);
2158 return ret;
2159}
2160
2161static ssize_t o2hb_heartbeat_group_threshold_show(struct o2hb_heartbeat_group *group,
2162 char *page)
2163{
2164 return sprintf(page, "%u\n", o2hb_dead_threshold);
2165}
2166
2167static ssize_t o2hb_heartbeat_group_threshold_store(struct o2hb_heartbeat_group *group,
2168 const char *page,
2169 size_t count)
2170{
2171 unsigned long tmp;
2172 char *p = (char *)page;
2173
2174 tmp = simple_strtoul(p, &p, 10);
2175 if (!p || (*p && (*p != '\n')))
2176 return -EINVAL;
2177
2178 /* this will validate ranges for us. */
2179 o2hb_dead_threshold_set((unsigned int) tmp);
2180
2181 return count;
2182}
2183
Sunil Mushran54b51872010-10-07 15:26:08 -07002184static
2185ssize_t o2hb_heartbeat_group_mode_show(struct o2hb_heartbeat_group *group,
2186 char *page)
2187{
2188 return sprintf(page, "%s\n",
2189 o2hb_heartbeat_mode_desc[o2hb_heartbeat_mode]);
2190}
2191
2192static
2193ssize_t o2hb_heartbeat_group_mode_store(struct o2hb_heartbeat_group *group,
2194 const char *page, size_t count)
2195{
2196 unsigned int i;
2197 int ret;
2198 size_t len;
2199
2200 len = (page[count - 1] == '\n') ? count - 1 : count;
2201 if (!len)
2202 return -EINVAL;
2203
2204 for (i = 0; i < O2HB_HEARTBEAT_NUM_MODES; ++i) {
Rasmus Villemoes2bd63322014-10-13 15:54:37 -07002205 if (strncasecmp(page, o2hb_heartbeat_mode_desc[i], len))
Sunil Mushran54b51872010-10-07 15:26:08 -07002206 continue;
2207
Jie Liu70f651e2013-07-03 15:01:06 -07002208 ret = o2hb_global_heartbeat_mode_set(i);
Sunil Mushran54b51872010-10-07 15:26:08 -07002209 if (!ret)
Sunil Mushran18c50cb2010-10-06 18:26:59 -07002210 printk(KERN_NOTICE "o2hb: Heartbeat mode set to %s\n",
Sunil Mushran54b51872010-10-07 15:26:08 -07002211 o2hb_heartbeat_mode_desc[i]);
2212 return count;
2213 }
2214
2215 return -EINVAL;
2216
2217}
2218
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002219static struct o2hb_heartbeat_group_attribute o2hb_heartbeat_group_attr_threshold = {
2220 .attr = { .ca_owner = THIS_MODULE,
2221 .ca_name = "dead_threshold",
2222 .ca_mode = S_IRUGO | S_IWUSR },
2223 .show = o2hb_heartbeat_group_threshold_show,
2224 .store = o2hb_heartbeat_group_threshold_store,
2225};
2226
Sunil Mushran54b51872010-10-07 15:26:08 -07002227static struct o2hb_heartbeat_group_attribute o2hb_heartbeat_group_attr_mode = {
2228 .attr = { .ca_owner = THIS_MODULE,
2229 .ca_name = "mode",
2230 .ca_mode = S_IRUGO | S_IWUSR },
2231 .show = o2hb_heartbeat_group_mode_show,
2232 .store = o2hb_heartbeat_group_mode_store,
2233};
2234
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002235static struct configfs_attribute *o2hb_heartbeat_group_attrs[] = {
2236 &o2hb_heartbeat_group_attr_threshold.attr,
Sunil Mushran54b51872010-10-07 15:26:08 -07002237 &o2hb_heartbeat_group_attr_mode.attr,
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002238 NULL,
2239};
2240
Jie Liu70f651e2013-07-03 15:01:06 -07002241static struct configfs_item_operations o2hb_heartbeat_group_item_ops = {
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002242 .show_attribute = o2hb_heartbeat_group_show,
2243 .store_attribute = o2hb_heartbeat_group_store,
2244};
2245
2246static struct configfs_group_operations o2hb_heartbeat_group_group_ops = {
2247 .make_item = o2hb_heartbeat_group_make_item,
2248 .drop_item = o2hb_heartbeat_group_drop_item,
2249};
2250
2251static struct config_item_type o2hb_heartbeat_group_type = {
2252 .ct_group_ops = &o2hb_heartbeat_group_group_ops,
Jie Liu70f651e2013-07-03 15:01:06 -07002253 .ct_item_ops = &o2hb_heartbeat_group_item_ops,
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002254 .ct_attrs = o2hb_heartbeat_group_attrs,
2255 .ct_owner = THIS_MODULE,
2256};
2257
2258/* this is just here to avoid touching group in heartbeat.h which the
2259 * entire damn world #includes */
2260struct config_group *o2hb_alloc_hb_set(void)
2261{
2262 struct o2hb_heartbeat_group *hs = NULL;
2263 struct config_group *ret = NULL;
2264
Robert P. J. Daycd861282006-12-13 00:34:52 -08002265 hs = kzalloc(sizeof(struct o2hb_heartbeat_group), GFP_KERNEL);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002266 if (hs == NULL)
2267 goto out;
2268
2269 config_group_init_type_name(&hs->hs_group, "heartbeat",
2270 &o2hb_heartbeat_group_type);
2271
2272 ret = &hs->hs_group;
2273out:
2274 if (ret == NULL)
2275 kfree(hs);
2276 return ret;
2277}
2278
2279void o2hb_free_hb_set(struct config_group *group)
2280{
2281 struct o2hb_heartbeat_group *hs = to_o2hb_heartbeat_group(group);
2282 kfree(hs);
2283}
2284
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002285/* hb callback registration and issuing */
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002286
2287static struct o2hb_callback *hbcall_from_type(enum o2hb_callback_type type)
2288{
2289 if (type == O2HB_NUM_CB)
2290 return ERR_PTR(-EINVAL);
2291
2292 return &o2hb_callbacks[type];
2293}
2294
2295void o2hb_setup_callback(struct o2hb_callback_func *hc,
2296 enum o2hb_callback_type type,
2297 o2hb_cb_func *func,
2298 void *data,
2299 int priority)
2300{
2301 INIT_LIST_HEAD(&hc->hc_item);
2302 hc->hc_func = func;
2303 hc->hc_data = data;
2304 hc->hc_priority = priority;
2305 hc->hc_type = type;
2306 hc->hc_magic = O2HB_CB_MAGIC;
2307}
2308EXPORT_SYMBOL_GPL(o2hb_setup_callback);
2309
Sunil Mushran58a31582010-12-14 14:14:29 -08002310/*
2311 * In local heartbeat mode, region_uuid passed matches the dlm domain name.
2312 * In global heartbeat mode, region_uuid passed is NULL.
2313 *
2314 * In local, we only pin the matching region. In global we pin all the active
2315 * regions.
2316 */
2317static int o2hb_region_pin(const char *region_uuid)
Joel Becker14829422007-06-14 21:40:49 -07002318{
Sunil Mushran58a31582010-12-14 14:14:29 -08002319 int ret = 0, found = 0;
2320 struct o2hb_region *reg;
2321 char *uuid;
Joel Becker14829422007-06-14 21:40:49 -07002322
2323 assert_spin_locked(&o2hb_live_lock);
2324
Sunil Mushran58a31582010-12-14 14:14:29 -08002325 list_for_each_entry(reg, &o2hb_all_regions, hr_all_item) {
Xue jiufei4a184b42013-07-03 15:01:10 -07002326 if (reg->hr_item_dropped)
2327 continue;
2328
Sunil Mushran58a31582010-12-14 14:14:29 -08002329 uuid = config_item_name(&reg->hr_item);
2330
2331 /* local heartbeat */
2332 if (region_uuid) {
2333 if (strcmp(region_uuid, uuid))
2334 continue;
2335 found = 1;
Joel Becker14829422007-06-14 21:40:49 -07002336 }
Sunil Mushran58a31582010-12-14 14:14:29 -08002337
2338 if (reg->hr_item_pinned || reg->hr_item_dropped)
2339 goto skip_pin;
2340
2341 /* Ignore ENOENT only for local hb (userdlm domain) */
2342 ret = o2nm_depend_item(&reg->hr_item);
2343 if (!ret) {
2344 mlog(ML_CLUSTER, "Pin region %s\n", uuid);
2345 reg->hr_item_pinned = 1;
2346 } else {
2347 if (ret == -ENOENT && found)
2348 ret = 0;
2349 else {
2350 mlog(ML_ERROR, "Pin region %s fails with %d\n",
2351 uuid, ret);
2352 break;
2353 }
2354 }
2355skip_pin:
2356 if (found)
2357 break;
Joel Becker14829422007-06-14 21:40:49 -07002358 }
2359
Joel Becker14829422007-06-14 21:40:49 -07002360 return ret;
2361}
2362
Sunil Mushran58a31582010-12-14 14:14:29 -08002363/*
2364 * In local heartbeat mode, region_uuid passed matches the dlm domain name.
2365 * In global heartbeat mode, region_uuid passed is NULL.
2366 *
2367 * In local, we only unpin the matching region. In global we unpin all the
2368 * active regions.
2369 */
2370static void o2hb_region_unpin(const char *region_uuid)
Joel Becker14829422007-06-14 21:40:49 -07002371{
2372 struct o2hb_region *reg;
Sunil Mushran58a31582010-12-14 14:14:29 -08002373 char *uuid;
2374 int found = 0;
2375
2376 assert_spin_locked(&o2hb_live_lock);
2377
2378 list_for_each_entry(reg, &o2hb_all_regions, hr_all_item) {
Xue jiufei4a184b42013-07-03 15:01:10 -07002379 if (reg->hr_item_dropped)
2380 continue;
2381
Sunil Mushran58a31582010-12-14 14:14:29 -08002382 uuid = config_item_name(&reg->hr_item);
2383 if (region_uuid) {
2384 if (strcmp(region_uuid, uuid))
2385 continue;
2386 found = 1;
2387 }
2388
2389 if (reg->hr_item_pinned) {
2390 mlog(ML_CLUSTER, "Unpin region %s\n", uuid);
2391 o2nm_undepend_item(&reg->hr_item);
2392 reg->hr_item_pinned = 0;
2393 }
2394 if (found)
2395 break;
2396 }
2397}
2398
2399static int o2hb_region_inc_user(const char *region_uuid)
2400{
2401 int ret = 0;
Joel Becker14829422007-06-14 21:40:49 -07002402
2403 spin_lock(&o2hb_live_lock);
2404
Sunil Mushran58a31582010-12-14 14:14:29 -08002405 /* local heartbeat */
2406 if (!o2hb_global_heartbeat_active()) {
2407 ret = o2hb_region_pin(region_uuid);
2408 goto unlock;
Joel Becker16c6a4f2007-06-19 11:34:03 -07002409 }
Sunil Mushran58a31582010-12-14 14:14:29 -08002410
2411 /*
2412 * if global heartbeat active and this is the first dependent user,
2413 * pin all regions if quorum region count <= CUT_OFF
2414 */
2415 o2hb_dependent_users++;
2416 if (o2hb_dependent_users > 1)
2417 goto unlock;
2418
Akinobu Mitaa8f70de2013-11-12 15:06:58 -08002419 if (bitmap_weight(o2hb_quorum_region_bitmap,
Sunil Mushran58a31582010-12-14 14:14:29 -08002420 O2NM_MAX_REGIONS) <= O2HB_PIN_CUT_OFF)
2421 ret = o2hb_region_pin(NULL);
2422
2423unlock:
2424 spin_unlock(&o2hb_live_lock);
2425 return ret;
2426}
2427
2428void o2hb_region_dec_user(const char *region_uuid)
2429{
2430 spin_lock(&o2hb_live_lock);
2431
2432 /* local heartbeat */
2433 if (!o2hb_global_heartbeat_active()) {
2434 o2hb_region_unpin(region_uuid);
2435 goto unlock;
2436 }
2437
2438 /*
2439 * if global heartbeat active and there are no dependent users,
2440 * unpin all quorum regions
2441 */
2442 o2hb_dependent_users--;
2443 if (!o2hb_dependent_users)
2444 o2hb_region_unpin(NULL);
2445
2446unlock:
2447 spin_unlock(&o2hb_live_lock);
Joel Becker14829422007-06-14 21:40:49 -07002448}
2449
2450int o2hb_register_callback(const char *region_uuid,
2451 struct o2hb_callback_func *hc)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002452{
Dong Fangdf53cd32013-09-11 14:19:50 -07002453 struct o2hb_callback_func *f;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002454 struct o2hb_callback *hbcall;
2455 int ret;
2456
2457 BUG_ON(hc->hc_magic != O2HB_CB_MAGIC);
2458 BUG_ON(!list_empty(&hc->hc_item));
2459
2460 hbcall = hbcall_from_type(hc->hc_type);
2461 if (IS_ERR(hbcall)) {
2462 ret = PTR_ERR(hbcall);
2463 goto out;
2464 }
2465
Joel Becker14829422007-06-14 21:40:49 -07002466 if (region_uuid) {
Sunil Mushran58a31582010-12-14 14:14:29 -08002467 ret = o2hb_region_inc_user(region_uuid);
2468 if (ret) {
2469 mlog_errno(ret);
Joel Becker14829422007-06-14 21:40:49 -07002470 goto out;
Sunil Mushran58a31582010-12-14 14:14:29 -08002471 }
Joel Becker14829422007-06-14 21:40:49 -07002472 }
2473
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002474 down_write(&o2hb_callback_sem);
2475
Dong Fangdf53cd32013-09-11 14:19:50 -07002476 list_for_each_entry(f, &hbcall->list, hc_item) {
2477 if (hc->hc_priority < f->hc_priority) {
2478 list_add_tail(&hc->hc_item, &f->hc_item);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002479 break;
2480 }
2481 }
2482 if (list_empty(&hc->hc_item))
2483 list_add_tail(&hc->hc_item, &hbcall->list);
2484
2485 up_write(&o2hb_callback_sem);
2486 ret = 0;
2487out:
Sunil Mushran58a31582010-12-14 14:14:29 -08002488 mlog(ML_CLUSTER, "returning %d on behalf of %p for funcs %p\n",
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002489 ret, __builtin_return_address(0), hc);
2490 return ret;
2491}
2492EXPORT_SYMBOL_GPL(o2hb_register_callback);
2493
Joel Becker14829422007-06-14 21:40:49 -07002494void o2hb_unregister_callback(const char *region_uuid,
2495 struct o2hb_callback_func *hc)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002496{
2497 BUG_ON(hc->hc_magic != O2HB_CB_MAGIC);
2498
Sunil Mushran58a31582010-12-14 14:14:29 -08002499 mlog(ML_CLUSTER, "on behalf of %p for funcs %p\n",
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002500 __builtin_return_address(0), hc);
2501
Joel Becker14829422007-06-14 21:40:49 -07002502 /* XXX Can this happen _with_ a region reference? */
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002503 if (list_empty(&hc->hc_item))
Joel Beckerc24f72c2007-02-03 03:14:30 -08002504 return;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002505
Joel Becker14829422007-06-14 21:40:49 -07002506 if (region_uuid)
Sunil Mushran58a31582010-12-14 14:14:29 -08002507 o2hb_region_dec_user(region_uuid);
Joel Becker14829422007-06-14 21:40:49 -07002508
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002509 down_write(&o2hb_callback_sem);
2510
2511 list_del_init(&hc->hc_item);
2512
2513 up_write(&o2hb_callback_sem);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002514}
2515EXPORT_SYMBOL_GPL(o2hb_unregister_callback);
2516
2517int o2hb_check_node_heartbeating(u8 node_num)
2518{
2519 unsigned long testing_map[BITS_TO_LONGS(O2NM_MAX_NODES)];
2520
2521 o2hb_fill_node_map(testing_map, sizeof(testing_map));
2522 if (!test_bit(node_num, testing_map)) {
2523 mlog(ML_HEARTBEAT,
2524 "node (%u) does not have heartbeating enabled.\n",
2525 node_num);
2526 return 0;
2527 }
2528
2529 return 1;
2530}
2531EXPORT_SYMBOL_GPL(o2hb_check_node_heartbeating);
2532
Joseph Qi70e82a12014-10-09 15:25:13 -07002533int o2hb_check_node_heartbeating_no_sem(u8 node_num)
2534{
2535 unsigned long testing_map[BITS_TO_LONGS(O2NM_MAX_NODES)];
2536 unsigned long flags;
2537
2538 spin_lock_irqsave(&o2hb_live_lock, flags);
2539 o2hb_fill_node_map_from_callback(testing_map, sizeof(testing_map));
2540 spin_unlock_irqrestore(&o2hb_live_lock, flags);
2541 if (!test_bit(node_num, testing_map)) {
2542 mlog(ML_HEARTBEAT,
2543 "node (%u) does not have heartbeating enabled.\n",
2544 node_num);
2545 return 0;
2546 }
2547
2548 return 1;
2549}
2550EXPORT_SYMBOL_GPL(o2hb_check_node_heartbeating_no_sem);
2551
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002552int o2hb_check_node_heartbeating_from_callback(u8 node_num)
2553{
2554 unsigned long testing_map[BITS_TO_LONGS(O2NM_MAX_NODES)];
2555
2556 o2hb_fill_node_map_from_callback(testing_map, sizeof(testing_map));
2557 if (!test_bit(node_num, testing_map)) {
2558 mlog(ML_HEARTBEAT,
2559 "node (%u) does not have heartbeating enabled.\n",
2560 node_num);
2561 return 0;
2562 }
2563
2564 return 1;
2565}
2566EXPORT_SYMBOL_GPL(o2hb_check_node_heartbeating_from_callback);
2567
2568/* Makes sure our local node is configured with a node number, and is
2569 * heartbeating. */
2570int o2hb_check_local_node_heartbeating(void)
2571{
2572 u8 node_num;
2573
2574 /* if this node was set then we have networking */
2575 node_num = o2nm_this_node();
2576 if (node_num == O2NM_MAX_NODES) {
2577 mlog(ML_HEARTBEAT, "this node has not been configured.\n");
2578 return 0;
2579 }
2580
2581 return o2hb_check_node_heartbeating(node_num);
2582}
2583EXPORT_SYMBOL_GPL(o2hb_check_local_node_heartbeating);
2584
2585/*
2586 * this is just a hack until we get the plumbing which flips file systems
2587 * read only and drops the hb ref instead of killing the node dead.
2588 */
2589void o2hb_stop_all_regions(void)
2590{
2591 struct o2hb_region *reg;
2592
2593 mlog(ML_ERROR, "stopping heartbeat on all active regions.\n");
2594
2595 spin_lock(&o2hb_live_lock);
2596
2597 list_for_each_entry(reg, &o2hb_all_regions, hr_all_item)
2598 reg->hr_unclean_stop = 1;
2599
2600 spin_unlock(&o2hb_live_lock);
2601}
2602EXPORT_SYMBOL_GPL(o2hb_stop_all_regions);
Sunil Mushranb3c85c42010-10-07 14:31:06 -07002603
2604int o2hb_get_all_regions(char *region_uuids, u8 max_regions)
2605{
2606 struct o2hb_region *reg;
2607 int numregs = 0;
2608 char *p;
2609
2610 spin_lock(&o2hb_live_lock);
2611
2612 p = region_uuids;
2613 list_for_each_entry(reg, &o2hb_all_regions, hr_all_item) {
Xue jiufei4a184b42013-07-03 15:01:10 -07002614 if (reg->hr_item_dropped)
2615 continue;
2616
Sunil Mushranb3c85c42010-10-07 14:31:06 -07002617 mlog(0, "Region: %s\n", config_item_name(&reg->hr_item));
2618 if (numregs < max_regions) {
2619 memcpy(p, config_item_name(&reg->hr_item),
2620 O2HB_MAX_REGION_NAME_LEN);
2621 p += O2HB_MAX_REGION_NAME_LEN;
2622 }
2623 numregs++;
2624 }
2625
2626 spin_unlock(&o2hb_live_lock);
2627
2628 return numregs;
2629}
2630EXPORT_SYMBOL_GPL(o2hb_get_all_regions);
2631
2632int o2hb_global_heartbeat_active(void)
2633{
Sunil Mushran4d94aa12010-10-09 10:27:04 -07002634 return (o2hb_heartbeat_mode == O2HB_HEARTBEAT_GLOBAL);
Sunil Mushranb3c85c42010-10-07 14:31:06 -07002635}
2636EXPORT_SYMBOL(o2hb_global_heartbeat_active);