/drivers/block/drbd/drbd_main.c
C | 3829 lines | 2652 code | 617 blank | 560 comment | 742 complexity | 8755710aea72157ff27546b0bc5edfdb MD5 | raw file
Possible License(s): LGPL-2.0, AGPL-1.0, GPL-2.0
Large files files are truncated, but you can click here to view the full file
/* drbd.c This file is part of DRBD by Philipp Reisner and Lars Ellenberg. Copyright (C) 2001-2008, LINBIT Information Technologies GmbH. Copyright (C) 1999-2008, Philipp Reisner <philipp.reisner@linbit.com>. Copyright (C) 2002-2008, Lars Ellenberg <lars.ellenberg@linbit.com>. Thanks to Carter Burden, Bart Grantham and Gennadiy Nerubayev from Logicworks, Inc. for making SDP replication support possible. drbd is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. drbd is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with drbd; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include <linux/module.h> #include <linux/drbd.h> #include <asm/uaccess.h> #include <asm/types.h> #include <net/sock.h> #include <linux/ctype.h> #include <linux/smp_lock.h> #include <linux/fs.h> #include <linux/file.h> #include <linux/proc_fs.h> #include <linux/init.h> #include <linux/mm.h> #include <linux/memcontrol.h> #include <linux/mm_inline.h> #include <linux/slab.h> #include <linux/random.h> #include <linux/reboot.h> #include <linux/notifier.h> #include <linux/kthread.h> #define __KERNEL_SYSCALLS__ #include <linux/unistd.h> #include <linux/vmalloc.h> #include <linux/drbd_limits.h> #include "drbd_int.h" #include "drbd_req.h" /* only for _req_mod in tl_release and tl_clear */ #include "drbd_vli.h" struct after_state_chg_work { struct drbd_work w; union drbd_state os; union drbd_state ns; enum chg_state_flags flags; struct completion *done; }; int drbdd_init(struct drbd_thread *); int drbd_worker(struct drbd_thread *); int drbd_asender(struct drbd_thread *); int drbd_init(void); static int drbd_open(struct block_device *bdev, fmode_t mode); static int drbd_release(struct gendisk *gd, fmode_t mode); static int w_after_state_ch(struct drbd_conf *mdev, struct drbd_work *w, int unused); static void after_state_ch(struct drbd_conf *mdev, union drbd_state os, union drbd_state ns, enum chg_state_flags flags); static int w_md_sync(struct drbd_conf *mdev, struct drbd_work *w, int unused); static void md_sync_timer_fn(unsigned long data); static int w_bitmap_io(struct drbd_conf *mdev, struct drbd_work *w, int unused); MODULE_AUTHOR("Philipp Reisner <phil@linbit.com>, " "Lars Ellenberg <lars@linbit.com>"); MODULE_DESCRIPTION("drbd - Distributed Replicated Block Device v" REL_VERSION); MODULE_VERSION(REL_VERSION); MODULE_LICENSE("GPL"); MODULE_PARM_DESC(minor_count, "Maximum number of drbd devices (1-255)"); MODULE_ALIAS_BLOCKDEV_MAJOR(DRBD_MAJOR); #include <linux/moduleparam.h> /* allow_open_on_secondary */ MODULE_PARM_DESC(allow_oos, "DONT USE!"); /* thanks to these macros, if compiled into the kernel (not-module), * this becomes the boot parameter drbd.minor_count */ module_param(minor_count, uint, 0444); module_param(disable_sendpage, bool, 0644); module_param(allow_oos, bool, 0); module_param(cn_idx, uint, 0444); module_param(proc_details, int, 0644); #ifdef CONFIG_DRBD_FAULT_INJECTION int enable_faults; int fault_rate; static int fault_count; int fault_devs; /* bitmap of enabled faults */ module_param(enable_faults, int, 0664); /* fault rate % value - applies to all enabled faults */ module_param(fault_rate, int, 0664); /* count of faults inserted */ module_param(fault_count, int, 0664); /* bitmap of devices to insert faults on */ module_param(fault_devs, int, 0644); #endif /* module parameter, defined */ unsigned int minor_count = 32; int disable_sendpage; int allow_oos; unsigned int cn_idx = CN_IDX_DRBD; int proc_details; /* Detail level in proc drbd*/ /* Module parameter for setting the user mode helper program * to run. Default is /sbin/drbdadm */ char usermode_helper[80] = "/sbin/drbdadm"; module_param_string(usermode_helper, usermode_helper, sizeof(usermode_helper), 0644); /* in 2.6.x, our device mapping and config info contains our virtual gendisks * as member "struct gendisk *vdisk;" */ struct drbd_conf **minor_table; struct kmem_cache *drbd_request_cache; struct kmem_cache *drbd_ee_cache; /* epoch entries */ struct kmem_cache *drbd_bm_ext_cache; /* bitmap extents */ struct kmem_cache *drbd_al_ext_cache; /* activity log extents */ mempool_t *drbd_request_mempool; mempool_t *drbd_ee_mempool; /* I do not use a standard mempool, because: 1) I want to hand out the pre-allocated objects first. 2) I want to be able to interrupt sleeping allocation with a signal. Note: This is a single linked list, the next pointer is the private member of struct page. */ struct page *drbd_pp_pool; spinlock_t drbd_pp_lock; int drbd_pp_vacant; wait_queue_head_t drbd_pp_wait; DEFINE_RATELIMIT_STATE(drbd_ratelimit_state, 5 * HZ, 5); static const struct block_device_operations drbd_ops = { .owner = THIS_MODULE, .open = drbd_open, .release = drbd_release, }; #define ARRY_SIZE(A) (sizeof(A)/sizeof(A[0])) #ifdef __CHECKER__ /* When checking with sparse, and this is an inline function, sparse will give tons of false positives. When this is a real functions sparse works. */ int _get_ldev_if_state(struct drbd_conf *mdev, enum drbd_disk_state mins) { int io_allowed; atomic_inc(&mdev->local_cnt); io_allowed = (mdev->state.disk >= mins); if (!io_allowed) { if (atomic_dec_and_test(&mdev->local_cnt)) wake_up(&mdev->misc_wait); } return io_allowed; } #endif /** * DOC: The transfer log * * The transfer log is a single linked list of &struct drbd_tl_epoch objects. * mdev->newest_tle points to the head, mdev->oldest_tle points to the tail * of the list. There is always at least one &struct drbd_tl_epoch object. * * Each &struct drbd_tl_epoch has a circular double linked list of requests * attached. */ static int tl_init(struct drbd_conf *mdev) { struct drbd_tl_epoch *b; /* during device minor initialization, we may well use GFP_KERNEL */ b = kmalloc(sizeof(struct drbd_tl_epoch), GFP_KERNEL); if (!b) return 0; INIT_LIST_HEAD(&b->requests); INIT_LIST_HEAD(&b->w.list); b->next = NULL; b->br_number = 4711; b->n_req = 0; b->w.cb = NULL; /* if this is != NULL, we need to dec_ap_pending in tl_clear */ mdev->oldest_tle = b; mdev->newest_tle = b; INIT_LIST_HEAD(&mdev->out_of_sequence_requests); mdev->tl_hash = NULL; mdev->tl_hash_s = 0; return 1; } static void tl_cleanup(struct drbd_conf *mdev) { D_ASSERT(mdev->oldest_tle == mdev->newest_tle); D_ASSERT(list_empty(&mdev->out_of_sequence_requests)); kfree(mdev->oldest_tle); mdev->oldest_tle = NULL; kfree(mdev->unused_spare_tle); mdev->unused_spare_tle = NULL; kfree(mdev->tl_hash); mdev->tl_hash = NULL; mdev->tl_hash_s = 0; } /** * _tl_add_barrier() - Adds a barrier to the transfer log * @mdev: DRBD device. * @new: Barrier to be added before the current head of the TL. * * The caller must hold the req_lock. */ void _tl_add_barrier(struct drbd_conf *mdev, struct drbd_tl_epoch *new) { struct drbd_tl_epoch *newest_before; INIT_LIST_HEAD(&new->requests); INIT_LIST_HEAD(&new->w.list); new->w.cb = NULL; /* if this is != NULL, we need to dec_ap_pending in tl_clear */ new->next = NULL; new->n_req = 0; newest_before = mdev->newest_tle; /* never send a barrier number == 0, because that is special-cased * when using TCQ for our write ordering code */ new->br_number = (newest_before->br_number+1) ?: 1; if (mdev->newest_tle != new) { mdev->newest_tle->next = new; mdev->newest_tle = new; } } /** * tl_release() - Free or recycle the oldest &struct drbd_tl_epoch object of the TL * @mdev: DRBD device. * @barrier_nr: Expected identifier of the DRBD write barrier packet. * @set_size: Expected number of requests before that barrier. * * In case the passed barrier_nr or set_size does not match the oldest * &struct drbd_tl_epoch objects this function will cause a termination * of the connection. */ void tl_release(struct drbd_conf *mdev, unsigned int barrier_nr, unsigned int set_size) { struct drbd_tl_epoch *b, *nob; /* next old barrier */ struct list_head *le, *tle; struct drbd_request *r; spin_lock_irq(&mdev->req_lock); b = mdev->oldest_tle; /* first some paranoia code */ if (b == NULL) { dev_err(DEV, "BAD! BarrierAck #%u received, but no epoch in tl!?\n", barrier_nr); goto bail; } if (b->br_number != barrier_nr) { dev_err(DEV, "BAD! BarrierAck #%u received, expected #%u!\n", barrier_nr, b->br_number); goto bail; } if (b->n_req != set_size) { dev_err(DEV, "BAD! BarrierAck #%u received with n_req=%u, expected n_req=%u!\n", barrier_nr, set_size, b->n_req); goto bail; } /* Clean up list of requests processed during current epoch */ list_for_each_safe(le, tle, &b->requests) { r = list_entry(le, struct drbd_request, tl_requests); _req_mod(r, barrier_acked); } /* There could be requests on the list waiting for completion of the write to the local disk. To avoid corruptions of slab's data structures we have to remove the lists head. Also there could have been a barrier ack out of sequence, overtaking the write acks - which would be a bug and violating write ordering. To not deadlock in case we lose connection while such requests are still pending, we need some way to find them for the _req_mode(connection_lost_while_pending). These have been list_move'd to the out_of_sequence_requests list in _req_mod(, barrier_acked) above. */ list_del_init(&b->requests); nob = b->next; if (test_and_clear_bit(CREATE_BARRIER, &mdev->flags)) { _tl_add_barrier(mdev, b); if (nob) mdev->oldest_tle = nob; /* if nob == NULL b was the only barrier, and becomes the new barrier. Therefore mdev->oldest_tle points already to b */ } else { D_ASSERT(nob != NULL); mdev->oldest_tle = nob; kfree(b); } spin_unlock_irq(&mdev->req_lock); dec_ap_pending(mdev); return; bail: spin_unlock_irq(&mdev->req_lock); drbd_force_state(mdev, NS(conn, C_PROTOCOL_ERROR)); } /** * tl_clear() - Clears all requests and &struct drbd_tl_epoch objects out of the TL * @mdev: DRBD device. * * This is called after the connection to the peer was lost. The storage covered * by the requests on the transfer gets marked as our of sync. Called from the * receiver thread and the worker thread. */ void tl_clear(struct drbd_conf *mdev) { struct drbd_tl_epoch *b, *tmp; struct list_head *le, *tle; struct drbd_request *r; int new_initial_bnr = net_random(); spin_lock_irq(&mdev->req_lock); b = mdev->oldest_tle; while (b) { list_for_each_safe(le, tle, &b->requests) { r = list_entry(le, struct drbd_request, tl_requests); /* It would be nice to complete outside of spinlock. * But this is easier for now. */ _req_mod(r, connection_lost_while_pending); } tmp = b->next; /* there could still be requests on that ring list, * in case local io is still pending */ list_del(&b->requests); /* dec_ap_pending corresponding to queue_barrier. * the newest barrier may not have been queued yet, * in which case w.cb is still NULL. */ if (b->w.cb != NULL) dec_ap_pending(mdev); if (b == mdev->newest_tle) { /* recycle, but reinit! */ D_ASSERT(tmp == NULL); INIT_LIST_HEAD(&b->requests); INIT_LIST_HEAD(&b->w.list); b->w.cb = NULL; b->br_number = new_initial_bnr; b->n_req = 0; mdev->oldest_tle = b; break; } kfree(b); b = tmp; } /* we expect this list to be empty. */ D_ASSERT(list_empty(&mdev->out_of_sequence_requests)); /* but just in case, clean it up anyways! */ list_for_each_safe(le, tle, &mdev->out_of_sequence_requests) { r = list_entry(le, struct drbd_request, tl_requests); /* It would be nice to complete outside of spinlock. * But this is easier for now. */ _req_mod(r, connection_lost_while_pending); } /* ensure bit indicating barrier is required is clear */ clear_bit(CREATE_BARRIER, &mdev->flags); spin_unlock_irq(&mdev->req_lock); } /** * cl_wide_st_chg() - TRUE if the state change is a cluster wide one * @mdev: DRBD device. * @os: old (current) state. * @ns: new (wanted) state. */ static int cl_wide_st_chg(struct drbd_conf *mdev, union drbd_state os, union drbd_state ns) { return (os.conn >= C_CONNECTED && ns.conn >= C_CONNECTED && ((os.role != R_PRIMARY && ns.role == R_PRIMARY) || (os.conn != C_STARTING_SYNC_T && ns.conn == C_STARTING_SYNC_T) || (os.conn != C_STARTING_SYNC_S && ns.conn == C_STARTING_SYNC_S) || (os.disk != D_DISKLESS && ns.disk == D_DISKLESS))) || (os.conn >= C_CONNECTED && ns.conn == C_DISCONNECTING) || (os.conn == C_CONNECTED && ns.conn == C_VERIFY_S); } int drbd_change_state(struct drbd_conf *mdev, enum chg_state_flags f, union drbd_state mask, union drbd_state val) { unsigned long flags; union drbd_state os, ns; int rv; spin_lock_irqsave(&mdev->req_lock, flags); os = mdev->state; ns.i = (os.i & ~mask.i) | val.i; rv = _drbd_set_state(mdev, ns, f, NULL); ns = mdev->state; spin_unlock_irqrestore(&mdev->req_lock, flags); return rv; } /** * drbd_force_state() - Impose a change which happens outside our control on our state * @mdev: DRBD device. * @mask: mask of state bits to change. * @val: value of new state bits. */ void drbd_force_state(struct drbd_conf *mdev, union drbd_state mask, union drbd_state val) { drbd_change_state(mdev, CS_HARD, mask, val); } static int is_valid_state(struct drbd_conf *mdev, union drbd_state ns); static int is_valid_state_transition(struct drbd_conf *, union drbd_state, union drbd_state); static union drbd_state sanitize_state(struct drbd_conf *mdev, union drbd_state os, union drbd_state ns, int *warn_sync_abort); int drbd_send_state_req(struct drbd_conf *, union drbd_state, union drbd_state); static enum drbd_state_ret_codes _req_st_cond(struct drbd_conf *mdev, union drbd_state mask, union drbd_state val) { union drbd_state os, ns; unsigned long flags; int rv; if (test_and_clear_bit(CL_ST_CHG_SUCCESS, &mdev->flags)) return SS_CW_SUCCESS; if (test_and_clear_bit(CL_ST_CHG_FAIL, &mdev->flags)) return SS_CW_FAILED_BY_PEER; rv = 0; spin_lock_irqsave(&mdev->req_lock, flags); os = mdev->state; ns.i = (os.i & ~mask.i) | val.i; ns = sanitize_state(mdev, os, ns, NULL); if (!cl_wide_st_chg(mdev, os, ns)) rv = SS_CW_NO_NEED; if (!rv) { rv = is_valid_state(mdev, ns); if (rv == SS_SUCCESS) { rv = is_valid_state_transition(mdev, ns, os); if (rv == SS_SUCCESS) rv = 0; /* cont waiting, otherwise fail. */ } } spin_unlock_irqrestore(&mdev->req_lock, flags); return rv; } /** * drbd_req_state() - Perform an eventually cluster wide state change * @mdev: DRBD device. * @mask: mask of state bits to change. * @val: value of new state bits. * @f: flags * * Should not be called directly, use drbd_request_state() or * _drbd_request_state(). */ static int drbd_req_state(struct drbd_conf *mdev, union drbd_state mask, union drbd_state val, enum chg_state_flags f) { struct completion done; unsigned long flags; union drbd_state os, ns; int rv; init_completion(&done); if (f & CS_SERIALIZE) mutex_lock(&mdev->state_mutex); spin_lock_irqsave(&mdev->req_lock, flags); os = mdev->state; ns.i = (os.i & ~mask.i) | val.i; ns = sanitize_state(mdev, os, ns, NULL); if (cl_wide_st_chg(mdev, os, ns)) { rv = is_valid_state(mdev, ns); if (rv == SS_SUCCESS) rv = is_valid_state_transition(mdev, ns, os); spin_unlock_irqrestore(&mdev->req_lock, flags); if (rv < SS_SUCCESS) { if (f & CS_VERBOSE) print_st_err(mdev, os, ns, rv); goto abort; } drbd_state_lock(mdev); if (!drbd_send_state_req(mdev, mask, val)) { drbd_state_unlock(mdev); rv = SS_CW_FAILED_BY_PEER; if (f & CS_VERBOSE) print_st_err(mdev, os, ns, rv); goto abort; } wait_event(mdev->state_wait, (rv = _req_st_cond(mdev, mask, val))); if (rv < SS_SUCCESS) { drbd_state_unlock(mdev); if (f & CS_VERBOSE) print_st_err(mdev, os, ns, rv); goto abort; } spin_lock_irqsave(&mdev->req_lock, flags); os = mdev->state; ns.i = (os.i & ~mask.i) | val.i; rv = _drbd_set_state(mdev, ns, f, &done); drbd_state_unlock(mdev); } else { rv = _drbd_set_state(mdev, ns, f, &done); } spin_unlock_irqrestore(&mdev->req_lock, flags); if (f & CS_WAIT_COMPLETE && rv == SS_SUCCESS) { D_ASSERT(current != mdev->worker.task); wait_for_completion(&done); } abort: if (f & CS_SERIALIZE) mutex_unlock(&mdev->state_mutex); return rv; } /** * _drbd_request_state() - Request a state change (with flags) * @mdev: DRBD device. * @mask: mask of state bits to change. * @val: value of new state bits. * @f: flags * * Cousin of drbd_request_state(), useful with the CS_WAIT_COMPLETE * flag, or when logging of failed state change requests is not desired. */ int _drbd_request_state(struct drbd_conf *mdev, union drbd_state mask, union drbd_state val, enum chg_state_flags f) { int rv; wait_event(mdev->state_wait, (rv = drbd_req_state(mdev, mask, val, f)) != SS_IN_TRANSIENT_STATE); return rv; } static void print_st(struct drbd_conf *mdev, char *name, union drbd_state ns) { dev_err(DEV, " %s = { cs:%s ro:%s/%s ds:%s/%s %c%c%c%c }\n", name, drbd_conn_str(ns.conn), drbd_role_str(ns.role), drbd_role_str(ns.peer), drbd_disk_str(ns.disk), drbd_disk_str(ns.pdsk), ns.susp ? 's' : 'r', ns.aftr_isp ? 'a' : '-', ns.peer_isp ? 'p' : '-', ns.user_isp ? 'u' : '-' ); } void print_st_err(struct drbd_conf *mdev, union drbd_state os, union drbd_state ns, int err) { if (err == SS_IN_TRANSIENT_STATE) return; dev_err(DEV, "State change failed: %s\n", drbd_set_st_err_str(err)); print_st(mdev, " state", os); print_st(mdev, "wanted", ns); } #define drbd_peer_str drbd_role_str #define drbd_pdsk_str drbd_disk_str #define drbd_susp_str(A) ((A) ? "1" : "0") #define drbd_aftr_isp_str(A) ((A) ? "1" : "0") #define drbd_peer_isp_str(A) ((A) ? "1" : "0") #define drbd_user_isp_str(A) ((A) ? "1" : "0") #define PSC(A) \ ({ if (ns.A != os.A) { \ pbp += sprintf(pbp, #A "( %s -> %s ) ", \ drbd_##A##_str(os.A), \ drbd_##A##_str(ns.A)); \ } }) /** * is_valid_state() - Returns an SS_ error code if ns is not valid * @mdev: DRBD device. * @ns: State to consider. */ static int is_valid_state(struct drbd_conf *mdev, union drbd_state ns) { /* See drbd_state_sw_errors in drbd_strings.c */ enum drbd_fencing_p fp; int rv = SS_SUCCESS; fp = FP_DONT_CARE; if (get_ldev(mdev)) { fp = mdev->ldev->dc.fencing; put_ldev(mdev); } if (get_net_conf(mdev)) { if (!mdev->net_conf->two_primaries && ns.role == R_PRIMARY && ns.peer == R_PRIMARY) rv = SS_TWO_PRIMARIES; put_net_conf(mdev); } if (rv <= 0) /* already found a reason to abort */; else if (ns.role == R_SECONDARY && mdev->open_cnt) rv = SS_DEVICE_IN_USE; else if (ns.role == R_PRIMARY && ns.conn < C_CONNECTED && ns.disk < D_UP_TO_DATE) rv = SS_NO_UP_TO_DATE_DISK; else if (fp >= FP_RESOURCE && ns.role == R_PRIMARY && ns.conn < C_CONNECTED && ns.pdsk >= D_UNKNOWN) rv = SS_PRIMARY_NOP; else if (ns.role == R_PRIMARY && ns.disk <= D_INCONSISTENT && ns.pdsk <= D_INCONSISTENT) rv = SS_NO_UP_TO_DATE_DISK; else if (ns.conn > C_CONNECTED && ns.disk < D_INCONSISTENT) rv = SS_NO_LOCAL_DISK; else if (ns.conn > C_CONNECTED && ns.pdsk < D_INCONSISTENT) rv = SS_NO_REMOTE_DISK; else if (ns.conn > C_CONNECTED && ns.disk < D_UP_TO_DATE && ns.pdsk < D_UP_TO_DATE) rv = SS_NO_UP_TO_DATE_DISK; else if ((ns.conn == C_CONNECTED || ns.conn == C_WF_BITMAP_S || ns.conn == C_SYNC_SOURCE || ns.conn == C_PAUSED_SYNC_S) && ns.disk == D_OUTDATED) rv = SS_CONNECTED_OUTDATES; else if ((ns.conn == C_VERIFY_S || ns.conn == C_VERIFY_T) && (mdev->sync_conf.verify_alg[0] == 0)) rv = SS_NO_VERIFY_ALG; else if ((ns.conn == C_VERIFY_S || ns.conn == C_VERIFY_T) && mdev->agreed_pro_version < 88) rv = SS_NOT_SUPPORTED; return rv; } /** * is_valid_state_transition() - Returns an SS_ error code if the state transition is not possible * @mdev: DRBD device. * @ns: new state. * @os: old state. */ static int is_valid_state_transition(struct drbd_conf *mdev, union drbd_state ns, union drbd_state os) { int rv = SS_SUCCESS; if ((ns.conn == C_STARTING_SYNC_T || ns.conn == C_STARTING_SYNC_S) && os.conn > C_CONNECTED) rv = SS_RESYNC_RUNNING; if (ns.conn == C_DISCONNECTING && os.conn == C_STANDALONE) rv = SS_ALREADY_STANDALONE; if (ns.disk > D_ATTACHING && os.disk == D_DISKLESS) rv = SS_IS_DISKLESS; if (ns.conn == C_WF_CONNECTION && os.conn < C_UNCONNECTED) rv = SS_NO_NET_CONFIG; if (ns.disk == D_OUTDATED && os.disk < D_OUTDATED && os.disk != D_ATTACHING) rv = SS_LOWER_THAN_OUTDATED; if (ns.conn == C_DISCONNECTING && os.conn == C_UNCONNECTED) rv = SS_IN_TRANSIENT_STATE; if (ns.conn == os.conn && ns.conn == C_WF_REPORT_PARAMS) rv = SS_IN_TRANSIENT_STATE; if ((ns.conn == C_VERIFY_S || ns.conn == C_VERIFY_T) && os.conn < C_CONNECTED) rv = SS_NEED_CONNECTION; if ((ns.conn == C_VERIFY_S || ns.conn == C_VERIFY_T) && ns.conn != os.conn && os.conn > C_CONNECTED) rv = SS_RESYNC_RUNNING; if ((ns.conn == C_STARTING_SYNC_S || ns.conn == C_STARTING_SYNC_T) && os.conn < C_CONNECTED) rv = SS_NEED_CONNECTION; return rv; } /** * sanitize_state() - Resolves implicitly necessary additional changes to a state transition * @mdev: DRBD device. * @os: old state. * @ns: new state. * @warn_sync_abort: * * When we loose connection, we have to set the state of the peers disk (pdsk) * to D_UNKNOWN. This rule and many more along those lines are in this function. */ static union drbd_state sanitize_state(struct drbd_conf *mdev, union drbd_state os, union drbd_state ns, int *warn_sync_abort) { enum drbd_fencing_p fp; fp = FP_DONT_CARE; if (get_ldev(mdev)) { fp = mdev->ldev->dc.fencing; put_ldev(mdev); } /* Disallow Network errors to configure a device's network part */ if ((ns.conn >= C_TIMEOUT && ns.conn <= C_TEAR_DOWN) && os.conn <= C_DISCONNECTING) ns.conn = os.conn; /* After a network error (+C_TEAR_DOWN) only C_UNCONNECTED or C_DISCONNECTING can follow */ if (os.conn >= C_TIMEOUT && os.conn <= C_TEAR_DOWN && ns.conn != C_UNCONNECTED && ns.conn != C_DISCONNECTING) ns.conn = os.conn; /* After C_DISCONNECTING only C_STANDALONE may follow */ if (os.conn == C_DISCONNECTING && ns.conn != C_STANDALONE) ns.conn = os.conn; if (ns.conn < C_CONNECTED) { ns.peer_isp = 0; ns.peer = R_UNKNOWN; if (ns.pdsk > D_UNKNOWN || ns.pdsk < D_INCONSISTENT) ns.pdsk = D_UNKNOWN; } /* Clear the aftr_isp when becoming unconfigured */ if (ns.conn == C_STANDALONE && ns.disk == D_DISKLESS && ns.role == R_SECONDARY) ns.aftr_isp = 0; if (ns.conn <= C_DISCONNECTING && ns.disk == D_DISKLESS) ns.pdsk = D_UNKNOWN; /* Abort resync if a disk fails/detaches */ if (os.conn > C_CONNECTED && ns.conn > C_CONNECTED && (ns.disk <= D_FAILED || ns.pdsk <= D_FAILED)) { if (warn_sync_abort) *warn_sync_abort = 1; ns.conn = C_CONNECTED; } if (ns.conn >= C_CONNECTED && ((ns.disk == D_CONSISTENT || ns.disk == D_OUTDATED) || (ns.disk == D_NEGOTIATING && ns.conn == C_WF_BITMAP_T))) { switch (ns.conn) { case C_WF_BITMAP_T: case C_PAUSED_SYNC_T: ns.disk = D_OUTDATED; break; case C_CONNECTED: case C_WF_BITMAP_S: case C_SYNC_SOURCE: case C_PAUSED_SYNC_S: ns.disk = D_UP_TO_DATE; break; case C_SYNC_TARGET: ns.disk = D_INCONSISTENT; dev_warn(DEV, "Implicitly set disk state Inconsistent!\n"); break; } if (os.disk == D_OUTDATED && ns.disk == D_UP_TO_DATE) dev_warn(DEV, "Implicitly set disk from Outdated to UpToDate\n"); } if (ns.conn >= C_CONNECTED && (ns.pdsk == D_CONSISTENT || ns.pdsk == D_OUTDATED)) { switch (ns.conn) { case C_CONNECTED: case C_WF_BITMAP_T: case C_PAUSED_SYNC_T: case C_SYNC_TARGET: ns.pdsk = D_UP_TO_DATE; break; case C_WF_BITMAP_S: case C_PAUSED_SYNC_S: /* remap any consistent state to D_OUTDATED, * but disallow "upgrade" of not even consistent states. */ ns.pdsk = (D_DISKLESS < os.pdsk && os.pdsk < D_OUTDATED) ? os.pdsk : D_OUTDATED; break; case C_SYNC_SOURCE: ns.pdsk = D_INCONSISTENT; dev_warn(DEV, "Implicitly set pdsk Inconsistent!\n"); break; } if (os.pdsk == D_OUTDATED && ns.pdsk == D_UP_TO_DATE) dev_warn(DEV, "Implicitly set pdsk from Outdated to UpToDate\n"); } /* Connection breaks down before we finished "Negotiating" */ if (ns.conn < C_CONNECTED && ns.disk == D_NEGOTIATING && get_ldev_if_state(mdev, D_NEGOTIATING)) { if (mdev->ed_uuid == mdev->ldev->md.uuid[UI_CURRENT]) { ns.disk = mdev->new_state_tmp.disk; ns.pdsk = mdev->new_state_tmp.pdsk; } else { dev_alert(DEV, "Connection lost while negotiating, no data!\n"); ns.disk = D_DISKLESS; ns.pdsk = D_UNKNOWN; } put_ldev(mdev); } if (fp == FP_STONITH && (ns.role == R_PRIMARY && ns.conn < C_CONNECTED && ns.pdsk > D_OUTDATED) && !(os.role == R_PRIMARY && os.conn < C_CONNECTED && os.pdsk > D_OUTDATED)) ns.susp = 1; if (ns.aftr_isp || ns.peer_isp || ns.user_isp) { if (ns.conn == C_SYNC_SOURCE) ns.conn = C_PAUSED_SYNC_S; if (ns.conn == C_SYNC_TARGET) ns.conn = C_PAUSED_SYNC_T; } else { if (ns.conn == C_PAUSED_SYNC_S) ns.conn = C_SYNC_SOURCE; if (ns.conn == C_PAUSED_SYNC_T) ns.conn = C_SYNC_TARGET; } return ns; } /* helper for __drbd_set_state */ static void set_ov_position(struct drbd_conf *mdev, enum drbd_conns cs) { if (cs == C_VERIFY_T) { /* starting online verify from an arbitrary position * does not fit well into the existing protocol. * on C_VERIFY_T, we initialize ov_left and friends * implicitly in receive_DataRequest once the * first P_OV_REQUEST is received */ mdev->ov_start_sector = ~(sector_t)0; } else { unsigned long bit = BM_SECT_TO_BIT(mdev->ov_start_sector); if (bit >= mdev->rs_total) mdev->ov_start_sector = BM_BIT_TO_SECT(mdev->rs_total - 1); mdev->ov_position = mdev->ov_start_sector; } } /** * __drbd_set_state() - Set a new DRBD state * @mdev: DRBD device. * @ns: new state. * @flags: Flags * @done: Optional completion, that will get completed after the after_state_ch() finished * * Caller needs to hold req_lock, and global_state_lock. Do not call directly. */ int __drbd_set_state(struct drbd_conf *mdev, union drbd_state ns, enum chg_state_flags flags, struct completion *done) { union drbd_state os; int rv = SS_SUCCESS; int warn_sync_abort = 0; struct after_state_chg_work *ascw; os = mdev->state; ns = sanitize_state(mdev, os, ns, &warn_sync_abort); if (ns.i == os.i) return SS_NOTHING_TO_DO; if (!(flags & CS_HARD)) { /* pre-state-change checks ; only look at ns */ /* See drbd_state_sw_errors in drbd_strings.c */ rv = is_valid_state(mdev, ns); if (rv < SS_SUCCESS) { /* If the old state was illegal as well, then let this happen...*/ if (is_valid_state(mdev, os) == rv) { dev_err(DEV, "Considering state change from bad state. " "Error would be: '%s'\n", drbd_set_st_err_str(rv)); print_st(mdev, "old", os); print_st(mdev, "new", ns); rv = is_valid_state_transition(mdev, ns, os); } } else rv = is_valid_state_transition(mdev, ns, os); } if (rv < SS_SUCCESS) { if (flags & CS_VERBOSE) print_st_err(mdev, os, ns, rv); return rv; } if (warn_sync_abort) dev_warn(DEV, "Resync aborted.\n"); { char *pbp, pb[300]; pbp = pb; *pbp = 0; PSC(role); PSC(peer); PSC(conn); PSC(disk); PSC(pdsk); PSC(susp); PSC(aftr_isp); PSC(peer_isp); PSC(user_isp); dev_info(DEV, "%s\n", pb); } /* solve the race between becoming unconfigured, * worker doing the cleanup, and * admin reconfiguring us: * on (re)configure, first set CONFIG_PENDING, * then wait for a potentially exiting worker, * start the worker, and schedule one no_op. * then proceed with configuration. */ if (ns.disk == D_DISKLESS && ns.conn == C_STANDALONE && ns.role == R_SECONDARY && !test_and_set_bit(CONFIG_PENDING, &mdev->flags)) set_bit(DEVICE_DYING, &mdev->flags); mdev->state.i = ns.i; wake_up(&mdev->misc_wait); wake_up(&mdev->state_wait); /* post-state-change actions */ if (os.conn >= C_SYNC_SOURCE && ns.conn <= C_CONNECTED) { set_bit(STOP_SYNC_TIMER, &mdev->flags); mod_timer(&mdev->resync_timer, jiffies); } /* aborted verify run. log the last position */ if ((os.conn == C_VERIFY_S || os.conn == C_VERIFY_T) && ns.conn < C_CONNECTED) { mdev->ov_start_sector = BM_BIT_TO_SECT(mdev->rs_total - mdev->ov_left); dev_info(DEV, "Online Verify reached sector %llu\n", (unsigned long long)mdev->ov_start_sector); } if ((os.conn == C_PAUSED_SYNC_T || os.conn == C_PAUSED_SYNC_S) && (ns.conn == C_SYNC_TARGET || ns.conn == C_SYNC_SOURCE)) { dev_info(DEV, "Syncer continues.\n"); mdev->rs_paused += (long)jiffies-(long)mdev->rs_mark_time; if (ns.conn == C_SYNC_TARGET) { if (!test_and_clear_bit(STOP_SYNC_TIMER, &mdev->flags)) mod_timer(&mdev->resync_timer, jiffies); /* This if (!test_bit) is only needed for the case that a device that has ceased to used its timer, i.e. it is already in drbd_resync_finished() gets paused and resumed. */ } } if ((os.conn == C_SYNC_TARGET || os.conn == C_SYNC_SOURCE) && (ns.conn == C_PAUSED_SYNC_T || ns.conn == C_PAUSED_SYNC_S)) { dev_info(DEV, "Resync suspended\n"); mdev->rs_mark_time = jiffies; if (ns.conn == C_PAUSED_SYNC_T) set_bit(STOP_SYNC_TIMER, &mdev->flags); } if (os.conn == C_CONNECTED && (ns.conn == C_VERIFY_S || ns.conn == C_VERIFY_T)) { mdev->ov_position = 0; mdev->rs_total = mdev->rs_mark_left = drbd_bm_bits(mdev); if (mdev->agreed_pro_version >= 90) set_ov_position(mdev, ns.conn); else mdev->ov_start_sector = 0; mdev->ov_left = mdev->rs_total - BM_SECT_TO_BIT(mdev->ov_position); mdev->rs_start = mdev->rs_mark_time = jiffies; mdev->ov_last_oos_size = 0; mdev->ov_last_oos_start = 0; if (ns.conn == C_VERIFY_S) { dev_info(DEV, "Starting Online Verify from sector %llu\n", (unsigned long long)mdev->ov_position); mod_timer(&mdev->resync_timer, jiffies); } } if (get_ldev(mdev)) { u32 mdf = mdev->ldev->md.flags & ~(MDF_CONSISTENT|MDF_PRIMARY_IND| MDF_CONNECTED_IND|MDF_WAS_UP_TO_DATE| MDF_PEER_OUT_DATED|MDF_CRASHED_PRIMARY); if (test_bit(CRASHED_PRIMARY, &mdev->flags)) mdf |= MDF_CRASHED_PRIMARY; if (mdev->state.role == R_PRIMARY || (mdev->state.pdsk < D_INCONSISTENT && mdev->state.peer == R_PRIMARY)) mdf |= MDF_PRIMARY_IND; if (mdev->state.conn > C_WF_REPORT_PARAMS) mdf |= MDF_CONNECTED_IND; if (mdev->state.disk > D_INCONSISTENT) mdf |= MDF_CONSISTENT; if (mdev->state.disk > D_OUTDATED) mdf |= MDF_WAS_UP_TO_DATE; if (mdev->state.pdsk <= D_OUTDATED && mdev->state.pdsk >= D_INCONSISTENT) mdf |= MDF_PEER_OUT_DATED; if (mdf != mdev->ldev->md.flags) { mdev->ldev->md.flags = mdf; drbd_md_mark_dirty(mdev); } if (os.disk < D_CONSISTENT && ns.disk >= D_CONSISTENT) drbd_set_ed_uuid(mdev, mdev->ldev->md.uuid[UI_CURRENT]); put_ldev(mdev); } /* Peer was forced D_UP_TO_DATE & R_PRIMARY, consider to resync */ if (os.disk == D_INCONSISTENT && os.pdsk == D_INCONSISTENT && os.peer == R_SECONDARY && ns.peer == R_PRIMARY) set_bit(CONSIDER_RESYNC, &mdev->flags); /* Receiver should clean up itself */ if (os.conn != C_DISCONNECTING && ns.conn == C_DISCONNECTING) drbd_thread_stop_nowait(&mdev->receiver); /* Now the receiver finished cleaning up itself, it should die */ if (os.conn != C_STANDALONE && ns.conn == C_STANDALONE) drbd_thread_stop_nowait(&mdev->receiver); /* Upon network failure, we need to restart the receiver. */ if (os.conn > C_TEAR_DOWN && ns.conn <= C_TEAR_DOWN && ns.conn >= C_TIMEOUT) drbd_thread_restart_nowait(&mdev->receiver); ascw = kmalloc(sizeof(*ascw), GFP_ATOMIC); if (ascw) { ascw->os = os; ascw->ns = ns; ascw->flags = flags; ascw->w.cb = w_after_state_ch; ascw->done = done; drbd_queue_work(&mdev->data.work, &ascw->w); } else { dev_warn(DEV, "Could not kmalloc an ascw\n"); } return rv; } static int w_after_state_ch(struct drbd_conf *mdev, struct drbd_work *w, int unused) { struct after_state_chg_work *ascw = container_of(w, struct after_state_chg_work, w); after_state_ch(mdev, ascw->os, ascw->ns, ascw->flags); if (ascw->flags & CS_WAIT_COMPLETE) { D_ASSERT(ascw->done != NULL); complete(ascw->done); } kfree(ascw); return 1; } static void abw_start_sync(struct drbd_conf *mdev, int rv) { if (rv) { dev_err(DEV, "Writing the bitmap failed not starting resync.\n"); _drbd_request_state(mdev, NS(conn, C_CONNECTED), CS_VERBOSE); return; } switch (mdev->state.conn) { case C_STARTING_SYNC_T: _drbd_request_state(mdev, NS(conn, C_WF_SYNC_UUID), CS_VERBOSE); break; case C_STARTING_SYNC_S: drbd_start_resync(mdev, C_SYNC_SOURCE); break; } } /** * after_state_ch() - Perform after state change actions that may sleep * @mdev: DRBD device. * @os: old state. * @ns: new state. * @flags: Flags */ static void after_state_ch(struct drbd_conf *mdev, union drbd_state os, union drbd_state ns, enum chg_state_flags flags) { enum drbd_fencing_p fp; if (os.conn != C_CONNECTED && ns.conn == C_CONNECTED) { clear_bit(CRASHED_PRIMARY, &mdev->flags); if (mdev->p_uuid) mdev->p_uuid[UI_FLAGS] &= ~((u64)2); } fp = FP_DONT_CARE; if (get_ldev(mdev)) { fp = mdev->ldev->dc.fencing; put_ldev(mdev); } /* Inform userspace about the change... */ drbd_bcast_state(mdev, ns); if (!(os.role == R_PRIMARY && os.disk < D_UP_TO_DATE && os.pdsk < D_UP_TO_DATE) && (ns.role == R_PRIMARY && ns.disk < D_UP_TO_DATE && ns.pdsk < D_UP_TO_DATE)) drbd_khelper(mdev, "pri-on-incon-degr"); /* Here we have the actions that are performed after a state change. This function might sleep */ if (fp == FP_STONITH && ns.susp) { /* case1: The outdate peer handler is successful: * case2: The connection was established again: */ if ((os.pdsk > D_OUTDATED && ns.pdsk <= D_OUTDATED) || (os.conn < C_CONNECTED && ns.conn >= C_CONNECTED)) { tl_clear(mdev); spin_lock_irq(&mdev->req_lock); _drbd_set_state(_NS(mdev, susp, 0), CS_VERBOSE, NULL); spin_unlock_irq(&mdev->req_lock); } } /* Do not change the order of the if above and the two below... */ if (os.pdsk == D_DISKLESS && ns.pdsk > D_DISKLESS) { /* attach on the peer */ drbd_send_uuids(mdev); drbd_send_state(mdev); } if (os.conn != C_WF_BITMAP_S && ns.conn == C_WF_BITMAP_S) drbd_queue_bitmap_io(mdev, &drbd_send_bitmap, NULL, "send_bitmap (WFBitMapS)"); /* Lost contact to peer's copy of the data */ if ((os.pdsk >= D_INCONSISTENT && os.pdsk != D_UNKNOWN && os.pdsk != D_OUTDATED) && (ns.pdsk < D_INCONSISTENT || ns.pdsk == D_UNKNOWN || ns.pdsk == D_OUTDATED)) { if (get_ldev(mdev)) { if ((ns.role == R_PRIMARY || ns.peer == R_PRIMARY) && mdev->ldev->md.uuid[UI_BITMAP] == 0 && ns.disk >= D_UP_TO_DATE) { drbd_uuid_new_current(mdev); drbd_send_uuids(mdev); } put_ldev(mdev); } } if (ns.pdsk < D_INCONSISTENT && get_ldev(mdev)) { if (ns.peer == R_PRIMARY && mdev->ldev->md.uuid[UI_BITMAP] == 0) drbd_uuid_new_current(mdev); /* D_DISKLESS Peer becomes secondary */ if (os.peer == R_PRIMARY && ns.peer == R_SECONDARY) drbd_al_to_on_disk_bm(mdev); put_ldev(mdev); } /* Last part of the attaching process ... */ if (ns.conn >= C_CONNECTED && os.disk == D_ATTACHING && ns.disk == D_NEGOTIATING) { drbd_send_sizes(mdev, 0, 0); /* to start sync... */ drbd_send_uuids(mdev); drbd_send_state(mdev); } /* We want to pause/continue resync, tell peer. */ if (ns.conn >= C_CONNECTED && ((os.aftr_isp != ns.aftr_isp) || (os.user_isp != ns.user_isp))) drbd_send_state(mdev); /* In case one of the isp bits got set, suspend other devices. */ if ((!os.aftr_isp && !os.peer_isp && !os.user_isp) && (ns.aftr_isp || ns.peer_isp || ns.user_isp)) suspend_other_sg(mdev); /* Make sure the peer gets informed about eventual state changes (ISP bits) while we were in WFReportParams. */ if (os.conn == C_WF_REPORT_PARAMS && ns.conn >= C_CONNECTED) drbd_send_state(mdev); /* We are in the progress to start a full sync... */ if ((os.conn != C_STARTING_SYNC_T && ns.conn == C_STARTING_SYNC_T) || (os.conn != C_STARTING_SYNC_S && ns.conn == C_STARTING_SYNC_S)) drbd_queue_bitmap_io(mdev, &drbd_bmio_set_n_write, &abw_start_sync, "set_n_write from StartingSync"); /* We are invalidating our self... */ if (os.conn < C_CONNECTED && ns.conn < C_CONNECTED && os.disk > D_INCONSISTENT && ns.disk == D_INCONSISTENT) drbd_queue_bitmap_io(mdev, &drbd_bmio_set_n_write, NULL, "set_n_write from invalidate"); if (os.disk > D_FAILED && ns.disk == D_FAILED) { enum drbd_io_error_p eh; eh = EP_PASS_ON; if (get_ldev_if_state(mdev, D_FAILED)) { eh = mdev->ldev->dc.on_io_error; put_ldev(mdev); } drbd_rs_cancel_all(mdev); /* since get_ldev() only works as long as disk>=D_INCONSISTENT, and it is D_DISKLESS here, local_cnt can only go down, it can not increase... It will reach zero */ wait_event(mdev->misc_wait, !atomic_read(&mdev->local_cnt)); mdev->rs_total = 0; mdev->rs_failed = 0; atomic_set(&mdev->rs_pending_cnt, 0); spin_lock_irq(&mdev->req_lock); _drbd_set_state(_NS(mdev, disk, D_DISKLESS), CS_HARD, NULL); spin_unlock_irq(&mdev->req_lock); if (eh == EP_CALL_HELPER) drbd_khelper(mdev, "local-io-error"); } if (os.disk > D_DISKLESS && ns.disk == D_DISKLESS) { if (os.disk == D_FAILED) /* && ns.disk == D_DISKLESS*/ { if (drbd_send_state(mdev)) dev_warn(DEV, "Notified peer that my disk is broken.\n"); else dev_err(DEV, "Sending state in drbd_io_error() failed\n"); } wait_event(mdev->misc_wait, !atomic_read(&mdev->local_cnt)); lc_destroy(mdev->resync); mdev->resync = NULL; lc_destroy(mdev->act_log); mdev->act_log = NULL; __no_warn(local, drbd_free_bc(mdev->ldev); mdev->ldev = NULL;); if (mdev->md_io_tmpp) __free_page(mdev->md_io_tmpp); } /* Disks got bigger while they were detached */ if (ns.disk > D_NEGOTIATING && ns.pdsk > D_NEGOTIATING && test_and_clear_bit(RESYNC_AFTER_NEG, &mdev->flags)) { if (ns.conn == C_CONNECTED) resync_after_online_grow(mdev); } /* A resync finished or aborted, wake paused devices... */ if ((os.conn > C_CONNECTED && ns.conn <= C_CONNECTED) || (os.peer_isp && !ns.peer_isp) || (os.user_isp && !ns.user_isp)) resume_next_sg(mdev); /* Upon network connection, we need to start the receiver */ if (os.conn == C_STANDALONE && ns.conn == C_UNCONNECTED) drbd_thread_start(&mdev->receiver); /* Terminate worker thread if we are unconfigured - it will be restarted as needed... */ if (ns.disk == D_DISKLESS && ns.conn == C_STANDALONE && ns.role == R_SECONDARY) { if (os.aftr_isp != ns.aftr_isp) resume_next_sg(mdev); /* set in __drbd_set_state, unless CONFIG_PENDING was set */ if (test_bit(DEVICE_DYING, &mdev->flags)) drbd_thread_stop_nowait(&mdev->worker); } drbd_md_sync(mdev); } static int drbd_thread_setup(void *arg) { struct drbd_thread *thi = (struct drbd_thread *) arg; struct drbd_conf *mdev = thi->mdev; unsigned long flags; int retval; restart: retval = thi->function(thi); spin_lock_irqsave(&thi->t_lock, flags); /* if the receiver has been "Exiting", the last thing it did * was set the conn state to "StandAlone", * if now a re-connect request comes in, conn state goes C_UNCONNECTED, * and receiver thread will be "started". * drbd_thread_start needs to set "Restarting" in that case. * t_state check and assignment needs to be within the same spinlock, * so either thread_start sees Exiting, and can remap to Restarting, * or thread_start see None, and can proceed as normal. */ if (thi->t_state == Restarting) { dev_info(DEV, "Restarting %s\n", current->comm); thi->t_state = Running; spin_unlock_irqrestore(&thi->t_lock, flags); goto restart; } thi->task = NULL; thi->t_state = None; smp_mb(); complete(&thi->stop); spin_unlock_irqrestore(&thi->t_lock, flags); dev_info(DEV, "Terminating %s\n", current->comm); /* Release mod reference taken when thread was started */ module_put(THIS_MODULE); return retval; } static void drbd_thread_init(struct drbd_conf *mdev, struct drbd_thread *thi, int (*func) (struct drbd_thread *)) { spin_lock_init(&thi->t_lock); thi->task = NULL; thi->t_state = None; thi->function = func; thi->mdev = mdev; } int drbd_thread_start(struct drbd_thread *thi) { struct drbd_conf *mdev = thi->mdev; struct task_struct *nt; unsigned long flags; const char *me = thi == &mdev->receiver ? "receiver" : thi == &mdev->asender ? "asender" : thi == &mdev->worker ? "worker" : "NONSENSE"; /* is used from state engine doing drbd_thread_stop_nowait, * while holding the req lock irqsave */ spin_lock_irqsave(&thi->t_lock, flags); switch (thi->t_state) { case None: dev_info(DEV, "Starting %s thread (from %s [%d])\n", me, current->comm, current->pid); /* Get ref on module for thread - this is released when thread exits */ if (!try_module_get(THIS_MODULE)) { dev_err(DEV, "Failed to get module reference in drbd_thread_start\n"); spin_unlock_irqrestore(&thi->t_lock, flags); return FALSE; } init_completion(&thi->stop); D_ASSERT(thi->task == NULL); thi->reset_cpu_mask = 1; thi->t_state = Running; spin_unlock_irqrestore(&thi->t_lock, flags); flush_signals(current); /* otherw. may get -ERESTARTNOINTR */ nt = kthread_create(drbd_thread_setup, (void *) thi, "drbd%d_%s", mdev_to_minor(mdev), me); if (IS_ERR(nt)) { dev_err(DEV, "Couldn't start thread\n"); module_put(THIS_MODULE); return FALSE; } spin_lock_irqsave(&thi->t_lock, flags); thi->task = nt; thi->t_state = Running; spin_unlock_irqrestore(&thi->t_lock, flags); wake_up_process(nt); break; case Exiting: thi->t_state = Restarting; dev_info(DEV, "Restarting %s thread (from %s [%d])\n", me, current->comm, current->pid); /* fall through */ case Running: case Restarting: default: spin_unlock_irqrestore(&thi->t_lock, flags); break; } return TRUE; } void _drbd_thread_stop(struct drbd_thread *thi, int restart, int wait) { unsigned long flags; enum drbd_thread_state ns = restart ? Restarting : Exiting; /* may be called from state engine, holding the req lock irqsave */ spin_lock_irqsave(&thi->t_lock, flags); if (thi->t_state == None) { spin_unlock_irqrestore(&thi->t_lock, flags); if (restart) drbd_thread_start(thi); return; } if (thi->t_state != ns) { if (thi->task == NULL) { spin_unlock_irqrestore(&thi->t_lock, flags); return; } thi->t_state = ns; smp_mb(); init_completion(&thi->stop); if (thi->task != current) force_sig(DRBD_SIGKILL, thi->task); } spin_unlock_irqrestore(&thi->t_lock, flags); if (wait) wait_for_completion(&thi->stop); } #ifdef CONFIG_SMP /** * drbd_calc_cpu_mask() - Generate CPU masks, spread over all CPUs * @mdev: DRBD device. * * Forces all threads of a device onto the same CPU. This is beneficial for * DRBD's performance. May be overwritten by user's configuration. */ void drbd_calc_cpu_mask(struct drbd_conf *mdev) { int ord, cpu; /* user override. */ if (cpumask_weight(mdev->cpu_mask)) return; ord = mdev_to_minor(mdev) % cpumask_weight(cpu_online_mask); for_each_online_cpu(cpu) { if (ord-- == 0) { cpumask_set_cpu(cpu, mdev->cpu_mask); return; } } /* should not be reached */ cpumask_setall(mdev->cpu_mask); } /** * drbd_thread_current_set_cpu() - modifies the cpu mask of the _current_ thread * @mdev: DRBD device. * * call in the "main loop" of _all_ threads, no need for any mutex, current won't die * prematurely. */ void drbd_thread_current_set_cpu(struct drbd_conf *mdev) { struct task_struct *p = current; struct drbd_thread *thi = p == mdev->asender.task ? &mdev->asender : p == mdev->receiver.task ? &mdev->receiver : p == mdev->worker.task ? &mdev->worker : NULL; ERR_IF(thi == NULL) return; if (!thi->reset_cpu_mask) return; thi->reset_cpu_mask = 0; set_cpus_allowed_ptr(p, mdev->cpu_mask); } #endif /* the appropriate socket mutex must be held already */ int _drbd_send_cmd(struct drbd_conf *mdev, struct socket *sock, enum drbd_packets cmd, struct p_header *h, size_t size, unsigned msg_flags) { int sent, ok; ERR_IF(!h) return FALSE; ERR_IF(!size) return FALSE; h->magic = BE_DRBD_MAGIC; h->command = cpu_to_be16(cmd); h->length = cpu_to_be16(size-sizeof(struct p_header)); sent = drbd_send(mdev, sock, h, size, msg_flags); ok = (sent == size); if (!ok) dev_err(DEV, "short sent %s size=%d sent=%d\n", cmdname(cmd), (int)size, sent); return ok; } /* don't pass the socket. we may only look at it * when we hold the appropriate socket mutex. */ int drbd_send_cmd(struct drbd_conf *mdev, int use_data_socket, enum drbd_packets cmd, struct p_header *h, size_t size) { int ok = 0; struct socket *sock; if (use_data_socket) { mutex_lock(&mdev->data.mutex); sock = mdev->data.socket; } else { mutex_lock(&mdev->meta.mutex); sock = mdev->meta.socket; } /* drbd_disconnect() could have called drbd_free_sock() * while we were waiting in down()... */ if (likely(sock != NULL)) ok = _drbd_send_cmd(mdev, sock, cmd, h, size, 0); if (use_data_socket) mutex_unlock(&mdev->data.mutex); else mutex_unlock(&mdev->meta.mutex); return ok; } int drbd_send_cmd2(struct drbd_conf *mdev, enum drbd_packets cmd, char *data, size_t size) { struct p_header h; int ok; h.magic = BE_DRBD_MAGIC; h.command = cpu_to_be16(cmd); h.length = cpu_to_be16(size); if (!drbd_get_data_sock(mdev)) return 0; ok = (sizeof(h) == drbd_send(mdev, mdev->data.socket, &h, sizeof(h), 0)); ok = ok && (size == drbd_send(mdev, mdev->data.socket, data, size, 0)); drbd_put_data_sock(mdev); return ok; } int drbd_send_sync_param(struct drbd_conf *mdev, struct syncer_conf *sc) { struct p_rs_param_89 *p; struct socket *sock; int size, rv; const int apv = mdev->agreed_pro_version; size = apv <= 87 ? sizeof(struct p_rs_param) : apv == 88 ? sizeof(struct p_rs_param) + strlen(mdev->sync_conf.verify_alg) + 1 : /* 89 */ sizeof(struct p_rs_param_89); /* used from admin command context and receiver/worker context. * to avoid kmalloc, grab the socket right here, * then use the pre-allocated sbuf there */ mutex_lock(&mdev->data.mutex); sock = mdev->data.socket; if (likely(sock != NULL)) { enum drbd_packets cmd = apv >= 89 ? P_SYNC_PARAM89 : P_SYNC_PARAM; p = &mdev->data.sbuf.rs_param_89; /* initialize verify_alg and csums_alg */ memset(p->verify_alg, 0, 2 * SHARED_SECRET_MAX); p->rate = cpu_to_be32(sc->rate); if (apv >= 88) strcpy(p->verify_alg, mdev->sync_conf.verify_alg); if (apv >= 89) strcpy(p->csums_alg, mdev->sync_conf.csums_alg); rv = _drbd_send_cmd(mdev, sock, cmd, &p->head, size, 0); } else rv = 0; /* not ok */ mutex_unlock(&mdev->data.mutex); return rv; } int drbd_send_protocol(struct drbd_conf *mdev) { struct p_protocol *p; int size, cf, rv; size = sizeof(struct p_protocol); if (mdev->agreed_pro_version >= 87) size += strlen(mdev->net_conf->integrity_alg) + 1; /* we must not recurse into our own queue, * as that is blocked during handshake */ p = kmalloc(size, GFP_NOIO); if (p == NULL) return 0; p->protocol = cpu_to_be32(mdev->net_conf->wire_protocol); p->after_sb_0p = cpu_to_be32(mdev->net_conf->after_sb_0p); p->after_sb_1p = cpu_to_be32(mdev->net_conf->after_sb_1p); p->after_sb_2p = cpu_to_be32(mdev->net_conf->after_sb_2p); p->two_primaries = cpu_to_be32(mdev->net_conf->two_primaries); cf = 0; if (mdev->net_conf->want_lose) cf |= CF_WANT_LOSE; if (mdev->net_conf->dry_run) { if (mdev->agreed_pro_version >= 92) cf |= CF_DRY_RUN; else { dev_err(DEV, "--dry-run is not supported by peer"); kfree(p); return 0; } } p->conn_flags = cpu_to_be32(cf); if (mdev->agreed_pro_version >= 87) strcpy(p->integrity_alg, mdev->net_conf->integrity_alg); rv = drbd_send_cmd(mdev, USE_DATA_SOCKET, P_PROTOCOL, (struct p_header *)p, size); kfree(p); return rv; } int _drbd_send_uuids(struct drbd_conf *mdev, u64 uuid_flags) { struct p_uuids p; int i; if (!get_ldev_if_state(mdev, D_NEGOTIATING)) return 1; for (i = UI_CURRENT; i < UI_SIZE; i++) p.uuid[i] = mdev->ldev ? cpu_to_be64(mdev->ldev->md.uuid[i]) : 0; mdev->comm_bm_set = drbd_bm_total_weight(mdev); p.uuid[UI_SIZE] = cpu_to_be64(mdev->comm_bm_set); uuid_flags |= mdev->net_conf->want_lose ? 1 : 0; uuid_flags |= test_bit(CRASHED_PRIMARY, &mdev->flags) ? 2 : 0; uuid_flags |= mdev->new_state_tmp.disk == D_INCONSISTENT ? 4 : 0; p.uuid[UI_FLAGS] = cpu_to_be64(uuid_flags); put_ldev(mdev); return drbd_send_cmd(mdev, USE_DATA_SOCKET, P_UUIDS, (struct p_header *)&p, sizeof(p)); } int drbd_send_uuids(struct drbd_conf *mdev) { return _drbd_send_uuids(mdev, 0); } int drbd_send_uuids_skip_initial_sync(struct drbd_conf *mdev) { return _drbd_send_uuids(mdev, 8); } …
Large files files are truncated, but you can click here to view the full file