1 /* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
4 * Copyright (C) 2004, 2005 Oracle. All rights reserved.
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.
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.
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.
22 #include <linux/kernel.h>
23 #include <linux/sched.h>
24 #include <linux/jiffies.h>
25 #include <linux/module.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>
37 #include "heartbeat.h"
39 #include "nodemanager.h"
46 * The first heartbeat pass had one global thread that would serialize all hb
47 * callback calls. This global serializing sem should only be removed once
48 * we've made sure that all callees can deal with being called concurrently
49 * from multiple hb region threads.
51 static DECLARE_RWSEM(o2hb_callback_sem
);
54 * multiple hb threads are watching multiple regions. A node is live
55 * whenever any of the threads sees activity from the node in its region.
57 static DEFINE_SPINLOCK(o2hb_live_lock
);
58 static struct list_head o2hb_live_slots
[O2NM_MAX_NODES
];
59 static unsigned long o2hb_live_node_bitmap
[BITS_TO_LONGS(O2NM_MAX_NODES
)];
60 static LIST_HEAD(o2hb_node_events
);
61 static DECLARE_WAIT_QUEUE_HEAD(o2hb_steady_queue
);
63 static LIST_HEAD(o2hb_all_regions
);
65 static struct o2hb_callback
{
66 struct list_head list
;
67 } o2hb_callbacks
[O2HB_NUM_CB
];
69 static struct o2hb_callback
*hbcall_from_type(enum o2hb_callback_type type
);
71 #define O2HB_DEFAULT_BLOCK_BITS 9
73 unsigned int o2hb_dead_threshold
= O2HB_DEFAULT_DEAD_THRESHOLD
;
75 /* Only sets a new threshold if there are no active regions.
77 * No locking or otherwise interesting code is required for reading
78 * o2hb_dead_threshold as it can't change once regions are active and
79 * it's not interesting to anyone until then anyway. */
80 static void o2hb_dead_threshold_set(unsigned int threshold
)
82 if (threshold
> O2HB_MIN_DEAD_THRESHOLD
) {
83 spin_lock(&o2hb_live_lock
);
84 if (list_empty(&o2hb_all_regions
))
85 o2hb_dead_threshold
= threshold
;
86 spin_unlock(&o2hb_live_lock
);
90 struct o2hb_node_event
{
91 struct list_head hn_item
;
92 enum o2hb_callback_type hn_event_type
;
93 struct o2nm_node
*hn_node
;
97 struct o2hb_disk_slot
{
98 struct o2hb_disk_heartbeat_block
*ds_raw_block
;
101 u64 ds_last_generation
;
102 u16 ds_equal_samples
;
103 u16 ds_changed_samples
;
104 struct list_head ds_live_item
;
107 /* each thread owns a region.. when we're asked to tear down the region
108 * we ask the thread to stop, who cleans up the region */
110 struct config_item hr_item
;
112 struct list_head hr_all_item
;
113 unsigned hr_unclean_stop
:1;
115 /* protected by the hr_callback_sem */
116 struct task_struct
*hr_task
;
118 unsigned int hr_blocks
;
119 unsigned long long hr_start_block
;
121 unsigned int hr_block_bits
;
122 unsigned int hr_block_bytes
;
124 unsigned int hr_slots_per_page
;
125 unsigned int hr_num_pages
;
127 struct page
**hr_slot_data
;
128 struct block_device
*hr_bdev
;
129 struct o2hb_disk_slot
*hr_slots
;
131 /* let the person setting up hb wait for it to return until it
132 * has reached a 'steady' state. This will be fixed when we have
133 * a more complete api that doesn't lead to this sort of fragility. */
134 atomic_t hr_steady_iterations
;
136 char hr_dev_name
[BDEVNAME_SIZE
];
138 unsigned int hr_timeout_ms
;
140 /* randomized as the region goes up and down so that a node
141 * recognizes a node going up and down in one iteration */
144 struct delayed_work hr_write_timeout_work
;
145 unsigned long hr_last_timeout_start
;
147 /* Used during o2hb_check_slot to hold a copy of the block
148 * being checked because we temporarily have to zero out the
150 struct o2hb_disk_heartbeat_block
*hr_tmp_block
;
153 struct o2hb_bio_wait_ctxt
{
154 atomic_t wc_num_reqs
;
155 struct completion wc_io_complete
;
159 static void o2hb_write_timeout(struct work_struct
*work
)
161 struct o2hb_region
*reg
=
162 container_of(work
, struct o2hb_region
,
163 hr_write_timeout_work
.work
);
165 mlog(ML_ERROR
, "Heartbeat write timeout to device %s after %u "
166 "milliseconds\n", reg
->hr_dev_name
,
167 jiffies_to_msecs(jiffies
- reg
->hr_last_timeout_start
));
168 o2quo_disk_timeout();
171 static void o2hb_arm_write_timeout(struct o2hb_region
*reg
)
173 mlog(0, "Queue write timeout for %u ms\n", O2HB_MAX_WRITE_TIMEOUT_MS
);
175 cancel_delayed_work(®
->hr_write_timeout_work
);
176 reg
->hr_last_timeout_start
= jiffies
;
177 schedule_delayed_work(®
->hr_write_timeout_work
,
178 msecs_to_jiffies(O2HB_MAX_WRITE_TIMEOUT_MS
));
181 static void o2hb_disarm_write_timeout(struct o2hb_region
*reg
)
183 cancel_delayed_work(®
->hr_write_timeout_work
);
184 flush_scheduled_work();
187 static inline void o2hb_bio_wait_init(struct o2hb_bio_wait_ctxt
*wc
)
189 atomic_set(&wc
->wc_num_reqs
, 1);
190 init_completion(&wc
->wc_io_complete
);
194 /* Used in error paths too */
195 static inline void o2hb_bio_wait_dec(struct o2hb_bio_wait_ctxt
*wc
,
198 /* sadly atomic_sub_and_test() isn't available on all platforms. The
199 * good news is that the fast path only completes one at a time */
201 if (atomic_dec_and_test(&wc
->wc_num_reqs
)) {
203 complete(&wc
->wc_io_complete
);
208 static void o2hb_wait_on_io(struct o2hb_region
*reg
,
209 struct o2hb_bio_wait_ctxt
*wc
)
211 struct address_space
*mapping
= reg
->hr_bdev
->bd_inode
->i_mapping
;
213 blk_run_address_space(mapping
);
214 o2hb_bio_wait_dec(wc
, 1);
216 wait_for_completion(&wc
->wc_io_complete
);
219 static void o2hb_bio_end_io(struct bio
*bio
,
222 struct o2hb_bio_wait_ctxt
*wc
= bio
->bi_private
;
225 mlog(ML_ERROR
, "IO Error %d\n", error
);
226 wc
->wc_error
= error
;
229 o2hb_bio_wait_dec(wc
, 1);
233 /* Setup a Bio to cover I/O against num_slots slots starting at
235 static struct bio
*o2hb_setup_one_bio(struct o2hb_region
*reg
,
236 struct o2hb_bio_wait_ctxt
*wc
,
237 unsigned int *current_slot
,
238 unsigned int max_slots
)
240 int len
, current_page
;
241 unsigned int vec_len
, vec_start
;
242 unsigned int bits
= reg
->hr_block_bits
;
243 unsigned int spp
= reg
->hr_slots_per_page
;
244 unsigned int cs
= *current_slot
;
248 /* Testing has shown this allocation to take long enough under
249 * GFP_KERNEL that the local node can get fenced. It would be
250 * nicest if we could pre-allocate these bios and avoid this
252 bio
= bio_alloc(GFP_ATOMIC
, 16);
254 mlog(ML_ERROR
, "Could not alloc slots BIO!\n");
255 bio
= ERR_PTR(-ENOMEM
);
259 /* Must put everything in 512 byte sectors for the bio... */
260 bio
->bi_sector
= (reg
->hr_start_block
+ cs
) << (bits
- 9);
261 bio
->bi_bdev
= reg
->hr_bdev
;
262 bio
->bi_private
= wc
;
263 bio
->bi_end_io
= o2hb_bio_end_io
;
265 vec_start
= (cs
<< bits
) % PAGE_CACHE_SIZE
;
266 while(cs
< max_slots
) {
267 current_page
= cs
/ spp
;
268 page
= reg
->hr_slot_data
[current_page
];
270 vec_len
= min(PAGE_CACHE_SIZE
- vec_start
,
271 (max_slots
-cs
) * (PAGE_CACHE_SIZE
/spp
) );
273 mlog(ML_HB_BIO
, "page %d, vec_len = %u, vec_start = %u\n",
274 current_page
, vec_len
, vec_start
);
276 len
= bio_add_page(bio
, page
, vec_len
, vec_start
);
277 if (len
!= vec_len
) break;
279 cs
+= vec_len
/ (PAGE_CACHE_SIZE
/spp
);
288 static int o2hb_read_slots(struct o2hb_region
*reg
,
289 unsigned int max_slots
)
291 unsigned int current_slot
=0;
293 struct o2hb_bio_wait_ctxt wc
;
296 o2hb_bio_wait_init(&wc
);
298 while(current_slot
< max_slots
) {
299 bio
= o2hb_setup_one_bio(reg
, &wc
, ¤t_slot
, max_slots
);
301 status
= PTR_ERR(bio
);
306 atomic_inc(&wc
.wc_num_reqs
);
307 submit_bio(READ
, bio
);
313 o2hb_wait_on_io(reg
, &wc
);
314 if (wc
.wc_error
&& !status
)
315 status
= wc
.wc_error
;
320 static int o2hb_issue_node_write(struct o2hb_region
*reg
,
321 struct o2hb_bio_wait_ctxt
*write_wc
)
327 o2hb_bio_wait_init(write_wc
);
329 slot
= o2nm_this_node();
331 bio
= o2hb_setup_one_bio(reg
, write_wc
, &slot
, slot
+1);
333 status
= PTR_ERR(bio
);
338 atomic_inc(&write_wc
->wc_num_reqs
);
339 submit_bio(WRITE
, bio
);
346 static u32
o2hb_compute_block_crc_le(struct o2hb_region
*reg
,
347 struct o2hb_disk_heartbeat_block
*hb_block
)
352 /* We want to compute the block crc with a 0 value in the
353 * hb_cksum field. Save it off here and replace after the
355 old_cksum
= hb_block
->hb_cksum
;
356 hb_block
->hb_cksum
= 0;
358 ret
= crc32_le(0, (unsigned char *) hb_block
, reg
->hr_block_bytes
);
360 hb_block
->hb_cksum
= old_cksum
;
365 static void o2hb_dump_slot(struct o2hb_disk_heartbeat_block
*hb_block
)
367 mlog(ML_ERROR
, "Dump slot information: seq = 0x%llx, node = %u, "
368 "cksum = 0x%x, generation 0x%llx\n",
369 (long long)le64_to_cpu(hb_block
->hb_seq
),
370 hb_block
->hb_node
, le32_to_cpu(hb_block
->hb_cksum
),
371 (long long)le64_to_cpu(hb_block
->hb_generation
));
374 static int o2hb_verify_crc(struct o2hb_region
*reg
,
375 struct o2hb_disk_heartbeat_block
*hb_block
)
379 read
= le32_to_cpu(hb_block
->hb_cksum
);
380 computed
= o2hb_compute_block_crc_le(reg
, hb_block
);
382 return read
== computed
;
385 /* We want to make sure that nobody is heartbeating on top of us --
386 * this will help detect an invalid configuration. */
387 static int o2hb_check_last_timestamp(struct o2hb_region
*reg
)
390 struct o2hb_disk_slot
*slot
;
391 struct o2hb_disk_heartbeat_block
*hb_block
;
393 node_num
= o2nm_this_node();
396 slot
= ®
->hr_slots
[node_num
];
397 /* Don't check on our 1st timestamp */
398 if (slot
->ds_last_time
) {
399 hb_block
= slot
->ds_raw_block
;
401 if (le64_to_cpu(hb_block
->hb_seq
) != slot
->ds_last_time
)
408 static inline void o2hb_prepare_block(struct o2hb_region
*reg
,
413 struct o2hb_disk_slot
*slot
;
414 struct o2hb_disk_heartbeat_block
*hb_block
;
416 node_num
= o2nm_this_node();
417 slot
= ®
->hr_slots
[node_num
];
419 hb_block
= (struct o2hb_disk_heartbeat_block
*)slot
->ds_raw_block
;
420 memset(hb_block
, 0, reg
->hr_block_bytes
);
421 /* TODO: time stuff */
422 cputime
= CURRENT_TIME
.tv_sec
;
426 hb_block
->hb_seq
= cpu_to_le64(cputime
);
427 hb_block
->hb_node
= node_num
;
428 hb_block
->hb_generation
= cpu_to_le64(generation
);
429 hb_block
->hb_dead_ms
= cpu_to_le32(o2hb_dead_threshold
* O2HB_REGION_TIMEOUT_MS
);
431 /* This step must always happen last! */
432 hb_block
->hb_cksum
= cpu_to_le32(o2hb_compute_block_crc_le(reg
,
435 mlog(ML_HB_BIO
, "our node generation = 0x%llx, cksum = 0x%x\n",
436 (long long)generation
,
437 le32_to_cpu(hb_block
->hb_cksum
));
440 static void o2hb_fire_callbacks(struct o2hb_callback
*hbcall
,
441 struct o2nm_node
*node
,
444 struct list_head
*iter
;
445 struct o2hb_callback_func
*f
;
447 list_for_each(iter
, &hbcall
->list
) {
448 f
= list_entry(iter
, struct o2hb_callback_func
, hc_item
);
449 mlog(ML_HEARTBEAT
, "calling funcs %p\n", f
);
450 (f
->hc_func
)(node
, idx
, f
->hc_data
);
454 /* Will run the list in order until we process the passed event */
455 static void o2hb_run_event_list(struct o2hb_node_event
*queued_event
)
458 struct o2hb_callback
*hbcall
;
459 struct o2hb_node_event
*event
;
461 spin_lock(&o2hb_live_lock
);
462 empty
= list_empty(&queued_event
->hn_item
);
463 spin_unlock(&o2hb_live_lock
);
467 /* Holding callback sem assures we don't alter the callback
468 * lists when doing this, and serializes ourselves with other
469 * processes wanting callbacks. */
470 down_write(&o2hb_callback_sem
);
472 spin_lock(&o2hb_live_lock
);
473 while (!list_empty(&o2hb_node_events
)
474 && !list_empty(&queued_event
->hn_item
)) {
475 event
= list_entry(o2hb_node_events
.next
,
476 struct o2hb_node_event
,
478 list_del_init(&event
->hn_item
);
479 spin_unlock(&o2hb_live_lock
);
481 mlog(ML_HEARTBEAT
, "Node %s event for %d\n",
482 event
->hn_event_type
== O2HB_NODE_UP_CB
? "UP" : "DOWN",
485 hbcall
= hbcall_from_type(event
->hn_event_type
);
487 /* We should *never* have gotten on to the list with a
488 * bad type... This isn't something that we should try
489 * to recover from. */
490 BUG_ON(IS_ERR(hbcall
));
492 o2hb_fire_callbacks(hbcall
, event
->hn_node
, event
->hn_node_num
);
494 spin_lock(&o2hb_live_lock
);
496 spin_unlock(&o2hb_live_lock
);
498 up_write(&o2hb_callback_sem
);
501 static void o2hb_queue_node_event(struct o2hb_node_event
*event
,
502 enum o2hb_callback_type type
,
503 struct o2nm_node
*node
,
506 assert_spin_locked(&o2hb_live_lock
);
508 event
->hn_event_type
= type
;
509 event
->hn_node
= node
;
510 event
->hn_node_num
= node_num
;
512 mlog(ML_HEARTBEAT
, "Queue node %s event for node %d\n",
513 type
== O2HB_NODE_UP_CB
? "UP" : "DOWN", node_num
);
515 list_add_tail(&event
->hn_item
, &o2hb_node_events
);
518 static void o2hb_shutdown_slot(struct o2hb_disk_slot
*slot
)
520 struct o2hb_node_event event
=
521 { .hn_item
= LIST_HEAD_INIT(event
.hn_item
), };
522 struct o2nm_node
*node
;
524 node
= o2nm_get_node_by_num(slot
->ds_node_num
);
528 spin_lock(&o2hb_live_lock
);
529 if (!list_empty(&slot
->ds_live_item
)) {
530 mlog(ML_HEARTBEAT
, "Shutdown, node %d leaves region\n",
533 list_del_init(&slot
->ds_live_item
);
535 if (list_empty(&o2hb_live_slots
[slot
->ds_node_num
])) {
536 clear_bit(slot
->ds_node_num
, o2hb_live_node_bitmap
);
538 o2hb_queue_node_event(&event
, O2HB_NODE_DOWN_CB
, node
,
542 spin_unlock(&o2hb_live_lock
);
544 o2hb_run_event_list(&event
);
549 static int o2hb_check_slot(struct o2hb_region
*reg
,
550 struct o2hb_disk_slot
*slot
)
552 int changed
= 0, gen_changed
= 0;
553 struct o2hb_node_event event
=
554 { .hn_item
= LIST_HEAD_INIT(event
.hn_item
), };
555 struct o2nm_node
*node
;
556 struct o2hb_disk_heartbeat_block
*hb_block
= reg
->hr_tmp_block
;
558 unsigned int dead_ms
= o2hb_dead_threshold
* O2HB_REGION_TIMEOUT_MS
;
559 unsigned int slot_dead_ms
;
561 memcpy(hb_block
, slot
->ds_raw_block
, reg
->hr_block_bytes
);
563 /* Is this correct? Do we assume that the node doesn't exist
564 * if we're not configured for him? */
565 node
= o2nm_get_node_by_num(slot
->ds_node_num
);
569 if (!o2hb_verify_crc(reg
, hb_block
)) {
570 /* all paths from here will drop o2hb_live_lock for
572 spin_lock(&o2hb_live_lock
);
574 /* Don't print an error on the console in this case -
575 * a freshly formatted heartbeat area will not have a
577 if (list_empty(&slot
->ds_live_item
))
580 /* The node is live but pushed out a bad crc. We
581 * consider it a transient miss but don't populate any
582 * other values as they may be junk. */
583 mlog(ML_ERROR
, "Node %d has written a bad crc to %s\n",
584 slot
->ds_node_num
, reg
->hr_dev_name
);
585 o2hb_dump_slot(hb_block
);
587 slot
->ds_equal_samples
++;
591 /* we don't care if these wrap.. the state transitions below
592 * clear at the right places */
593 cputime
= le64_to_cpu(hb_block
->hb_seq
);
594 if (slot
->ds_last_time
!= cputime
)
595 slot
->ds_changed_samples
++;
597 slot
->ds_equal_samples
++;
598 slot
->ds_last_time
= cputime
;
600 /* The node changed heartbeat generations. We assume this to
601 * mean it dropped off but came back before we timed out. We
602 * want to consider it down for the time being but don't want
603 * to lose any changed_samples state we might build up to
604 * considering it live again. */
605 if (slot
->ds_last_generation
!= le64_to_cpu(hb_block
->hb_generation
)) {
607 slot
->ds_equal_samples
= 0;
608 mlog(ML_HEARTBEAT
, "Node %d changed generation (0x%llx "
609 "to 0x%llx)\n", slot
->ds_node_num
,
610 (long long)slot
->ds_last_generation
,
611 (long long)le64_to_cpu(hb_block
->hb_generation
));
614 slot
->ds_last_generation
= le64_to_cpu(hb_block
->hb_generation
);
616 mlog(ML_HEARTBEAT
, "Slot %d gen 0x%llx cksum 0x%x "
617 "seq %llu last %llu changed %u equal %u\n",
618 slot
->ds_node_num
, (long long)slot
->ds_last_generation
,
619 le32_to_cpu(hb_block
->hb_cksum
),
620 (unsigned long long)le64_to_cpu(hb_block
->hb_seq
),
621 (unsigned long long)slot
->ds_last_time
, slot
->ds_changed_samples
,
622 slot
->ds_equal_samples
);
624 spin_lock(&o2hb_live_lock
);
627 /* dead nodes only come to life after some number of
628 * changes at any time during their dead time */
629 if (list_empty(&slot
->ds_live_item
) &&
630 slot
->ds_changed_samples
>= O2HB_LIVE_THRESHOLD
) {
631 mlog(ML_HEARTBEAT
, "Node %d (id 0x%llx) joined my region\n",
632 slot
->ds_node_num
, (long long)slot
->ds_last_generation
);
634 /* first on the list generates a callback */
635 if (list_empty(&o2hb_live_slots
[slot
->ds_node_num
])) {
636 set_bit(slot
->ds_node_num
, o2hb_live_node_bitmap
);
638 o2hb_queue_node_event(&event
, O2HB_NODE_UP_CB
, node
,
644 list_add_tail(&slot
->ds_live_item
,
645 &o2hb_live_slots
[slot
->ds_node_num
]);
647 slot
->ds_equal_samples
= 0;
649 /* We want to be sure that all nodes agree on the
650 * number of milliseconds before a node will be
651 * considered dead. The self-fencing timeout is
652 * computed from this value, and a discrepancy might
653 * result in heartbeat calling a node dead when it
654 * hasn't self-fenced yet. */
655 slot_dead_ms
= le32_to_cpu(hb_block
->hb_dead_ms
);
656 if (slot_dead_ms
&& slot_dead_ms
!= dead_ms
) {
657 /* TODO: Perhaps we can fail the region here. */
658 mlog(ML_ERROR
, "Node %d on device %s has a dead count "
659 "of %u ms, but our count is %u ms.\n"
660 "Please double check your configuration values "
661 "for 'O2CB_HEARTBEAT_THRESHOLD'\n",
662 slot
->ds_node_num
, reg
->hr_dev_name
, slot_dead_ms
,
668 /* if the list is dead, we're done.. */
669 if (list_empty(&slot
->ds_live_item
))
672 /* live nodes only go dead after enough consequtive missed
673 * samples.. reset the missed counter whenever we see
675 if (slot
->ds_equal_samples
>= o2hb_dead_threshold
|| gen_changed
) {
676 mlog(ML_HEARTBEAT
, "Node %d left my region\n",
679 /* last off the live_slot generates a callback */
680 list_del_init(&slot
->ds_live_item
);
681 if (list_empty(&o2hb_live_slots
[slot
->ds_node_num
])) {
682 clear_bit(slot
->ds_node_num
, o2hb_live_node_bitmap
);
684 o2hb_queue_node_event(&event
, O2HB_NODE_DOWN_CB
, node
,
690 /* We don't clear this because the node is still
691 * actually writing new blocks. */
693 slot
->ds_changed_samples
= 0;
696 if (slot
->ds_changed_samples
) {
697 slot
->ds_changed_samples
= 0;
698 slot
->ds_equal_samples
= 0;
701 spin_unlock(&o2hb_live_lock
);
703 o2hb_run_event_list(&event
);
709 /* This could be faster if we just implmented a find_last_bit, but I
710 * don't think the circumstances warrant it. */
711 static int o2hb_highest_node(unsigned long *nodes
,
718 while ((node
= find_next_bit(nodes
, numbits
, node
+ 1)) != -1) {
728 static int o2hb_do_disk_heartbeat(struct o2hb_region
*reg
)
730 int i
, ret
, highest_node
, change
= 0;
731 unsigned long configured_nodes
[BITS_TO_LONGS(O2NM_MAX_NODES
)];
732 struct o2hb_bio_wait_ctxt write_wc
;
734 ret
= o2nm_configured_node_map(configured_nodes
,
735 sizeof(configured_nodes
));
741 highest_node
= o2hb_highest_node(configured_nodes
, O2NM_MAX_NODES
);
742 if (highest_node
>= O2NM_MAX_NODES
) {
743 mlog(ML_NOTICE
, "ocfs2_heartbeat: no configured nodes found!\n");
747 /* No sense in reading the slots of nodes that don't exist
748 * yet. Of course, if the node definitions have holes in them
749 * then we're reading an empty slot anyway... Consider this
751 ret
= o2hb_read_slots(reg
, highest_node
+ 1);
757 /* With an up to date view of the slots, we can check that no
758 * other node has been improperly configured to heartbeat in
760 if (!o2hb_check_last_timestamp(reg
))
761 mlog(ML_ERROR
, "Device \"%s\": another node is heartbeating "
762 "in our slot!\n", reg
->hr_dev_name
);
764 /* fill in the proper info for our next heartbeat */
765 o2hb_prepare_block(reg
, reg
->hr_generation
);
767 /* And fire off the write. Note that we don't wait on this I/O
769 ret
= o2hb_issue_node_write(reg
, &write_wc
);
776 while((i
= find_next_bit(configured_nodes
, O2NM_MAX_NODES
, i
+ 1)) < O2NM_MAX_NODES
) {
778 change
|= o2hb_check_slot(reg
, ®
->hr_slots
[i
]);
782 * We have to be sure we've advertised ourselves on disk
783 * before we can go to steady state. This ensures that
784 * people we find in our steady state have seen us.
786 o2hb_wait_on_io(reg
, &write_wc
);
787 if (write_wc
.wc_error
) {
788 /* Do not re-arm the write timeout on I/O error - we
789 * can't be sure that the new block ever made it to
791 mlog(ML_ERROR
, "Write error %d on device \"%s\"\n",
792 write_wc
.wc_error
, reg
->hr_dev_name
);
793 return write_wc
.wc_error
;
796 o2hb_arm_write_timeout(reg
);
798 /* let the person who launched us know when things are steady */
799 if (!change
&& (atomic_read(®
->hr_steady_iterations
) != 0)) {
800 if (atomic_dec_and_test(®
->hr_steady_iterations
))
801 wake_up(&o2hb_steady_queue
);
807 /* Subtract b from a, storing the result in a. a *must* have a larger
809 static void o2hb_tv_subtract(struct timeval
*a
,
812 /* just return 0 when a is after b */
813 if (a
->tv_sec
< b
->tv_sec
||
814 (a
->tv_sec
== b
->tv_sec
&& a
->tv_usec
< b
->tv_usec
)) {
820 a
->tv_sec
-= b
->tv_sec
;
821 a
->tv_usec
-= b
->tv_usec
;
822 while ( a
->tv_usec
< 0 ) {
824 a
->tv_usec
+= 1000000;
828 static unsigned int o2hb_elapsed_msecs(struct timeval
*start
,
831 struct timeval res
= *end
;
833 o2hb_tv_subtract(&res
, start
);
835 return res
.tv_sec
* 1000 + res
.tv_usec
/ 1000;
839 * we ride the region ref that the region dir holds. before the region
840 * dir is removed and drops it ref it will wait to tear down this
843 static int o2hb_thread(void *data
)
846 struct o2hb_region
*reg
= data
;
847 struct o2hb_bio_wait_ctxt write_wc
;
848 struct timeval before_hb
, after_hb
;
849 unsigned int elapsed_msec
;
851 mlog(ML_HEARTBEAT
|ML_KTHREAD
, "hb thread running\n");
853 set_user_nice(current
, -20);
855 while (!kthread_should_stop() && !reg
->hr_unclean_stop
) {
856 /* We track the time spent inside
857 * o2hb_do_disk_heartbeat so that we avoid more then
858 * hr_timeout_ms between disk writes. On busy systems
859 * this should result in a heartbeat which is less
860 * likely to time itself out. */
861 do_gettimeofday(&before_hb
);
865 ret
= o2hb_do_disk_heartbeat(reg
);
866 } while (ret
&& ++i
< 2);
868 do_gettimeofday(&after_hb
);
869 elapsed_msec
= o2hb_elapsed_msecs(&before_hb
, &after_hb
);
871 mlog(0, "start = %lu.%lu, end = %lu.%lu, msec = %u\n",
872 before_hb
.tv_sec
, (unsigned long) before_hb
.tv_usec
,
873 after_hb
.tv_sec
, (unsigned long) after_hb
.tv_usec
,
876 if (elapsed_msec
< reg
->hr_timeout_ms
) {
877 /* the kthread api has blocked signals for us so no
878 * need to record the return value. */
879 msleep_interruptible(reg
->hr_timeout_ms
- elapsed_msec
);
883 o2hb_disarm_write_timeout(reg
);
885 /* unclean stop is only used in very bad situation */
886 for(i
= 0; !reg
->hr_unclean_stop
&& i
< reg
->hr_blocks
; i
++)
887 o2hb_shutdown_slot(®
->hr_slots
[i
]);
889 /* Explicit down notification - avoid forcing the other nodes
890 * to timeout on this region when we could just as easily
891 * write a clear generation - thus indicating to them that
892 * this node has left this region.
894 * XXX: Should we skip this on unclean_stop? */
895 o2hb_prepare_block(reg
, 0);
896 ret
= o2hb_issue_node_write(reg
, &write_wc
);
898 o2hb_wait_on_io(reg
, &write_wc
);
903 mlog(ML_HEARTBEAT
|ML_KTHREAD
, "hb thread exiting\n");
912 for (i
= 0; i
< ARRAY_SIZE(o2hb_callbacks
); i
++)
913 INIT_LIST_HEAD(&o2hb_callbacks
[i
].list
);
915 for (i
= 0; i
< ARRAY_SIZE(o2hb_live_slots
); i
++)
916 INIT_LIST_HEAD(&o2hb_live_slots
[i
]);
918 INIT_LIST_HEAD(&o2hb_node_events
);
920 memset(o2hb_live_node_bitmap
, 0, sizeof(o2hb_live_node_bitmap
));
923 /* if we're already in a callback then we're already serialized by the sem */
924 static void o2hb_fill_node_map_from_callback(unsigned long *map
,
927 BUG_ON(bytes
< (BITS_TO_LONGS(O2NM_MAX_NODES
) * sizeof(unsigned long)));
929 memcpy(map
, &o2hb_live_node_bitmap
, bytes
);
933 * get a map of all nodes that are heartbeating in any regions
935 void o2hb_fill_node_map(unsigned long *map
, unsigned bytes
)
937 /* callers want to serialize this map and callbacks so that they
938 * can trust that they don't miss nodes coming to the party */
939 down_read(&o2hb_callback_sem
);
940 spin_lock(&o2hb_live_lock
);
941 o2hb_fill_node_map_from_callback(map
, bytes
);
942 spin_unlock(&o2hb_live_lock
);
943 up_read(&o2hb_callback_sem
);
945 EXPORT_SYMBOL_GPL(o2hb_fill_node_map
);
948 * heartbeat configfs bits. The heartbeat set is a default set under
949 * the cluster set in nodemanager.c.
952 static struct o2hb_region
*to_o2hb_region(struct config_item
*item
)
954 return item
? container_of(item
, struct o2hb_region
, hr_item
) : NULL
;
957 /* drop_item only drops its ref after killing the thread, nothing should
958 * be using the region anymore. this has to clean up any state that
959 * attributes might have built up. */
960 static void o2hb_region_release(struct config_item
*item
)
964 struct o2hb_region
*reg
= to_o2hb_region(item
);
966 if (reg
->hr_tmp_block
)
967 kfree(reg
->hr_tmp_block
);
969 if (reg
->hr_slot_data
) {
970 for (i
= 0; i
< reg
->hr_num_pages
; i
++) {
971 page
= reg
->hr_slot_data
[i
];
975 kfree(reg
->hr_slot_data
);
979 blkdev_put(reg
->hr_bdev
);
982 kfree(reg
->hr_slots
);
984 spin_lock(&o2hb_live_lock
);
985 list_del(®
->hr_all_item
);
986 spin_unlock(&o2hb_live_lock
);
991 static int o2hb_read_block_input(struct o2hb_region
*reg
,
994 unsigned long *ret_bytes
,
995 unsigned int *ret_bits
)
998 char *p
= (char *)page
;
1000 bytes
= simple_strtoul(p
, &p
, 0);
1001 if (!p
|| (*p
&& (*p
!= '\n')))
1004 /* Heartbeat and fs min / max block sizes are the same. */
1005 if (bytes
> 4096 || bytes
< 512)
1007 if (hweight16(bytes
) != 1)
1013 *ret_bits
= ffs(bytes
) - 1;
1018 static ssize_t
o2hb_region_block_bytes_read(struct o2hb_region
*reg
,
1021 return sprintf(page
, "%u\n", reg
->hr_block_bytes
);
1024 static ssize_t
o2hb_region_block_bytes_write(struct o2hb_region
*reg
,
1029 unsigned long block_bytes
;
1030 unsigned int block_bits
;
1035 status
= o2hb_read_block_input(reg
, page
, count
,
1036 &block_bytes
, &block_bits
);
1040 reg
->hr_block_bytes
= (unsigned int)block_bytes
;
1041 reg
->hr_block_bits
= block_bits
;
1046 static ssize_t
o2hb_region_start_block_read(struct o2hb_region
*reg
,
1049 return sprintf(page
, "%llu\n", reg
->hr_start_block
);
1052 static ssize_t
o2hb_region_start_block_write(struct o2hb_region
*reg
,
1056 unsigned long long tmp
;
1057 char *p
= (char *)page
;
1062 tmp
= simple_strtoull(p
, &p
, 0);
1063 if (!p
|| (*p
&& (*p
!= '\n')))
1066 reg
->hr_start_block
= tmp
;
1071 static ssize_t
o2hb_region_blocks_read(struct o2hb_region
*reg
,
1074 return sprintf(page
, "%d\n", reg
->hr_blocks
);
1077 static ssize_t
o2hb_region_blocks_write(struct o2hb_region
*reg
,
1082 char *p
= (char *)page
;
1087 tmp
= simple_strtoul(p
, &p
, 0);
1088 if (!p
|| (*p
&& (*p
!= '\n')))
1091 if (tmp
> O2NM_MAX_NODES
|| tmp
== 0)
1094 reg
->hr_blocks
= (unsigned int)tmp
;
1099 static ssize_t
o2hb_region_dev_read(struct o2hb_region
*reg
,
1102 unsigned int ret
= 0;
1105 ret
= sprintf(page
, "%s\n", reg
->hr_dev_name
);
1110 static void o2hb_init_region_params(struct o2hb_region
*reg
)
1112 reg
->hr_slots_per_page
= PAGE_CACHE_SIZE
>> reg
->hr_block_bits
;
1113 reg
->hr_timeout_ms
= O2HB_REGION_TIMEOUT_MS
;
1115 mlog(ML_HEARTBEAT
, "hr_start_block = %llu, hr_blocks = %u\n",
1116 reg
->hr_start_block
, reg
->hr_blocks
);
1117 mlog(ML_HEARTBEAT
, "hr_block_bytes = %u, hr_block_bits = %u\n",
1118 reg
->hr_block_bytes
, reg
->hr_block_bits
);
1119 mlog(ML_HEARTBEAT
, "hr_timeout_ms = %u\n", reg
->hr_timeout_ms
);
1120 mlog(ML_HEARTBEAT
, "dead threshold = %u\n", o2hb_dead_threshold
);
1123 static int o2hb_map_slot_data(struct o2hb_region
*reg
)
1126 unsigned int last_slot
;
1127 unsigned int spp
= reg
->hr_slots_per_page
;
1130 struct o2hb_disk_slot
*slot
;
1132 reg
->hr_tmp_block
= kmalloc(reg
->hr_block_bytes
, GFP_KERNEL
);
1133 if (reg
->hr_tmp_block
== NULL
) {
1134 mlog_errno(-ENOMEM
);
1138 reg
->hr_slots
= kcalloc(reg
->hr_blocks
,
1139 sizeof(struct o2hb_disk_slot
), GFP_KERNEL
);
1140 if (reg
->hr_slots
== NULL
) {
1141 mlog_errno(-ENOMEM
);
1145 for(i
= 0; i
< reg
->hr_blocks
; i
++) {
1146 slot
= ®
->hr_slots
[i
];
1147 slot
->ds_node_num
= i
;
1148 INIT_LIST_HEAD(&slot
->ds_live_item
);
1149 slot
->ds_raw_block
= NULL
;
1152 reg
->hr_num_pages
= (reg
->hr_blocks
+ spp
- 1) / spp
;
1153 mlog(ML_HEARTBEAT
, "Going to require %u pages to cover %u blocks "
1154 "at %u blocks per page\n",
1155 reg
->hr_num_pages
, reg
->hr_blocks
, spp
);
1157 reg
->hr_slot_data
= kcalloc(reg
->hr_num_pages
, sizeof(struct page
*),
1159 if (!reg
->hr_slot_data
) {
1160 mlog_errno(-ENOMEM
);
1164 for(i
= 0; i
< reg
->hr_num_pages
; i
++) {
1165 page
= alloc_page(GFP_KERNEL
);
1167 mlog_errno(-ENOMEM
);
1171 reg
->hr_slot_data
[i
] = page
;
1173 last_slot
= i
* spp
;
1174 raw
= page_address(page
);
1176 (j
< spp
) && ((j
+ last_slot
) < reg
->hr_blocks
);
1178 BUG_ON((j
+ last_slot
) >= reg
->hr_blocks
);
1180 slot
= ®
->hr_slots
[j
+ last_slot
];
1181 slot
->ds_raw_block
=
1182 (struct o2hb_disk_heartbeat_block
*) raw
;
1184 raw
+= reg
->hr_block_bytes
;
1191 /* Read in all the slots available and populate the tracking
1192 * structures so that we can start with a baseline idea of what's
1194 static int o2hb_populate_slot_data(struct o2hb_region
*reg
)
1197 struct o2hb_disk_slot
*slot
;
1198 struct o2hb_disk_heartbeat_block
*hb_block
;
1202 ret
= o2hb_read_slots(reg
, reg
->hr_blocks
);
1208 /* We only want to get an idea of the values initially in each
1209 * slot, so we do no verification - o2hb_check_slot will
1210 * actually determine if each configured slot is valid and
1211 * whether any values have changed. */
1212 for(i
= 0; i
< reg
->hr_blocks
; i
++) {
1213 slot
= ®
->hr_slots
[i
];
1214 hb_block
= (struct o2hb_disk_heartbeat_block
*) slot
->ds_raw_block
;
1216 /* Only fill the values that o2hb_check_slot uses to
1217 * determine changing slots */
1218 slot
->ds_last_time
= le64_to_cpu(hb_block
->hb_seq
);
1219 slot
->ds_last_generation
= le64_to_cpu(hb_block
->hb_generation
);
1227 /* this is acting as commit; we set up all of hr_bdev and hr_task or nothing */
1228 static ssize_t
o2hb_region_dev_write(struct o2hb_region
*reg
,
1232 struct task_struct
*hb_task
;
1235 char *p
= (char *)page
;
1236 struct file
*filp
= NULL
;
1237 struct inode
*inode
= NULL
;
1238 ssize_t ret
= -EINVAL
;
1243 /* We can't heartbeat without having had our node number
1244 * configured yet. */
1245 if (o2nm_this_node() == O2NM_MAX_NODES
)
1248 fd
= simple_strtol(p
, &p
, 0);
1249 if (!p
|| (*p
&& (*p
!= '\n')))
1252 if (fd
< 0 || fd
>= INT_MAX
)
1259 if (reg
->hr_blocks
== 0 || reg
->hr_start_block
== 0 ||
1260 reg
->hr_block_bytes
== 0)
1263 inode
= igrab(filp
->f_mapping
->host
);
1267 if (!S_ISBLK(inode
->i_mode
))
1270 reg
->hr_bdev
= I_BDEV(filp
->f_mapping
->host
);
1271 ret
= blkdev_get(reg
->hr_bdev
, FMODE_WRITE
| FMODE_READ
, 0);
1273 reg
->hr_bdev
= NULL
;
1278 bdevname(reg
->hr_bdev
, reg
->hr_dev_name
);
1280 sectsize
= bdev_hardsect_size(reg
->hr_bdev
);
1281 if (sectsize
!= reg
->hr_block_bytes
) {
1283 "blocksize %u incorrect for device, expected %d",
1284 reg
->hr_block_bytes
, sectsize
);
1289 o2hb_init_region_params(reg
);
1291 /* Generation of zero is invalid */
1293 get_random_bytes(®
->hr_generation
,
1294 sizeof(reg
->hr_generation
));
1295 } while (reg
->hr_generation
== 0);
1297 ret
= o2hb_map_slot_data(reg
);
1303 ret
= o2hb_populate_slot_data(reg
);
1309 INIT_DELAYED_WORK(®
->hr_write_timeout_work
, o2hb_write_timeout
);
1312 * A node is considered live after it has beat LIVE_THRESHOLD
1313 * times. We're not steady until we've given them a chance
1314 * _after_ our first read.
1316 atomic_set(®
->hr_steady_iterations
, O2HB_LIVE_THRESHOLD
+ 1);
1318 hb_task
= kthread_run(o2hb_thread
, reg
, "o2hb-%s",
1319 reg
->hr_item
.ci_name
);
1320 if (IS_ERR(hb_task
)) {
1321 ret
= PTR_ERR(hb_task
);
1326 spin_lock(&o2hb_live_lock
);
1327 reg
->hr_task
= hb_task
;
1328 spin_unlock(&o2hb_live_lock
);
1330 ret
= wait_event_interruptible(o2hb_steady_queue
,
1331 atomic_read(®
->hr_steady_iterations
) == 0);
1333 /* We got interrupted (hello ptrace!). Clean up */
1334 spin_lock(&o2hb_live_lock
);
1335 hb_task
= reg
->hr_task
;
1336 reg
->hr_task
= NULL
;
1337 spin_unlock(&o2hb_live_lock
);
1340 kthread_stop(hb_task
);
1344 /* Ok, we were woken. Make sure it wasn't by drop_item() */
1345 spin_lock(&o2hb_live_lock
);
1346 hb_task
= reg
->hr_task
;
1347 spin_unlock(&o2hb_live_lock
);
1361 blkdev_put(reg
->hr_bdev
);
1362 reg
->hr_bdev
= NULL
;
1368 static ssize_t
o2hb_region_pid_read(struct o2hb_region
*reg
,
1373 spin_lock(&o2hb_live_lock
);
1375 pid
= task_pid_nr(reg
->hr_task
);
1376 spin_unlock(&o2hb_live_lock
);
1381 return sprintf(page
, "%u\n", pid
);
1384 struct o2hb_region_attribute
{
1385 struct configfs_attribute attr
;
1386 ssize_t (*show
)(struct o2hb_region
*, char *);
1387 ssize_t (*store
)(struct o2hb_region
*, const char *, size_t);
1390 static struct o2hb_region_attribute o2hb_region_attr_block_bytes
= {
1391 .attr
= { .ca_owner
= THIS_MODULE
,
1392 .ca_name
= "block_bytes",
1393 .ca_mode
= S_IRUGO
| S_IWUSR
},
1394 .show
= o2hb_region_block_bytes_read
,
1395 .store
= o2hb_region_block_bytes_write
,
1398 static struct o2hb_region_attribute o2hb_region_attr_start_block
= {
1399 .attr
= { .ca_owner
= THIS_MODULE
,
1400 .ca_name
= "start_block",
1401 .ca_mode
= S_IRUGO
| S_IWUSR
},
1402 .show
= o2hb_region_start_block_read
,
1403 .store
= o2hb_region_start_block_write
,
1406 static struct o2hb_region_attribute o2hb_region_attr_blocks
= {
1407 .attr
= { .ca_owner
= THIS_MODULE
,
1408 .ca_name
= "blocks",
1409 .ca_mode
= S_IRUGO
| S_IWUSR
},
1410 .show
= o2hb_region_blocks_read
,
1411 .store
= o2hb_region_blocks_write
,
1414 static struct o2hb_region_attribute o2hb_region_attr_dev
= {
1415 .attr
= { .ca_owner
= THIS_MODULE
,
1417 .ca_mode
= S_IRUGO
| S_IWUSR
},
1418 .show
= o2hb_region_dev_read
,
1419 .store
= o2hb_region_dev_write
,
1422 static struct o2hb_region_attribute o2hb_region_attr_pid
= {
1423 .attr
= { .ca_owner
= THIS_MODULE
,
1425 .ca_mode
= S_IRUGO
| S_IRUSR
},
1426 .show
= o2hb_region_pid_read
,
1429 static struct configfs_attribute
*o2hb_region_attrs
[] = {
1430 &o2hb_region_attr_block_bytes
.attr
,
1431 &o2hb_region_attr_start_block
.attr
,
1432 &o2hb_region_attr_blocks
.attr
,
1433 &o2hb_region_attr_dev
.attr
,
1434 &o2hb_region_attr_pid
.attr
,
1438 static ssize_t
o2hb_region_show(struct config_item
*item
,
1439 struct configfs_attribute
*attr
,
1442 struct o2hb_region
*reg
= to_o2hb_region(item
);
1443 struct o2hb_region_attribute
*o2hb_region_attr
=
1444 container_of(attr
, struct o2hb_region_attribute
, attr
);
1447 if (o2hb_region_attr
->show
)
1448 ret
= o2hb_region_attr
->show(reg
, page
);
1452 static ssize_t
o2hb_region_store(struct config_item
*item
,
1453 struct configfs_attribute
*attr
,
1454 const char *page
, size_t count
)
1456 struct o2hb_region
*reg
= to_o2hb_region(item
);
1457 struct o2hb_region_attribute
*o2hb_region_attr
=
1458 container_of(attr
, struct o2hb_region_attribute
, attr
);
1459 ssize_t ret
= -EINVAL
;
1461 if (o2hb_region_attr
->store
)
1462 ret
= o2hb_region_attr
->store(reg
, page
, count
);
1466 static struct configfs_item_operations o2hb_region_item_ops
= {
1467 .release
= o2hb_region_release
,
1468 .show_attribute
= o2hb_region_show
,
1469 .store_attribute
= o2hb_region_store
,
1472 static struct config_item_type o2hb_region_type
= {
1473 .ct_item_ops
= &o2hb_region_item_ops
,
1474 .ct_attrs
= o2hb_region_attrs
,
1475 .ct_owner
= THIS_MODULE
,
1480 struct o2hb_heartbeat_group
{
1481 struct config_group hs_group
;
1485 static struct o2hb_heartbeat_group
*to_o2hb_heartbeat_group(struct config_group
*group
)
1488 container_of(group
, struct o2hb_heartbeat_group
, hs_group
)
1492 static struct config_item
*o2hb_heartbeat_group_make_item(struct config_group
*group
,
1495 struct o2hb_region
*reg
= NULL
;
1496 struct config_item
*ret
= NULL
;
1498 reg
= kzalloc(sizeof(struct o2hb_region
), GFP_KERNEL
);
1500 goto out
; /* ENOMEM */
1502 config_item_init_type_name(®
->hr_item
, name
, &o2hb_region_type
);
1504 ret
= ®
->hr_item
;
1506 spin_lock(&o2hb_live_lock
);
1507 list_add_tail(®
->hr_all_item
, &o2hb_all_regions
);
1508 spin_unlock(&o2hb_live_lock
);
1516 static void o2hb_heartbeat_group_drop_item(struct config_group
*group
,
1517 struct config_item
*item
)
1519 struct task_struct
*hb_task
;
1520 struct o2hb_region
*reg
= to_o2hb_region(item
);
1522 /* stop the thread when the user removes the region dir */
1523 spin_lock(&o2hb_live_lock
);
1524 hb_task
= reg
->hr_task
;
1525 reg
->hr_task
= NULL
;
1526 spin_unlock(&o2hb_live_lock
);
1529 kthread_stop(hb_task
);
1532 * If we're racing a dev_write(), we need to wake them. They will
1533 * check reg->hr_task
1535 if (atomic_read(®
->hr_steady_iterations
) != 0) {
1536 atomic_set(®
->hr_steady_iterations
, 0);
1537 wake_up(&o2hb_steady_queue
);
1540 config_item_put(item
);
1543 struct o2hb_heartbeat_group_attribute
{
1544 struct configfs_attribute attr
;
1545 ssize_t (*show
)(struct o2hb_heartbeat_group
*, char *);
1546 ssize_t (*store
)(struct o2hb_heartbeat_group
*, const char *, size_t);
1549 static ssize_t
o2hb_heartbeat_group_show(struct config_item
*item
,
1550 struct configfs_attribute
*attr
,
1553 struct o2hb_heartbeat_group
*reg
= to_o2hb_heartbeat_group(to_config_group(item
));
1554 struct o2hb_heartbeat_group_attribute
*o2hb_heartbeat_group_attr
=
1555 container_of(attr
, struct o2hb_heartbeat_group_attribute
, attr
);
1558 if (o2hb_heartbeat_group_attr
->show
)
1559 ret
= o2hb_heartbeat_group_attr
->show(reg
, page
);
1563 static ssize_t
o2hb_heartbeat_group_store(struct config_item
*item
,
1564 struct configfs_attribute
*attr
,
1565 const char *page
, size_t count
)
1567 struct o2hb_heartbeat_group
*reg
= to_o2hb_heartbeat_group(to_config_group(item
));
1568 struct o2hb_heartbeat_group_attribute
*o2hb_heartbeat_group_attr
=
1569 container_of(attr
, struct o2hb_heartbeat_group_attribute
, attr
);
1570 ssize_t ret
= -EINVAL
;
1572 if (o2hb_heartbeat_group_attr
->store
)
1573 ret
= o2hb_heartbeat_group_attr
->store(reg
, page
, count
);
1577 static ssize_t
o2hb_heartbeat_group_threshold_show(struct o2hb_heartbeat_group
*group
,
1580 return sprintf(page
, "%u\n", o2hb_dead_threshold
);
1583 static ssize_t
o2hb_heartbeat_group_threshold_store(struct o2hb_heartbeat_group
*group
,
1588 char *p
= (char *)page
;
1590 tmp
= simple_strtoul(p
, &p
, 10);
1591 if (!p
|| (*p
&& (*p
!= '\n')))
1594 /* this will validate ranges for us. */
1595 o2hb_dead_threshold_set((unsigned int) tmp
);
1600 static struct o2hb_heartbeat_group_attribute o2hb_heartbeat_group_attr_threshold
= {
1601 .attr
= { .ca_owner
= THIS_MODULE
,
1602 .ca_name
= "dead_threshold",
1603 .ca_mode
= S_IRUGO
| S_IWUSR
},
1604 .show
= o2hb_heartbeat_group_threshold_show
,
1605 .store
= o2hb_heartbeat_group_threshold_store
,
1608 static struct configfs_attribute
*o2hb_heartbeat_group_attrs
[] = {
1609 &o2hb_heartbeat_group_attr_threshold
.attr
,
1613 static struct configfs_item_operations o2hb_hearbeat_group_item_ops
= {
1614 .show_attribute
= o2hb_heartbeat_group_show
,
1615 .store_attribute
= o2hb_heartbeat_group_store
,
1618 static struct configfs_group_operations o2hb_heartbeat_group_group_ops
= {
1619 .make_item
= o2hb_heartbeat_group_make_item
,
1620 .drop_item
= o2hb_heartbeat_group_drop_item
,
1623 static struct config_item_type o2hb_heartbeat_group_type
= {
1624 .ct_group_ops
= &o2hb_heartbeat_group_group_ops
,
1625 .ct_item_ops
= &o2hb_hearbeat_group_item_ops
,
1626 .ct_attrs
= o2hb_heartbeat_group_attrs
,
1627 .ct_owner
= THIS_MODULE
,
1630 /* this is just here to avoid touching group in heartbeat.h which the
1631 * entire damn world #includes */
1632 struct config_group
*o2hb_alloc_hb_set(void)
1634 struct o2hb_heartbeat_group
*hs
= NULL
;
1635 struct config_group
*ret
= NULL
;
1637 hs
= kzalloc(sizeof(struct o2hb_heartbeat_group
), GFP_KERNEL
);
1641 config_group_init_type_name(&hs
->hs_group
, "heartbeat",
1642 &o2hb_heartbeat_group_type
);
1644 ret
= &hs
->hs_group
;
1651 void o2hb_free_hb_set(struct config_group
*group
)
1653 struct o2hb_heartbeat_group
*hs
= to_o2hb_heartbeat_group(group
);
1657 /* hb callback registration and issueing */
1659 static struct o2hb_callback
*hbcall_from_type(enum o2hb_callback_type type
)
1661 if (type
== O2HB_NUM_CB
)
1662 return ERR_PTR(-EINVAL
);
1664 return &o2hb_callbacks
[type
];
1667 void o2hb_setup_callback(struct o2hb_callback_func
*hc
,
1668 enum o2hb_callback_type type
,
1673 INIT_LIST_HEAD(&hc
->hc_item
);
1676 hc
->hc_priority
= priority
;
1678 hc
->hc_magic
= O2HB_CB_MAGIC
;
1680 EXPORT_SYMBOL_GPL(o2hb_setup_callback
);
1682 static struct o2hb_region
*o2hb_find_region(const char *region_uuid
)
1684 struct o2hb_region
*p
, *reg
= NULL
;
1686 assert_spin_locked(&o2hb_live_lock
);
1688 list_for_each_entry(p
, &o2hb_all_regions
, hr_all_item
) {
1689 if (!strcmp(region_uuid
, config_item_name(&p
->hr_item
))) {
1698 static int o2hb_region_get(const char *region_uuid
)
1701 struct o2hb_region
*reg
;
1703 spin_lock(&o2hb_live_lock
);
1705 reg
= o2hb_find_region(region_uuid
);
1708 spin_unlock(&o2hb_live_lock
);
1713 ret
= o2nm_depend_this_node();
1717 ret
= o2nm_depend_item(®
->hr_item
);
1719 o2nm_undepend_this_node();
1725 static void o2hb_region_put(const char *region_uuid
)
1727 struct o2hb_region
*reg
;
1729 spin_lock(&o2hb_live_lock
);
1731 reg
= o2hb_find_region(region_uuid
);
1733 spin_unlock(&o2hb_live_lock
);
1736 o2nm_undepend_item(®
->hr_item
);
1737 o2nm_undepend_this_node();
1741 int o2hb_register_callback(const char *region_uuid
,
1742 struct o2hb_callback_func
*hc
)
1744 struct o2hb_callback_func
*tmp
;
1745 struct list_head
*iter
;
1746 struct o2hb_callback
*hbcall
;
1749 BUG_ON(hc
->hc_magic
!= O2HB_CB_MAGIC
);
1750 BUG_ON(!list_empty(&hc
->hc_item
));
1752 hbcall
= hbcall_from_type(hc
->hc_type
);
1753 if (IS_ERR(hbcall
)) {
1754 ret
= PTR_ERR(hbcall
);
1759 ret
= o2hb_region_get(region_uuid
);
1764 down_write(&o2hb_callback_sem
);
1766 list_for_each(iter
, &hbcall
->list
) {
1767 tmp
= list_entry(iter
, struct o2hb_callback_func
, hc_item
);
1768 if (hc
->hc_priority
< tmp
->hc_priority
) {
1769 list_add_tail(&hc
->hc_item
, iter
);
1773 if (list_empty(&hc
->hc_item
))
1774 list_add_tail(&hc
->hc_item
, &hbcall
->list
);
1776 up_write(&o2hb_callback_sem
);
1779 mlog(ML_HEARTBEAT
, "returning %d on behalf of %p for funcs %p\n",
1780 ret
, __builtin_return_address(0), hc
);
1783 EXPORT_SYMBOL_GPL(o2hb_register_callback
);
1785 void o2hb_unregister_callback(const char *region_uuid
,
1786 struct o2hb_callback_func
*hc
)
1788 BUG_ON(hc
->hc_magic
!= O2HB_CB_MAGIC
);
1790 mlog(ML_HEARTBEAT
, "on behalf of %p for funcs %p\n",
1791 __builtin_return_address(0), hc
);
1793 /* XXX Can this happen _with_ a region reference? */
1794 if (list_empty(&hc
->hc_item
))
1798 o2hb_region_put(region_uuid
);
1800 down_write(&o2hb_callback_sem
);
1802 list_del_init(&hc
->hc_item
);
1804 up_write(&o2hb_callback_sem
);
1806 EXPORT_SYMBOL_GPL(o2hb_unregister_callback
);
1808 int o2hb_check_node_heartbeating(u8 node_num
)
1810 unsigned long testing_map
[BITS_TO_LONGS(O2NM_MAX_NODES
)];
1812 o2hb_fill_node_map(testing_map
, sizeof(testing_map
));
1813 if (!test_bit(node_num
, testing_map
)) {
1815 "node (%u) does not have heartbeating enabled.\n",
1822 EXPORT_SYMBOL_GPL(o2hb_check_node_heartbeating
);
1824 int o2hb_check_node_heartbeating_from_callback(u8 node_num
)
1826 unsigned long testing_map
[BITS_TO_LONGS(O2NM_MAX_NODES
)];
1828 o2hb_fill_node_map_from_callback(testing_map
, sizeof(testing_map
));
1829 if (!test_bit(node_num
, testing_map
)) {
1831 "node (%u) does not have heartbeating enabled.\n",
1838 EXPORT_SYMBOL_GPL(o2hb_check_node_heartbeating_from_callback
);
1840 /* Makes sure our local node is configured with a node number, and is
1842 int o2hb_check_local_node_heartbeating(void)
1846 /* if this node was set then we have networking */
1847 node_num
= o2nm_this_node();
1848 if (node_num
== O2NM_MAX_NODES
) {
1849 mlog(ML_HEARTBEAT
, "this node has not been configured.\n");
1853 return o2hb_check_node_heartbeating(node_num
);
1855 EXPORT_SYMBOL_GPL(o2hb_check_local_node_heartbeating
);
1858 * this is just a hack until we get the plumbing which flips file systems
1859 * read only and drops the hb ref instead of killing the node dead.
1861 void o2hb_stop_all_regions(void)
1863 struct o2hb_region
*reg
;
1865 mlog(ML_ERROR
, "stopping heartbeat on all active regions.\n");
1867 spin_lock(&o2hb_live_lock
);
1869 list_for_each_entry(reg
, &o2hb_all_regions
, hr_all_item
)
1870 reg
->hr_unclean_stop
= 1;
1872 spin_unlock(&o2hb_live_lock
);
1874 EXPORT_SYMBOL_GPL(o2hb_stop_all_regions
);