blob: 4728a746281df6b29a1dcc52bdf30d315b86b2ef [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>
Mark Fasheha7f6a5f2005-12-15 14:31:23 -080038
39#include "heartbeat.h"
40#include "tcp.h"
41#include "nodemanager.h"
42#include "quorum.h"
43
44#include "masklog.h"
45
46
47/*
48 * The first heartbeat pass had one global thread that would serialize all hb
49 * callback calls. This global serializing sem should only be removed once
50 * we've made sure that all callees can deal with being called concurrently
51 * from multiple hb region threads.
52 */
53static DECLARE_RWSEM(o2hb_callback_sem);
54
55/*
56 * multiple hb threads are watching multiple regions. A node is live
57 * whenever any of the threads sees activity from the node in its region.
58 */
Ingo Molnar34af9462006-06-27 02:53:55 -070059static DEFINE_SPINLOCK(o2hb_live_lock);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -080060static struct list_head o2hb_live_slots[O2NM_MAX_NODES];
61static unsigned long o2hb_live_node_bitmap[BITS_TO_LONGS(O2NM_MAX_NODES)];
62static LIST_HEAD(o2hb_node_events);
63static DECLARE_WAIT_QUEUE_HEAD(o2hb_steady_queue);
64
Sunil Mushran536f0742010-10-07 17:03:07 -070065/*
66 * In global heartbeat, we maintain a series of region bitmaps.
67 * - o2hb_region_bitmap allows us to limit the region number to max region.
Sunil Mushrane7d656b2010-10-06 17:55:18 -070068 * - o2hb_live_region_bitmap tracks live regions (seen steady iterations).
Sunil Mushran43182d22010-10-06 17:55:16 -070069 * - o2hb_quorum_region_bitmap tracks live regions that have seen all nodes
70 * heartbeat on it.
Sunil Mushranb1c5ebf2010-10-07 17:05:52 -070071 * - o2hb_failed_region_bitmap tracks the regions that have seen io timeouts.
Sunil Mushran536f0742010-10-07 17:03:07 -070072 */
73static unsigned long o2hb_region_bitmap[BITS_TO_LONGS(O2NM_MAX_REGIONS)];
Sunil Mushrane7d656b2010-10-06 17:55:18 -070074static unsigned long o2hb_live_region_bitmap[BITS_TO_LONGS(O2NM_MAX_REGIONS)];
Sunil Mushran43182d22010-10-06 17:55:16 -070075static unsigned long o2hb_quorum_region_bitmap[BITS_TO_LONGS(O2NM_MAX_REGIONS)];
Sunil Mushranb1c5ebf2010-10-07 17:05:52 -070076static unsigned long o2hb_failed_region_bitmap[BITS_TO_LONGS(O2NM_MAX_REGIONS)];
Sunil Mushran536f0742010-10-07 17:03:07 -070077
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -070078#define O2HB_DB_TYPE_LIVENODES 0
Sunil Mushrana6de0132010-10-06 17:55:13 -070079#define O2HB_DB_TYPE_LIVEREGIONS 1
80#define O2HB_DB_TYPE_QUORUMREGIONS 2
81#define O2HB_DB_TYPE_FAILEDREGIONS 3
Sunil Mushran1f285302010-10-06 17:55:12 -070082#define O2HB_DB_TYPE_REGION_LIVENODES 4
83#define O2HB_DB_TYPE_REGION_NUMBER 5
Sunil Mushran43695d02010-10-06 17:55:09 -070084#define O2HB_DB_TYPE_REGION_ELAPSED_TIME 6
Sunil Mushrancb0586b2010-12-14 14:14:30 -080085#define O2HB_DB_TYPE_REGION_PINNED 7
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -070086struct o2hb_debug_buf {
87 int db_type;
88 int db_size;
89 int db_len;
90 void *db_data;
91};
92
93static struct o2hb_debug_buf *o2hb_db_livenodes;
Sunil Mushrana6de0132010-10-06 17:55:13 -070094static struct o2hb_debug_buf *o2hb_db_liveregions;
95static struct o2hb_debug_buf *o2hb_db_quorumregions;
96static struct o2hb_debug_buf *o2hb_db_failedregions;
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -070097
Sunil Mushran87d3d3f2008-12-17 14:17:42 -080098#define O2HB_DEBUG_DIR "o2hb"
99#define O2HB_DEBUG_LIVENODES "livenodes"
Sunil Mushrana6de0132010-10-06 17:55:13 -0700100#define O2HB_DEBUG_LIVEREGIONS "live_regions"
101#define O2HB_DEBUG_QUORUMREGIONS "quorum_regions"
102#define O2HB_DEBUG_FAILEDREGIONS "failed_regions"
Sunil Mushran1f285302010-10-06 17:55:12 -0700103#define O2HB_DEBUG_REGION_NUMBER "num"
Sunil Mushran43695d02010-10-06 17:55:09 -0700104#define O2HB_DEBUG_REGION_ELAPSED_TIME "elapsed_time_in_ms"
Sunil Mushrancb0586b2010-12-14 14:14:30 -0800105#define O2HB_DEBUG_REGION_PINNED "pinned"
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -0700106
Sunil Mushran87d3d3f2008-12-17 14:17:42 -0800107static struct dentry *o2hb_debug_dir;
108static struct dentry *o2hb_debug_livenodes;
Sunil Mushrana6de0132010-10-06 17:55:13 -0700109static struct dentry *o2hb_debug_liveregions;
110static struct dentry *o2hb_debug_quorumregions;
111static struct dentry *o2hb_debug_failedregions;
Sunil Mushran87d3d3f2008-12-17 14:17:42 -0800112
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800113static LIST_HEAD(o2hb_all_regions);
114
115static struct o2hb_callback {
116 struct list_head list;
117} o2hb_callbacks[O2HB_NUM_CB];
118
119static struct o2hb_callback *hbcall_from_type(enum o2hb_callback_type type);
120
121#define O2HB_DEFAULT_BLOCK_BITS 9
122
Sunil Mushran54b51872010-10-07 15:26:08 -0700123enum o2hb_heartbeat_modes {
124 O2HB_HEARTBEAT_LOCAL = 0,
125 O2HB_HEARTBEAT_GLOBAL,
126 O2HB_HEARTBEAT_NUM_MODES,
127};
128
129char *o2hb_heartbeat_mode_desc[O2HB_HEARTBEAT_NUM_MODES] = {
130 "local", /* O2HB_HEARTBEAT_LOCAL */
131 "global", /* O2HB_HEARTBEAT_GLOBAL */
132};
133
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800134unsigned int o2hb_dead_threshold = O2HB_DEFAULT_DEAD_THRESHOLD;
Sunil Mushran54b51872010-10-07 15:26:08 -0700135unsigned int o2hb_heartbeat_mode = O2HB_HEARTBEAT_LOCAL;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800136
Sunil Mushran58a31582010-12-14 14:14:29 -0800137/*
138 * o2hb_dependent_users tracks the number of registered callbacks that depend
139 * on heartbeat. o2net and o2dlm are two entities that register this callback.
140 * However only o2dlm depends on the heartbeat. It does not want the heartbeat
141 * to stop while a dlm domain is still active.
142 */
143unsigned int o2hb_dependent_users;
144
145/*
146 * In global heartbeat mode, all regions are pinned if there are one or more
147 * dependent users and the quorum region count is <= O2HB_PIN_CUT_OFF. All
148 * regions are unpinned if the region count exceeds the cut off or the number
149 * of dependent users falls to zero.
150 */
151#define O2HB_PIN_CUT_OFF 3
152
153/*
154 * In local heartbeat mode, we assume the dlm domain name to be the same as
155 * region uuid. This is true for domains created for the file system but not
156 * necessarily true for userdlm domains. This is a known limitation.
157 *
158 * In global heartbeat mode, we pin/unpin all o2hb regions. This solution
159 * works for both file system and userdlm domains.
160 */
161static int o2hb_region_pin(const char *region_uuid);
162static void o2hb_region_unpin(const char *region_uuid);
163
Sunil Mushran2bd63212010-01-25 16:57:38 -0800164/* Only sets a new threshold if there are no active regions.
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800165 *
166 * No locking or otherwise interesting code is required for reading
167 * o2hb_dead_threshold as it can't change once regions are active and
168 * it's not interesting to anyone until then anyway. */
169static void o2hb_dead_threshold_set(unsigned int threshold)
170{
171 if (threshold > O2HB_MIN_DEAD_THRESHOLD) {
172 spin_lock(&o2hb_live_lock);
173 if (list_empty(&o2hb_all_regions))
174 o2hb_dead_threshold = threshold;
175 spin_unlock(&o2hb_live_lock);
176 }
177}
178
Sunil Mushran54b51872010-10-07 15:26:08 -0700179static int o2hb_global_hearbeat_mode_set(unsigned int hb_mode)
180{
181 int ret = -1;
182
183 if (hb_mode < O2HB_HEARTBEAT_NUM_MODES) {
184 spin_lock(&o2hb_live_lock);
185 if (list_empty(&o2hb_all_regions)) {
186 o2hb_heartbeat_mode = hb_mode;
187 ret = 0;
188 }
189 spin_unlock(&o2hb_live_lock);
190 }
191
192 return ret;
193}
194
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800195struct o2hb_node_event {
196 struct list_head hn_item;
197 enum o2hb_callback_type hn_event_type;
198 struct o2nm_node *hn_node;
199 int hn_node_num;
200};
201
202struct o2hb_disk_slot {
203 struct o2hb_disk_heartbeat_block *ds_raw_block;
204 u8 ds_node_num;
205 u64 ds_last_time;
206 u64 ds_last_generation;
207 u16 ds_equal_samples;
208 u16 ds_changed_samples;
209 struct list_head ds_live_item;
210};
211
212/* each thread owns a region.. when we're asked to tear down the region
213 * we ask the thread to stop, who cleans up the region */
214struct o2hb_region {
215 struct config_item hr_item;
216
217 struct list_head hr_all_item;
Sunil Mushran58a31582010-12-14 14:14:29 -0800218 unsigned hr_unclean_stop:1,
Sunil Mushrand2eece32011-07-24 10:21:54 -0700219 hr_aborted_start:1,
Sunil Mushran58a31582010-12-14 14:14:29 -0800220 hr_item_pinned:1,
221 hr_item_dropped:1;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800222
223 /* protected by the hr_callback_sem */
224 struct task_struct *hr_task;
225
226 unsigned int hr_blocks;
227 unsigned long long hr_start_block;
228
229 unsigned int hr_block_bits;
230 unsigned int hr_block_bytes;
231
232 unsigned int hr_slots_per_page;
233 unsigned int hr_num_pages;
234
235 struct page **hr_slot_data;
236 struct block_device *hr_bdev;
237 struct o2hb_disk_slot *hr_slots;
238
Sunil Mushran823a6372010-10-06 17:55:21 -0700239 /* live node map of this region */
240 unsigned long hr_live_node_bitmap[BITS_TO_LONGS(O2NM_MAX_NODES)];
Sunil Mushran536f0742010-10-07 17:03:07 -0700241 unsigned int hr_region_num;
Sunil Mushran823a6372010-10-06 17:55:21 -0700242
Sunil Mushran1f285302010-10-06 17:55:12 -0700243 struct dentry *hr_debug_dir;
244 struct dentry *hr_debug_livenodes;
245 struct dentry *hr_debug_regnum;
Sunil Mushran43695d02010-10-06 17:55:09 -0700246 struct dentry *hr_debug_elapsed_time;
Sunil Mushrancb0586b2010-12-14 14:14:30 -0800247 struct dentry *hr_debug_pinned;
Sunil Mushran1f285302010-10-06 17:55:12 -0700248 struct o2hb_debug_buf *hr_db_livenodes;
249 struct o2hb_debug_buf *hr_db_regnum;
Sunil Mushran43695d02010-10-06 17:55:09 -0700250 struct o2hb_debug_buf *hr_db_elapsed_time;
Sunil Mushrancb0586b2010-12-14 14:14:30 -0800251 struct o2hb_debug_buf *hr_db_pinned;
Sunil Mushran1f285302010-10-06 17:55:12 -0700252
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800253 /* let the person setting up hb wait for it to return until it
254 * has reached a 'steady' state. This will be fixed when we have
255 * a more complete api that doesn't lead to this sort of fragility. */
256 atomic_t hr_steady_iterations;
257
Sunil Mushrand2eece32011-07-24 10:21:54 -0700258 /* terminate o2hb thread if it does not reach steady state
259 * (hr_steady_iterations == 0) within hr_unsteady_iterations */
260 atomic_t hr_unsteady_iterations;
261
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800262 char hr_dev_name[BDEVNAME_SIZE];
263
264 unsigned int hr_timeout_ms;
265
266 /* randomized as the region goes up and down so that a node
267 * recognizes a node going up and down in one iteration */
268 u64 hr_generation;
269
David Howellsc4028952006-11-22 14:57:56 +0000270 struct delayed_work hr_write_timeout_work;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800271 unsigned long hr_last_timeout_start;
272
273 /* Used during o2hb_check_slot to hold a copy of the block
274 * being checked because we temporarily have to zero out the
275 * crc field. */
276 struct o2hb_disk_heartbeat_block *hr_tmp_block;
277};
278
279struct o2hb_bio_wait_ctxt {
280 atomic_t wc_num_reqs;
281 struct completion wc_io_complete;
Mark Fasheha9e2ae32006-03-24 14:20:17 -0800282 int wc_error;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800283};
284
Sunil Mushranb1c5ebf2010-10-07 17:05:52 -0700285static int o2hb_pop_count(void *map, int count)
286{
287 int i = -1, pop = 0;
288
289 while ((i = find_next_bit(map, count, i + 1)) < count)
290 pop++;
291 return pop;
292}
293
David Howellsc4028952006-11-22 14:57:56 +0000294static void o2hb_write_timeout(struct work_struct *work)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800295{
Sunil Mushranb1c5ebf2010-10-07 17:05:52 -0700296 int failed, quorum;
297 unsigned long flags;
David Howellsc4028952006-11-22 14:57:56 +0000298 struct o2hb_region *reg =
299 container_of(work, struct o2hb_region,
300 hr_write_timeout_work.work);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800301
302 mlog(ML_ERROR, "Heartbeat write timeout to device %s after %u "
303 "milliseconds\n", reg->hr_dev_name,
Sunil Mushran2bd63212010-01-25 16:57:38 -0800304 jiffies_to_msecs(jiffies - reg->hr_last_timeout_start));
Sunil Mushranb1c5ebf2010-10-07 17:05:52 -0700305
306 if (o2hb_global_heartbeat_active()) {
307 spin_lock_irqsave(&o2hb_live_lock, flags);
308 if (test_bit(reg->hr_region_num, o2hb_quorum_region_bitmap))
309 set_bit(reg->hr_region_num, o2hb_failed_region_bitmap);
310 failed = o2hb_pop_count(&o2hb_failed_region_bitmap,
311 O2NM_MAX_REGIONS);
312 quorum = o2hb_pop_count(&o2hb_quorum_region_bitmap,
313 O2NM_MAX_REGIONS);
314 spin_unlock_irqrestore(&o2hb_live_lock, flags);
315
316 mlog(ML_HEARTBEAT, "Number of regions %d, failed regions %d\n",
317 quorum, failed);
318
319 /*
320 * Fence if the number of failed regions >= half the number
321 * of quorum regions
322 */
323 if ((failed << 1) < quorum)
324 return;
325 }
326
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800327 o2quo_disk_timeout();
328}
329
330static void o2hb_arm_write_timeout(struct o2hb_region *reg)
331{
Sunil Mushrand2eece32011-07-24 10:21:54 -0700332 /* Arm writeout only after thread reaches steady state */
333 if (atomic_read(&reg->hr_steady_iterations) != 0)
334 return;
335
Tao Mab31d3082009-12-22 10:32:15 +0800336 mlog(ML_HEARTBEAT, "Queue write timeout for %u ms\n",
337 O2HB_MAX_WRITE_TIMEOUT_MS);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800338
Sunil Mushranb1c5ebf2010-10-07 17:05:52 -0700339 if (o2hb_global_heartbeat_active()) {
340 spin_lock(&o2hb_live_lock);
341 clear_bit(reg->hr_region_num, o2hb_failed_region_bitmap);
342 spin_unlock(&o2hb_live_lock);
343 }
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800344 cancel_delayed_work(&reg->hr_write_timeout_work);
345 reg->hr_last_timeout_start = jiffies;
346 schedule_delayed_work(&reg->hr_write_timeout_work,
347 msecs_to_jiffies(O2HB_MAX_WRITE_TIMEOUT_MS));
348}
349
350static void o2hb_disarm_write_timeout(struct o2hb_region *reg)
351{
Tejun Heo9b00a812010-12-24 15:59:06 +0100352 cancel_delayed_work_sync(&reg->hr_write_timeout_work);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800353}
354
Philipp Reisnerb5592922007-01-11 10:58:10 +0100355static inline void o2hb_bio_wait_init(struct o2hb_bio_wait_ctxt *wc)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800356{
Philipp Reisnerb5592922007-01-11 10:58:10 +0100357 atomic_set(&wc->wc_num_reqs, 1);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800358 init_completion(&wc->wc_io_complete);
Mark Fasheha9e2ae32006-03-24 14:20:17 -0800359 wc->wc_error = 0;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800360}
361
362/* Used in error paths too */
363static inline void o2hb_bio_wait_dec(struct o2hb_bio_wait_ctxt *wc,
364 unsigned int num)
365{
366 /* sadly atomic_sub_and_test() isn't available on all platforms. The
367 * good news is that the fast path only completes one at a time */
368 while(num--) {
369 if (atomic_dec_and_test(&wc->wc_num_reqs)) {
370 BUG_ON(num > 0);
371 complete(&wc->wc_io_complete);
372 }
373 }
374}
375
376static void o2hb_wait_on_io(struct o2hb_region *reg,
377 struct o2hb_bio_wait_ctxt *wc)
378{
Philipp Reisnerb5592922007-01-11 10:58:10 +0100379 o2hb_bio_wait_dec(wc, 1);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800380 wait_for_completion(&wc->wc_io_complete);
381}
382
Al Viro782e3b32007-10-12 07:17:47 +0100383static void o2hb_bio_end_io(struct bio *bio,
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800384 int error)
385{
386 struct o2hb_bio_wait_ctxt *wc = bio->bi_private;
387
Mark Fasheha9e2ae32006-03-24 14:20:17 -0800388 if (error) {
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800389 mlog(ML_ERROR, "IO Error %d\n", error);
Mark Fasheha9e2ae32006-03-24 14:20:17 -0800390 wc->wc_error = error;
391 }
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800392
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800393 o2hb_bio_wait_dec(wc, 1);
Philipp Reisnerb5592922007-01-11 10:58:10 +0100394 bio_put(bio);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800395}
396
397/* Setup a Bio to cover I/O against num_slots slots starting at
398 * start_slot. */
399static struct bio *o2hb_setup_one_bio(struct o2hb_region *reg,
400 struct o2hb_bio_wait_ctxt *wc,
Philipp Reisnerb5592922007-01-11 10:58:10 +0100401 unsigned int *current_slot,
402 unsigned int max_slots)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800403{
Philipp Reisnerb5592922007-01-11 10:58:10 +0100404 int len, current_page;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800405 unsigned int vec_len, vec_start;
406 unsigned int bits = reg->hr_block_bits;
407 unsigned int spp = reg->hr_slots_per_page;
Philipp Reisnerb5592922007-01-11 10:58:10 +0100408 unsigned int cs = *current_slot;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800409 struct bio *bio;
410 struct page *page;
411
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800412 /* Testing has shown this allocation to take long enough under
413 * GFP_KERNEL that the local node can get fenced. It would be
414 * nicest if we could pre-allocate these bios and avoid this
415 * all together. */
Philipp Reisnerb5592922007-01-11 10:58:10 +0100416 bio = bio_alloc(GFP_ATOMIC, 16);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800417 if (!bio) {
418 mlog(ML_ERROR, "Could not alloc slots BIO!\n");
419 bio = ERR_PTR(-ENOMEM);
420 goto bail;
421 }
422
423 /* Must put everything in 512 byte sectors for the bio... */
Philipp Reisnerb5592922007-01-11 10:58:10 +0100424 bio->bi_sector = (reg->hr_start_block + cs) << (bits - 9);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800425 bio->bi_bdev = reg->hr_bdev;
426 bio->bi_private = wc;
427 bio->bi_end_io = o2hb_bio_end_io;
428
Philipp Reisnerb5592922007-01-11 10:58:10 +0100429 vec_start = (cs << bits) % PAGE_CACHE_SIZE;
430 while(cs < max_slots) {
431 current_page = cs / spp;
432 page = reg->hr_slot_data[current_page];
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800433
Jan Karabc7e97c2007-10-10 16:25:42 +0200434 vec_len = min(PAGE_CACHE_SIZE - vec_start,
Philipp Reisnerb5592922007-01-11 10:58:10 +0100435 (max_slots-cs) * (PAGE_CACHE_SIZE/spp) );
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800436
437 mlog(ML_HB_BIO, "page %d, vec_len = %u, vec_start = %u\n",
Philipp Reisnerb5592922007-01-11 10:58:10 +0100438 current_page, vec_len, vec_start);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800439
440 len = bio_add_page(bio, page, vec_len, vec_start);
Philipp Reisnerb5592922007-01-11 10:58:10 +0100441 if (len != vec_len) break;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800442
Philipp Reisnerb5592922007-01-11 10:58:10 +0100443 cs += vec_len / (PAGE_CACHE_SIZE/spp);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800444 vec_start = 0;
445 }
446
447bail:
Philipp Reisnerb5592922007-01-11 10:58:10 +0100448 *current_slot = cs;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800449 return bio;
450}
451
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800452static int o2hb_read_slots(struct o2hb_region *reg,
453 unsigned int max_slots)
454{
Philipp Reisnerb5592922007-01-11 10:58:10 +0100455 unsigned int current_slot=0;
456 int status;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800457 struct o2hb_bio_wait_ctxt wc;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800458 struct bio *bio;
459
Philipp Reisnerb5592922007-01-11 10:58:10 +0100460 o2hb_bio_wait_init(&wc);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800461
Philipp Reisnerb5592922007-01-11 10:58:10 +0100462 while(current_slot < max_slots) {
463 bio = o2hb_setup_one_bio(reg, &wc, &current_slot, max_slots);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800464 if (IS_ERR(bio)) {
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800465 status = PTR_ERR(bio);
466 mlog_errno(status);
467 goto bail_and_wait;
468 }
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800469
Philipp Reisnerb5592922007-01-11 10:58:10 +0100470 atomic_inc(&wc.wc_num_reqs);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800471 submit_bio(READ, bio);
472 }
473
474 status = 0;
475
476bail_and_wait:
477 o2hb_wait_on_io(reg, &wc);
Mark Fasheha9e2ae32006-03-24 14:20:17 -0800478 if (wc.wc_error && !status)
479 status = wc.wc_error;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800480
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800481 return status;
482}
483
484static int o2hb_issue_node_write(struct o2hb_region *reg,
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800485 struct o2hb_bio_wait_ctxt *write_wc)
486{
487 int status;
488 unsigned int slot;
489 struct bio *bio;
490
Philipp Reisnerb5592922007-01-11 10:58:10 +0100491 o2hb_bio_wait_init(write_wc);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800492
493 slot = o2nm_this_node();
494
Philipp Reisnerb5592922007-01-11 10:58:10 +0100495 bio = o2hb_setup_one_bio(reg, write_wc, &slot, slot+1);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800496 if (IS_ERR(bio)) {
497 status = PTR_ERR(bio);
498 mlog_errno(status);
499 goto bail;
500 }
501
Philipp Reisnerb5592922007-01-11 10:58:10 +0100502 atomic_inc(&write_wc->wc_num_reqs);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800503 submit_bio(WRITE, bio);
504
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800505 status = 0;
506bail:
507 return status;
508}
509
510static u32 o2hb_compute_block_crc_le(struct o2hb_region *reg,
511 struct o2hb_disk_heartbeat_block *hb_block)
512{
513 __le32 old_cksum;
514 u32 ret;
515
516 /* We want to compute the block crc with a 0 value in the
517 * hb_cksum field. Save it off here and replace after the
518 * crc. */
519 old_cksum = hb_block->hb_cksum;
520 hb_block->hb_cksum = 0;
521
522 ret = crc32_le(0, (unsigned char *) hb_block, reg->hr_block_bytes);
523
524 hb_block->hb_cksum = old_cksum;
525
526 return ret;
527}
528
529static void o2hb_dump_slot(struct o2hb_disk_heartbeat_block *hb_block)
530{
Mark Fasheh70bacbd2006-03-02 11:10:05 -0800531 mlog(ML_ERROR, "Dump slot information: seq = 0x%llx, node = %u, "
532 "cksum = 0x%x, generation 0x%llx\n",
533 (long long)le64_to_cpu(hb_block->hb_seq),
534 hb_block->hb_node, le32_to_cpu(hb_block->hb_cksum),
535 (long long)le64_to_cpu(hb_block->hb_generation));
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800536}
537
538static int o2hb_verify_crc(struct o2hb_region *reg,
539 struct o2hb_disk_heartbeat_block *hb_block)
540{
541 u32 read, computed;
542
543 read = le32_to_cpu(hb_block->hb_cksum);
544 computed = o2hb_compute_block_crc_le(reg, hb_block);
545
546 return read == computed;
547}
548
Sunil Mushrand2eece32011-07-24 10:21:54 -0700549/*
550 * Compare the slot data with what we wrote in the last iteration.
551 * If the match fails, print an appropriate error message. This is to
552 * detect errors like... another node hearting on the same slot,
553 * flaky device that is losing writes, etc.
554 * Returns 1 if check succeeds, 0 otherwise.
555 */
556static int o2hb_check_own_slot(struct o2hb_region *reg)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800557{
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800558 struct o2hb_disk_slot *slot;
559 struct o2hb_disk_heartbeat_block *hb_block;
Sunil Mushran33c12a52011-05-04 10:28:01 -0700560 char *errstr;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800561
Sunil Mushran33c12a52011-05-04 10:28:01 -0700562 slot = &reg->hr_slots[o2nm_this_node()];
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800563 /* Don't check on our 1st timestamp */
Sunil Mushran33c12a52011-05-04 10:28:01 -0700564 if (!slot->ds_last_time)
Sunil Mushrand2eece32011-07-24 10:21:54 -0700565 return 0;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800566
Sunil Mushran33c12a52011-05-04 10:28:01 -0700567 hb_block = slot->ds_raw_block;
568 if (le64_to_cpu(hb_block->hb_seq) == slot->ds_last_time &&
569 le64_to_cpu(hb_block->hb_generation) == slot->ds_last_generation &&
570 hb_block->hb_node == slot->ds_node_num)
Sunil Mushrand2eece32011-07-24 10:21:54 -0700571 return 1;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800572
Sunil Mushran33c12a52011-05-04 10:28:01 -0700573#define ERRSTR1 "Another node is heartbeating on device"
574#define ERRSTR2 "Heartbeat generation mismatch on device"
575#define ERRSTR3 "Heartbeat sequence mismatch on device"
576
577 if (hb_block->hb_node != slot->ds_node_num)
578 errstr = ERRSTR1;
579 else if (le64_to_cpu(hb_block->hb_generation) !=
580 slot->ds_last_generation)
581 errstr = ERRSTR2;
582 else
583 errstr = ERRSTR3;
584
585 mlog(ML_ERROR, "%s (%s): expected(%u:0x%llx, 0x%llx), "
586 "ondisk(%u:0x%llx, 0x%llx)\n", errstr, reg->hr_dev_name,
587 slot->ds_node_num, (unsigned long long)slot->ds_last_generation,
588 (unsigned long long)slot->ds_last_time, hb_block->hb_node,
589 (unsigned long long)le64_to_cpu(hb_block->hb_generation),
590 (unsigned long long)le64_to_cpu(hb_block->hb_seq));
Sunil Mushrand2eece32011-07-24 10:21:54 -0700591
592 return 0;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800593}
594
595static inline void o2hb_prepare_block(struct o2hb_region *reg,
596 u64 generation)
597{
598 int node_num;
599 u64 cputime;
600 struct o2hb_disk_slot *slot;
601 struct o2hb_disk_heartbeat_block *hb_block;
602
603 node_num = o2nm_this_node();
604 slot = &reg->hr_slots[node_num];
605
606 hb_block = (struct o2hb_disk_heartbeat_block *)slot->ds_raw_block;
607 memset(hb_block, 0, reg->hr_block_bytes);
608 /* TODO: time stuff */
609 cputime = CURRENT_TIME.tv_sec;
610 if (!cputime)
611 cputime = 1;
612
613 hb_block->hb_seq = cpu_to_le64(cputime);
614 hb_block->hb_node = node_num;
615 hb_block->hb_generation = cpu_to_le64(generation);
Mark Fasheh0db638f2006-05-09 15:09:35 -0700616 hb_block->hb_dead_ms = cpu_to_le32(o2hb_dead_threshold * O2HB_REGION_TIMEOUT_MS);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800617
618 /* This step must always happen last! */
619 hb_block->hb_cksum = cpu_to_le32(o2hb_compute_block_crc_le(reg,
620 hb_block));
621
Mark Fasheh70bacbd2006-03-02 11:10:05 -0800622 mlog(ML_HB_BIO, "our node generation = 0x%llx, cksum = 0x%x\n",
Mark Fasheh5fdf1e62007-04-27 16:50:03 -0700623 (long long)generation,
Mark Fasheh70bacbd2006-03-02 11:10:05 -0800624 le32_to_cpu(hb_block->hb_cksum));
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800625}
626
627static void o2hb_fire_callbacks(struct o2hb_callback *hbcall,
628 struct o2nm_node *node,
629 int idx)
630{
631 struct list_head *iter;
632 struct o2hb_callback_func *f;
633
634 list_for_each(iter, &hbcall->list) {
635 f = list_entry(iter, struct o2hb_callback_func, hc_item);
636 mlog(ML_HEARTBEAT, "calling funcs %p\n", f);
637 (f->hc_func)(node, idx, f->hc_data);
638 }
639}
640
641/* Will run the list in order until we process the passed event */
642static void o2hb_run_event_list(struct o2hb_node_event *queued_event)
643{
644 int empty;
645 struct o2hb_callback *hbcall;
646 struct o2hb_node_event *event;
647
648 spin_lock(&o2hb_live_lock);
649 empty = list_empty(&queued_event->hn_item);
650 spin_unlock(&o2hb_live_lock);
651 if (empty)
652 return;
653
654 /* Holding callback sem assures we don't alter the callback
655 * lists when doing this, and serializes ourselves with other
656 * processes wanting callbacks. */
657 down_write(&o2hb_callback_sem);
658
659 spin_lock(&o2hb_live_lock);
660 while (!list_empty(&o2hb_node_events)
661 && !list_empty(&queued_event->hn_item)) {
662 event = list_entry(o2hb_node_events.next,
663 struct o2hb_node_event,
664 hn_item);
665 list_del_init(&event->hn_item);
666 spin_unlock(&o2hb_live_lock);
667
668 mlog(ML_HEARTBEAT, "Node %s event for %d\n",
669 event->hn_event_type == O2HB_NODE_UP_CB ? "UP" : "DOWN",
670 event->hn_node_num);
671
672 hbcall = hbcall_from_type(event->hn_event_type);
673
674 /* We should *never* have gotten on to the list with a
675 * bad type... This isn't something that we should try
676 * to recover from. */
677 BUG_ON(IS_ERR(hbcall));
678
679 o2hb_fire_callbacks(hbcall, event->hn_node, event->hn_node_num);
680
681 spin_lock(&o2hb_live_lock);
682 }
683 spin_unlock(&o2hb_live_lock);
684
685 up_write(&o2hb_callback_sem);
686}
687
688static void o2hb_queue_node_event(struct o2hb_node_event *event,
689 enum o2hb_callback_type type,
690 struct o2nm_node *node,
691 int node_num)
692{
693 assert_spin_locked(&o2hb_live_lock);
694
Sunil Mushran0e105d32010-10-07 17:00:16 -0700695 BUG_ON((!node) && (type != O2HB_NODE_DOWN_CB));
696
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800697 event->hn_event_type = type;
698 event->hn_node = node;
699 event->hn_node_num = node_num;
700
701 mlog(ML_HEARTBEAT, "Queue node %s event for node %d\n",
702 type == O2HB_NODE_UP_CB ? "UP" : "DOWN", node_num);
703
704 list_add_tail(&event->hn_item, &o2hb_node_events);
705}
706
707static void o2hb_shutdown_slot(struct o2hb_disk_slot *slot)
708{
709 struct o2hb_node_event event =
710 { .hn_item = LIST_HEAD_INIT(event.hn_item), };
711 struct o2nm_node *node;
712
713 node = o2nm_get_node_by_num(slot->ds_node_num);
714 if (!node)
715 return;
716
717 spin_lock(&o2hb_live_lock);
718 if (!list_empty(&slot->ds_live_item)) {
719 mlog(ML_HEARTBEAT, "Shutdown, node %d leaves region\n",
720 slot->ds_node_num);
721
722 list_del_init(&slot->ds_live_item);
723
724 if (list_empty(&o2hb_live_slots[slot->ds_node_num])) {
725 clear_bit(slot->ds_node_num, o2hb_live_node_bitmap);
726
727 o2hb_queue_node_event(&event, O2HB_NODE_DOWN_CB, node,
728 slot->ds_node_num);
729 }
730 }
731 spin_unlock(&o2hb_live_lock);
732
733 o2hb_run_event_list(&event);
734
735 o2nm_node_put(node);
736}
737
Sunil Mushrand2eece32011-07-24 10:21:54 -0700738static void o2hb_set_quorum_device(struct o2hb_region *reg)
Sunil Mushran43182d22010-10-06 17:55:16 -0700739{
Sunil Mushran43182d22010-10-06 17:55:16 -0700740 if (!o2hb_global_heartbeat_active())
741 return;
742
Sunil Mushrand2eece32011-07-24 10:21:54 -0700743 /* Prevent race with o2hb_heartbeat_group_drop_item() */
744 if (kthread_should_stop())
Sunil Mushran43182d22010-10-06 17:55:16 -0700745 return;
746
Sunil Mushrand2eece32011-07-24 10:21:54 -0700747 /* Tag region as quorum only after thread reaches steady state */
748 if (atomic_read(&reg->hr_steady_iterations) != 0)
749 return;
750
751 spin_lock(&o2hb_live_lock);
752
753 if (test_bit(reg->hr_region_num, o2hb_quorum_region_bitmap))
754 goto unlock;
755
Sunil Mushran43182d22010-10-06 17:55:16 -0700756 /*
757 * A region can be added to the quorum only when it sees all
758 * live nodes heartbeat on it. In other words, the region has been
759 * added to all nodes.
760 */
761 if (memcmp(reg->hr_live_node_bitmap, o2hb_live_node_bitmap,
762 sizeof(o2hb_live_node_bitmap)))
Sunil Mushrand2eece32011-07-24 10:21:54 -0700763 goto unlock;
Sunil Mushran43182d22010-10-06 17:55:16 -0700764
Sunil Mushrand2eece32011-07-24 10:21:54 -0700765 printk(KERN_NOTICE "o2hb: Region %s (%s) is now a quorum device\n",
766 config_item_name(&reg->hr_item), reg->hr_dev_name);
Sunil Mushran43182d22010-10-06 17:55:16 -0700767
768 set_bit(reg->hr_region_num, o2hb_quorum_region_bitmap);
Sunil Mushran58a31582010-12-14 14:14:29 -0800769
770 /*
771 * If global heartbeat active, unpin all regions if the
772 * region count > CUT_OFF
773 */
774 if (o2hb_pop_count(&o2hb_quorum_region_bitmap,
775 O2NM_MAX_REGIONS) > O2HB_PIN_CUT_OFF)
776 o2hb_region_unpin(NULL);
Sunil Mushrand2eece32011-07-24 10:21:54 -0700777unlock:
778 spin_unlock(&o2hb_live_lock);
Sunil Mushran43182d22010-10-06 17:55:16 -0700779}
780
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800781static int o2hb_check_slot(struct o2hb_region *reg,
782 struct o2hb_disk_slot *slot)
783{
784 int changed = 0, gen_changed = 0;
785 struct o2hb_node_event event =
786 { .hn_item = LIST_HEAD_INIT(event.hn_item), };
787 struct o2nm_node *node;
788 struct o2hb_disk_heartbeat_block *hb_block = reg->hr_tmp_block;
789 u64 cputime;
Mark Fasheh0db638f2006-05-09 15:09:35 -0700790 unsigned int dead_ms = o2hb_dead_threshold * O2HB_REGION_TIMEOUT_MS;
791 unsigned int slot_dead_ms;
Sunil Mushran0e105d32010-10-07 17:00:16 -0700792 int tmp;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800793
794 memcpy(hb_block, slot->ds_raw_block, reg->hr_block_bytes);
795
Sunil Mushran0e105d32010-10-07 17:00:16 -0700796 /*
797 * If a node is no longer configured but is still in the livemap, we
798 * may need to clear that bit from the livemap.
799 */
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800800 node = o2nm_get_node_by_num(slot->ds_node_num);
Sunil Mushran0e105d32010-10-07 17:00:16 -0700801 if (!node) {
802 spin_lock(&o2hb_live_lock);
803 tmp = test_bit(slot->ds_node_num, o2hb_live_node_bitmap);
804 spin_unlock(&o2hb_live_lock);
805 if (!tmp)
806 return 0;
807 }
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800808
809 if (!o2hb_verify_crc(reg, hb_block)) {
810 /* all paths from here will drop o2hb_live_lock for
811 * us. */
812 spin_lock(&o2hb_live_lock);
813
814 /* Don't print an error on the console in this case -
815 * a freshly formatted heartbeat area will not have a
816 * crc set on it. */
817 if (list_empty(&slot->ds_live_item))
818 goto out;
819
820 /* The node is live but pushed out a bad crc. We
821 * consider it a transient miss but don't populate any
822 * other values as they may be junk. */
823 mlog(ML_ERROR, "Node %d has written a bad crc to %s\n",
824 slot->ds_node_num, reg->hr_dev_name);
825 o2hb_dump_slot(hb_block);
826
827 slot->ds_equal_samples++;
828 goto fire_callbacks;
829 }
830
831 /* we don't care if these wrap.. the state transitions below
832 * clear at the right places */
833 cputime = le64_to_cpu(hb_block->hb_seq);
834 if (slot->ds_last_time != cputime)
835 slot->ds_changed_samples++;
836 else
837 slot->ds_equal_samples++;
838 slot->ds_last_time = cputime;
839
840 /* The node changed heartbeat generations. We assume this to
841 * mean it dropped off but came back before we timed out. We
842 * want to consider it down for the time being but don't want
843 * to lose any changed_samples state we might build up to
844 * considering it live again. */
845 if (slot->ds_last_generation != le64_to_cpu(hb_block->hb_generation)) {
846 gen_changed = 1;
847 slot->ds_equal_samples = 0;
Mark Fasheh70bacbd2006-03-02 11:10:05 -0800848 mlog(ML_HEARTBEAT, "Node %d changed generation (0x%llx "
849 "to 0x%llx)\n", slot->ds_node_num,
850 (long long)slot->ds_last_generation,
851 (long long)le64_to_cpu(hb_block->hb_generation));
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800852 }
853
854 slot->ds_last_generation = le64_to_cpu(hb_block->hb_generation);
855
Mark Fasheh70bacbd2006-03-02 11:10:05 -0800856 mlog(ML_HEARTBEAT, "Slot %d gen 0x%llx cksum 0x%x "
857 "seq %llu last %llu changed %u equal %u\n",
858 slot->ds_node_num, (long long)slot->ds_last_generation,
859 le32_to_cpu(hb_block->hb_cksum),
Sunil Mushran2bd63212010-01-25 16:57:38 -0800860 (unsigned long long)le64_to_cpu(hb_block->hb_seq),
Mark Fasheh70bacbd2006-03-02 11:10:05 -0800861 (unsigned long long)slot->ds_last_time, slot->ds_changed_samples,
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800862 slot->ds_equal_samples);
863
864 spin_lock(&o2hb_live_lock);
865
866fire_callbacks:
867 /* dead nodes only come to life after some number of
868 * changes at any time during their dead time */
869 if (list_empty(&slot->ds_live_item) &&
870 slot->ds_changed_samples >= O2HB_LIVE_THRESHOLD) {
Mark Fasheh70bacbd2006-03-02 11:10:05 -0800871 mlog(ML_HEARTBEAT, "Node %d (id 0x%llx) joined my region\n",
872 slot->ds_node_num, (long long)slot->ds_last_generation);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800873
Sunil Mushran823a6372010-10-06 17:55:21 -0700874 set_bit(slot->ds_node_num, reg->hr_live_node_bitmap);
875
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800876 /* first on the list generates a callback */
877 if (list_empty(&o2hb_live_slots[slot->ds_node_num])) {
Sunil Mushrand6aa1c72010-10-06 18:50:50 -0700878 mlog(ML_HEARTBEAT, "o2hb: Add node %d to live nodes "
879 "bitmap\n", slot->ds_node_num);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800880 set_bit(slot->ds_node_num, o2hb_live_node_bitmap);
881
882 o2hb_queue_node_event(&event, O2HB_NODE_UP_CB, node,
883 slot->ds_node_num);
884
885 changed = 1;
886 }
887
888 list_add_tail(&slot->ds_live_item,
889 &o2hb_live_slots[slot->ds_node_num]);
890
891 slot->ds_equal_samples = 0;
Mark Fasheh0db638f2006-05-09 15:09:35 -0700892
893 /* We want to be sure that all nodes agree on the
894 * number of milliseconds before a node will be
895 * considered dead. The self-fencing timeout is
896 * computed from this value, and a discrepancy might
897 * result in heartbeat calling a node dead when it
898 * hasn't self-fenced yet. */
899 slot_dead_ms = le32_to_cpu(hb_block->hb_dead_ms);
900 if (slot_dead_ms && slot_dead_ms != dead_ms) {
901 /* TODO: Perhaps we can fail the region here. */
902 mlog(ML_ERROR, "Node %d on device %s has a dead count "
903 "of %u ms, but our count is %u ms.\n"
904 "Please double check your configuration values "
905 "for 'O2CB_HEARTBEAT_THRESHOLD'\n",
906 slot->ds_node_num, reg->hr_dev_name, slot_dead_ms,
907 dead_ms);
908 }
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800909 goto out;
910 }
911
912 /* if the list is dead, we're done.. */
913 if (list_empty(&slot->ds_live_item))
914 goto out;
915
916 /* live nodes only go dead after enough consequtive missed
917 * samples.. reset the missed counter whenever we see
918 * activity */
919 if (slot->ds_equal_samples >= o2hb_dead_threshold || gen_changed) {
920 mlog(ML_HEARTBEAT, "Node %d left my region\n",
921 slot->ds_node_num);
922
Sunil Mushran823a6372010-10-06 17:55:21 -0700923 clear_bit(slot->ds_node_num, reg->hr_live_node_bitmap);
924
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800925 /* last off the live_slot generates a callback */
926 list_del_init(&slot->ds_live_item);
927 if (list_empty(&o2hb_live_slots[slot->ds_node_num])) {
Sunil Mushrand6aa1c72010-10-06 18:50:50 -0700928 mlog(ML_HEARTBEAT, "o2hb: Remove node %d from live "
929 "nodes bitmap\n", slot->ds_node_num);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800930 clear_bit(slot->ds_node_num, o2hb_live_node_bitmap);
931
Sunil Mushran0e105d32010-10-07 17:00:16 -0700932 /* node can be null */
933 o2hb_queue_node_event(&event, O2HB_NODE_DOWN_CB,
934 node, slot->ds_node_num);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800935
936 changed = 1;
937 }
938
939 /* We don't clear this because the node is still
940 * actually writing new blocks. */
941 if (!gen_changed)
942 slot->ds_changed_samples = 0;
943 goto out;
944 }
945 if (slot->ds_changed_samples) {
946 slot->ds_changed_samples = 0;
947 slot->ds_equal_samples = 0;
948 }
949out:
950 spin_unlock(&o2hb_live_lock);
951
952 o2hb_run_event_list(&event);
953
Sunil Mushran0e105d32010-10-07 17:00:16 -0700954 if (node)
955 o2nm_node_put(node);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800956 return changed;
957}
958
959/* This could be faster if we just implmented a find_last_bit, but I
960 * don't think the circumstances warrant it. */
961static int o2hb_highest_node(unsigned long *nodes,
962 int numbits)
963{
964 int highest, node;
965
966 highest = numbits;
967 node = -1;
968 while ((node = find_next_bit(nodes, numbits, node + 1)) != -1) {
969 if (node >= numbits)
970 break;
971
972 highest = node;
973 }
974
975 return highest;
976}
977
Mark Fasheha9e2ae32006-03-24 14:20:17 -0800978static int o2hb_do_disk_heartbeat(struct o2hb_region *reg)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800979{
Sunil Mushrand2eece32011-07-24 10:21:54 -0700980 int i, ret, highest_node;
981 int membership_change = 0, own_slot_ok = 0;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800982 unsigned long configured_nodes[BITS_TO_LONGS(O2NM_MAX_NODES)];
Sunil Mushran0e105d32010-10-07 17:00:16 -0700983 unsigned long live_node_bitmap[BITS_TO_LONGS(O2NM_MAX_NODES)];
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800984 struct o2hb_bio_wait_ctxt write_wc;
985
Mark Fasheha9e2ae32006-03-24 14:20:17 -0800986 ret = o2nm_configured_node_map(configured_nodes,
987 sizeof(configured_nodes));
988 if (ret) {
989 mlog_errno(ret);
Sunil Mushrand2eece32011-07-24 10:21:54 -0700990 goto bail;
Mark Fasheha9e2ae32006-03-24 14:20:17 -0800991 }
Mark Fasheha7f6a5f2005-12-15 14:31:23 -0800992
Sunil Mushran0e105d32010-10-07 17:00:16 -0700993 /*
994 * If a node is not configured but is in the livemap, we still need
995 * to read the slot so as to be able to remove it from the livemap.
996 */
997 o2hb_fill_node_map(live_node_bitmap, sizeof(live_node_bitmap));
998 i = -1;
999 while ((i = find_next_bit(live_node_bitmap,
1000 O2NM_MAX_NODES, i + 1)) < O2NM_MAX_NODES) {
1001 set_bit(i, configured_nodes);
1002 }
1003
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001004 highest_node = o2hb_highest_node(configured_nodes, O2NM_MAX_NODES);
1005 if (highest_node >= O2NM_MAX_NODES) {
Sunil Mushrand2eece32011-07-24 10:21:54 -07001006 mlog(ML_NOTICE, "o2hb: No configured nodes found!\n");
1007 ret = -EINVAL;
1008 goto bail;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001009 }
1010
1011 /* No sense in reading the slots of nodes that don't exist
1012 * yet. Of course, if the node definitions have holes in them
1013 * then we're reading an empty slot anyway... Consider this
1014 * best-effort. */
1015 ret = o2hb_read_slots(reg, highest_node + 1);
1016 if (ret < 0) {
1017 mlog_errno(ret);
Sunil Mushrand2eece32011-07-24 10:21:54 -07001018 goto bail;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001019 }
1020
1021 /* With an up to date view of the slots, we can check that no
1022 * other node has been improperly configured to heartbeat in
1023 * our slot. */
Sunil Mushrand2eece32011-07-24 10:21:54 -07001024 own_slot_ok = o2hb_check_own_slot(reg);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001025
1026 /* fill in the proper info for our next heartbeat */
1027 o2hb_prepare_block(reg, reg->hr_generation);
1028
Philipp Reisnerb5592922007-01-11 10:58:10 +01001029 ret = o2hb_issue_node_write(reg, &write_wc);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001030 if (ret < 0) {
1031 mlog_errno(ret);
Sunil Mushrand2eece32011-07-24 10:21:54 -07001032 goto bail;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001033 }
1034
1035 i = -1;
Sunil Mushran33c12a52011-05-04 10:28:01 -07001036 while((i = find_next_bit(configured_nodes,
1037 O2NM_MAX_NODES, i + 1)) < O2NM_MAX_NODES) {
Sunil Mushrand2eece32011-07-24 10:21:54 -07001038 membership_change |= o2hb_check_slot(reg, &reg->hr_slots[i]);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001039 }
1040
1041 /*
1042 * We have to be sure we've advertised ourselves on disk
1043 * before we can go to steady state. This ensures that
1044 * people we find in our steady state have seen us.
1045 */
1046 o2hb_wait_on_io(reg, &write_wc);
Mark Fasheha9e2ae32006-03-24 14:20:17 -08001047 if (write_wc.wc_error) {
1048 /* Do not re-arm the write timeout on I/O error - we
1049 * can't be sure that the new block ever made it to
1050 * disk */
1051 mlog(ML_ERROR, "Write error %d on device \"%s\"\n",
1052 write_wc.wc_error, reg->hr_dev_name);
Sunil Mushrand2eece32011-07-24 10:21:54 -07001053 ret = write_wc.wc_error;
1054 goto bail;
Mark Fasheha9e2ae32006-03-24 14:20:17 -08001055 }
1056
Sunil Mushrand2eece32011-07-24 10:21:54 -07001057 /* Skip disarming the timeout if own slot has stale/bad data */
1058 if (own_slot_ok) {
1059 o2hb_set_quorum_device(reg);
1060 o2hb_arm_write_timeout(reg);
1061 }
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001062
Sunil Mushrand2eece32011-07-24 10:21:54 -07001063bail:
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001064 /* let the person who launched us know when things are steady */
Sunil Mushrand2eece32011-07-24 10:21:54 -07001065 if (atomic_read(&reg->hr_steady_iterations) != 0) {
1066 if (!ret && own_slot_ok && !membership_change) {
1067 if (atomic_dec_and_test(&reg->hr_steady_iterations))
1068 wake_up(&o2hb_steady_queue);
1069 }
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001070 }
Mark Fasheha9e2ae32006-03-24 14:20:17 -08001071
Sunil Mushrand2eece32011-07-24 10:21:54 -07001072 if (atomic_read(&reg->hr_steady_iterations) != 0) {
1073 if (atomic_dec_and_test(&reg->hr_unsteady_iterations)) {
1074 printk(KERN_NOTICE "o2hb: Unable to stabilize "
1075 "heartbeart on region %s (%s)\n",
1076 config_item_name(&reg->hr_item),
1077 reg->hr_dev_name);
1078 atomic_set(&reg->hr_steady_iterations, 0);
1079 reg->hr_aborted_start = 1;
1080 wake_up(&o2hb_steady_queue);
1081 ret = -EIO;
1082 }
1083 }
1084
1085 return ret;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001086}
1087
1088/* Subtract b from a, storing the result in a. a *must* have a larger
1089 * value than b. */
1090static void o2hb_tv_subtract(struct timeval *a,
1091 struct timeval *b)
1092{
1093 /* just return 0 when a is after b */
1094 if (a->tv_sec < b->tv_sec ||
1095 (a->tv_sec == b->tv_sec && a->tv_usec < b->tv_usec)) {
1096 a->tv_sec = 0;
1097 a->tv_usec = 0;
1098 return;
1099 }
1100
1101 a->tv_sec -= b->tv_sec;
1102 a->tv_usec -= b->tv_usec;
1103 while ( a->tv_usec < 0 ) {
1104 a->tv_sec--;
1105 a->tv_usec += 1000000;
1106 }
1107}
1108
1109static unsigned int o2hb_elapsed_msecs(struct timeval *start,
1110 struct timeval *end)
1111{
1112 struct timeval res = *end;
1113
1114 o2hb_tv_subtract(&res, start);
1115
1116 return res.tv_sec * 1000 + res.tv_usec / 1000;
1117}
1118
1119/*
1120 * we ride the region ref that the region dir holds. before the region
1121 * dir is removed and drops it ref it will wait to tear down this
1122 * thread.
1123 */
1124static int o2hb_thread(void *data)
1125{
1126 int i, ret;
1127 struct o2hb_region *reg = data;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001128 struct o2hb_bio_wait_ctxt write_wc;
1129 struct timeval before_hb, after_hb;
1130 unsigned int elapsed_msec;
1131
1132 mlog(ML_HEARTBEAT|ML_KTHREAD, "hb thread running\n");
1133
1134 set_user_nice(current, -20);
1135
Sunil Mushrancfc069d2010-12-14 14:14:31 -08001136 /* Pin node */
1137 o2nm_depend_this_node();
1138
Sunil Mushrand2eece32011-07-24 10:21:54 -07001139 while (!kthread_should_stop() &&
1140 !reg->hr_unclean_stop && !reg->hr_aborted_start) {
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001141 /* We track the time spent inside
Frederik Schwarzer025dfda2008-10-16 19:02:37 +02001142 * o2hb_do_disk_heartbeat so that we avoid more than
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001143 * hr_timeout_ms between disk writes. On busy systems
1144 * this should result in a heartbeat which is less
1145 * likely to time itself out. */
1146 do_gettimeofday(&before_hb);
1147
Sunil Mushrand2eece32011-07-24 10:21:54 -07001148 ret = o2hb_do_disk_heartbeat(reg);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001149
1150 do_gettimeofday(&after_hb);
1151 elapsed_msec = o2hb_elapsed_msecs(&before_hb, &after_hb);
1152
Tao Mab31d3082009-12-22 10:32:15 +08001153 mlog(ML_HEARTBEAT,
1154 "start = %lu.%lu, end = %lu.%lu, msec = %u\n",
Mark Fasheh215c7f92006-02-01 16:42:10 -08001155 before_hb.tv_sec, (unsigned long) before_hb.tv_usec,
1156 after_hb.tv_sec, (unsigned long) after_hb.tv_usec,
1157 elapsed_msec);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001158
Sunil Mushrand2eece32011-07-24 10:21:54 -07001159 if (!kthread_should_stop() &&
1160 elapsed_msec < reg->hr_timeout_ms) {
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001161 /* the kthread api has blocked signals for us so no
1162 * need to record the return value. */
1163 msleep_interruptible(reg->hr_timeout_ms - elapsed_msec);
1164 }
1165 }
1166
1167 o2hb_disarm_write_timeout(reg);
1168
1169 /* unclean stop is only used in very bad situation */
1170 for(i = 0; !reg->hr_unclean_stop && i < reg->hr_blocks; i++)
1171 o2hb_shutdown_slot(&reg->hr_slots[i]);
1172
1173 /* Explicit down notification - avoid forcing the other nodes
1174 * to timeout on this region when we could just as easily
1175 * write a clear generation - thus indicating to them that
1176 * this node has left this region.
Sunil Mushrand2eece32011-07-24 10:21:54 -07001177 */
1178 if (!reg->hr_unclean_stop && !reg->hr_aborted_start) {
1179 o2hb_prepare_block(reg, 0);
1180 ret = o2hb_issue_node_write(reg, &write_wc);
1181 if (ret == 0)
1182 o2hb_wait_on_io(reg, &write_wc);
1183 else
1184 mlog_errno(ret);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001185 }
1186
Sunil Mushrancfc069d2010-12-14 14:14:31 -08001187 /* Unpin node */
1188 o2nm_undepend_this_node();
1189
Sunil Mushrand2eece32011-07-24 10:21:54 -07001190 mlog(ML_HEARTBEAT|ML_KTHREAD, "o2hb thread exiting\n");
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001191
1192 return 0;
1193}
1194
Sunil Mushran87d3d3f2008-12-17 14:17:42 -08001195#ifdef CONFIG_DEBUG_FS
1196static int o2hb_debug_open(struct inode *inode, struct file *file)
1197{
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001198 struct o2hb_debug_buf *db = inode->i_private;
Sunil Mushran1f285302010-10-06 17:55:12 -07001199 struct o2hb_region *reg;
Sunil Mushran87d3d3f2008-12-17 14:17:42 -08001200 unsigned long map[BITS_TO_LONGS(O2NM_MAX_NODES)];
1201 char *buf = NULL;
1202 int i = -1;
1203 int out = 0;
1204
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001205 /* max_nodes should be the largest bitmap we pass here */
1206 BUG_ON(sizeof(map) < db->db_size);
1207
Sunil Mushran87d3d3f2008-12-17 14:17:42 -08001208 buf = kmalloc(PAGE_SIZE, GFP_KERNEL);
1209 if (!buf)
1210 goto bail;
1211
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001212 switch (db->db_type) {
1213 case O2HB_DB_TYPE_LIVENODES:
Sunil Mushrana6de0132010-10-06 17:55:13 -07001214 case O2HB_DB_TYPE_LIVEREGIONS:
1215 case O2HB_DB_TYPE_QUORUMREGIONS:
1216 case O2HB_DB_TYPE_FAILEDREGIONS:
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001217 spin_lock(&o2hb_live_lock);
1218 memcpy(map, db->db_data, db->db_size);
1219 spin_unlock(&o2hb_live_lock);
1220 break;
Sunil Mushran87d3d3f2008-12-17 14:17:42 -08001221
Sunil Mushran1f285302010-10-06 17:55:12 -07001222 case O2HB_DB_TYPE_REGION_LIVENODES:
1223 spin_lock(&o2hb_live_lock);
1224 reg = (struct o2hb_region *)db->db_data;
1225 memcpy(map, reg->hr_live_node_bitmap, db->db_size);
1226 spin_unlock(&o2hb_live_lock);
1227 break;
1228
1229 case O2HB_DB_TYPE_REGION_NUMBER:
1230 reg = (struct o2hb_region *)db->db_data;
1231 out += snprintf(buf + out, PAGE_SIZE - out, "%d\n",
1232 reg->hr_region_num);
1233 goto done;
1234
Sunil Mushran43695d02010-10-06 17:55:09 -07001235 case O2HB_DB_TYPE_REGION_ELAPSED_TIME:
1236 reg = (struct o2hb_region *)db->db_data;
1237 out += snprintf(buf + out, PAGE_SIZE - out, "%u\n",
1238 jiffies_to_msecs(jiffies -
1239 reg->hr_last_timeout_start));
1240 goto done;
1241
Sunil Mushrancb0586b2010-12-14 14:14:30 -08001242 case O2HB_DB_TYPE_REGION_PINNED:
1243 reg = (struct o2hb_region *)db->db_data;
1244 out += snprintf(buf + out, PAGE_SIZE - out, "%u\n",
1245 !!reg->hr_item_pinned);
1246 goto done;
1247
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001248 default:
1249 goto done;
1250 }
1251
1252 while ((i = find_next_bit(map, db->db_len, i + 1)) < db->db_len)
Sunil Mushran87d3d3f2008-12-17 14:17:42 -08001253 out += snprintf(buf + out, PAGE_SIZE - out, "%d ", i);
1254 out += snprintf(buf + out, PAGE_SIZE - out, "\n");
1255
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001256done:
Sunil Mushran87d3d3f2008-12-17 14:17:42 -08001257 i_size_write(inode, out);
1258
1259 file->private_data = buf;
1260
1261 return 0;
1262bail:
1263 return -ENOMEM;
1264}
1265
1266static int o2hb_debug_release(struct inode *inode, struct file *file)
1267{
1268 kfree(file->private_data);
1269 return 0;
1270}
1271
1272static ssize_t o2hb_debug_read(struct file *file, char __user *buf,
1273 size_t nbytes, loff_t *ppos)
1274{
1275 return simple_read_from_buffer(buf, nbytes, ppos, file->private_data,
1276 i_size_read(file->f_mapping->host));
1277}
1278#else
1279static int o2hb_debug_open(struct inode *inode, struct file *file)
1280{
1281 return 0;
1282}
1283static int o2hb_debug_release(struct inode *inode, struct file *file)
1284{
1285 return 0;
1286}
1287static ssize_t o2hb_debug_read(struct file *file, char __user *buf,
1288 size_t nbytes, loff_t *ppos)
1289{
1290 return 0;
1291}
1292#endif /* CONFIG_DEBUG_FS */
1293
Alexey Dobriyan828c0952009-10-01 15:43:56 -07001294static const struct file_operations o2hb_debug_fops = {
Sunil Mushran87d3d3f2008-12-17 14:17:42 -08001295 .open = o2hb_debug_open,
1296 .release = o2hb_debug_release,
1297 .read = o2hb_debug_read,
1298 .llseek = generic_file_llseek,
1299};
1300
1301void o2hb_exit(void)
1302{
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001303 kfree(o2hb_db_livenodes);
Sunil Mushrana6de0132010-10-06 17:55:13 -07001304 kfree(o2hb_db_liveregions);
1305 kfree(o2hb_db_quorumregions);
1306 kfree(o2hb_db_failedregions);
1307 debugfs_remove(o2hb_debug_failedregions);
1308 debugfs_remove(o2hb_debug_quorumregions);
1309 debugfs_remove(o2hb_debug_liveregions);
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001310 debugfs_remove(o2hb_debug_livenodes);
1311 debugfs_remove(o2hb_debug_dir);
1312}
1313
1314static struct dentry *o2hb_debug_create(const char *name, struct dentry *dir,
1315 struct o2hb_debug_buf **db, int db_len,
1316 int type, int size, int len, void *data)
1317{
1318 *db = kmalloc(db_len, GFP_KERNEL);
1319 if (!*db)
1320 return NULL;
1321
1322 (*db)->db_type = type;
1323 (*db)->db_size = size;
1324 (*db)->db_len = len;
1325 (*db)->db_data = data;
1326
1327 return debugfs_create_file(name, S_IFREG|S_IRUSR, dir, *db,
1328 &o2hb_debug_fops);
1329}
1330
1331static int o2hb_debug_init(void)
1332{
1333 int ret = -ENOMEM;
1334
1335 o2hb_debug_dir = debugfs_create_dir(O2HB_DEBUG_DIR, NULL);
1336 if (!o2hb_debug_dir) {
1337 mlog_errno(ret);
1338 goto bail;
1339 }
1340
1341 o2hb_debug_livenodes = o2hb_debug_create(O2HB_DEBUG_LIVENODES,
1342 o2hb_debug_dir,
1343 &o2hb_db_livenodes,
1344 sizeof(*o2hb_db_livenodes),
1345 O2HB_DB_TYPE_LIVENODES,
1346 sizeof(o2hb_live_node_bitmap),
1347 O2NM_MAX_NODES,
1348 o2hb_live_node_bitmap);
1349 if (!o2hb_debug_livenodes) {
1350 mlog_errno(ret);
1351 goto bail;
1352 }
Sunil Mushrana6de0132010-10-06 17:55:13 -07001353
1354 o2hb_debug_liveregions = o2hb_debug_create(O2HB_DEBUG_LIVEREGIONS,
1355 o2hb_debug_dir,
1356 &o2hb_db_liveregions,
1357 sizeof(*o2hb_db_liveregions),
1358 O2HB_DB_TYPE_LIVEREGIONS,
1359 sizeof(o2hb_live_region_bitmap),
1360 O2NM_MAX_REGIONS,
1361 o2hb_live_region_bitmap);
1362 if (!o2hb_debug_liveregions) {
1363 mlog_errno(ret);
1364 goto bail;
1365 }
1366
1367 o2hb_debug_quorumregions =
1368 o2hb_debug_create(O2HB_DEBUG_QUORUMREGIONS,
1369 o2hb_debug_dir,
1370 &o2hb_db_quorumregions,
1371 sizeof(*o2hb_db_quorumregions),
1372 O2HB_DB_TYPE_QUORUMREGIONS,
1373 sizeof(o2hb_quorum_region_bitmap),
1374 O2NM_MAX_REGIONS,
1375 o2hb_quorum_region_bitmap);
1376 if (!o2hb_debug_quorumregions) {
1377 mlog_errno(ret);
1378 goto bail;
1379 }
1380
1381 o2hb_debug_failedregions =
1382 o2hb_debug_create(O2HB_DEBUG_FAILEDREGIONS,
1383 o2hb_debug_dir,
1384 &o2hb_db_failedregions,
1385 sizeof(*o2hb_db_failedregions),
1386 O2HB_DB_TYPE_FAILEDREGIONS,
1387 sizeof(o2hb_failed_region_bitmap),
1388 O2NM_MAX_REGIONS,
1389 o2hb_failed_region_bitmap);
1390 if (!o2hb_debug_failedregions) {
1391 mlog_errno(ret);
1392 goto bail;
1393 }
1394
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001395 ret = 0;
1396bail:
1397 if (ret)
1398 o2hb_exit();
1399
1400 return ret;
Sunil Mushran87d3d3f2008-12-17 14:17:42 -08001401}
1402
1403int o2hb_init(void)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001404{
1405 int i;
1406
1407 for (i = 0; i < ARRAY_SIZE(o2hb_callbacks); i++)
1408 INIT_LIST_HEAD(&o2hb_callbacks[i].list);
1409
1410 for (i = 0; i < ARRAY_SIZE(o2hb_live_slots); i++)
1411 INIT_LIST_HEAD(&o2hb_live_slots[i]);
1412
1413 INIT_LIST_HEAD(&o2hb_node_events);
1414
1415 memset(o2hb_live_node_bitmap, 0, sizeof(o2hb_live_node_bitmap));
Sunil Mushran536f0742010-10-07 17:03:07 -07001416 memset(o2hb_region_bitmap, 0, sizeof(o2hb_region_bitmap));
Sunil Mushrane7d656b2010-10-06 17:55:18 -07001417 memset(o2hb_live_region_bitmap, 0, sizeof(o2hb_live_region_bitmap));
Sunil Mushran43182d22010-10-06 17:55:16 -07001418 memset(o2hb_quorum_region_bitmap, 0, sizeof(o2hb_quorum_region_bitmap));
Sunil Mushranb1c5ebf2010-10-07 17:05:52 -07001419 memset(o2hb_failed_region_bitmap, 0, sizeof(o2hb_failed_region_bitmap));
Sunil Mushran87d3d3f2008-12-17 14:17:42 -08001420
Sunil Mushran58a31582010-12-14 14:14:29 -08001421 o2hb_dependent_users = 0;
1422
Sunil Mushran8ca8b0bb2010-10-07 17:01:27 -07001423 return o2hb_debug_init();
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001424}
1425
1426/* if we're already in a callback then we're already serialized by the sem */
1427static void o2hb_fill_node_map_from_callback(unsigned long *map,
1428 unsigned bytes)
1429{
1430 BUG_ON(bytes < (BITS_TO_LONGS(O2NM_MAX_NODES) * sizeof(unsigned long)));
1431
1432 memcpy(map, &o2hb_live_node_bitmap, bytes);
1433}
1434
1435/*
1436 * get a map of all nodes that are heartbeating in any regions
1437 */
1438void o2hb_fill_node_map(unsigned long *map, unsigned bytes)
1439{
1440 /* callers want to serialize this map and callbacks so that they
1441 * can trust that they don't miss nodes coming to the party */
1442 down_read(&o2hb_callback_sem);
1443 spin_lock(&o2hb_live_lock);
1444 o2hb_fill_node_map_from_callback(map, bytes);
1445 spin_unlock(&o2hb_live_lock);
1446 up_read(&o2hb_callback_sem);
1447}
1448EXPORT_SYMBOL_GPL(o2hb_fill_node_map);
1449
1450/*
1451 * heartbeat configfs bits. The heartbeat set is a default set under
1452 * the cluster set in nodemanager.c.
1453 */
1454
1455static struct o2hb_region *to_o2hb_region(struct config_item *item)
1456{
1457 return item ? container_of(item, struct o2hb_region, hr_item) : NULL;
1458}
1459
1460/* drop_item only drops its ref after killing the thread, nothing should
1461 * be using the region anymore. this has to clean up any state that
1462 * attributes might have built up. */
1463static void o2hb_region_release(struct config_item *item)
1464{
1465 int i;
1466 struct page *page;
1467 struct o2hb_region *reg = to_o2hb_region(item);
1468
Sunil Mushrand2eece32011-07-24 10:21:54 -07001469 mlog(ML_HEARTBEAT, "hb region release (%s)\n", reg->hr_dev_name);
1470
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001471 if (reg->hr_tmp_block)
1472 kfree(reg->hr_tmp_block);
1473
1474 if (reg->hr_slot_data) {
1475 for (i = 0; i < reg->hr_num_pages; i++) {
1476 page = reg->hr_slot_data[i];
1477 if (page)
1478 __free_page(page);
1479 }
1480 kfree(reg->hr_slot_data);
1481 }
1482
1483 if (reg->hr_bdev)
Al Viro9a1c3542008-02-22 20:40:24 -05001484 blkdev_put(reg->hr_bdev, FMODE_READ|FMODE_WRITE);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001485
1486 if (reg->hr_slots)
1487 kfree(reg->hr_slots);
1488
Sunil Mushran1f285302010-10-06 17:55:12 -07001489 kfree(reg->hr_db_regnum);
1490 kfree(reg->hr_db_livenodes);
1491 debugfs_remove(reg->hr_debug_livenodes);
1492 debugfs_remove(reg->hr_debug_regnum);
Sunil Mushrand4396ea2010-10-15 11:57:21 -07001493 debugfs_remove(reg->hr_debug_elapsed_time);
Sunil Mushrancb0586b2010-12-14 14:14:30 -08001494 debugfs_remove(reg->hr_debug_pinned);
Sunil Mushran1f285302010-10-06 17:55:12 -07001495 debugfs_remove(reg->hr_debug_dir);
1496
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001497 spin_lock(&o2hb_live_lock);
1498 list_del(&reg->hr_all_item);
1499 spin_unlock(&o2hb_live_lock);
1500
1501 kfree(reg);
1502}
1503
1504static int o2hb_read_block_input(struct o2hb_region *reg,
1505 const char *page,
1506 size_t count,
1507 unsigned long *ret_bytes,
1508 unsigned int *ret_bits)
1509{
1510 unsigned long bytes;
1511 char *p = (char *)page;
1512
1513 bytes = simple_strtoul(p, &p, 0);
1514 if (!p || (*p && (*p != '\n')))
1515 return -EINVAL;
1516
1517 /* Heartbeat and fs min / max block sizes are the same. */
1518 if (bytes > 4096 || bytes < 512)
1519 return -ERANGE;
1520 if (hweight16(bytes) != 1)
1521 return -EINVAL;
1522
1523 if (ret_bytes)
1524 *ret_bytes = bytes;
1525 if (ret_bits)
1526 *ret_bits = ffs(bytes) - 1;
1527
1528 return 0;
1529}
1530
1531static ssize_t o2hb_region_block_bytes_read(struct o2hb_region *reg,
1532 char *page)
1533{
1534 return sprintf(page, "%u\n", reg->hr_block_bytes);
1535}
1536
1537static ssize_t o2hb_region_block_bytes_write(struct o2hb_region *reg,
1538 const char *page,
1539 size_t count)
1540{
1541 int status;
1542 unsigned long block_bytes;
1543 unsigned int block_bits;
1544
1545 if (reg->hr_bdev)
1546 return -EINVAL;
1547
1548 status = o2hb_read_block_input(reg, page, count,
1549 &block_bytes, &block_bits);
1550 if (status)
1551 return status;
1552
1553 reg->hr_block_bytes = (unsigned int)block_bytes;
1554 reg->hr_block_bits = block_bits;
1555
1556 return count;
1557}
1558
1559static ssize_t o2hb_region_start_block_read(struct o2hb_region *reg,
1560 char *page)
1561{
1562 return sprintf(page, "%llu\n", reg->hr_start_block);
1563}
1564
1565static ssize_t o2hb_region_start_block_write(struct o2hb_region *reg,
1566 const char *page,
1567 size_t count)
1568{
1569 unsigned long long tmp;
1570 char *p = (char *)page;
1571
1572 if (reg->hr_bdev)
1573 return -EINVAL;
1574
1575 tmp = simple_strtoull(p, &p, 0);
1576 if (!p || (*p && (*p != '\n')))
1577 return -EINVAL;
1578
1579 reg->hr_start_block = tmp;
1580
1581 return count;
1582}
1583
1584static ssize_t o2hb_region_blocks_read(struct o2hb_region *reg,
1585 char *page)
1586{
1587 return sprintf(page, "%d\n", reg->hr_blocks);
1588}
1589
1590static ssize_t o2hb_region_blocks_write(struct o2hb_region *reg,
1591 const char *page,
1592 size_t count)
1593{
1594 unsigned long tmp;
1595 char *p = (char *)page;
1596
1597 if (reg->hr_bdev)
1598 return -EINVAL;
1599
1600 tmp = simple_strtoul(p, &p, 0);
1601 if (!p || (*p && (*p != '\n')))
1602 return -EINVAL;
1603
1604 if (tmp > O2NM_MAX_NODES || tmp == 0)
1605 return -ERANGE;
1606
1607 reg->hr_blocks = (unsigned int)tmp;
1608
1609 return count;
1610}
1611
1612static ssize_t o2hb_region_dev_read(struct o2hb_region *reg,
1613 char *page)
1614{
1615 unsigned int ret = 0;
1616
1617 if (reg->hr_bdev)
1618 ret = sprintf(page, "%s\n", reg->hr_dev_name);
1619
1620 return ret;
1621}
1622
1623static void o2hb_init_region_params(struct o2hb_region *reg)
1624{
1625 reg->hr_slots_per_page = PAGE_CACHE_SIZE >> reg->hr_block_bits;
1626 reg->hr_timeout_ms = O2HB_REGION_TIMEOUT_MS;
1627
1628 mlog(ML_HEARTBEAT, "hr_start_block = %llu, hr_blocks = %u\n",
1629 reg->hr_start_block, reg->hr_blocks);
1630 mlog(ML_HEARTBEAT, "hr_block_bytes = %u, hr_block_bits = %u\n",
1631 reg->hr_block_bytes, reg->hr_block_bits);
1632 mlog(ML_HEARTBEAT, "hr_timeout_ms = %u\n", reg->hr_timeout_ms);
1633 mlog(ML_HEARTBEAT, "dead threshold = %u\n", o2hb_dead_threshold);
1634}
1635
1636static int o2hb_map_slot_data(struct o2hb_region *reg)
1637{
1638 int i, j;
1639 unsigned int last_slot;
1640 unsigned int spp = reg->hr_slots_per_page;
1641 struct page *page;
1642 char *raw;
1643 struct o2hb_disk_slot *slot;
1644
1645 reg->hr_tmp_block = kmalloc(reg->hr_block_bytes, GFP_KERNEL);
1646 if (reg->hr_tmp_block == NULL) {
1647 mlog_errno(-ENOMEM);
1648 return -ENOMEM;
1649 }
1650
1651 reg->hr_slots = kcalloc(reg->hr_blocks,
1652 sizeof(struct o2hb_disk_slot), GFP_KERNEL);
1653 if (reg->hr_slots == NULL) {
1654 mlog_errno(-ENOMEM);
1655 return -ENOMEM;
1656 }
1657
1658 for(i = 0; i < reg->hr_blocks; i++) {
1659 slot = &reg->hr_slots[i];
1660 slot->ds_node_num = i;
1661 INIT_LIST_HEAD(&slot->ds_live_item);
1662 slot->ds_raw_block = NULL;
1663 }
1664
1665 reg->hr_num_pages = (reg->hr_blocks + spp - 1) / spp;
1666 mlog(ML_HEARTBEAT, "Going to require %u pages to cover %u blocks "
1667 "at %u blocks per page\n",
1668 reg->hr_num_pages, reg->hr_blocks, spp);
1669
1670 reg->hr_slot_data = kcalloc(reg->hr_num_pages, sizeof(struct page *),
1671 GFP_KERNEL);
1672 if (!reg->hr_slot_data) {
1673 mlog_errno(-ENOMEM);
1674 return -ENOMEM;
1675 }
1676
1677 for(i = 0; i < reg->hr_num_pages; i++) {
1678 page = alloc_page(GFP_KERNEL);
1679 if (!page) {
1680 mlog_errno(-ENOMEM);
1681 return -ENOMEM;
1682 }
1683
1684 reg->hr_slot_data[i] = page;
1685
1686 last_slot = i * spp;
1687 raw = page_address(page);
1688 for (j = 0;
1689 (j < spp) && ((j + last_slot) < reg->hr_blocks);
1690 j++) {
1691 BUG_ON((j + last_slot) >= reg->hr_blocks);
1692
1693 slot = &reg->hr_slots[j + last_slot];
1694 slot->ds_raw_block =
1695 (struct o2hb_disk_heartbeat_block *) raw;
1696
1697 raw += reg->hr_block_bytes;
1698 }
1699 }
1700
1701 return 0;
1702}
1703
1704/* Read in all the slots available and populate the tracking
1705 * structures so that we can start with a baseline idea of what's
1706 * there. */
1707static int o2hb_populate_slot_data(struct o2hb_region *reg)
1708{
1709 int ret, i;
1710 struct o2hb_disk_slot *slot;
1711 struct o2hb_disk_heartbeat_block *hb_block;
1712
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001713 ret = o2hb_read_slots(reg, reg->hr_blocks);
1714 if (ret) {
1715 mlog_errno(ret);
1716 goto out;
1717 }
1718
1719 /* We only want to get an idea of the values initially in each
1720 * slot, so we do no verification - o2hb_check_slot will
1721 * actually determine if each configured slot is valid and
1722 * whether any values have changed. */
1723 for(i = 0; i < reg->hr_blocks; i++) {
1724 slot = &reg->hr_slots[i];
1725 hb_block = (struct o2hb_disk_heartbeat_block *) slot->ds_raw_block;
1726
1727 /* Only fill the values that o2hb_check_slot uses to
1728 * determine changing slots */
1729 slot->ds_last_time = le64_to_cpu(hb_block->hb_seq);
1730 slot->ds_last_generation = le64_to_cpu(hb_block->hb_generation);
1731 }
1732
1733out:
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001734 return ret;
1735}
1736
1737/* this is acting as commit; we set up all of hr_bdev and hr_task or nothing */
1738static ssize_t o2hb_region_dev_write(struct o2hb_region *reg,
1739 const char *page,
1740 size_t count)
1741{
Joel Beckere6c352d2007-02-03 03:04:20 -08001742 struct task_struct *hb_task;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001743 long fd;
1744 int sectsize;
1745 char *p = (char *)page;
1746 struct file *filp = NULL;
1747 struct inode *inode = NULL;
1748 ssize_t ret = -EINVAL;
Sunil Mushran76d9fc22011-05-04 10:28:00 -07001749 int live_threshold;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001750
1751 if (reg->hr_bdev)
1752 goto out;
1753
1754 /* We can't heartbeat without having had our node number
1755 * configured yet. */
1756 if (o2nm_this_node() == O2NM_MAX_NODES)
1757 goto out;
1758
1759 fd = simple_strtol(p, &p, 0);
1760 if (!p || (*p && (*p != '\n')))
1761 goto out;
1762
1763 if (fd < 0 || fd >= INT_MAX)
1764 goto out;
1765
1766 filp = fget(fd);
1767 if (filp == NULL)
1768 goto out;
1769
1770 if (reg->hr_blocks == 0 || reg->hr_start_block == 0 ||
1771 reg->hr_block_bytes == 0)
1772 goto out;
1773
1774 inode = igrab(filp->f_mapping->host);
1775 if (inode == NULL)
1776 goto out;
1777
1778 if (!S_ISBLK(inode->i_mode))
1779 goto out;
1780
1781 reg->hr_bdev = I_BDEV(filp->f_mapping->host);
Tejun Heoe525fd82010-11-13 11:55:17 +01001782 ret = blkdev_get(reg->hr_bdev, FMODE_WRITE | FMODE_READ, NULL);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001783 if (ret) {
1784 reg->hr_bdev = NULL;
1785 goto out;
1786 }
1787 inode = NULL;
1788
1789 bdevname(reg->hr_bdev, reg->hr_dev_name);
1790
Martin K. Petersene1defc42009-05-22 17:17:49 -04001791 sectsize = bdev_logical_block_size(reg->hr_bdev);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001792 if (sectsize != reg->hr_block_bytes) {
1793 mlog(ML_ERROR,
1794 "blocksize %u incorrect for device, expected %d",
1795 reg->hr_block_bytes, sectsize);
1796 ret = -EINVAL;
1797 goto out;
1798 }
1799
1800 o2hb_init_region_params(reg);
1801
1802 /* Generation of zero is invalid */
1803 do {
1804 get_random_bytes(&reg->hr_generation,
1805 sizeof(reg->hr_generation));
1806 } while (reg->hr_generation == 0);
1807
1808 ret = o2hb_map_slot_data(reg);
1809 if (ret) {
1810 mlog_errno(ret);
1811 goto out;
1812 }
1813
1814 ret = o2hb_populate_slot_data(reg);
1815 if (ret) {
1816 mlog_errno(ret);
1817 goto out;
1818 }
1819
David Howellsc4028952006-11-22 14:57:56 +00001820 INIT_DELAYED_WORK(&reg->hr_write_timeout_work, o2hb_write_timeout);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001821
1822 /*
1823 * A node is considered live after it has beat LIVE_THRESHOLD
1824 * times. We're not steady until we've given them a chance
1825 * _after_ our first read.
Sunil Mushran76d9fc22011-05-04 10:28:00 -07001826 * The default threshold is bare minimum so as to limit the delay
1827 * during mounts. For global heartbeat, the threshold doubled for the
1828 * first region.
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001829 */
Sunil Mushran76d9fc22011-05-04 10:28:00 -07001830 live_threshold = O2HB_LIVE_THRESHOLD;
1831 if (o2hb_global_heartbeat_active()) {
1832 spin_lock(&o2hb_live_lock);
1833 if (o2hb_pop_count(&o2hb_region_bitmap, O2NM_MAX_REGIONS) == 1)
1834 live_threshold <<= 1;
1835 spin_unlock(&o2hb_live_lock);
1836 }
Sunil Mushrand2eece32011-07-24 10:21:54 -07001837 ++live_threshold;
1838 atomic_set(&reg->hr_steady_iterations, live_threshold);
1839 /* unsteady_iterations is double the steady_iterations */
1840 atomic_set(&reg->hr_unsteady_iterations, (live_threshold << 1));
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001841
Joel Beckere6c352d2007-02-03 03:04:20 -08001842 hb_task = kthread_run(o2hb_thread, reg, "o2hb-%s",
1843 reg->hr_item.ci_name);
1844 if (IS_ERR(hb_task)) {
1845 ret = PTR_ERR(hb_task);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001846 mlog_errno(ret);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001847 goto out;
1848 }
1849
Joel Beckere6c352d2007-02-03 03:04:20 -08001850 spin_lock(&o2hb_live_lock);
1851 reg->hr_task = hb_task;
1852 spin_unlock(&o2hb_live_lock);
1853
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001854 ret = wait_event_interruptible(o2hb_steady_queue,
1855 atomic_read(&reg->hr_steady_iterations) == 0);
1856 if (ret) {
Sunil Mushrand2eece32011-07-24 10:21:54 -07001857 atomic_set(&reg->hr_steady_iterations, 0);
1858 reg->hr_aborted_start = 1;
1859 }
Joel Beckere6c352d2007-02-03 03:04:20 -08001860
Sunil Mushrand2eece32011-07-24 10:21:54 -07001861 if (reg->hr_aborted_start) {
1862 ret = -EIO;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001863 goto out;
1864 }
1865
Joel Beckere6df3a62007-02-06 15:45:39 -08001866 /* Ok, we were woken. Make sure it wasn't by drop_item() */
1867 spin_lock(&o2hb_live_lock);
1868 hb_task = reg->hr_task;
Sunil Mushrane7d656b2010-10-06 17:55:18 -07001869 if (o2hb_global_heartbeat_active())
1870 set_bit(reg->hr_region_num, o2hb_live_region_bitmap);
Joel Beckere6df3a62007-02-06 15:45:39 -08001871 spin_unlock(&o2hb_live_lock);
1872
1873 if (hb_task)
1874 ret = count;
1875 else
1876 ret = -EIO;
1877
Sunil Mushran18c50cb2010-10-06 18:26:59 -07001878 if (hb_task && o2hb_global_heartbeat_active())
Sunil Mushrand2eece32011-07-24 10:21:54 -07001879 printk(KERN_NOTICE "o2hb: Heartbeat started on region %s (%s)\n",
1880 config_item_name(&reg->hr_item), reg->hr_dev_name);
Sunil Mushran18c50cb2010-10-06 18:26:59 -07001881
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001882out:
1883 if (filp)
1884 fput(filp);
1885 if (inode)
1886 iput(inode);
1887 if (ret < 0) {
1888 if (reg->hr_bdev) {
Al Viro9a1c3542008-02-22 20:40:24 -05001889 blkdev_put(reg->hr_bdev, FMODE_READ|FMODE_WRITE);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001890 reg->hr_bdev = NULL;
1891 }
1892 }
1893 return ret;
1894}
1895
Zhen Wei92efc152006-12-08 00:48:17 -07001896static ssize_t o2hb_region_pid_read(struct o2hb_region *reg,
1897 char *page)
1898{
Joel Beckere6c352d2007-02-03 03:04:20 -08001899 pid_t pid = 0;
1900
1901 spin_lock(&o2hb_live_lock);
1902 if (reg->hr_task)
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001903 pid = task_pid_nr(reg->hr_task);
Joel Beckere6c352d2007-02-03 03:04:20 -08001904 spin_unlock(&o2hb_live_lock);
1905
1906 if (!pid)
Zhen Wei92efc152006-12-08 00:48:17 -07001907 return 0;
1908
Joel Beckere6c352d2007-02-03 03:04:20 -08001909 return sprintf(page, "%u\n", pid);
Zhen Wei92efc152006-12-08 00:48:17 -07001910}
1911
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001912struct o2hb_region_attribute {
1913 struct configfs_attribute attr;
1914 ssize_t (*show)(struct o2hb_region *, char *);
1915 ssize_t (*store)(struct o2hb_region *, const char *, size_t);
1916};
1917
1918static struct o2hb_region_attribute o2hb_region_attr_block_bytes = {
1919 .attr = { .ca_owner = THIS_MODULE,
1920 .ca_name = "block_bytes",
1921 .ca_mode = S_IRUGO | S_IWUSR },
1922 .show = o2hb_region_block_bytes_read,
1923 .store = o2hb_region_block_bytes_write,
1924};
1925
1926static struct o2hb_region_attribute o2hb_region_attr_start_block = {
1927 .attr = { .ca_owner = THIS_MODULE,
1928 .ca_name = "start_block",
1929 .ca_mode = S_IRUGO | S_IWUSR },
1930 .show = o2hb_region_start_block_read,
1931 .store = o2hb_region_start_block_write,
1932};
1933
1934static struct o2hb_region_attribute o2hb_region_attr_blocks = {
1935 .attr = { .ca_owner = THIS_MODULE,
1936 .ca_name = "blocks",
1937 .ca_mode = S_IRUGO | S_IWUSR },
1938 .show = o2hb_region_blocks_read,
1939 .store = o2hb_region_blocks_write,
1940};
1941
1942static struct o2hb_region_attribute o2hb_region_attr_dev = {
1943 .attr = { .ca_owner = THIS_MODULE,
1944 .ca_name = "dev",
1945 .ca_mode = S_IRUGO | S_IWUSR },
1946 .show = o2hb_region_dev_read,
1947 .store = o2hb_region_dev_write,
1948};
1949
Zhen Wei92efc152006-12-08 00:48:17 -07001950static struct o2hb_region_attribute o2hb_region_attr_pid = {
1951 .attr = { .ca_owner = THIS_MODULE,
1952 .ca_name = "pid",
1953 .ca_mode = S_IRUGO | S_IRUSR },
1954 .show = o2hb_region_pid_read,
1955};
1956
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001957static struct configfs_attribute *o2hb_region_attrs[] = {
1958 &o2hb_region_attr_block_bytes.attr,
1959 &o2hb_region_attr_start_block.attr,
1960 &o2hb_region_attr_blocks.attr,
1961 &o2hb_region_attr_dev.attr,
Zhen Wei92efc152006-12-08 00:48:17 -07001962 &o2hb_region_attr_pid.attr,
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08001963 NULL,
1964};
1965
1966static ssize_t o2hb_region_show(struct config_item *item,
1967 struct configfs_attribute *attr,
1968 char *page)
1969{
1970 struct o2hb_region *reg = to_o2hb_region(item);
1971 struct o2hb_region_attribute *o2hb_region_attr =
1972 container_of(attr, struct o2hb_region_attribute, attr);
1973 ssize_t ret = 0;
1974
1975 if (o2hb_region_attr->show)
1976 ret = o2hb_region_attr->show(reg, page);
1977 return ret;
1978}
1979
1980static ssize_t o2hb_region_store(struct config_item *item,
1981 struct configfs_attribute *attr,
1982 const char *page, size_t count)
1983{
1984 struct o2hb_region *reg = to_o2hb_region(item);
1985 struct o2hb_region_attribute *o2hb_region_attr =
1986 container_of(attr, struct o2hb_region_attribute, attr);
1987 ssize_t ret = -EINVAL;
1988
1989 if (o2hb_region_attr->store)
1990 ret = o2hb_region_attr->store(reg, page, count);
1991 return ret;
1992}
1993
1994static struct configfs_item_operations o2hb_region_item_ops = {
1995 .release = o2hb_region_release,
1996 .show_attribute = o2hb_region_show,
1997 .store_attribute = o2hb_region_store,
1998};
1999
2000static struct config_item_type o2hb_region_type = {
2001 .ct_item_ops = &o2hb_region_item_ops,
2002 .ct_attrs = o2hb_region_attrs,
2003 .ct_owner = THIS_MODULE,
2004};
2005
2006/* heartbeat set */
2007
2008struct o2hb_heartbeat_group {
2009 struct config_group hs_group;
2010 /* some stuff? */
2011};
2012
2013static struct o2hb_heartbeat_group *to_o2hb_heartbeat_group(struct config_group *group)
2014{
2015 return group ?
2016 container_of(group, struct o2hb_heartbeat_group, hs_group)
2017 : NULL;
2018}
2019
Sunil Mushran1f285302010-10-06 17:55:12 -07002020static int o2hb_debug_region_init(struct o2hb_region *reg, struct dentry *dir)
2021{
2022 int ret = -ENOMEM;
2023
2024 reg->hr_debug_dir =
2025 debugfs_create_dir(config_item_name(&reg->hr_item), dir);
2026 if (!reg->hr_debug_dir) {
2027 mlog_errno(ret);
2028 goto bail;
2029 }
2030
2031 reg->hr_debug_livenodes =
2032 o2hb_debug_create(O2HB_DEBUG_LIVENODES,
2033 reg->hr_debug_dir,
2034 &(reg->hr_db_livenodes),
2035 sizeof(*(reg->hr_db_livenodes)),
2036 O2HB_DB_TYPE_REGION_LIVENODES,
2037 sizeof(reg->hr_live_node_bitmap),
2038 O2NM_MAX_NODES, reg);
2039 if (!reg->hr_debug_livenodes) {
2040 mlog_errno(ret);
2041 goto bail;
2042 }
2043
2044 reg->hr_debug_regnum =
2045 o2hb_debug_create(O2HB_DEBUG_REGION_NUMBER,
2046 reg->hr_debug_dir,
2047 &(reg->hr_db_regnum),
2048 sizeof(*(reg->hr_db_regnum)),
2049 O2HB_DB_TYPE_REGION_NUMBER,
2050 0, O2NM_MAX_NODES, reg);
2051 if (!reg->hr_debug_regnum) {
2052 mlog_errno(ret);
2053 goto bail;
2054 }
2055
Sunil Mushran43695d02010-10-06 17:55:09 -07002056 reg->hr_debug_elapsed_time =
2057 o2hb_debug_create(O2HB_DEBUG_REGION_ELAPSED_TIME,
2058 reg->hr_debug_dir,
2059 &(reg->hr_db_elapsed_time),
2060 sizeof(*(reg->hr_db_elapsed_time)),
2061 O2HB_DB_TYPE_REGION_ELAPSED_TIME,
2062 0, 0, reg);
2063 if (!reg->hr_debug_elapsed_time) {
2064 mlog_errno(ret);
2065 goto bail;
2066 }
2067
Sunil Mushrancb0586b2010-12-14 14:14:30 -08002068 reg->hr_debug_pinned =
2069 o2hb_debug_create(O2HB_DEBUG_REGION_PINNED,
2070 reg->hr_debug_dir,
2071 &(reg->hr_db_pinned),
2072 sizeof(*(reg->hr_db_pinned)),
2073 O2HB_DB_TYPE_REGION_PINNED,
2074 0, 0, reg);
2075 if (!reg->hr_debug_pinned) {
2076 mlog_errno(ret);
2077 goto bail;
2078 }
2079
Sunil Mushran1f285302010-10-06 17:55:12 -07002080 ret = 0;
2081bail:
2082 return ret;
2083}
2084
Joel Beckerf89ab862008-07-17 14:53:48 -07002085static struct config_item *o2hb_heartbeat_group_make_item(struct config_group *group,
2086 const char *name)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002087{
2088 struct o2hb_region *reg = NULL;
Sunil Mushran1f285302010-10-06 17:55:12 -07002089 int ret;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002090
Robert P. J. Daycd861282006-12-13 00:34:52 -08002091 reg = kzalloc(sizeof(struct o2hb_region), GFP_KERNEL);
Joel Beckerf89ab862008-07-17 14:53:48 -07002092 if (reg == NULL)
Joel Beckera6795e92008-07-17 15:21:29 -07002093 return ERR_PTR(-ENOMEM);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002094
Jiri Slaby1cf257f2010-11-06 10:06:52 +01002095 if (strlen(name) > O2HB_MAX_REGION_NAME_LEN) {
2096 ret = -ENAMETOOLONG;
2097 goto free;
2098 }
Sunil Mushranb3c85c42010-10-07 14:31:06 -07002099
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002100 spin_lock(&o2hb_live_lock);
Sunil Mushran536f0742010-10-07 17:03:07 -07002101 reg->hr_region_num = 0;
2102 if (o2hb_global_heartbeat_active()) {
2103 reg->hr_region_num = find_first_zero_bit(o2hb_region_bitmap,
2104 O2NM_MAX_REGIONS);
2105 if (reg->hr_region_num >= O2NM_MAX_REGIONS) {
2106 spin_unlock(&o2hb_live_lock);
Jiri Slaby1cf257f2010-11-06 10:06:52 +01002107 ret = -EFBIG;
2108 goto free;
Sunil Mushran536f0742010-10-07 17:03:07 -07002109 }
2110 set_bit(reg->hr_region_num, o2hb_region_bitmap);
2111 }
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002112 list_add_tail(&reg->hr_all_item, &o2hb_all_regions);
2113 spin_unlock(&o2hb_live_lock);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002114
Sunil Mushran536f0742010-10-07 17:03:07 -07002115 config_item_init_type_name(&reg->hr_item, name, &o2hb_region_type);
2116
Sunil Mushran1f285302010-10-06 17:55:12 -07002117 ret = o2hb_debug_region_init(reg, o2hb_debug_dir);
2118 if (ret) {
2119 config_item_put(&reg->hr_item);
Jiri Slaby1cf257f2010-11-06 10:06:52 +01002120 goto free;
Sunil Mushran1f285302010-10-06 17:55:12 -07002121 }
2122
Joel Beckera6795e92008-07-17 15:21:29 -07002123 return &reg->hr_item;
Jiri Slaby1cf257f2010-11-06 10:06:52 +01002124free:
2125 kfree(reg);
2126 return ERR_PTR(ret);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002127}
2128
2129static void o2hb_heartbeat_group_drop_item(struct config_group *group,
2130 struct config_item *item)
2131{
Joel Beckere6c352d2007-02-03 03:04:20 -08002132 struct task_struct *hb_task;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002133 struct o2hb_region *reg = to_o2hb_region(item);
Sunil Mushran58a31582010-12-14 14:14:29 -08002134 int quorum_region = 0;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002135
2136 /* stop the thread when the user removes the region dir */
Joel Beckere6c352d2007-02-03 03:04:20 -08002137 spin_lock(&o2hb_live_lock);
2138 hb_task = reg->hr_task;
2139 reg->hr_task = NULL;
Sunil Mushran58a31582010-12-14 14:14:29 -08002140 reg->hr_item_dropped = 1;
Joel Beckere6c352d2007-02-03 03:04:20 -08002141 spin_unlock(&o2hb_live_lock);
2142
2143 if (hb_task)
2144 kthread_stop(hb_task);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002145
Sunil Mushrand2eece32011-07-24 10:21:54 -07002146 if (o2hb_global_heartbeat_active()) {
2147 spin_lock(&o2hb_live_lock);
2148 clear_bit(reg->hr_region_num, o2hb_region_bitmap);
2149 clear_bit(reg->hr_region_num, o2hb_live_region_bitmap);
2150 if (test_bit(reg->hr_region_num, o2hb_quorum_region_bitmap))
2151 quorum_region = 1;
2152 clear_bit(reg->hr_region_num, o2hb_quorum_region_bitmap);
2153 spin_unlock(&o2hb_live_lock);
2154 printk(KERN_NOTICE "o2hb: Heartbeat %s on region %s (%s)\n",
2155 ((atomic_read(&reg->hr_steady_iterations) == 0) ?
2156 "stopped" : "start aborted"), config_item_name(item),
2157 reg->hr_dev_name);
2158 }
2159
Joel Beckere6df3a62007-02-06 15:45:39 -08002160 /*
2161 * If we're racing a dev_write(), we need to wake them. They will
2162 * check reg->hr_task
2163 */
2164 if (atomic_read(&reg->hr_steady_iterations) != 0) {
Sunil Mushrand2eece32011-07-24 10:21:54 -07002165 reg->hr_aborted_start = 1;
Joel Beckere6df3a62007-02-06 15:45:39 -08002166 atomic_set(&reg->hr_steady_iterations, 0);
2167 wake_up(&o2hb_steady_queue);
2168 }
2169
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002170 config_item_put(item);
Sunil Mushran58a31582010-12-14 14:14:29 -08002171
2172 if (!o2hb_global_heartbeat_active() || !quorum_region)
2173 return;
2174
2175 /*
2176 * If global heartbeat active and there are dependent users,
2177 * pin all regions if quorum region count <= CUT_OFF
2178 */
2179 spin_lock(&o2hb_live_lock);
2180
2181 if (!o2hb_dependent_users)
2182 goto unlock;
2183
2184 if (o2hb_pop_count(&o2hb_quorum_region_bitmap,
2185 O2NM_MAX_REGIONS) <= O2HB_PIN_CUT_OFF)
2186 o2hb_region_pin(NULL);
2187
2188unlock:
2189 spin_unlock(&o2hb_live_lock);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002190}
2191
2192struct o2hb_heartbeat_group_attribute {
2193 struct configfs_attribute attr;
2194 ssize_t (*show)(struct o2hb_heartbeat_group *, char *);
2195 ssize_t (*store)(struct o2hb_heartbeat_group *, const char *, size_t);
2196};
2197
2198static ssize_t o2hb_heartbeat_group_show(struct config_item *item,
2199 struct configfs_attribute *attr,
2200 char *page)
2201{
2202 struct o2hb_heartbeat_group *reg = to_o2hb_heartbeat_group(to_config_group(item));
2203 struct o2hb_heartbeat_group_attribute *o2hb_heartbeat_group_attr =
2204 container_of(attr, struct o2hb_heartbeat_group_attribute, attr);
2205 ssize_t ret = 0;
2206
2207 if (o2hb_heartbeat_group_attr->show)
2208 ret = o2hb_heartbeat_group_attr->show(reg, page);
2209 return ret;
2210}
2211
2212static ssize_t o2hb_heartbeat_group_store(struct config_item *item,
2213 struct configfs_attribute *attr,
2214 const char *page, size_t count)
2215{
2216 struct o2hb_heartbeat_group *reg = to_o2hb_heartbeat_group(to_config_group(item));
2217 struct o2hb_heartbeat_group_attribute *o2hb_heartbeat_group_attr =
2218 container_of(attr, struct o2hb_heartbeat_group_attribute, attr);
2219 ssize_t ret = -EINVAL;
2220
2221 if (o2hb_heartbeat_group_attr->store)
2222 ret = o2hb_heartbeat_group_attr->store(reg, page, count);
2223 return ret;
2224}
2225
2226static ssize_t o2hb_heartbeat_group_threshold_show(struct o2hb_heartbeat_group *group,
2227 char *page)
2228{
2229 return sprintf(page, "%u\n", o2hb_dead_threshold);
2230}
2231
2232static ssize_t o2hb_heartbeat_group_threshold_store(struct o2hb_heartbeat_group *group,
2233 const char *page,
2234 size_t count)
2235{
2236 unsigned long tmp;
2237 char *p = (char *)page;
2238
2239 tmp = simple_strtoul(p, &p, 10);
2240 if (!p || (*p && (*p != '\n')))
2241 return -EINVAL;
2242
2243 /* this will validate ranges for us. */
2244 o2hb_dead_threshold_set((unsigned int) tmp);
2245
2246 return count;
2247}
2248
Sunil Mushran54b51872010-10-07 15:26:08 -07002249static
2250ssize_t o2hb_heartbeat_group_mode_show(struct o2hb_heartbeat_group *group,
2251 char *page)
2252{
2253 return sprintf(page, "%s\n",
2254 o2hb_heartbeat_mode_desc[o2hb_heartbeat_mode]);
2255}
2256
2257static
2258ssize_t o2hb_heartbeat_group_mode_store(struct o2hb_heartbeat_group *group,
2259 const char *page, size_t count)
2260{
2261 unsigned int i;
2262 int ret;
2263 size_t len;
2264
2265 len = (page[count - 1] == '\n') ? count - 1 : count;
2266 if (!len)
2267 return -EINVAL;
2268
2269 for (i = 0; i < O2HB_HEARTBEAT_NUM_MODES; ++i) {
2270 if (strnicmp(page, o2hb_heartbeat_mode_desc[i], len))
2271 continue;
2272
2273 ret = o2hb_global_hearbeat_mode_set(i);
2274 if (!ret)
Sunil Mushran18c50cb2010-10-06 18:26:59 -07002275 printk(KERN_NOTICE "o2hb: Heartbeat mode set to %s\n",
Sunil Mushran54b51872010-10-07 15:26:08 -07002276 o2hb_heartbeat_mode_desc[i]);
2277 return count;
2278 }
2279
2280 return -EINVAL;
2281
2282}
2283
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002284static struct o2hb_heartbeat_group_attribute o2hb_heartbeat_group_attr_threshold = {
2285 .attr = { .ca_owner = THIS_MODULE,
2286 .ca_name = "dead_threshold",
2287 .ca_mode = S_IRUGO | S_IWUSR },
2288 .show = o2hb_heartbeat_group_threshold_show,
2289 .store = o2hb_heartbeat_group_threshold_store,
2290};
2291
Sunil Mushran54b51872010-10-07 15:26:08 -07002292static struct o2hb_heartbeat_group_attribute o2hb_heartbeat_group_attr_mode = {
2293 .attr = { .ca_owner = THIS_MODULE,
2294 .ca_name = "mode",
2295 .ca_mode = S_IRUGO | S_IWUSR },
2296 .show = o2hb_heartbeat_group_mode_show,
2297 .store = o2hb_heartbeat_group_mode_store,
2298};
2299
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002300static struct configfs_attribute *o2hb_heartbeat_group_attrs[] = {
2301 &o2hb_heartbeat_group_attr_threshold.attr,
Sunil Mushran54b51872010-10-07 15:26:08 -07002302 &o2hb_heartbeat_group_attr_mode.attr,
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002303 NULL,
2304};
2305
2306static struct configfs_item_operations o2hb_hearbeat_group_item_ops = {
2307 .show_attribute = o2hb_heartbeat_group_show,
2308 .store_attribute = o2hb_heartbeat_group_store,
2309};
2310
2311static struct configfs_group_operations o2hb_heartbeat_group_group_ops = {
2312 .make_item = o2hb_heartbeat_group_make_item,
2313 .drop_item = o2hb_heartbeat_group_drop_item,
2314};
2315
2316static struct config_item_type o2hb_heartbeat_group_type = {
2317 .ct_group_ops = &o2hb_heartbeat_group_group_ops,
2318 .ct_item_ops = &o2hb_hearbeat_group_item_ops,
2319 .ct_attrs = o2hb_heartbeat_group_attrs,
2320 .ct_owner = THIS_MODULE,
2321};
2322
2323/* this is just here to avoid touching group in heartbeat.h which the
2324 * entire damn world #includes */
2325struct config_group *o2hb_alloc_hb_set(void)
2326{
2327 struct o2hb_heartbeat_group *hs = NULL;
2328 struct config_group *ret = NULL;
2329
Robert P. J. Daycd861282006-12-13 00:34:52 -08002330 hs = kzalloc(sizeof(struct o2hb_heartbeat_group), GFP_KERNEL);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002331 if (hs == NULL)
2332 goto out;
2333
2334 config_group_init_type_name(&hs->hs_group, "heartbeat",
2335 &o2hb_heartbeat_group_type);
2336
2337 ret = &hs->hs_group;
2338out:
2339 if (ret == NULL)
2340 kfree(hs);
2341 return ret;
2342}
2343
2344void o2hb_free_hb_set(struct config_group *group)
2345{
2346 struct o2hb_heartbeat_group *hs = to_o2hb_heartbeat_group(group);
2347 kfree(hs);
2348}
2349
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002350/* hb callback registration and issuing */
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002351
2352static struct o2hb_callback *hbcall_from_type(enum o2hb_callback_type type)
2353{
2354 if (type == O2HB_NUM_CB)
2355 return ERR_PTR(-EINVAL);
2356
2357 return &o2hb_callbacks[type];
2358}
2359
2360void o2hb_setup_callback(struct o2hb_callback_func *hc,
2361 enum o2hb_callback_type type,
2362 o2hb_cb_func *func,
2363 void *data,
2364 int priority)
2365{
2366 INIT_LIST_HEAD(&hc->hc_item);
2367 hc->hc_func = func;
2368 hc->hc_data = data;
2369 hc->hc_priority = priority;
2370 hc->hc_type = type;
2371 hc->hc_magic = O2HB_CB_MAGIC;
2372}
2373EXPORT_SYMBOL_GPL(o2hb_setup_callback);
2374
Sunil Mushran58a31582010-12-14 14:14:29 -08002375/*
2376 * In local heartbeat mode, region_uuid passed matches the dlm domain name.
2377 * In global heartbeat mode, region_uuid passed is NULL.
2378 *
2379 * In local, we only pin the matching region. In global we pin all the active
2380 * regions.
2381 */
2382static int o2hb_region_pin(const char *region_uuid)
Joel Becker14829422007-06-14 21:40:49 -07002383{
Sunil Mushran58a31582010-12-14 14:14:29 -08002384 int ret = 0, found = 0;
2385 struct o2hb_region *reg;
2386 char *uuid;
Joel Becker14829422007-06-14 21:40:49 -07002387
2388 assert_spin_locked(&o2hb_live_lock);
2389
Sunil Mushran58a31582010-12-14 14:14:29 -08002390 list_for_each_entry(reg, &o2hb_all_regions, hr_all_item) {
2391 uuid = config_item_name(&reg->hr_item);
2392
2393 /* local heartbeat */
2394 if (region_uuid) {
2395 if (strcmp(region_uuid, uuid))
2396 continue;
2397 found = 1;
Joel Becker14829422007-06-14 21:40:49 -07002398 }
Sunil Mushran58a31582010-12-14 14:14:29 -08002399
2400 if (reg->hr_item_pinned || reg->hr_item_dropped)
2401 goto skip_pin;
2402
2403 /* Ignore ENOENT only for local hb (userdlm domain) */
2404 ret = o2nm_depend_item(&reg->hr_item);
2405 if (!ret) {
2406 mlog(ML_CLUSTER, "Pin region %s\n", uuid);
2407 reg->hr_item_pinned = 1;
2408 } else {
2409 if (ret == -ENOENT && found)
2410 ret = 0;
2411 else {
2412 mlog(ML_ERROR, "Pin region %s fails with %d\n",
2413 uuid, ret);
2414 break;
2415 }
2416 }
2417skip_pin:
2418 if (found)
2419 break;
Joel Becker14829422007-06-14 21:40:49 -07002420 }
2421
Joel Becker14829422007-06-14 21:40:49 -07002422 return ret;
2423}
2424
Sunil Mushran58a31582010-12-14 14:14:29 -08002425/*
2426 * In local heartbeat mode, region_uuid passed matches the dlm domain name.
2427 * In global heartbeat mode, region_uuid passed is NULL.
2428 *
2429 * In local, we only unpin the matching region. In global we unpin all the
2430 * active regions.
2431 */
2432static void o2hb_region_unpin(const char *region_uuid)
Joel Becker14829422007-06-14 21:40:49 -07002433{
2434 struct o2hb_region *reg;
Sunil Mushran58a31582010-12-14 14:14:29 -08002435 char *uuid;
2436 int found = 0;
2437
2438 assert_spin_locked(&o2hb_live_lock);
2439
2440 list_for_each_entry(reg, &o2hb_all_regions, hr_all_item) {
2441 uuid = config_item_name(&reg->hr_item);
2442 if (region_uuid) {
2443 if (strcmp(region_uuid, uuid))
2444 continue;
2445 found = 1;
2446 }
2447
2448 if (reg->hr_item_pinned) {
2449 mlog(ML_CLUSTER, "Unpin region %s\n", uuid);
2450 o2nm_undepend_item(&reg->hr_item);
2451 reg->hr_item_pinned = 0;
2452 }
2453 if (found)
2454 break;
2455 }
2456}
2457
2458static int o2hb_region_inc_user(const char *region_uuid)
2459{
2460 int ret = 0;
Joel Becker14829422007-06-14 21:40:49 -07002461
2462 spin_lock(&o2hb_live_lock);
2463
Sunil Mushran58a31582010-12-14 14:14:29 -08002464 /* local heartbeat */
2465 if (!o2hb_global_heartbeat_active()) {
2466 ret = o2hb_region_pin(region_uuid);
2467 goto unlock;
Joel Becker16c6a4f2007-06-19 11:34:03 -07002468 }
Sunil Mushran58a31582010-12-14 14:14:29 -08002469
2470 /*
2471 * if global heartbeat active and this is the first dependent user,
2472 * pin all regions if quorum region count <= CUT_OFF
2473 */
2474 o2hb_dependent_users++;
2475 if (o2hb_dependent_users > 1)
2476 goto unlock;
2477
2478 if (o2hb_pop_count(&o2hb_quorum_region_bitmap,
2479 O2NM_MAX_REGIONS) <= O2HB_PIN_CUT_OFF)
2480 ret = o2hb_region_pin(NULL);
2481
2482unlock:
2483 spin_unlock(&o2hb_live_lock);
2484 return ret;
2485}
2486
2487void o2hb_region_dec_user(const char *region_uuid)
2488{
2489 spin_lock(&o2hb_live_lock);
2490
2491 /* local heartbeat */
2492 if (!o2hb_global_heartbeat_active()) {
2493 o2hb_region_unpin(region_uuid);
2494 goto unlock;
2495 }
2496
2497 /*
2498 * if global heartbeat active and there are no dependent users,
2499 * unpin all quorum regions
2500 */
2501 o2hb_dependent_users--;
2502 if (!o2hb_dependent_users)
2503 o2hb_region_unpin(NULL);
2504
2505unlock:
2506 spin_unlock(&o2hb_live_lock);
Joel Becker14829422007-06-14 21:40:49 -07002507}
2508
2509int o2hb_register_callback(const char *region_uuid,
2510 struct o2hb_callback_func *hc)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002511{
2512 struct o2hb_callback_func *tmp;
2513 struct list_head *iter;
2514 struct o2hb_callback *hbcall;
2515 int ret;
2516
2517 BUG_ON(hc->hc_magic != O2HB_CB_MAGIC);
2518 BUG_ON(!list_empty(&hc->hc_item));
2519
2520 hbcall = hbcall_from_type(hc->hc_type);
2521 if (IS_ERR(hbcall)) {
2522 ret = PTR_ERR(hbcall);
2523 goto out;
2524 }
2525
Joel Becker14829422007-06-14 21:40:49 -07002526 if (region_uuid) {
Sunil Mushran58a31582010-12-14 14:14:29 -08002527 ret = o2hb_region_inc_user(region_uuid);
2528 if (ret) {
2529 mlog_errno(ret);
Joel Becker14829422007-06-14 21:40:49 -07002530 goto out;
Sunil Mushran58a31582010-12-14 14:14:29 -08002531 }
Joel Becker14829422007-06-14 21:40:49 -07002532 }
2533
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002534 down_write(&o2hb_callback_sem);
2535
2536 list_for_each(iter, &hbcall->list) {
2537 tmp = list_entry(iter, struct o2hb_callback_func, hc_item);
2538 if (hc->hc_priority < tmp->hc_priority) {
2539 list_add_tail(&hc->hc_item, iter);
2540 break;
2541 }
2542 }
2543 if (list_empty(&hc->hc_item))
2544 list_add_tail(&hc->hc_item, &hbcall->list);
2545
2546 up_write(&o2hb_callback_sem);
2547 ret = 0;
2548out:
Sunil Mushran58a31582010-12-14 14:14:29 -08002549 mlog(ML_CLUSTER, "returning %d on behalf of %p for funcs %p\n",
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002550 ret, __builtin_return_address(0), hc);
2551 return ret;
2552}
2553EXPORT_SYMBOL_GPL(o2hb_register_callback);
2554
Joel Becker14829422007-06-14 21:40:49 -07002555void o2hb_unregister_callback(const char *region_uuid,
2556 struct o2hb_callback_func *hc)
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002557{
2558 BUG_ON(hc->hc_magic != O2HB_CB_MAGIC);
2559
Sunil Mushran58a31582010-12-14 14:14:29 -08002560 mlog(ML_CLUSTER, "on behalf of %p for funcs %p\n",
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002561 __builtin_return_address(0), hc);
2562
Joel Becker14829422007-06-14 21:40:49 -07002563 /* XXX Can this happen _with_ a region reference? */
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002564 if (list_empty(&hc->hc_item))
Joel Beckerc24f72c2007-02-03 03:14:30 -08002565 return;
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002566
Joel Becker14829422007-06-14 21:40:49 -07002567 if (region_uuid)
Sunil Mushran58a31582010-12-14 14:14:29 -08002568 o2hb_region_dec_user(region_uuid);
Joel Becker14829422007-06-14 21:40:49 -07002569
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002570 down_write(&o2hb_callback_sem);
2571
2572 list_del_init(&hc->hc_item);
2573
2574 up_write(&o2hb_callback_sem);
Mark Fasheha7f6a5f2005-12-15 14:31:23 -08002575}
2576EXPORT_SYMBOL_GPL(o2hb_unregister_callback);
2577
2578int o2hb_check_node_heartbeating(u8 node_num)
2579{
2580 unsigned long testing_map[BITS_TO_LONGS(O2NM_MAX_NODES)];
2581
2582 o2hb_fill_node_map(testing_map, sizeof(testing_map));
2583 if (!test_bit(node_num, testing_map)) {
2584 mlog(ML_HEARTBEAT,
2585 "node (%u) does not have heartbeating enabled.\n",
2586 node_num);
2587 return 0;
2588 }
2589
2590 return 1;
2591}
2592EXPORT_SYMBOL_GPL(o2hb_check_node_heartbeating);
2593
2594int o2hb_check_node_heartbeating_from_callback(u8 node_num)
2595{
2596 unsigned long testing_map[BITS_TO_LONGS(O2NM_MAX_NODES)];
2597
2598 o2hb_fill_node_map_from_callback(testing_map, sizeof(testing_map));
2599 if (!test_bit(node_num, testing_map)) {
2600 mlog(ML_HEARTBEAT,
2601 "node (%u) does not have heartbeating enabled.\n",
2602 node_num);
2603 return 0;
2604 }
2605
2606 return 1;
2607}
2608EXPORT_SYMBOL_GPL(o2hb_check_node_heartbeating_from_callback);
2609
2610/* Makes sure our local node is configured with a node number, and is
2611 * heartbeating. */
2612int o2hb_check_local_node_heartbeating(void)
2613{
2614 u8 node_num;
2615
2616 /* if this node was set then we have networking */
2617 node_num = o2nm_this_node();
2618 if (node_num == O2NM_MAX_NODES) {
2619 mlog(ML_HEARTBEAT, "this node has not been configured.\n");
2620 return 0;
2621 }
2622
2623 return o2hb_check_node_heartbeating(node_num);
2624}
2625EXPORT_SYMBOL_GPL(o2hb_check_local_node_heartbeating);
2626
2627/*
2628 * this is just a hack until we get the plumbing which flips file systems
2629 * read only and drops the hb ref instead of killing the node dead.
2630 */
2631void o2hb_stop_all_regions(void)
2632{
2633 struct o2hb_region *reg;
2634
2635 mlog(ML_ERROR, "stopping heartbeat on all active regions.\n");
2636
2637 spin_lock(&o2hb_live_lock);
2638
2639 list_for_each_entry(reg, &o2hb_all_regions, hr_all_item)
2640 reg->hr_unclean_stop = 1;
2641
2642 spin_unlock(&o2hb_live_lock);
2643}
2644EXPORT_SYMBOL_GPL(o2hb_stop_all_regions);
Sunil Mushranb3c85c42010-10-07 14:31:06 -07002645
2646int o2hb_get_all_regions(char *region_uuids, u8 max_regions)
2647{
2648 struct o2hb_region *reg;
2649 int numregs = 0;
2650 char *p;
2651
2652 spin_lock(&o2hb_live_lock);
2653
2654 p = region_uuids;
2655 list_for_each_entry(reg, &o2hb_all_regions, hr_all_item) {
2656 mlog(0, "Region: %s\n", config_item_name(&reg->hr_item));
2657 if (numregs < max_regions) {
2658 memcpy(p, config_item_name(&reg->hr_item),
2659 O2HB_MAX_REGION_NAME_LEN);
2660 p += O2HB_MAX_REGION_NAME_LEN;
2661 }
2662 numregs++;
2663 }
2664
2665 spin_unlock(&o2hb_live_lock);
2666
2667 return numregs;
2668}
2669EXPORT_SYMBOL_GPL(o2hb_get_all_regions);
2670
2671int o2hb_global_heartbeat_active(void)
2672{
Sunil Mushran4d94aa12010-10-09 10:27:04 -07002673 return (o2hb_heartbeat_mode == O2HB_HEARTBEAT_GLOBAL);
Sunil Mushranb3c85c42010-10-07 14:31:06 -07002674}
2675EXPORT_SYMBOL(o2hb_global_heartbeat_active);