blob: 535ae47f84c9bc3ac774568ea3c0e77a520bd731 [file] [log] [blame]
Philipp Reisnerb8907332011-01-27 14:07:51 +01001/*
2 drbd_state.c
3
4 This file is part of DRBD by Philipp Reisner and Lars Ellenberg.
5
6 Copyright (C) 2001-2008, LINBIT Information Technologies GmbH.
7 Copyright (C) 1999-2008, Philipp Reisner <philipp.reisner@linbit.com>.
8 Copyright (C) 2002-2008, Lars Ellenberg <lars.ellenberg@linbit.com>.
9
10 Thanks to Carter Burden, Bart Grantham and Gennadiy Nerubayev
11 from Logicworks, Inc. for making SDP replication support possible.
12
13 drbd is free software; you can redistribute it and/or modify
14 it under the terms of the GNU General Public License as published by
15 the Free Software Foundation; either version 2, or (at your option)
16 any later version.
17
18 drbd is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with drbd; see the file COPYING. If not, write to
25 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
26 */
27
28#include <linux/drbd_limits.h>
29#include "drbd_int.h"
Andreas Gruenbachera3603a62011-05-30 11:47:37 +020030#include "drbd_protocol.h"
Philipp Reisnerb8907332011-01-27 14:07:51 +010031#include "drbd_req.h"
32
33struct after_state_chg_work {
34 struct drbd_work w;
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +020035 struct drbd_device *device;
Philipp Reisnerb8907332011-01-27 14:07:51 +010036 union drbd_state os;
37 union drbd_state ns;
38 enum chg_state_flags flags;
39 struct completion *done;
40};
41
Philipp Reisnerd942ae42011-05-31 13:07:24 +020042enum sanitize_state_warnings {
43 NO_WARNING,
44 ABORTED_ONLINE_VERIFY,
45 ABORTED_RESYNC,
46 CONNECTION_LOST_NEGOTIATING,
47 IMPLICITLY_UPGRADED_DISK,
48 IMPLICITLY_UPGRADED_PDSK,
49};
50
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +010051static int w_after_state_ch(struct drbd_work *w, int unused);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +020052static void after_state_ch(struct drbd_device *device, union drbd_state os,
Philipp Reisnerb8907332011-01-27 14:07:51 +010053 union drbd_state ns, enum chg_state_flags flags);
Andreas Gruenbacher54761692011-05-30 16:15:21 +020054static enum drbd_state_rv is_valid_state(struct drbd_device *, union drbd_state);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +020055static enum drbd_state_rv is_valid_soft_transition(union drbd_state, union drbd_state, struct drbd_connection *);
Philipp Reisner35095022011-02-09 16:29:33 +010056static enum drbd_state_rv is_valid_transition(union drbd_state os, union drbd_state ns);
Philipp Reisnerd7fe69c2014-04-28 18:43:13 +020057static union drbd_state sanitize_state(struct drbd_device *device, union drbd_state os,
58 union drbd_state ns, enum sanitize_state_warnings *warn);
Philipp Reisnerb8907332011-01-27 14:07:51 +010059
Philipp Reisner2aebfab2011-03-28 16:48:11 +020060static inline bool is_susp(union drbd_state s)
61{
62 return s.susp || s.susp_nod || s.susp_fen;
63}
64
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +020065bool conn_all_vols_unconf(struct drbd_connection *connection)
Philipp Reisner0e29d162011-02-18 14:23:11 +010066{
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +020067 struct drbd_peer_device *peer_device;
Philipp Reisner695d08f2011-04-11 22:53:32 -070068 bool rv = true;
Philipp Reisnere90285e2011-03-22 12:51:21 +010069 int vnr;
Philipp Reisner0e29d162011-02-18 14:23:11 +010070
Philipp Reisner695d08f2011-04-11 22:53:32 -070071 rcu_read_lock();
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +020072 idr_for_each_entry(&connection->peer_devices, peer_device, vnr) {
73 struct drbd_device *device = peer_device->device;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +020074 if (device->state.disk != D_DISKLESS ||
75 device->state.conn != C_STANDALONE ||
76 device->state.role != R_SECONDARY) {
Philipp Reisner695d08f2011-04-11 22:53:32 -070077 rv = false;
78 break;
79 }
Philipp Reisner0e29d162011-02-18 14:23:11 +010080 }
Philipp Reisner695d08f2011-04-11 22:53:32 -070081 rcu_read_unlock();
82
83 return rv;
Philipp Reisner0e29d162011-02-18 14:23:11 +010084}
85
Philipp Reisnercb703452011-03-24 11:03:07 +010086/* Unfortunately the states where not correctly ordered, when
87 they where defined. therefore can not use max_t() here. */
88static enum drbd_role max_role(enum drbd_role role1, enum drbd_role role2)
89{
90 if (role1 == R_PRIMARY || role2 == R_PRIMARY)
91 return R_PRIMARY;
92 if (role1 == R_SECONDARY || role2 == R_SECONDARY)
93 return R_SECONDARY;
94 return R_UNKNOWN;
95}
96static enum drbd_role min_role(enum drbd_role role1, enum drbd_role role2)
97{
98 if (role1 == R_UNKNOWN || role2 == R_UNKNOWN)
99 return R_UNKNOWN;
100 if (role1 == R_SECONDARY || role2 == R_SECONDARY)
101 return R_SECONDARY;
102 return R_PRIMARY;
103}
104
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200105enum drbd_role conn_highest_role(struct drbd_connection *connection)
Philipp Reisnercb703452011-03-24 11:03:07 +0100106{
107 enum drbd_role role = R_UNKNOWN;
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +0200108 struct drbd_peer_device *peer_device;
Philipp Reisnercb703452011-03-24 11:03:07 +0100109 int vnr;
110
Philipp Reisner695d08f2011-04-11 22:53:32 -0700111 rcu_read_lock();
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +0200112 idr_for_each_entry(&connection->peer_devices, peer_device, vnr) {
113 struct drbd_device *device = peer_device->device;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200114 role = max_role(role, device->state.role);
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +0200115 }
Philipp Reisner695d08f2011-04-11 22:53:32 -0700116 rcu_read_unlock();
Philipp Reisnercb703452011-03-24 11:03:07 +0100117
118 return role;
119}
120
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200121enum drbd_role conn_highest_peer(struct drbd_connection *connection)
Philipp Reisnercb703452011-03-24 11:03:07 +0100122{
123 enum drbd_role peer = R_UNKNOWN;
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +0200124 struct drbd_peer_device *peer_device;
Philipp Reisnercb703452011-03-24 11:03:07 +0100125 int vnr;
126
Philipp Reisner695d08f2011-04-11 22:53:32 -0700127 rcu_read_lock();
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +0200128 idr_for_each_entry(&connection->peer_devices, peer_device, vnr) {
129 struct drbd_device *device = peer_device->device;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200130 peer = max_role(peer, device->state.peer);
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +0200131 }
Philipp Reisner695d08f2011-04-11 22:53:32 -0700132 rcu_read_unlock();
Philipp Reisnercb703452011-03-24 11:03:07 +0100133
134 return peer;
135}
136
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200137enum drbd_disk_state conn_highest_disk(struct drbd_connection *connection)
Philipp Reisnercb703452011-03-24 11:03:07 +0100138{
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +0200139 enum drbd_disk_state disk_state = D_DISKLESS;
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +0200140 struct drbd_peer_device *peer_device;
Philipp Reisnercb703452011-03-24 11:03:07 +0100141 int vnr;
142
Philipp Reisner695d08f2011-04-11 22:53:32 -0700143 rcu_read_lock();
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +0200144 idr_for_each_entry(&connection->peer_devices, peer_device, vnr) {
145 struct drbd_device *device = peer_device->device;
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +0200146 disk_state = max_t(enum drbd_disk_state, disk_state, device->state.disk);
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +0200147 }
Philipp Reisner695d08f2011-04-11 22:53:32 -0700148 rcu_read_unlock();
Philipp Reisnercb703452011-03-24 11:03:07 +0100149
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +0200150 return disk_state;
Philipp Reisnercb703452011-03-24 11:03:07 +0100151}
152
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200153enum drbd_disk_state conn_lowest_disk(struct drbd_connection *connection)
Philipp Reisner46692652011-03-29 18:15:49 +0200154{
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +0200155 enum drbd_disk_state disk_state = D_MASK;
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +0200156 struct drbd_peer_device *peer_device;
Philipp Reisner46692652011-03-29 18:15:49 +0200157 int vnr;
158
Philipp Reisner695d08f2011-04-11 22:53:32 -0700159 rcu_read_lock();
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +0200160 idr_for_each_entry(&connection->peer_devices, peer_device, vnr) {
161 struct drbd_device *device = peer_device->device;
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +0200162 disk_state = min_t(enum drbd_disk_state, disk_state, device->state.disk);
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +0200163 }
Philipp Reisner695d08f2011-04-11 22:53:32 -0700164 rcu_read_unlock();
Philipp Reisner46692652011-03-29 18:15:49 +0200165
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +0200166 return disk_state;
Philipp Reisner46692652011-03-29 18:15:49 +0200167}
168
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200169enum drbd_disk_state conn_highest_pdsk(struct drbd_connection *connection)
Philipp Reisnercb703452011-03-24 11:03:07 +0100170{
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +0200171 enum drbd_disk_state disk_state = D_DISKLESS;
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +0200172 struct drbd_peer_device *peer_device;
Philipp Reisnercb703452011-03-24 11:03:07 +0100173 int vnr;
174
Philipp Reisner695d08f2011-04-11 22:53:32 -0700175 rcu_read_lock();
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +0200176 idr_for_each_entry(&connection->peer_devices, peer_device, vnr) {
177 struct drbd_device *device = peer_device->device;
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +0200178 disk_state = max_t(enum drbd_disk_state, disk_state, device->state.pdsk);
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +0200179 }
Philipp Reisner695d08f2011-04-11 22:53:32 -0700180 rcu_read_unlock();
Philipp Reisnercb703452011-03-24 11:03:07 +0100181
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +0200182 return disk_state;
Philipp Reisnercb703452011-03-24 11:03:07 +0100183}
184
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200185enum drbd_conns conn_lowest_conn(struct drbd_connection *connection)
Philipp Reisner19f83c72011-03-29 14:21:03 +0200186{
187 enum drbd_conns conn = C_MASK;
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +0200188 struct drbd_peer_device *peer_device;
Philipp Reisner19f83c72011-03-29 14:21:03 +0200189 int vnr;
190
Philipp Reisner695d08f2011-04-11 22:53:32 -0700191 rcu_read_lock();
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +0200192 idr_for_each_entry(&connection->peer_devices, peer_device, vnr) {
193 struct drbd_device *device = peer_device->device;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200194 conn = min_t(enum drbd_conns, conn, device->state.conn);
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +0200195 }
Philipp Reisner695d08f2011-04-11 22:53:32 -0700196 rcu_read_unlock();
Philipp Reisner19f83c72011-03-29 14:21:03 +0200197
198 return conn;
199}
200
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200201static bool no_peer_wf_report_params(struct drbd_connection *connection)
Philipp Reisner79702012012-08-28 11:33:35 +0200202{
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +0200203 struct drbd_peer_device *peer_device;
Philipp Reisner79702012012-08-28 11:33:35 +0200204 int vnr;
205 bool rv = true;
206
207 rcu_read_lock();
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +0200208 idr_for_each_entry(&connection->peer_devices, peer_device, vnr)
209 if (peer_device->device->state.conn == C_WF_REPORT_PARAMS) {
Philipp Reisner79702012012-08-28 11:33:35 +0200210 rv = false;
211 break;
212 }
213 rcu_read_unlock();
214
215 return rv;
216}
217
Philipp Reisnera8821532014-11-10 17:21:11 +0100218static void wake_up_all_devices(struct drbd_connection *connection)
219{
220 struct drbd_peer_device *peer_device;
221 int vnr;
222
223 rcu_read_lock();
224 idr_for_each_entry(&connection->peer_devices, peer_device, vnr)
225 wake_up(&peer_device->device->state_wait);
226 rcu_read_unlock();
227
228}
229
Philipp Reisner79702012012-08-28 11:33:35 +0200230
Philipp Reisnerb8907332011-01-27 14:07:51 +0100231/**
232 * cl_wide_st_chg() - true if the state change is a cluster wide one
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200233 * @device: DRBD device.
Philipp Reisnerb8907332011-01-27 14:07:51 +0100234 * @os: old (current) state.
235 * @ns: new (wanted) state.
236 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200237static int cl_wide_st_chg(struct drbd_device *device,
Philipp Reisnerb8907332011-01-27 14:07:51 +0100238 union drbd_state os, union drbd_state ns)
239{
240 return (os.conn >= C_CONNECTED && ns.conn >= C_CONNECTED &&
241 ((os.role != R_PRIMARY && ns.role == R_PRIMARY) ||
242 (os.conn != C_STARTING_SYNC_T && ns.conn == C_STARTING_SYNC_T) ||
243 (os.conn != C_STARTING_SYNC_S && ns.conn == C_STARTING_SYNC_S) ||
Lars Ellenberge8744f52012-03-26 15:57:00 +0200244 (os.disk != D_FAILED && ns.disk == D_FAILED))) ||
Philipp Reisnerb8907332011-01-27 14:07:51 +0100245 (os.conn >= C_CONNECTED && ns.conn == C_DISCONNECTING) ||
Philipp Reisner369bea62011-07-06 23:04:44 +0200246 (os.conn == C_CONNECTED && ns.conn == C_VERIFY_S) ||
247 (os.conn == C_CONNECTED && ns.conn == C_WF_REPORT_PARAMS);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100248}
249
Philipp Reisner56707f92011-02-16 14:57:50 +0100250static union drbd_state
251apply_mask_val(union drbd_state os, union drbd_state mask, union drbd_state val)
252{
253 union drbd_state ns;
254 ns.i = (os.i & ~mask.i) | val.i;
255 return ns;
256}
257
Philipp Reisnerb8907332011-01-27 14:07:51 +0100258enum drbd_state_rv
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200259drbd_change_state(struct drbd_device *device, enum chg_state_flags f,
Philipp Reisnerb8907332011-01-27 14:07:51 +0100260 union drbd_state mask, union drbd_state val)
261{
262 unsigned long flags;
Philipp Reisner56707f92011-02-16 14:57:50 +0100263 union drbd_state ns;
Philipp Reisnerb8907332011-01-27 14:07:51 +0100264 enum drbd_state_rv rv;
265
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200266 spin_lock_irqsave(&device->resource->req_lock, flags);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200267 ns = apply_mask_val(drbd_read_state(device), mask, val);
268 rv = _drbd_set_state(device, ns, f, NULL);
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200269 spin_unlock_irqrestore(&device->resource->req_lock, flags);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100270
271 return rv;
272}
273
274/**
275 * drbd_force_state() - Impose a change which happens outside our control on our state
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200276 * @device: DRBD device.
Philipp Reisnerb8907332011-01-27 14:07:51 +0100277 * @mask: mask of state bits to change.
278 * @val: value of new state bits.
279 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200280void drbd_force_state(struct drbd_device *device,
Philipp Reisnerb8907332011-01-27 14:07:51 +0100281 union drbd_state mask, union drbd_state val)
282{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200283 drbd_change_state(device, CS_HARD, mask, val);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100284}
285
286static enum drbd_state_rv
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200287_req_st_cond(struct drbd_device *device, union drbd_state mask,
Philipp Reisnerb8907332011-01-27 14:07:51 +0100288 union drbd_state val)
289{
290 union drbd_state os, ns;
291 unsigned long flags;
292 enum drbd_state_rv rv;
293
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200294 if (test_and_clear_bit(CL_ST_CHG_SUCCESS, &device->flags))
Philipp Reisnerb8907332011-01-27 14:07:51 +0100295 return SS_CW_SUCCESS;
296
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200297 if (test_and_clear_bit(CL_ST_CHG_FAIL, &device->flags))
Philipp Reisnerb8907332011-01-27 14:07:51 +0100298 return SS_CW_FAILED_BY_PEER;
299
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200300 spin_lock_irqsave(&device->resource->req_lock, flags);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200301 os = drbd_read_state(device);
Philipp Reisnerd7fe69c2014-04-28 18:43:13 +0200302 ns = sanitize_state(device, os, apply_mask_val(os, mask, val), NULL);
Philipp Reisner35095022011-02-09 16:29:33 +0100303 rv = is_valid_transition(os, ns);
Philipp Reisnera3025a22012-09-03 15:39:01 +0200304 if (rv >= SS_SUCCESS)
Philipp Reisner35095022011-02-09 16:29:33 +0100305 rv = SS_UNKNOWN_ERROR; /* cont waiting, otherwise fail. */
Philipp Reisnerb8907332011-01-27 14:07:51 +0100306
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200307 if (!cl_wide_st_chg(device, os, ns))
Philipp Reisnerb8907332011-01-27 14:07:51 +0100308 rv = SS_CW_NO_NEED;
Philipp Reisner35095022011-02-09 16:29:33 +0100309 if (rv == SS_UNKNOWN_ERROR) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200310 rv = is_valid_state(device, ns);
Philipp Reisnera3025a22012-09-03 15:39:01 +0200311 if (rv >= SS_SUCCESS) {
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +0200312 rv = is_valid_soft_transition(os, ns, first_peer_device(device)->connection);
Philipp Reisnera3025a22012-09-03 15:39:01 +0200313 if (rv >= SS_SUCCESS)
Philipp Reisnerb8907332011-01-27 14:07:51 +0100314 rv = SS_UNKNOWN_ERROR; /* cont waiting, otherwise fail. */
315 }
316 }
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200317 spin_unlock_irqrestore(&device->resource->req_lock, flags);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100318
319 return rv;
320}
321
322/**
323 * drbd_req_state() - Perform an eventually cluster wide state change
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200324 * @device: DRBD device.
Philipp Reisnerb8907332011-01-27 14:07:51 +0100325 * @mask: mask of state bits to change.
326 * @val: value of new state bits.
327 * @f: flags
328 *
329 * Should not be called directly, use drbd_request_state() or
330 * _drbd_request_state().
331 */
332static enum drbd_state_rv
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200333drbd_req_state(struct drbd_device *device, union drbd_state mask,
Philipp Reisnerb8907332011-01-27 14:07:51 +0100334 union drbd_state val, enum chg_state_flags f)
335{
336 struct completion done;
337 unsigned long flags;
338 union drbd_state os, ns;
339 enum drbd_state_rv rv;
340
341 init_completion(&done);
342
343 if (f & CS_SERIALIZE)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200344 mutex_lock(device->state_mutex);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100345
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200346 spin_lock_irqsave(&device->resource->req_lock, flags);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200347 os = drbd_read_state(device);
Philipp Reisnerd7fe69c2014-04-28 18:43:13 +0200348 ns = sanitize_state(device, os, apply_mask_val(os, mask, val), NULL);
Philipp Reisner35095022011-02-09 16:29:33 +0100349 rv = is_valid_transition(os, ns);
Lars Ellenberg3c5e5f62011-03-15 16:04:09 +0100350 if (rv < SS_SUCCESS) {
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200351 spin_unlock_irqrestore(&device->resource->req_lock, flags);
Philipp Reisner35095022011-02-09 16:29:33 +0100352 goto abort;
Lars Ellenberg3c5e5f62011-03-15 16:04:09 +0100353 }
Philipp Reisnerb8907332011-01-27 14:07:51 +0100354
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200355 if (cl_wide_st_chg(device, os, ns)) {
356 rv = is_valid_state(device, ns);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100357 if (rv == SS_SUCCESS)
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +0200358 rv = is_valid_soft_transition(os, ns, first_peer_device(device)->connection);
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200359 spin_unlock_irqrestore(&device->resource->req_lock, flags);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100360
361 if (rv < SS_SUCCESS) {
362 if (f & CS_VERBOSE)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200363 print_st_err(device, os, ns, rv);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100364 goto abort;
365 }
366
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200367 if (drbd_send_state_req(first_peer_device(device), mask, val)) {
Philipp Reisnerb8907332011-01-27 14:07:51 +0100368 rv = SS_CW_FAILED_BY_PEER;
369 if (f & CS_VERBOSE)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200370 print_st_err(device, os, ns, rv);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100371 goto abort;
372 }
373
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200374 wait_event(device->state_wait,
375 (rv = _req_st_cond(device, mask, val)));
Philipp Reisnerb8907332011-01-27 14:07:51 +0100376
377 if (rv < SS_SUCCESS) {
Philipp Reisnerb8907332011-01-27 14:07:51 +0100378 if (f & CS_VERBOSE)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200379 print_st_err(device, os, ns, rv);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100380 goto abort;
381 }
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200382 spin_lock_irqsave(&device->resource->req_lock, flags);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200383 ns = apply_mask_val(drbd_read_state(device), mask, val);
384 rv = _drbd_set_state(device, ns, f, &done);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100385 } else {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200386 rv = _drbd_set_state(device, ns, f, &done);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100387 }
388
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200389 spin_unlock_irqrestore(&device->resource->req_lock, flags);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100390
391 if (f & CS_WAIT_COMPLETE && rv == SS_SUCCESS) {
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200392 D_ASSERT(device, current != first_peer_device(device)->connection->worker.task);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100393 wait_for_completion(&done);
394 }
395
396abort:
397 if (f & CS_SERIALIZE)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200398 mutex_unlock(device->state_mutex);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100399
400 return rv;
401}
402
403/**
404 * _drbd_request_state() - Request a state change (with flags)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200405 * @device: DRBD device.
Philipp Reisnerb8907332011-01-27 14:07:51 +0100406 * @mask: mask of state bits to change.
407 * @val: value of new state bits.
408 * @f: flags
409 *
410 * Cousin of drbd_request_state(), useful with the CS_WAIT_COMPLETE
411 * flag, or when logging of failed state change requests is not desired.
412 */
413enum drbd_state_rv
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200414_drbd_request_state(struct drbd_device *device, union drbd_state mask,
Philipp Reisnerb8907332011-01-27 14:07:51 +0100415 union drbd_state val, enum chg_state_flags f)
416{
417 enum drbd_state_rv rv;
418
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200419 wait_event(device->state_wait,
420 (rv = drbd_req_state(device, mask, val, f)) != SS_IN_TRANSIENT_STATE);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100421
422 return rv;
423}
424
Philipp Reisnera8821532014-11-10 17:21:11 +0100425enum drbd_state_rv
426_drbd_request_state_holding_state_mutex(struct drbd_device *device, union drbd_state mask,
427 union drbd_state val, enum chg_state_flags f)
428{
429 enum drbd_state_rv rv;
430
431 BUG_ON(f & CS_SERIALIZE);
432
433 wait_event_cmd(device->state_wait,
434 (rv = drbd_req_state(device, mask, val, f)) != SS_IN_TRANSIENT_STATE,
435 mutex_unlock(device->state_mutex),
436 mutex_lock(device->state_mutex));
437
438 return rv;
439}
440
Lars Ellenberg8ce953a2014-02-27 09:46:18 +0100441static void print_st(struct drbd_device *device, const char *name, union drbd_state ns)
Philipp Reisnerb8907332011-01-27 14:07:51 +0100442{
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200443 drbd_err(device, " %s = { cs:%s ro:%s/%s ds:%s/%s %c%c%c%c%c%c }\n",
Philipp Reisnerb8907332011-01-27 14:07:51 +0100444 name,
445 drbd_conn_str(ns.conn),
446 drbd_role_str(ns.role),
447 drbd_role_str(ns.peer),
448 drbd_disk_str(ns.disk),
449 drbd_disk_str(ns.pdsk),
450 is_susp(ns) ? 's' : 'r',
451 ns.aftr_isp ? 'a' : '-',
452 ns.peer_isp ? 'p' : '-',
453 ns.user_isp ? 'u' : '-',
454 ns.susp_fen ? 'F' : '-',
455 ns.susp_nod ? 'N' : '-'
456 );
457}
458
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200459void print_st_err(struct drbd_device *device, union drbd_state os,
Philipp Reisnerb8907332011-01-27 14:07:51 +0100460 union drbd_state ns, enum drbd_state_rv err)
461{
462 if (err == SS_IN_TRANSIENT_STATE)
463 return;
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200464 drbd_err(device, "State change failed: %s\n", drbd_set_st_err_str(err));
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200465 print_st(device, " state", os);
466 print_st(device, "wanted", ns);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100467}
468
Philipp Reisner435693e2011-03-25 15:11:30 +0100469static long print_state_change(char *pb, union drbd_state os, union drbd_state ns,
Philipp Reisnerbbeb6412011-02-10 13:45:46 +0100470 enum chg_state_flags flags)
471{
Philipp Reisner435693e2011-03-25 15:11:30 +0100472 char *pbp;
Philipp Reisnerbbeb6412011-02-10 13:45:46 +0100473 pbp = pb;
474 *pbp = 0;
Philipp Reisner706cb242011-03-29 15:20:27 +0200475
Philipp Reisner435693e2011-03-25 15:11:30 +0100476 if (ns.role != os.role && flags & CS_DC_ROLE)
Philipp Reisnerbbeb6412011-02-10 13:45:46 +0100477 pbp += sprintf(pbp, "role( %s -> %s ) ",
478 drbd_role_str(os.role),
479 drbd_role_str(ns.role));
Philipp Reisner435693e2011-03-25 15:11:30 +0100480 if (ns.peer != os.peer && flags & CS_DC_PEER)
Philipp Reisnerbbeb6412011-02-10 13:45:46 +0100481 pbp += sprintf(pbp, "peer( %s -> %s ) ",
482 drbd_role_str(os.peer),
483 drbd_role_str(ns.peer));
Philipp Reisner435693e2011-03-25 15:11:30 +0100484 if (ns.conn != os.conn && flags & CS_DC_CONN)
Philipp Reisnerbbeb6412011-02-10 13:45:46 +0100485 pbp += sprintf(pbp, "conn( %s -> %s ) ",
486 drbd_conn_str(os.conn),
487 drbd_conn_str(ns.conn));
Philipp Reisner435693e2011-03-25 15:11:30 +0100488 if (ns.disk != os.disk && flags & CS_DC_DISK)
Philipp Reisnerbbeb6412011-02-10 13:45:46 +0100489 pbp += sprintf(pbp, "disk( %s -> %s ) ",
490 drbd_disk_str(os.disk),
491 drbd_disk_str(ns.disk));
Philipp Reisner435693e2011-03-25 15:11:30 +0100492 if (ns.pdsk != os.pdsk && flags & CS_DC_PDSK)
Philipp Reisnerbbeb6412011-02-10 13:45:46 +0100493 pbp += sprintf(pbp, "pdsk( %s -> %s ) ",
494 drbd_disk_str(os.pdsk),
495 drbd_disk_str(ns.pdsk));
Philipp Reisner706cb242011-03-29 15:20:27 +0200496
497 return pbp - pb;
498}
499
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200500static void drbd_pr_state_change(struct drbd_device *device, union drbd_state os, union drbd_state ns,
Philipp Reisner706cb242011-03-29 15:20:27 +0200501 enum chg_state_flags flags)
502{
503 char pb[300];
504 char *pbp = pb;
505
506 pbp += print_state_change(pbp, os, ns, flags ^ CS_DC_MASK);
507
Philipp Reisnerbbeb6412011-02-10 13:45:46 +0100508 if (ns.aftr_isp != os.aftr_isp)
509 pbp += sprintf(pbp, "aftr_isp( %d -> %d ) ",
510 os.aftr_isp,
511 ns.aftr_isp);
512 if (ns.peer_isp != os.peer_isp)
513 pbp += sprintf(pbp, "peer_isp( %d -> %d ) ",
514 os.peer_isp,
515 ns.peer_isp);
516 if (ns.user_isp != os.user_isp)
517 pbp += sprintf(pbp, "user_isp( %d -> %d ) ",
518 os.user_isp,
519 ns.user_isp);
Philipp Reisner435693e2011-03-25 15:11:30 +0100520
Philipp Reisner706cb242011-03-29 15:20:27 +0200521 if (pbp != pb)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200522 drbd_info(device, "%s\n", pb);
Philipp Reisnerbbeb6412011-02-10 13:45:46 +0100523}
Philipp Reisnerb8907332011-01-27 14:07:51 +0100524
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200525static void conn_pr_state_change(struct drbd_connection *connection, union drbd_state os, union drbd_state ns,
Philipp Reisner435693e2011-03-25 15:11:30 +0100526 enum chg_state_flags flags)
527{
528 char pb[300];
Philipp Reisner706cb242011-03-29 15:20:27 +0200529 char *pbp = pb;
Philipp Reisner435693e2011-03-25 15:11:30 +0100530
Philipp Reisner706cb242011-03-29 15:20:27 +0200531 pbp += print_state_change(pbp, os, ns, flags);
532
533 if (is_susp(ns) != is_susp(os) && flags & CS_DC_SUSP)
534 pbp += sprintf(pbp, "susp( %d -> %d ) ",
535 is_susp(os),
536 is_susp(ns));
537
538 if (pbp != pb)
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +0200539 drbd_info(connection, "%s\n", pb);
Philipp Reisner435693e2011-03-25 15:11:30 +0100540}
541
542
Philipp Reisnerb8907332011-01-27 14:07:51 +0100543/**
544 * is_valid_state() - Returns an SS_ error code if ns is not valid
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200545 * @device: DRBD device.
Philipp Reisnerb8907332011-01-27 14:07:51 +0100546 * @ns: State to consider.
547 */
548static enum drbd_state_rv
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200549is_valid_state(struct drbd_device *device, union drbd_state ns)
Philipp Reisnerb8907332011-01-27 14:07:51 +0100550{
551 /* See drbd_state_sw_errors in drbd_strings.c */
552
553 enum drbd_fencing_p fp;
554 enum drbd_state_rv rv = SS_SUCCESS;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200555 struct net_conf *nc;
Philipp Reisnerb8907332011-01-27 14:07:51 +0100556
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200557 rcu_read_lock();
Philipp Reisnerb8907332011-01-27 14:07:51 +0100558 fp = FP_DONT_CARE;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200559 if (get_ldev(device)) {
560 fp = rcu_dereference(device->ldev->disk_conf)->fencing;
561 put_ldev(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100562 }
563
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +0200564 nc = rcu_dereference(first_peer_device(device)->connection->net_conf);
Philipp Reisner44ed1672011-04-19 17:10:19 +0200565 if (nc) {
566 if (!nc->two_primaries && ns.role == R_PRIMARY) {
Philipp Reisner047e95e22011-03-16 14:43:36 +0100567 if (ns.peer == R_PRIMARY)
568 rv = SS_TWO_PRIMARIES;
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +0200569 else if (conn_highest_peer(first_peer_device(device)->connection) == R_PRIMARY)
Philipp Reisner047e95e22011-03-16 14:43:36 +0100570 rv = SS_O_VOL_PEER_PRI;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200571 }
Philipp Reisnerb8907332011-01-27 14:07:51 +0100572 }
573
574 if (rv <= 0)
575 /* already found a reason to abort */;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200576 else if (ns.role == R_SECONDARY && device->open_cnt)
Philipp Reisnerb8907332011-01-27 14:07:51 +0100577 rv = SS_DEVICE_IN_USE;
578
579 else if (ns.role == R_PRIMARY && ns.conn < C_CONNECTED && ns.disk < D_UP_TO_DATE)
580 rv = SS_NO_UP_TO_DATE_DISK;
581
582 else if (fp >= FP_RESOURCE &&
583 ns.role == R_PRIMARY && ns.conn < C_CONNECTED && ns.pdsk >= D_UNKNOWN)
584 rv = SS_PRIMARY_NOP;
585
586 else if (ns.role == R_PRIMARY && ns.disk <= D_INCONSISTENT && ns.pdsk <= D_INCONSISTENT)
587 rv = SS_NO_UP_TO_DATE_DISK;
588
589 else if (ns.conn > C_CONNECTED && ns.disk < D_INCONSISTENT)
590 rv = SS_NO_LOCAL_DISK;
591
592 else if (ns.conn > C_CONNECTED && ns.pdsk < D_INCONSISTENT)
593 rv = SS_NO_REMOTE_DISK;
594
595 else if (ns.conn > C_CONNECTED && ns.disk < D_UP_TO_DATE && ns.pdsk < D_UP_TO_DATE)
596 rv = SS_NO_UP_TO_DATE_DISK;
597
598 else if ((ns.conn == C_CONNECTED ||
599 ns.conn == C_WF_BITMAP_S ||
600 ns.conn == C_SYNC_SOURCE ||
601 ns.conn == C_PAUSED_SYNC_S) &&
602 ns.disk == D_OUTDATED)
603 rv = SS_CONNECTED_OUTDATES;
604
605 else if ((ns.conn == C_VERIFY_S || ns.conn == C_VERIFY_T) &&
Philipp Reisner44ed1672011-04-19 17:10:19 +0200606 (nc->verify_alg[0] == 0))
Philipp Reisnerb8907332011-01-27 14:07:51 +0100607 rv = SS_NO_VERIFY_ALG;
608
609 else if ((ns.conn == C_VERIFY_S || ns.conn == C_VERIFY_T) &&
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +0200610 first_peer_device(device)->connection->agreed_pro_version < 88)
Philipp Reisnerb8907332011-01-27 14:07:51 +0100611 rv = SS_NOT_SUPPORTED;
612
Philipp Reisner5c4f13d2013-03-27 14:08:37 +0100613 else if (ns.role == R_PRIMARY && ns.disk < D_UP_TO_DATE && ns.pdsk < D_UP_TO_DATE)
614 rv = SS_NO_UP_TO_DATE_DISK;
615
616 else if ((ns.conn == C_STARTING_SYNC_S || ns.conn == C_STARTING_SYNC_T) &&
617 ns.pdsk == D_UNKNOWN)
618 rv = SS_NEED_CONNECTION;
619
Philipp Reisnerb8907332011-01-27 14:07:51 +0100620 else if (ns.conn >= C_CONNECTED && ns.pdsk == D_UNKNOWN)
621 rv = SS_CONNECTED_OUTDATES;
622
Philipp Reisner44ed1672011-04-19 17:10:19 +0200623 rcu_read_unlock();
624
Philipp Reisnerb8907332011-01-27 14:07:51 +0100625 return rv;
626}
627
628/**
Philipp Reisnera75f34a2011-02-09 15:10:33 +0100629 * is_valid_soft_transition() - Returns an SS_ error code if the state transition is not possible
Philipp Reisner35095022011-02-09 16:29:33 +0100630 * This function limits state transitions that may be declined by DRBD. I.e.
631 * user requests (aka soft transitions).
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200632 * @device: DRBD device.
Philipp Reisnerb8907332011-01-27 14:07:51 +0100633 * @ns: new state.
634 * @os: old state.
635 */
636static enum drbd_state_rv
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200637is_valid_soft_transition(union drbd_state os, union drbd_state ns, struct drbd_connection *connection)
Philipp Reisnerb8907332011-01-27 14:07:51 +0100638{
639 enum drbd_state_rv rv = SS_SUCCESS;
640
641 if ((ns.conn == C_STARTING_SYNC_T || ns.conn == C_STARTING_SYNC_S) &&
642 os.conn > C_CONNECTED)
643 rv = SS_RESYNC_RUNNING;
644
645 if (ns.conn == C_DISCONNECTING && os.conn == C_STANDALONE)
646 rv = SS_ALREADY_STANDALONE;
647
648 if (ns.disk > D_ATTACHING && os.disk == D_DISKLESS)
649 rv = SS_IS_DISKLESS;
650
651 if (ns.conn == C_WF_CONNECTION && os.conn < C_UNCONNECTED)
652 rv = SS_NO_NET_CONFIG;
653
654 if (ns.disk == D_OUTDATED && os.disk < D_OUTDATED && os.disk != D_ATTACHING)
655 rv = SS_LOWER_THAN_OUTDATED;
656
657 if (ns.conn == C_DISCONNECTING && os.conn == C_UNCONNECTED)
658 rv = SS_IN_TRANSIENT_STATE;
659
Philipp Reisnera1096a62012-04-06 12:07:34 +0200660 /* While establishing a connection only allow cstate to change.
Philipp Reisnera8821532014-11-10 17:21:11 +0100661 Delay/refuse role changes, detach attach etc... (they do not touch cstate) */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200662 if (test_bit(STATE_SENT, &connection->flags) &&
Philipp Reisnera8821532014-11-10 17:21:11 +0100663 !((ns.conn == C_WF_REPORT_PARAMS && os.conn == C_WF_CONNECTION) ||
664 (ns.conn >= C_CONNECTED && os.conn == C_WF_REPORT_PARAMS)))
Philipp Reisnera1096a62012-04-06 12:07:34 +0200665 rv = SS_IN_TRANSIENT_STATE;
666
Philipp Reisnerb8907332011-01-27 14:07:51 +0100667 if ((ns.conn == C_VERIFY_S || ns.conn == C_VERIFY_T) && os.conn < C_CONNECTED)
668 rv = SS_NEED_CONNECTION;
669
670 if ((ns.conn == C_VERIFY_S || ns.conn == C_VERIFY_T) &&
671 ns.conn != os.conn && os.conn > C_CONNECTED)
672 rv = SS_RESYNC_RUNNING;
673
674 if ((ns.conn == C_STARTING_SYNC_S || ns.conn == C_STARTING_SYNC_T) &&
675 os.conn < C_CONNECTED)
676 rv = SS_NEED_CONNECTION;
677
678 if ((ns.conn == C_SYNC_TARGET || ns.conn == C_SYNC_SOURCE)
679 && os.conn < C_WF_REPORT_PARAMS)
680 rv = SS_NEED_CONNECTION; /* No NetworkFailure -> SyncTarget etc... */
681
Philipp Reisner2bd5ed52013-03-27 14:08:40 +0100682 if (ns.conn == C_DISCONNECTING && ns.pdsk == D_OUTDATED &&
683 os.conn < C_CONNECTED && os.pdsk > D_OUTDATED)
684 rv = SS_OUTDATE_WO_CONN;
685
Philipp Reisnerb8907332011-01-27 14:07:51 +0100686 return rv;
687}
688
Philipp Reisnerfda74112011-02-10 10:38:06 +0100689static enum drbd_state_rv
690is_valid_conn_transition(enum drbd_conns oc, enum drbd_conns nc)
691{
Lars Ellenbergd9cc6e22011-04-27 10:25:28 +0200692 /* no change -> nothing to do, at least for the connection part */
693 if (oc == nc)
694 return SS_NOTHING_TO_DO;
Philipp Reisnerfda74112011-02-10 10:38:06 +0100695
Lars Ellenbergd9cc6e22011-04-27 10:25:28 +0200696 /* disconnect of an unconfigured connection does not make sense */
697 if (oc == C_STANDALONE && nc == C_DISCONNECTING)
698 return SS_ALREADY_STANDALONE;
699
700 /* from C_STANDALONE, we start with C_UNCONNECTED */
701 if (oc == C_STANDALONE && nc != C_UNCONNECTED)
702 return SS_NEED_CONNECTION;
Philipp Reisnerfda74112011-02-10 10:38:06 +0100703
Philipp Reisner25b0d6c2012-02-14 12:12:35 +0100704 /* When establishing a connection we need to go through WF_REPORT_PARAMS!
705 Necessary to do the right thing upon invalidate-remote on a disconnected resource */
706 if (oc < C_WF_REPORT_PARAMS && nc >= C_CONNECTED)
707 return SS_NEED_CONNECTION;
708
Philipp Reisnerfda74112011-02-10 10:38:06 +0100709 /* After a network error only C_UNCONNECTED or C_DISCONNECTING may follow. */
710 if (oc >= C_TIMEOUT && oc <= C_TEAR_DOWN && nc != C_UNCONNECTED && nc != C_DISCONNECTING)
Lars Ellenbergd9cc6e22011-04-27 10:25:28 +0200711 return SS_IN_TRANSIENT_STATE;
Philipp Reisnerfda74112011-02-10 10:38:06 +0100712
713 /* After C_DISCONNECTING only C_STANDALONE may follow */
714 if (oc == C_DISCONNECTING && nc != C_STANDALONE)
Lars Ellenbergd9cc6e22011-04-27 10:25:28 +0200715 return SS_IN_TRANSIENT_STATE;
Philipp Reisnerfda74112011-02-10 10:38:06 +0100716
Lars Ellenbergd9cc6e22011-04-27 10:25:28 +0200717 return SS_SUCCESS;
Philipp Reisnerfda74112011-02-10 10:38:06 +0100718}
719
720
Philipp Reisnerb8907332011-01-27 14:07:51 +0100721/**
Philipp Reisner35095022011-02-09 16:29:33 +0100722 * is_valid_transition() - Returns an SS_ error code if the state transition is not possible
723 * This limits hard state transitions. Hard state transitions are facts there are
724 * imposed on DRBD by the environment. E.g. disk broke or network broke down.
725 * But those hard state transitions are still not allowed to do everything.
726 * @ns: new state.
727 * @os: old state.
728 */
729static enum drbd_state_rv
730is_valid_transition(union drbd_state os, union drbd_state ns)
731{
Philipp Reisnerfda74112011-02-10 10:38:06 +0100732 enum drbd_state_rv rv;
Philipp Reisner35095022011-02-09 16:29:33 +0100733
Philipp Reisnerfda74112011-02-10 10:38:06 +0100734 rv = is_valid_conn_transition(os.conn, ns.conn);
Philipp Reisner35095022011-02-09 16:29:33 +0100735
736 /* we cannot fail (again) if we already detached */
737 if (ns.disk == D_FAILED && os.disk == D_DISKLESS)
738 rv = SS_IS_DISKLESS;
739
740 return rv;
741}
742
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200743static void print_sanitize_warnings(struct drbd_device *device, enum sanitize_state_warnings warn)
Philipp Reisnerd942ae42011-05-31 13:07:24 +0200744{
745 static const char *msg_table[] = {
746 [NO_WARNING] = "",
747 [ABORTED_ONLINE_VERIFY] = "Online-verify aborted.",
748 [ABORTED_RESYNC] = "Resync aborted.",
749 [CONNECTION_LOST_NEGOTIATING] = "Connection lost while negotiating, no data!",
750 [IMPLICITLY_UPGRADED_DISK] = "Implicitly upgraded disk",
751 [IMPLICITLY_UPGRADED_PDSK] = "Implicitly upgraded pdsk",
752 };
753
754 if (warn != NO_WARNING)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200755 drbd_warn(device, "%s\n", msg_table[warn]);
Philipp Reisnerd942ae42011-05-31 13:07:24 +0200756}
757
Philipp Reisner35095022011-02-09 16:29:33 +0100758/**
Philipp Reisnerb8907332011-01-27 14:07:51 +0100759 * sanitize_state() - Resolves implicitly necessary additional changes to a state transition
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200760 * @device: DRBD device.
Philipp Reisnerb8907332011-01-27 14:07:51 +0100761 * @os: old state.
762 * @ns: new state.
763 * @warn_sync_abort:
764 *
765 * When we loose connection, we have to set the state of the peers disk (pdsk)
766 * to D_UNKNOWN. This rule and many more along those lines are in this function.
767 */
Philipp Reisnerd7fe69c2014-04-28 18:43:13 +0200768static union drbd_state sanitize_state(struct drbd_device *device, union drbd_state os,
769 union drbd_state ns, enum sanitize_state_warnings *warn)
Philipp Reisnerb8907332011-01-27 14:07:51 +0100770{
771 enum drbd_fencing_p fp;
772 enum drbd_disk_state disk_min, disk_max, pdsk_min, pdsk_max;
773
Philipp Reisnerd942ae42011-05-31 13:07:24 +0200774 if (warn)
775 *warn = NO_WARNING;
776
Philipp Reisnerb8907332011-01-27 14:07:51 +0100777 fp = FP_DONT_CARE;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200778 if (get_ldev(device)) {
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200779 rcu_read_lock();
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200780 fp = rcu_dereference(device->ldev->disk_conf)->fencing;
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200781 rcu_read_unlock();
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200782 put_ldev(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100783 }
784
Philipp Reisner35095022011-02-09 16:29:33 +0100785 /* Implications from connection to peer and peer_isp */
Philipp Reisnerb8907332011-01-27 14:07:51 +0100786 if (ns.conn < C_CONNECTED) {
787 ns.peer_isp = 0;
788 ns.peer = R_UNKNOWN;
789 if (ns.pdsk > D_UNKNOWN || ns.pdsk < D_INCONSISTENT)
790 ns.pdsk = D_UNKNOWN;
791 }
792
793 /* Clear the aftr_isp when becoming unconfigured */
794 if (ns.conn == C_STANDALONE && ns.disk == D_DISKLESS && ns.role == R_SECONDARY)
795 ns.aftr_isp = 0;
796
Philipp Reisner4308a0a2011-02-10 11:24:38 +0100797 /* An implication of the disk states onto the connection state */
Philipp Reisnerb8907332011-01-27 14:07:51 +0100798 /* Abort resync if a disk fails/detaches */
Philipp Reisner4308a0a2011-02-10 11:24:38 +0100799 if (ns.conn > C_CONNECTED && (ns.disk <= D_FAILED || ns.pdsk <= D_FAILED)) {
Philipp Reisnerd942ae42011-05-31 13:07:24 +0200800 if (warn)
801 *warn = ns.conn == C_VERIFY_S || ns.conn == C_VERIFY_T ?
802 ABORTED_ONLINE_VERIFY : ABORTED_RESYNC;
Philipp Reisnerb8907332011-01-27 14:07:51 +0100803 ns.conn = C_CONNECTED;
804 }
805
806 /* Connection breaks down before we finished "Negotiating" */
807 if (ns.conn < C_CONNECTED && ns.disk == D_NEGOTIATING &&
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200808 get_ldev_if_state(device, D_NEGOTIATING)) {
809 if (device->ed_uuid == device->ldev->md.uuid[UI_CURRENT]) {
810 ns.disk = device->new_state_tmp.disk;
811 ns.pdsk = device->new_state_tmp.pdsk;
Philipp Reisnerb8907332011-01-27 14:07:51 +0100812 } else {
Philipp Reisnerd942ae42011-05-31 13:07:24 +0200813 if (warn)
814 *warn = CONNECTION_LOST_NEGOTIATING;
Philipp Reisnerb8907332011-01-27 14:07:51 +0100815 ns.disk = D_DISKLESS;
816 ns.pdsk = D_UNKNOWN;
817 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200818 put_ldev(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100819 }
820
821 /* D_CONSISTENT and D_OUTDATED vanish when we get connected */
822 if (ns.conn >= C_CONNECTED && ns.conn < C_AHEAD) {
823 if (ns.disk == D_CONSISTENT || ns.disk == D_OUTDATED)
824 ns.disk = D_UP_TO_DATE;
825 if (ns.pdsk == D_CONSISTENT || ns.pdsk == D_OUTDATED)
826 ns.pdsk = D_UP_TO_DATE;
827 }
828
829 /* Implications of the connection stat on the disk states */
830 disk_min = D_DISKLESS;
831 disk_max = D_UP_TO_DATE;
832 pdsk_min = D_INCONSISTENT;
833 pdsk_max = D_UNKNOWN;
834 switch ((enum drbd_conns)ns.conn) {
835 case C_WF_BITMAP_T:
836 case C_PAUSED_SYNC_T:
837 case C_STARTING_SYNC_T:
838 case C_WF_SYNC_UUID:
839 case C_BEHIND:
840 disk_min = D_INCONSISTENT;
841 disk_max = D_OUTDATED;
842 pdsk_min = D_UP_TO_DATE;
843 pdsk_max = D_UP_TO_DATE;
844 break;
845 case C_VERIFY_S:
846 case C_VERIFY_T:
847 disk_min = D_UP_TO_DATE;
848 disk_max = D_UP_TO_DATE;
849 pdsk_min = D_UP_TO_DATE;
850 pdsk_max = D_UP_TO_DATE;
851 break;
852 case C_CONNECTED:
853 disk_min = D_DISKLESS;
854 disk_max = D_UP_TO_DATE;
855 pdsk_min = D_DISKLESS;
856 pdsk_max = D_UP_TO_DATE;
857 break;
858 case C_WF_BITMAP_S:
859 case C_PAUSED_SYNC_S:
860 case C_STARTING_SYNC_S:
861 case C_AHEAD:
862 disk_min = D_UP_TO_DATE;
863 disk_max = D_UP_TO_DATE;
864 pdsk_min = D_INCONSISTENT;
865 pdsk_max = D_CONSISTENT; /* D_OUTDATED would be nice. But explicit outdate necessary*/
866 break;
867 case C_SYNC_TARGET:
868 disk_min = D_INCONSISTENT;
869 disk_max = D_INCONSISTENT;
870 pdsk_min = D_UP_TO_DATE;
871 pdsk_max = D_UP_TO_DATE;
872 break;
873 case C_SYNC_SOURCE:
874 disk_min = D_UP_TO_DATE;
875 disk_max = D_UP_TO_DATE;
876 pdsk_min = D_INCONSISTENT;
877 pdsk_max = D_INCONSISTENT;
878 break;
879 case C_STANDALONE:
880 case C_DISCONNECTING:
881 case C_UNCONNECTED:
882 case C_TIMEOUT:
883 case C_BROKEN_PIPE:
884 case C_NETWORK_FAILURE:
885 case C_PROTOCOL_ERROR:
886 case C_TEAR_DOWN:
887 case C_WF_CONNECTION:
888 case C_WF_REPORT_PARAMS:
889 case C_MASK:
890 break;
891 }
892 if (ns.disk > disk_max)
893 ns.disk = disk_max;
894
895 if (ns.disk < disk_min) {
Philipp Reisnerd942ae42011-05-31 13:07:24 +0200896 if (warn)
897 *warn = IMPLICITLY_UPGRADED_DISK;
Philipp Reisnerb8907332011-01-27 14:07:51 +0100898 ns.disk = disk_min;
899 }
900 if (ns.pdsk > pdsk_max)
901 ns.pdsk = pdsk_max;
902
903 if (ns.pdsk < pdsk_min) {
Philipp Reisnerd942ae42011-05-31 13:07:24 +0200904 if (warn)
905 *warn = IMPLICITLY_UPGRADED_PDSK;
Philipp Reisnerb8907332011-01-27 14:07:51 +0100906 ns.pdsk = pdsk_min;
907 }
908
909 if (fp == FP_STONITH &&
Philipp Reisnerd7fe69c2014-04-28 18:43:13 +0200910 (ns.role == R_PRIMARY && ns.conn < C_CONNECTED && ns.pdsk > D_OUTDATED) &&
911 !(os.role == R_PRIMARY && os.conn < C_CONNECTED && os.pdsk > D_OUTDATED))
Philipp Reisnerb8907332011-01-27 14:07:51 +0100912 ns.susp_fen = 1; /* Suspend IO while fence-peer handler runs (peer lost) */
913
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +0200914 if (device->resource->res_opts.on_no_data == OND_SUSPEND_IO &&
Philipp Reisnerd7fe69c2014-04-28 18:43:13 +0200915 (ns.role == R_PRIMARY && ns.disk < D_UP_TO_DATE && ns.pdsk < D_UP_TO_DATE) &&
916 !(os.role == R_PRIMARY && os.disk < D_UP_TO_DATE && os.pdsk < D_UP_TO_DATE))
Philipp Reisnerb8907332011-01-27 14:07:51 +0100917 ns.susp_nod = 1; /* Suspend IO while no data available (no accessible data available) */
918
919 if (ns.aftr_isp || ns.peer_isp || ns.user_isp) {
920 if (ns.conn == C_SYNC_SOURCE)
921 ns.conn = C_PAUSED_SYNC_S;
922 if (ns.conn == C_SYNC_TARGET)
923 ns.conn = C_PAUSED_SYNC_T;
924 } else {
925 if (ns.conn == C_PAUSED_SYNC_S)
926 ns.conn = C_SYNC_SOURCE;
927 if (ns.conn == C_PAUSED_SYNC_T)
928 ns.conn = C_SYNC_TARGET;
929 }
930
931 return ns;
932}
933
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200934void drbd_resume_al(struct drbd_device *device)
Philipp Reisnerb8907332011-01-27 14:07:51 +0100935{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200936 if (test_and_clear_bit(AL_SUSPENDED, &device->flags))
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200937 drbd_info(device, "Resumed AL updates\n");
Philipp Reisnerb8907332011-01-27 14:07:51 +0100938}
939
Andreas Gruenbacher28bc3b82014-08-14 18:33:30 +0200940/* helper for _drbd_set_state */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200941static void set_ov_position(struct drbd_device *device, enum drbd_conns cs)
Philipp Reisnerb8907332011-01-27 14:07:51 +0100942{
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +0200943 if (first_peer_device(device)->connection->agreed_pro_version < 90)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200944 device->ov_start_sector = 0;
945 device->rs_total = drbd_bm_bits(device);
946 device->ov_position = 0;
Philipp Reisnerb8907332011-01-27 14:07:51 +0100947 if (cs == C_VERIFY_T) {
948 /* starting online verify from an arbitrary position
949 * does not fit well into the existing protocol.
950 * on C_VERIFY_T, we initialize ov_left and friends
951 * implicitly in receive_DataRequest once the
952 * first P_OV_REQUEST is received */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200953 device->ov_start_sector = ~(sector_t)0;
Philipp Reisnerb8907332011-01-27 14:07:51 +0100954 } else {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200955 unsigned long bit = BM_SECT_TO_BIT(device->ov_start_sector);
956 if (bit >= device->rs_total) {
957 device->ov_start_sector =
958 BM_BIT_TO_SECT(device->rs_total - 1);
959 device->rs_total = 1;
Philipp Reisnerb8907332011-01-27 14:07:51 +0100960 } else
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200961 device->rs_total -= bit;
962 device->ov_position = device->ov_start_sector;
Philipp Reisnerb8907332011-01-27 14:07:51 +0100963 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200964 device->ov_left = device->rs_total;
Philipp Reisnerb8907332011-01-27 14:07:51 +0100965}
966
967/**
Andreas Gruenbacher28bc3b82014-08-14 18:33:30 +0200968 * _drbd_set_state() - Set a new DRBD state
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200969 * @device: DRBD device.
Philipp Reisnerb8907332011-01-27 14:07:51 +0100970 * @ns: new state.
971 * @flags: Flags
972 * @done: Optional completion, that will get completed after the after_state_ch() finished
973 *
Andreas Gruenbacher28bc3b82014-08-14 18:33:30 +0200974 * Caller needs to hold req_lock. Do not call directly.
Philipp Reisnerb8907332011-01-27 14:07:51 +0100975 */
976enum drbd_state_rv
Andreas Gruenbacher28bc3b82014-08-14 18:33:30 +0200977_drbd_set_state(struct drbd_device *device, union drbd_state ns,
978 enum chg_state_flags flags, struct completion *done)
Philipp Reisnerb8907332011-01-27 14:07:51 +0100979{
Lars Ellenberg44a4d552013-11-22 12:40:58 +0100980 struct drbd_peer_device *peer_device = first_peer_device(device);
981 struct drbd_connection *connection = peer_device ? peer_device->connection : NULL;
Philipp Reisnerb8907332011-01-27 14:07:51 +0100982 union drbd_state os;
983 enum drbd_state_rv rv = SS_SUCCESS;
Philipp Reisnerd942ae42011-05-31 13:07:24 +0200984 enum sanitize_state_warnings ssw;
Philipp Reisnerb8907332011-01-27 14:07:51 +0100985 struct after_state_chg_work *ascw;
986
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200987 os = drbd_read_state(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100988
Philipp Reisnerd7fe69c2014-04-28 18:43:13 +0200989 ns = sanitize_state(device, os, ns, &ssw);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100990 if (ns.i == os.i)
991 return SS_NOTHING_TO_DO;
992
Philipp Reisner35095022011-02-09 16:29:33 +0100993 rv = is_valid_transition(os, ns);
994 if (rv < SS_SUCCESS)
995 return rv;
996
Philipp Reisnerb8907332011-01-27 14:07:51 +0100997 if (!(flags & CS_HARD)) {
998 /* pre-state-change checks ; only look at ns */
999 /* See drbd_state_sw_errors in drbd_strings.c */
1000
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001001 rv = is_valid_state(device, ns);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001002 if (rv < SS_SUCCESS) {
1003 /* If the old state was illegal as well, then let
1004 this happen...*/
1005
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001006 if (is_valid_state(device, os) == rv)
Lars Ellenberg44a4d552013-11-22 12:40:58 +01001007 rv = is_valid_soft_transition(os, ns, connection);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001008 } else
Lars Ellenberg44a4d552013-11-22 12:40:58 +01001009 rv = is_valid_soft_transition(os, ns, connection);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001010 }
1011
1012 if (rv < SS_SUCCESS) {
1013 if (flags & CS_VERBOSE)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001014 print_st_err(device, os, ns, rv);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001015 return rv;
1016 }
1017
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001018 print_sanitize_warnings(device, ssw);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001019
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001020 drbd_pr_state_change(device, os, ns, flags);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001021
Philipp Reisner706cb242011-03-29 15:20:27 +02001022 /* Display changes to the susp* flags that where caused by the call to
1023 sanitize_state(). Only display it here if we where not called from
1024 _conn_request_state() */
1025 if (!(flags & CS_DC_SUSP))
Lars Ellenberg44a4d552013-11-22 12:40:58 +01001026 conn_pr_state_change(connection, os, ns,
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001027 (flags & ~CS_DC_MASK) | CS_DC_SUSP);
Philipp Reisner706cb242011-03-29 15:20:27 +02001028
Philipp Reisnerb8907332011-01-27 14:07:51 +01001029 /* if we are going -> D_FAILED or D_DISKLESS, grab one extra reference
1030 * on the ldev here, to be sure the transition -> D_DISKLESS resp.
1031 * drbd_ldev_destroy() won't happen before our corresponding
1032 * after_state_ch works run, where we put_ldev again. */
1033 if ((os.disk != D_FAILED && ns.disk == D_FAILED) ||
1034 (os.disk != D_DISKLESS && ns.disk == D_DISKLESS))
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001035 atomic_inc(&device->local_cnt);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001036
Lars Ellenberg5ab7d2c2014-01-27 15:58:22 +01001037 if (!is_sync_state(os.conn) && is_sync_state(ns.conn))
1038 clear_bit(RS_DONE, &device->flags);
1039
Lars Ellenbergba3c6fb2014-02-11 08:57:18 +01001040 /* changes to local_cnt and device flags should be visible before
1041 * changes to state, which again should be visible before anything else
1042 * depending on that change happens. */
1043 smp_wmb();
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001044 device->state.i = ns.i;
Andreas Gruenbacher6bbf53c2011-07-08 01:19:44 +02001045 device->resource->susp = ns.susp;
1046 device->resource->susp_nod = ns.susp_nod;
1047 device->resource->susp_fen = ns.susp_fen;
Lars Ellenbergba3c6fb2014-02-11 08:57:18 +01001048 smp_wmb();
Philipp Reisnerb8907332011-01-27 14:07:51 +01001049
Lars Ellenberg2681f7f2013-01-21 15:43:41 +01001050 /* put replicated vs not-replicated requests in seperate epochs */
Lars Ellenbergba3c6fb2014-02-11 08:57:18 +01001051 if (drbd_should_do_remote((union drbd_dev_state)os.i) !=
1052 drbd_should_do_remote((union drbd_dev_state)ns.i))
Lars Ellenberg44a4d552013-11-22 12:40:58 +01001053 start_new_tl_epoch(connection);
Lars Ellenberg2681f7f2013-01-21 15:43:41 +01001054
Philipp Reisnerb8907332011-01-27 14:07:51 +01001055 if (os.disk == D_ATTACHING && ns.disk >= D_NEGOTIATING)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001056 drbd_print_uuids(device, "attached to UUIDs");
Philipp Reisnerb8907332011-01-27 14:07:51 +01001057
Philipp Reisner79702012012-08-28 11:33:35 +02001058 /* Wake up role changes, that were delayed because of connection establishing */
1059 if (os.conn == C_WF_REPORT_PARAMS && ns.conn != C_WF_REPORT_PARAMS &&
Philipp Reisnera8821532014-11-10 17:21:11 +01001060 no_peer_wf_report_params(connection)) {
Lars Ellenberg44a4d552013-11-22 12:40:58 +01001061 clear_bit(STATE_SENT, &connection->flags);
Philipp Reisnera8821532014-11-10 17:21:11 +01001062 wake_up_all_devices(connection);
1063 }
Philipp Reisner79702012012-08-28 11:33:35 +02001064
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001065 wake_up(&device->misc_wait);
1066 wake_up(&device->state_wait);
Lars Ellenberg44a4d552013-11-22 12:40:58 +01001067 wake_up(&connection->ping_wait);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001068
Lars Ellenberg58ffa582012-07-26 14:09:49 +02001069 /* Aborted verify run, or we reached the stop sector.
1070 * Log the last position, unless end-of-device. */
Philipp Reisnerb8907332011-01-27 14:07:51 +01001071 if ((os.conn == C_VERIFY_S || os.conn == C_VERIFY_T) &&
Lars Ellenberg58ffa582012-07-26 14:09:49 +02001072 ns.conn <= C_CONNECTED) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001073 device->ov_start_sector =
1074 BM_BIT_TO_SECT(drbd_bm_bits(device) - device->ov_left);
1075 if (device->ov_left)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001076 drbd_info(device, "Online Verify reached sector %llu\n",
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001077 (unsigned long long)device->ov_start_sector);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001078 }
1079
1080 if ((os.conn == C_PAUSED_SYNC_T || os.conn == C_PAUSED_SYNC_S) &&
1081 (ns.conn == C_SYNC_TARGET || ns.conn == C_SYNC_SOURCE)) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001082 drbd_info(device, "Syncer continues.\n");
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001083 device->rs_paused += (long)jiffies
1084 -(long)device->rs_mark_time[device->rs_last_mark];
Philipp Reisnerb8907332011-01-27 14:07:51 +01001085 if (ns.conn == C_SYNC_TARGET)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001086 mod_timer(&device->resync_timer, jiffies);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001087 }
1088
1089 if ((os.conn == C_SYNC_TARGET || os.conn == C_SYNC_SOURCE) &&
1090 (ns.conn == C_PAUSED_SYNC_T || ns.conn == C_PAUSED_SYNC_S)) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001091 drbd_info(device, "Resync suspended\n");
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001092 device->rs_mark_time[device->rs_last_mark] = jiffies;
Philipp Reisnerb8907332011-01-27 14:07:51 +01001093 }
1094
1095 if (os.conn == C_CONNECTED &&
1096 (ns.conn == C_VERIFY_S || ns.conn == C_VERIFY_T)) {
1097 unsigned long now = jiffies;
1098 int i;
1099
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001100 set_ov_position(device, ns.conn);
1101 device->rs_start = now;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001102 device->rs_last_sect_ev = 0;
1103 device->ov_last_oos_size = 0;
1104 device->ov_last_oos_start = 0;
Philipp Reisnerb8907332011-01-27 14:07:51 +01001105
1106 for (i = 0; i < DRBD_SYNC_MARKS; i++) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001107 device->rs_mark_left[i] = device->ov_left;
1108 device->rs_mark_time[i] = now;
Philipp Reisnerb8907332011-01-27 14:07:51 +01001109 }
1110
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001111 drbd_rs_controller_reset(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001112
1113 if (ns.conn == C_VERIFY_S) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001114 drbd_info(device, "Starting Online Verify from sector %llu\n",
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001115 (unsigned long long)device->ov_position);
1116 mod_timer(&device->resync_timer, jiffies);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001117 }
1118 }
1119
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001120 if (get_ldev(device)) {
1121 u32 mdf = device->ldev->md.flags & ~(MDF_CONSISTENT|MDF_PRIMARY_IND|
Philipp Reisnerb8907332011-01-27 14:07:51 +01001122 MDF_CONNECTED_IND|MDF_WAS_UP_TO_DATE|
1123 MDF_PEER_OUT_DATED|MDF_CRASHED_PRIMARY);
1124
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02001125 mdf &= ~MDF_AL_CLEAN;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001126 if (test_bit(CRASHED_PRIMARY, &device->flags))
Philipp Reisnerb8907332011-01-27 14:07:51 +01001127 mdf |= MDF_CRASHED_PRIMARY;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001128 if (device->state.role == R_PRIMARY ||
1129 (device->state.pdsk < D_INCONSISTENT && device->state.peer == R_PRIMARY))
Philipp Reisnerb8907332011-01-27 14:07:51 +01001130 mdf |= MDF_PRIMARY_IND;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001131 if (device->state.conn > C_WF_REPORT_PARAMS)
Philipp Reisnerb8907332011-01-27 14:07:51 +01001132 mdf |= MDF_CONNECTED_IND;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001133 if (device->state.disk > D_INCONSISTENT)
Philipp Reisnerb8907332011-01-27 14:07:51 +01001134 mdf |= MDF_CONSISTENT;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001135 if (device->state.disk > D_OUTDATED)
Philipp Reisnerb8907332011-01-27 14:07:51 +01001136 mdf |= MDF_WAS_UP_TO_DATE;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001137 if (device->state.pdsk <= D_OUTDATED && device->state.pdsk >= D_INCONSISTENT)
Philipp Reisnerb8907332011-01-27 14:07:51 +01001138 mdf |= MDF_PEER_OUT_DATED;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001139 if (mdf != device->ldev->md.flags) {
1140 device->ldev->md.flags = mdf;
1141 drbd_md_mark_dirty(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001142 }
1143 if (os.disk < D_CONSISTENT && ns.disk >= D_CONSISTENT)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001144 drbd_set_ed_uuid(device, device->ldev->md.uuid[UI_CURRENT]);
1145 put_ldev(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001146 }
1147
1148 /* Peer was forced D_UP_TO_DATE & R_PRIMARY, consider to resync */
1149 if (os.disk == D_INCONSISTENT && os.pdsk == D_INCONSISTENT &&
1150 os.peer == R_SECONDARY && ns.peer == R_PRIMARY)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001151 set_bit(CONSIDER_RESYNC, &device->flags);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001152
1153 /* Receiver should clean up itself */
1154 if (os.conn != C_DISCONNECTING && ns.conn == C_DISCONNECTING)
Lars Ellenberg44a4d552013-11-22 12:40:58 +01001155 drbd_thread_stop_nowait(&connection->receiver);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001156
1157 /* Now the receiver finished cleaning up itself, it should die */
1158 if (os.conn != C_STANDALONE && ns.conn == C_STANDALONE)
Lars Ellenberg44a4d552013-11-22 12:40:58 +01001159 drbd_thread_stop_nowait(&connection->receiver);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001160
1161 /* Upon network failure, we need to restart the receiver. */
Philipp Reisner823bd832012-11-08 15:04:36 +01001162 if (os.conn > C_WF_CONNECTION &&
Philipp Reisnerb8907332011-01-27 14:07:51 +01001163 ns.conn <= C_TEAR_DOWN && ns.conn >= C_TIMEOUT)
Lars Ellenberg44a4d552013-11-22 12:40:58 +01001164 drbd_thread_restart_nowait(&connection->receiver);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001165
1166 /* Resume AL writing if we get a connection */
Philipp Reisner28e448b2013-06-25 16:50:06 +02001167 if (os.conn < C_CONNECTED && ns.conn >= C_CONNECTED) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001168 drbd_resume_al(device);
Lars Ellenberg44a4d552013-11-22 12:40:58 +01001169 connection->connect_cnt++;
Philipp Reisner28e448b2013-06-25 16:50:06 +02001170 }
Philipp Reisnerb8907332011-01-27 14:07:51 +01001171
Lars Ellenberg07be15b2012-05-07 11:53:08 +02001172 /* remember last attach time so request_timer_fn() won't
1173 * kill newly established sessions while we are still trying to thaw
1174 * previously frozen IO */
1175 if ((os.disk == D_ATTACHING || os.disk == D_NEGOTIATING) &&
1176 ns.disk > D_NEGOTIATING)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001177 device->last_reattach_jif = jiffies;
Lars Ellenberg07be15b2012-05-07 11:53:08 +02001178
Philipp Reisnerb8907332011-01-27 14:07:51 +01001179 ascw = kmalloc(sizeof(*ascw), GFP_ATOMIC);
1180 if (ascw) {
1181 ascw->os = os;
1182 ascw->ns = ns;
1183 ascw->flags = flags;
1184 ascw->w.cb = w_after_state_ch;
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02001185 ascw->device = device;
Philipp Reisnerb8907332011-01-27 14:07:51 +01001186 ascw->done = done;
Lars Ellenberg44a4d552013-11-22 12:40:58 +01001187 drbd_queue_work(&connection->sender_work,
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02001188 &ascw->w);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001189 } else {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001190 drbd_err(device, "Could not kmalloc an ascw\n");
Philipp Reisnerb8907332011-01-27 14:07:51 +01001191 }
1192
1193 return rv;
1194}
1195
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001196static int w_after_state_ch(struct drbd_work *w, int unused)
Philipp Reisnerb8907332011-01-27 14:07:51 +01001197{
1198 struct after_state_chg_work *ascw =
1199 container_of(w, struct after_state_chg_work, w);
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02001200 struct drbd_device *device = ascw->device;
Philipp Reisnerb8907332011-01-27 14:07:51 +01001201
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001202 after_state_ch(device, ascw->os, ascw->ns, ascw->flags);
Andreas Gruenbacher137975c2011-08-24 08:19:41 +02001203 if (ascw->flags & CS_WAIT_COMPLETE)
Philipp Reisnerb8907332011-01-27 14:07:51 +01001204 complete(ascw->done);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001205 kfree(ascw);
1206
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001207 return 0;
Philipp Reisnerb8907332011-01-27 14:07:51 +01001208}
1209
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001210static void abw_start_sync(struct drbd_device *device, int rv)
Philipp Reisnerb8907332011-01-27 14:07:51 +01001211{
1212 if (rv) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001213 drbd_err(device, "Writing the bitmap failed not starting resync.\n");
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001214 _drbd_request_state(device, NS(conn, C_CONNECTED), CS_VERBOSE);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001215 return;
1216 }
1217
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001218 switch (device->state.conn) {
Philipp Reisnerb8907332011-01-27 14:07:51 +01001219 case C_STARTING_SYNC_T:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001220 _drbd_request_state(device, NS(conn, C_WF_SYNC_UUID), CS_VERBOSE);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001221 break;
1222 case C_STARTING_SYNC_S:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001223 drbd_start_resync(device, C_SYNC_SOURCE);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001224 break;
1225 }
1226}
1227
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001228int drbd_bitmap_io_from_worker(struct drbd_device *device,
Andreas Gruenbacher54761692011-05-30 16:15:21 +02001229 int (*io_fn)(struct drbd_device *),
Philipp Reisnerb8907332011-01-27 14:07:51 +01001230 char *why, enum bm_flag flags)
1231{
1232 int rv;
1233
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02001234 D_ASSERT(device, current == first_peer_device(device)->connection->worker.task);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001235
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001236 /* open coded non-blocking drbd_suspend_io(device); */
1237 set_bit(SUSPEND_IO, &device->flags);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001238
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001239 drbd_bm_lock(device, why, flags);
1240 rv = io_fn(device);
1241 drbd_bm_unlock(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001242
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001243 drbd_resume_io(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001244
1245 return rv;
1246}
1247
1248/**
1249 * after_state_ch() - Perform after state change actions that may sleep
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001250 * @device: DRBD device.
Philipp Reisnerb8907332011-01-27 14:07:51 +01001251 * @os: old state.
1252 * @ns: new state.
1253 * @flags: Flags
1254 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001255static void after_state_ch(struct drbd_device *device, union drbd_state os,
Philipp Reisnerb8907332011-01-27 14:07:51 +01001256 union drbd_state ns, enum chg_state_flags flags)
1257{
Andreas Gruenbacher6bbf53c2011-07-08 01:19:44 +02001258 struct drbd_resource *resource = device->resource;
Lars Ellenberg44a4d552013-11-22 12:40:58 +01001259 struct drbd_peer_device *peer_device = first_peer_device(device);
1260 struct drbd_connection *connection = peer_device ? peer_device->connection : NULL;
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01001261 struct sib_info sib;
1262
1263 sib.sib_reason = SIB_STATE_CHANGE;
1264 sib.os = os;
1265 sib.ns = ns;
Philipp Reisnerb8907332011-01-27 14:07:51 +01001266
Lars Ellenberg2f2abea2014-03-27 10:34:13 +01001267 if ((os.disk != D_UP_TO_DATE || os.pdsk != D_UP_TO_DATE)
1268 && (ns.disk == D_UP_TO_DATE && ns.pdsk == D_UP_TO_DATE)) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001269 clear_bit(CRASHED_PRIMARY, &device->flags);
1270 if (device->p_uuid)
1271 device->p_uuid[UI_FLAGS] &= ~((u64)2);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001272 }
1273
Philipp Reisnerb8907332011-01-27 14:07:51 +01001274 /* Inform userspace about the change... */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001275 drbd_bcast_event(device, &sib);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001276
1277 if (!(os.role == R_PRIMARY && os.disk < D_UP_TO_DATE && os.pdsk < D_UP_TO_DATE) &&
1278 (ns.role == R_PRIMARY && ns.disk < D_UP_TO_DATE && ns.pdsk < D_UP_TO_DATE))
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001279 drbd_khelper(device, "pri-on-incon-degr");
Philipp Reisnerb8907332011-01-27 14:07:51 +01001280
1281 /* Here we have the actions that are performed after a
1282 state change. This function might sleep */
1283
Philipp Reisnerb8907332011-01-27 14:07:51 +01001284 if (ns.susp_nod) {
Philipp Reisnera6d00c82011-03-29 18:16:11 +02001285 enum drbd_req_event what = NOTHING;
1286
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001287 spin_lock_irq(&device->resource->req_lock);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001288 if (os.conn < C_CONNECTED && conn_lowest_conn(connection) >= C_CONNECTED)
Philipp Reisnerb8907332011-01-27 14:07:51 +01001289 what = RESEND;
1290
Philipp Reisner3fb47462011-07-15 18:44:26 +02001291 if ((os.disk == D_ATTACHING || os.disk == D_NEGOTIATING) &&
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001292 conn_lowest_disk(connection) > D_NEGOTIATING)
Philipp Reisnerb8907332011-01-27 14:07:51 +01001293 what = RESTART_FROZEN_DISK_IO;
1294
Andreas Gruenbacher6bbf53c2011-07-08 01:19:44 +02001295 if (resource->susp_nod && what != NOTHING) {
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001296 _tl_restart(connection, what);
1297 _conn_request_state(connection,
Philipp Reisner892fdd12012-08-27 17:20:12 +02001298 (union drbd_state) { { .susp_nod = 1 } },
1299 (union drbd_state) { { .susp_nod = 0 } },
1300 CS_VERBOSE);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001301 }
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001302 spin_unlock_irq(&device->resource->req_lock);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001303 }
1304
Philipp Reisner88f79ec2012-08-27 17:16:21 +02001305 if (ns.susp_fen) {
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001306 spin_lock_irq(&device->resource->req_lock);
Andreas Gruenbacher6bbf53c2011-07-08 01:19:44 +02001307 if (resource->susp_fen && conn_lowest_conn(connection) >= C_CONNECTED) {
Philipp Reisner88f79ec2012-08-27 17:16:21 +02001308 /* case2: The connection was established again: */
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02001309 struct drbd_peer_device *peer_device;
Philipp Reisner88f79ec2012-08-27 17:16:21 +02001310 int vnr;
1311
1312 rcu_read_lock();
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02001313 idr_for_each_entry(&connection->peer_devices, peer_device, vnr)
1314 clear_bit(NEW_CUR_UUID, &peer_device->device->flags);
Philipp Reisner88f79ec2012-08-27 17:16:21 +02001315 rcu_read_unlock();
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001316 _tl_restart(connection, RESEND);
1317 _conn_request_state(connection,
Philipp Reisner88f79ec2012-08-27 17:16:21 +02001318 (union drbd_state) { { .susp_fen = 1 } },
1319 (union drbd_state) { { .susp_fen = 0 } },
1320 CS_VERBOSE);
1321 }
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001322 spin_unlock_irq(&device->resource->req_lock);
Philipp Reisner88f79ec2012-08-27 17:16:21 +02001323 }
1324
Philipp Reisnerb8907332011-01-27 14:07:51 +01001325 /* Became sync source. With protocol >= 96, we still need to send out
1326 * the sync uuid now. Need to do that before any drbd_send_state, or
1327 * the other side may go "paused sync" before receiving the sync uuids,
1328 * which is unexpected. */
1329 if ((os.conn != C_SYNC_SOURCE && os.conn != C_PAUSED_SYNC_S) &&
1330 (ns.conn == C_SYNC_SOURCE || ns.conn == C_PAUSED_SYNC_S) &&
Lars Ellenberg44a4d552013-11-22 12:40:58 +01001331 connection->agreed_pro_version >= 96 && get_ldev(device)) {
1332 drbd_gen_and_send_sync_uuid(peer_device);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001333 put_ldev(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001334 }
1335
1336 /* Do not change the order of the if above and the two below... */
Philipp Reisner369bea62011-07-06 23:04:44 +02001337 if (os.pdsk == D_DISKLESS &&
1338 ns.pdsk > D_DISKLESS && ns.pdsk != D_UNKNOWN) { /* attach on the peer */
Lars Ellenberga3248962012-07-30 09:10:41 +02001339 /* we probably will start a resync soon.
1340 * make sure those things are properly reset. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001341 device->rs_total = 0;
1342 device->rs_failed = 0;
1343 atomic_set(&device->rs_pending_cnt, 0);
1344 drbd_rs_cancel_all(device);
Lars Ellenberga3248962012-07-30 09:10:41 +02001345
Lars Ellenberg44a4d552013-11-22 12:40:58 +01001346 drbd_send_uuids(peer_device);
1347 drbd_send_state(peer_device, ns);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001348 }
1349 /* No point in queuing send_bitmap if we don't have a connection
1350 * anymore, so check also the _current_ state, not only the new state
1351 * at the time this work was queued. */
1352 if (os.conn != C_WF_BITMAP_S && ns.conn == C_WF_BITMAP_S &&
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001353 device->state.conn == C_WF_BITMAP_S)
1354 drbd_queue_bitmap_io(device, &drbd_send_bitmap, NULL,
Philipp Reisnerb8907332011-01-27 14:07:51 +01001355 "send_bitmap (WFBitMapS)",
1356 BM_LOCKED_TEST_ALLOWED);
1357
1358 /* Lost contact to peer's copy of the data */
1359 if ((os.pdsk >= D_INCONSISTENT &&
1360 os.pdsk != D_UNKNOWN &&
1361 os.pdsk != D_OUTDATED)
1362 && (ns.pdsk < D_INCONSISTENT ||
1363 ns.pdsk == D_UNKNOWN ||
1364 ns.pdsk == D_OUTDATED)) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001365 if (get_ldev(device)) {
Philipp Reisnerb8907332011-01-27 14:07:51 +01001366 if ((ns.role == R_PRIMARY || ns.peer == R_PRIMARY) &&
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001367 device->ldev->md.uuid[UI_BITMAP] == 0 && ns.disk >= D_UP_TO_DATE) {
1368 if (drbd_suspended(device)) {
1369 set_bit(NEW_CUR_UUID, &device->flags);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001370 } else {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001371 drbd_uuid_new_current(device);
Lars Ellenberg44a4d552013-11-22 12:40:58 +01001372 drbd_send_uuids(peer_device);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001373 }
1374 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001375 put_ldev(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001376 }
1377 }
1378
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001379 if (ns.pdsk < D_INCONSISTENT && get_ldev(device)) {
Philipp Reisner0cfac5d2011-11-10 12:12:52 +01001380 if (os.peer == R_SECONDARY && ns.peer == R_PRIMARY &&
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001381 device->ldev->md.uuid[UI_BITMAP] == 0 && ns.disk >= D_UP_TO_DATE) {
1382 drbd_uuid_new_current(device);
Lars Ellenberg44a4d552013-11-22 12:40:58 +01001383 drbd_send_uuids(peer_device);
Philipp Reisner0cfac5d2011-11-10 12:12:52 +01001384 }
Philipp Reisnerb8907332011-01-27 14:07:51 +01001385 /* D_DISKLESS Peer becomes secondary */
1386 if (os.peer == R_PRIMARY && ns.peer == R_SECONDARY)
1387 /* We may still be Primary ourselves.
1388 * No harm done if the bitmap still changes,
1389 * redirtied pages will follow later. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001390 drbd_bitmap_io_from_worker(device, &drbd_bm_write,
Philipp Reisnerb8907332011-01-27 14:07:51 +01001391 "demote diskless peer", BM_LOCKED_SET_ALLOWED);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001392 put_ldev(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001393 }
1394
1395 /* Write out all changed bits on demote.
1396 * Though, no need to da that just yet
1397 * if there is a resync going on still */
1398 if (os.role == R_PRIMARY && ns.role == R_SECONDARY &&
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001399 device->state.conn <= C_CONNECTED && get_ldev(device)) {
Philipp Reisnerb8907332011-01-27 14:07:51 +01001400 /* No changes to the bitmap expected this time, so assert that,
1401 * even though no harm was done if it did change. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001402 drbd_bitmap_io_from_worker(device, &drbd_bm_write,
Philipp Reisnerb8907332011-01-27 14:07:51 +01001403 "demote", BM_LOCKED_TEST_ALLOWED);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001404 put_ldev(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001405 }
1406
1407 /* Last part of the attaching process ... */
1408 if (ns.conn >= C_CONNECTED &&
1409 os.disk == D_ATTACHING && ns.disk == D_NEGOTIATING) {
Lars Ellenberg44a4d552013-11-22 12:40:58 +01001410 drbd_send_sizes(peer_device, 0, 0); /* to start sync... */
1411 drbd_send_uuids(peer_device);
1412 drbd_send_state(peer_device, ns);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001413 }
1414
1415 /* We want to pause/continue resync, tell peer. */
1416 if (ns.conn >= C_CONNECTED &&
1417 ((os.aftr_isp != ns.aftr_isp) ||
1418 (os.user_isp != ns.user_isp)))
Lars Ellenberg44a4d552013-11-22 12:40:58 +01001419 drbd_send_state(peer_device, ns);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001420
1421 /* In case one of the isp bits got set, suspend other devices. */
1422 if ((!os.aftr_isp && !os.peer_isp && !os.user_isp) &&
1423 (ns.aftr_isp || ns.peer_isp || ns.user_isp))
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001424 suspend_other_sg(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001425
1426 /* Make sure the peer gets informed about eventual state
1427 changes (ISP bits) while we were in WFReportParams. */
1428 if (os.conn == C_WF_REPORT_PARAMS && ns.conn >= C_CONNECTED)
Lars Ellenberg44a4d552013-11-22 12:40:58 +01001429 drbd_send_state(peer_device, ns);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001430
1431 if (os.conn != C_AHEAD && ns.conn == C_AHEAD)
Lars Ellenberg44a4d552013-11-22 12:40:58 +01001432 drbd_send_state(peer_device, ns);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001433
1434 /* We are in the progress to start a full sync... */
1435 if ((os.conn != C_STARTING_SYNC_T && ns.conn == C_STARTING_SYNC_T) ||
1436 (os.conn != C_STARTING_SYNC_S && ns.conn == C_STARTING_SYNC_S))
1437 /* no other bitmap changes expected during this phase */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001438 drbd_queue_bitmap_io(device,
Philipp Reisnerb8907332011-01-27 14:07:51 +01001439 &drbd_bmio_set_n_write, &abw_start_sync,
1440 "set_n_write from StartingSync", BM_LOCKED_TEST_ALLOWED);
1441
Philipp Reisnerb8907332011-01-27 14:07:51 +01001442 /* first half of local IO error, failure to attach,
1443 * or administrative detach */
1444 if (os.disk != D_FAILED && ns.disk == D_FAILED) {
Philipp Reisner32db80f2012-02-22 11:51:57 +01001445 enum drbd_io_error_p eh = EP_PASS_ON;
1446 int was_io_error = 0;
Andreas Gruenbacher28bc3b82014-08-14 18:33:30 +02001447 /* corresponding get_ldev was in _drbd_set_state, to serialize
Philipp Reisner32db80f2012-02-22 11:51:57 +01001448 * our cleanup here with the transition to D_DISKLESS.
1449 * But is is still not save to dreference ldev here, since
1450 * we might come from an failed Attach before ldev was set. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001451 if (device->ldev) {
Philipp Reisner32db80f2012-02-22 11:51:57 +01001452 rcu_read_lock();
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001453 eh = rcu_dereference(device->ldev->disk_conf)->on_io_error;
Philipp Reisner32db80f2012-02-22 11:51:57 +01001454 rcu_read_unlock();
Philipp Reisnerb8907332011-01-27 14:07:51 +01001455
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001456 was_io_error = test_and_clear_bit(WAS_IO_ERROR, &device->flags);
Philipp Reisnercdfda632011-07-05 15:38:59 +02001457
Lars Ellenberg6f1a6562012-07-30 09:11:01 +02001458 if (was_io_error && eh == EP_CALL_HELPER)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001459 drbd_khelper(device, "local-io-error");
Lars Ellenberg6f1a6562012-07-30 09:11:01 +02001460
Lars Ellenberg0c849662012-07-30 09:07:28 +02001461 /* Immediately allow completion of all application IO,
1462 * that waits for completion from the local disk,
1463 * if this was a force-detach due to disk_timeout
1464 * or administrator request (drbdsetup detach --force).
1465 * Do NOT abort otherwise.
1466 * Aborting local requests may cause serious problems,
1467 * if requests are completed to upper layers already,
1468 * and then later the already submitted local bio completes.
1469 * This can cause DMA into former bio pages that meanwhile
1470 * have been re-used for other things.
1471 * So aborting local requests may cause crashes,
1472 * or even worse, silent data corruption.
1473 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001474 if (test_and_clear_bit(FORCE_DETACH, &device->flags))
1475 tl_abort_disk_io(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001476
Philipp Reisner32db80f2012-02-22 11:51:57 +01001477 /* current state still has to be D_FAILED,
1478 * there is only one way out: to D_DISKLESS,
1479 * and that may only happen after our put_ldev below. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001480 if (device->state.disk != D_FAILED)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001481 drbd_err(device,
Philipp Reisner32db80f2012-02-22 11:51:57 +01001482 "ASSERT FAILED: disk is %s during detach\n",
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001483 drbd_disk_str(device->state.disk));
Philipp Reisner6ab9b1b2011-12-13 18:32:18 +01001484
Philipp Reisner32db80f2012-02-22 11:51:57 +01001485 if (ns.conn >= C_CONNECTED)
Lars Ellenberg44a4d552013-11-22 12:40:58 +01001486 drbd_send_state(peer_device, ns);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001487
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001488 drbd_rs_cancel_all(device);
Philipp Reisner32db80f2012-02-22 11:51:57 +01001489
1490 /* In case we want to get something to stable storage still,
1491 * this may be the last chance.
1492 * Following put_ldev may transition to D_DISKLESS. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001493 drbd_md_sync(device);
Philipp Reisner32db80f2012-02-22 11:51:57 +01001494 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001495 put_ldev(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001496 }
1497
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001498 /* second half of local IO error, failure to attach,
1499 * or administrative detach,
1500 * after local_cnt references have reached zero again */
1501 if (os.disk != D_DISKLESS && ns.disk == D_DISKLESS) {
1502 /* We must still be diskless,
1503 * re-attach has to be serialized with this! */
1504 if (device->state.disk != D_DISKLESS)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001505 drbd_err(device,
1506 "ASSERT FAILED: disk is %s while going diskless\n",
1507 drbd_disk_str(device->state.disk));
Philipp Reisnerb8907332011-01-27 14:07:51 +01001508
Philipp Reisner6ab9b1b2011-12-13 18:32:18 +01001509 if (ns.conn >= C_CONNECTED)
Lars Ellenberg44a4d552013-11-22 12:40:58 +01001510 drbd_send_state(peer_device, ns);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001511 /* corresponding get_ldev in __drbd_set_state
1512 * this may finally trigger drbd_ldev_destroy. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001513 put_ldev(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001514 }
1515
1516 /* Notify peer that I had a local IO error, and did not detached.. */
Philipp Reisner6ab9b1b2011-12-13 18:32:18 +01001517 if (os.disk == D_UP_TO_DATE && ns.disk == D_INCONSISTENT && ns.conn >= C_CONNECTED)
Lars Ellenberg44a4d552013-11-22 12:40:58 +01001518 drbd_send_state(peer_device, ns);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001519
1520 /* Disks got bigger while they were detached */
1521 if (ns.disk > D_NEGOTIATING && ns.pdsk > D_NEGOTIATING &&
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001522 test_and_clear_bit(RESYNC_AFTER_NEG, &device->flags)) {
Philipp Reisnerb8907332011-01-27 14:07:51 +01001523 if (ns.conn == C_CONNECTED)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001524 resync_after_online_grow(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001525 }
1526
1527 /* A resync finished or aborted, wake paused devices... */
1528 if ((os.conn > C_CONNECTED && ns.conn <= C_CONNECTED) ||
1529 (os.peer_isp && !ns.peer_isp) ||
1530 (os.user_isp && !ns.user_isp))
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001531 resume_next_sg(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001532
1533 /* sync target done with resync. Explicitly notify peer, even though
1534 * it should (at least for non-empty resyncs) already know itself. */
1535 if (os.disk < D_UP_TO_DATE && os.conn >= C_SYNC_SOURCE && ns.conn == C_CONNECTED)
Lars Ellenberg44a4d552013-11-22 12:40:58 +01001536 drbd_send_state(peer_device, ns);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001537
Lars Ellenberg58ffa582012-07-26 14:09:49 +02001538 /* Verify finished, or reached stop sector. Peer did not know about
1539 * the stop sector, and we may even have changed the stop sector during
1540 * verify to interrupt/stop early. Send the new state. */
1541 if (os.conn == C_VERIFY_S && ns.conn == C_CONNECTED
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001542 && verify_can_do_stop_sector(device))
Lars Ellenberg44a4d552013-11-22 12:40:58 +01001543 drbd_send_state(peer_device, ns);
Lars Ellenberg58ffa582012-07-26 14:09:49 +02001544
Philipp Reisnerb8907332011-01-27 14:07:51 +01001545 /* This triggers bitmap writeout of potentially still unwritten pages
1546 * if the resync finished cleanly, or aborted because of peer disk
1547 * failure, or because of connection loss.
1548 * For resync aborted because of local disk failure, we cannot do
1549 * any bitmap writeout anymore.
1550 * No harm done if some bits change during this phase.
1551 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001552 if (os.conn > C_CONNECTED && ns.conn <= C_CONNECTED && get_ldev(device)) {
1553 drbd_queue_bitmap_io(device, &drbd_bm_write_copy_pages, NULL,
Lars Ellenberga220d292012-05-07 12:07:18 +02001554 "write from resync_finished", BM_LOCKED_CHANGE_ALLOWED);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001555 put_ldev(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001556 }
1557
1558 if (ns.disk == D_DISKLESS &&
1559 ns.conn == C_STANDALONE &&
1560 ns.role == R_SECONDARY) {
1561 if (os.aftr_isp != ns.aftr_isp)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001562 resume_next_sg(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001563 }
1564
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001565 drbd_md_sync(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001566}
1567
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001568struct after_conn_state_chg_work {
Andreas Gruenbacher4c007602011-08-25 15:14:48 +02001569 struct drbd_work w;
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001570 enum drbd_conns oc;
Philipp Reisner8c7e16c2011-03-29 14:01:02 +02001571 union drbd_state ns_min;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001572 union drbd_state ns_max; /* new, max state, over all devices */
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001573 enum chg_state_flags flags;
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02001574 struct drbd_connection *connection;
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001575};
Philipp Reisnerb8907332011-01-27 14:07:51 +01001576
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001577static int w_after_conn_state_ch(struct drbd_work *w, int unused)
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001578{
1579 struct after_conn_state_chg_work *acscw =
Andreas Gruenbacher4c007602011-08-25 15:14:48 +02001580 container_of(w, struct after_conn_state_chg_work, w);
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02001581 struct drbd_connection *connection = acscw->connection;
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001582 enum drbd_conns oc = acscw->oc;
Philipp Reisner5f082f92011-03-29 13:20:58 +02001583 union drbd_state ns_max = acscw->ns_max;
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02001584 struct drbd_peer_device *peer_device;
Philipp Reisnera6d00c82011-03-29 18:16:11 +02001585 int vnr;
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001586
1587 kfree(acscw);
1588
1589 /* Upon network configuration, we need to start the receiver */
Philipp Reisner5f082f92011-03-29 13:20:58 +02001590 if (oc == C_STANDALONE && ns_max.conn == C_UNCONNECTED)
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001591 drbd_thread_start(&connection->receiver);
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001592
Lars Ellenbergf3dfa402011-05-02 10:45:05 +02001593 if (oc == C_DISCONNECTING && ns_max.conn == C_STANDALONE) {
1594 struct net_conf *old_conf;
1595
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001596 mutex_lock(&connection->resource->conf_update);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001597 old_conf = connection->net_conf;
1598 connection->my_addr_len = 0;
1599 connection->peer_addr_len = 0;
Monam Agarwalccdd6a92014-03-23 02:02:29 +05301600 RCU_INIT_POINTER(connection->net_conf, NULL);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001601 conn_free_crypto(connection);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001602 mutex_unlock(&connection->resource->conf_update);
Lars Ellenbergf3dfa402011-05-02 10:45:05 +02001603
1604 synchronize_rcu();
1605 kfree(old_conf);
1606 }
1607
Philipp Reisnera6d00c82011-03-29 18:16:11 +02001608 if (ns_max.susp_fen) {
1609 /* case1: The outdate peer handler is successful: */
1610 if (ns_max.pdsk <= D_OUTDATED) {
Philipp Reisner695d08f2011-04-11 22:53:32 -07001611 rcu_read_lock();
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02001612 idr_for_each_entry(&connection->peer_devices, peer_device, vnr) {
1613 struct drbd_device *device = peer_device->device;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001614 if (test_bit(NEW_CUR_UUID, &device->flags)) {
1615 drbd_uuid_new_current(device);
1616 clear_bit(NEW_CUR_UUID, &device->flags);
Philipp Reisnera6d00c82011-03-29 18:16:11 +02001617 }
1618 }
Philipp Reisner695d08f2011-04-11 22:53:32 -07001619 rcu_read_unlock();
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001620 spin_lock_irq(&connection->resource->req_lock);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001621 _tl_restart(connection, CONNECTION_LOST_WHILE_PENDING);
1622 _conn_request_state(connection,
Philipp Reisner8a0bab22012-08-07 13:28:00 +02001623 (union drbd_state) { { .susp_fen = 1 } },
1624 (union drbd_state) { { .susp_fen = 0 } },
1625 CS_VERBOSE);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001626 spin_unlock_irq(&connection->resource->req_lock);
Philipp Reisnera6d00c82011-03-29 18:16:11 +02001627 }
Philipp Reisnera6d00c82011-03-29 18:16:11 +02001628 }
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +02001629 kref_put(&connection->kref, drbd_destroy_connection);
Philipp Reisner19fffd72012-08-28 16:48:03 +02001630
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001631 conn_md_sync(connection);
Philipp Reisner19fffd72012-08-28 16:48:03 +02001632
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001633 return 0;
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001634}
1635
Lars Ellenberg8ce953a2014-02-27 09:46:18 +01001636static void conn_old_common_state(struct drbd_connection *connection, union drbd_state *pcs, enum chg_state_flags *pf)
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001637{
Philipp Reisner435693e2011-03-25 15:11:30 +01001638 enum chg_state_flags flags = ~0;
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02001639 struct drbd_peer_device *peer_device;
Philipp Reisner435693e2011-03-25 15:11:30 +01001640 int vnr, first_vol = 1;
Philipp Reisnere0e16652011-07-11 17:04:23 +02001641 union drbd_dev_state os, cs = {
1642 { .role = R_SECONDARY,
1643 .peer = R_UNKNOWN,
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001644 .conn = connection->cstate,
Philipp Reisnere0e16652011-07-11 17:04:23 +02001645 .disk = D_DISKLESS,
1646 .pdsk = D_UNKNOWN,
1647 } };
Philipp Reisner88ef5942011-03-25 14:31:11 +01001648
Philipp Reisner695d08f2011-04-11 22:53:32 -07001649 rcu_read_lock();
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02001650 idr_for_each_entry(&connection->peer_devices, peer_device, vnr) {
1651 struct drbd_device *device = peer_device->device;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001652 os = device->state;
Philipp Reisner88ef5942011-03-25 14:31:11 +01001653
Philipp Reisner435693e2011-03-25 15:11:30 +01001654 if (first_vol) {
1655 cs = os;
1656 first_vol = 0;
1657 continue;
1658 }
Philipp Reisner88ef5942011-03-25 14:31:11 +01001659
Philipp Reisner435693e2011-03-25 15:11:30 +01001660 if (cs.role != os.role)
1661 flags &= ~CS_DC_ROLE;
Philipp Reisner88ef5942011-03-25 14:31:11 +01001662
Philipp Reisner435693e2011-03-25 15:11:30 +01001663 if (cs.peer != os.peer)
1664 flags &= ~CS_DC_PEER;
Philipp Reisner88ef5942011-03-25 14:31:11 +01001665
Philipp Reisner435693e2011-03-25 15:11:30 +01001666 if (cs.conn != os.conn)
1667 flags &= ~CS_DC_CONN;
Philipp Reisner88ef5942011-03-25 14:31:11 +01001668
Philipp Reisner435693e2011-03-25 15:11:30 +01001669 if (cs.disk != os.disk)
1670 flags &= ~CS_DC_DISK;
1671
1672 if (cs.pdsk != os.pdsk)
1673 flags &= ~CS_DC_PDSK;
Philipp Reisner88ef5942011-03-25 14:31:11 +01001674 }
Philipp Reisner695d08f2011-04-11 22:53:32 -07001675 rcu_read_unlock();
Philipp Reisner88ef5942011-03-25 14:31:11 +01001676
Philipp Reisner435693e2011-03-25 15:11:30 +01001677 *pf |= CS_DC_MASK;
1678 *pf &= flags;
Philipp Reisnerda9fbc22011-03-29 10:52:01 +02001679 (*pcs).i = cs.i;
Philipp Reisner88ef5942011-03-25 14:31:11 +01001680}
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001681
Philipp Reisnerbd0c8242011-03-25 12:02:20 +01001682static enum drbd_state_rv
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001683conn_is_valid_transition(struct drbd_connection *connection, union drbd_state mask, union drbd_state val,
Philipp Reisner88ef5942011-03-25 14:31:11 +01001684 enum chg_state_flags flags)
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001685{
Philipp Reisnerbd0c8242011-03-25 12:02:20 +01001686 enum drbd_state_rv rv = SS_SUCCESS;
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001687 union drbd_state ns, os;
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02001688 struct drbd_peer_device *peer_device;
Philipp Reisnerbd0c8242011-03-25 12:02:20 +01001689 int vnr;
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001690
Philipp Reisner695d08f2011-04-11 22:53:32 -07001691 rcu_read_lock();
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02001692 idr_for_each_entry(&connection->peer_devices, peer_device, vnr) {
1693 struct drbd_device *device = peer_device->device;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001694 os = drbd_read_state(device);
Philipp Reisnerd7fe69c2014-04-28 18:43:13 +02001695 ns = sanitize_state(device, os, apply_mask_val(os, mask, val), NULL);
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001696
Philipp Reisner778bcf22011-03-28 12:55:03 +02001697 if (flags & CS_IGN_OUTD_FAIL && ns.disk == D_OUTDATED && os.disk < D_OUTDATED)
1698 ns.disk = os.disk;
1699
Philipp Reisnerbd0c8242011-03-25 12:02:20 +01001700 if (ns.i == os.i)
1701 continue;
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001702
Philipp Reisnerbd0c8242011-03-25 12:02:20 +01001703 rv = is_valid_transition(os, ns);
Philipp Reisnerbd0c8242011-03-25 12:02:20 +01001704
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02001705 if (rv >= SS_SUCCESS && !(flags & CS_HARD)) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001706 rv = is_valid_state(device, ns);
Philipp Reisnerbd0c8242011-03-25 12:02:20 +01001707 if (rv < SS_SUCCESS) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001708 if (is_valid_state(device, os) == rv)
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001709 rv = is_valid_soft_transition(os, ns, connection);
Philipp Reisnerbd0c8242011-03-25 12:02:20 +01001710 } else
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001711 rv = is_valid_soft_transition(os, ns, connection);
Philipp Reisnerbd0c8242011-03-25 12:02:20 +01001712 }
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02001713
1714 if (rv < SS_SUCCESS) {
1715 if (flags & CS_VERBOSE)
1716 print_st_err(device, os, ns, rv);
Philipp Reisnerbd0c8242011-03-25 12:02:20 +01001717 break;
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02001718 }
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001719 }
Philipp Reisner695d08f2011-04-11 22:53:32 -07001720 rcu_read_unlock();
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001721
Philipp Reisnerbd0c8242011-03-25 12:02:20 +01001722 return rv;
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001723}
1724
Lars Ellenberg8ce953a2014-02-27 09:46:18 +01001725static void
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001726conn_set_state(struct drbd_connection *connection, union drbd_state mask, union drbd_state val,
Philipp Reisner8c7e16c2011-03-29 14:01:02 +02001727 union drbd_state *pns_min, union drbd_state *pns_max, enum chg_state_flags flags)
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001728{
Philipp Reisnerf132f552011-07-18 10:44:24 +02001729 union drbd_state ns, os, ns_max = { };
Philipp Reisner8c7e16c2011-03-29 14:01:02 +02001730 union drbd_state ns_min = {
1731 { .role = R_MASK,
1732 .peer = R_MASK,
Philipp Reisnere0e16652011-07-11 17:04:23 +02001733 .conn = val.conn,
Philipp Reisner8c7e16c2011-03-29 14:01:02 +02001734 .disk = D_MASK,
1735 .pdsk = D_MASK
1736 } };
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02001737 struct drbd_peer_device *peer_device;
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001738 enum drbd_state_rv rv;
Philipp Reisnerf132f552011-07-18 10:44:24 +02001739 int vnr, number_of_volumes = 0;
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001740
Lars Ellenberg07be15b2012-05-07 11:53:08 +02001741 if (mask.conn == C_MASK) {
1742 /* remember last connect time so request_timer_fn() won't
1743 * kill newly established sessions while we are still trying to thaw
1744 * previously frozen IO */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001745 if (connection->cstate != C_WF_REPORT_PARAMS && val.conn == C_WF_REPORT_PARAMS)
1746 connection->last_reconnect_jif = jiffies;
Lars Ellenberg07be15b2012-05-07 11:53:08 +02001747
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001748 connection->cstate = val.conn;
Lars Ellenberg07be15b2012-05-07 11:53:08 +02001749 }
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001750
Philipp Reisner695d08f2011-04-11 22:53:32 -07001751 rcu_read_lock();
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02001752 idr_for_each_entry(&connection->peer_devices, peer_device, vnr) {
1753 struct drbd_device *device = peer_device->device;
Philipp Reisnerf132f552011-07-18 10:44:24 +02001754 number_of_volumes++;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001755 os = drbd_read_state(device);
Philipp Reisnerbd0c8242011-03-25 12:02:20 +01001756 ns = apply_mask_val(os, mask, val);
Philipp Reisnerd7fe69c2014-04-28 18:43:13 +02001757 ns = sanitize_state(device, os, ns, NULL);
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001758
Philipp Reisner778bcf22011-03-28 12:55:03 +02001759 if (flags & CS_IGN_OUTD_FAIL && ns.disk == D_OUTDATED && os.disk < D_OUTDATED)
1760 ns.disk = os.disk;
1761
Andreas Gruenbacher28bc3b82014-08-14 18:33:30 +02001762 rv = _drbd_set_state(device, ns, flags, NULL);
Philipp Reisnerbd0c8242011-03-25 12:02:20 +01001763 if (rv < SS_SUCCESS)
1764 BUG();
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001765
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001766 ns.i = device->state.i;
Philipp Reisner8c7e16c2011-03-29 14:01:02 +02001767 ns_max.role = max_role(ns.role, ns_max.role);
1768 ns_max.peer = max_role(ns.peer, ns_max.peer);
1769 ns_max.conn = max_t(enum drbd_conns, ns.conn, ns_max.conn);
1770 ns_max.disk = max_t(enum drbd_disk_state, ns.disk, ns_max.disk);
1771 ns_max.pdsk = max_t(enum drbd_disk_state, ns.pdsk, ns_max.pdsk);
1772
1773 ns_min.role = min_role(ns.role, ns_min.role);
1774 ns_min.peer = min_role(ns.peer, ns_min.peer);
1775 ns_min.conn = min_t(enum drbd_conns, ns.conn, ns_min.conn);
1776 ns_min.disk = min_t(enum drbd_disk_state, ns.disk, ns_min.disk);
1777 ns_min.pdsk = min_t(enum drbd_disk_state, ns.pdsk, ns_min.pdsk);
Philipp Reisnerbd0c8242011-03-25 12:02:20 +01001778 }
Philipp Reisner695d08f2011-04-11 22:53:32 -07001779 rcu_read_unlock();
Philipp Reisnerbd0c8242011-03-25 12:02:20 +01001780
Philipp Reisnerf132f552011-07-18 10:44:24 +02001781 if (number_of_volumes == 0) {
1782 ns_min = ns_max = (union drbd_state) { {
1783 .role = R_SECONDARY,
1784 .peer = R_UNKNOWN,
1785 .conn = val.conn,
1786 .disk = D_DISKLESS,
1787 .pdsk = D_UNKNOWN
1788 } };
1789 }
1790
Andreas Gruenbacher6bbf53c2011-07-08 01:19:44 +02001791 ns_min.susp = ns_max.susp = connection->resource->susp;
1792 ns_min.susp_nod = ns_max.susp_nod = connection->resource->susp_nod;
1793 ns_min.susp_fen = ns_max.susp_fen = connection->resource->susp_fen;
Philipp Reisner8c7e16c2011-03-29 14:01:02 +02001794
1795 *pns_min = ns_min;
1796 *pns_max = ns_max;
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001797}
1798
Philipp Reisnerdf24aa42011-02-15 11:14:44 +01001799static enum drbd_state_rv
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001800_conn_rq_cond(struct drbd_connection *connection, union drbd_state mask, union drbd_state val)
Philipp Reisnerdf24aa42011-02-15 11:14:44 +01001801{
Philipp Reisner88ea6852014-04-28 18:43:20 +02001802 enum drbd_state_rv err, rv = SS_UNKNOWN_ERROR; /* continue waiting */;
Philipp Reisnerdf24aa42011-02-15 11:14:44 +01001803
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001804 if (test_and_clear_bit(CONN_WD_ST_CHG_OKAY, &connection->flags))
Philipp Reisner88ea6852014-04-28 18:43:20 +02001805 rv = SS_CW_SUCCESS;
Philipp Reisnerdf24aa42011-02-15 11:14:44 +01001806
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001807 if (test_and_clear_bit(CONN_WD_ST_CHG_FAIL, &connection->flags))
Philipp Reisner88ea6852014-04-28 18:43:20 +02001808 rv = SS_CW_FAILED_BY_PEER;
Philipp Reisnerdf24aa42011-02-15 11:14:44 +01001809
Philipp Reisner88ea6852014-04-28 18:43:20 +02001810 err = conn_is_valid_transition(connection, mask, val, 0);
1811 if (err == SS_SUCCESS && connection->cstate == C_WF_REPORT_PARAMS)
1812 return rv;
Philipp Reisnerdf24aa42011-02-15 11:14:44 +01001813
Philipp Reisner88ea6852014-04-28 18:43:20 +02001814 return err;
Philipp Reisnerdf24aa42011-02-15 11:14:44 +01001815}
1816
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001817enum drbd_state_rv
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001818_conn_request_state(struct drbd_connection *connection, union drbd_state mask, union drbd_state val,
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001819 enum chg_state_flags flags)
1820{
1821 enum drbd_state_rv rv = SS_SUCCESS;
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001822 struct after_conn_state_chg_work *acscw;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001823 enum drbd_conns oc = connection->cstate;
Philipp Reisner8c7e16c2011-03-29 14:01:02 +02001824 union drbd_state ns_max, ns_min, os;
Lars Ellenbergc02abda2012-08-22 16:15:26 +02001825 bool have_mutex = false;
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001826
Philipp Reisner07fc9612012-08-28 11:07:56 +02001827 if (mask.conn) {
1828 rv = is_valid_conn_transition(oc, val.conn);
1829 if (rv < SS_SUCCESS)
1830 goto abort;
1831 }
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001832
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001833 rv = conn_is_valid_transition(connection, mask, val, flags);
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001834 if (rv < SS_SUCCESS)
1835 goto abort;
1836
Philipp Reisnerdf24aa42011-02-15 11:14:44 +01001837 if (oc == C_WF_REPORT_PARAMS && val.conn == C_DISCONNECTING &&
1838 !(flags & (CS_LOCAL_ONLY | CS_HARD))) {
Lars Ellenbergc02abda2012-08-22 16:15:26 +02001839
1840 /* This will be a cluster-wide state change.
1841 * Need to give up the spinlock, grab the mutex,
1842 * then send the state change request, ... */
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001843 spin_unlock_irq(&connection->resource->req_lock);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001844 mutex_lock(&connection->cstate_mutex);
Lars Ellenbergc02abda2012-08-22 16:15:26 +02001845 have_mutex = true;
1846
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001847 set_bit(CONN_WD_ST_CHG_REQ, &connection->flags);
1848 if (conn_send_state_req(connection, mask, val)) {
Lars Ellenbergc02abda2012-08-22 16:15:26 +02001849 /* sending failed. */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001850 clear_bit(CONN_WD_ST_CHG_REQ, &connection->flags);
Lars Ellenbergc02abda2012-08-22 16:15:26 +02001851 rv = SS_CW_FAILED_BY_PEER;
1852 /* need to re-aquire the spin lock, though */
1853 goto abort_unlocked;
1854 }
1855
1856 if (val.conn == C_DISCONNECTING)
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001857 set_bit(DISCONNECT_SENT, &connection->flags);
Lars Ellenbergc02abda2012-08-22 16:15:26 +02001858
1859 /* ... and re-aquire the spinlock.
1860 * If _conn_rq_cond() returned >= SS_SUCCESS, we must call
1861 * conn_set_state() within the same spinlock. */
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001862 spin_lock_irq(&connection->resource->req_lock);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001863 wait_event_lock_irq(connection->ping_wait,
1864 (rv = _conn_rq_cond(connection, mask, val)),
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001865 connection->resource->req_lock);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001866 clear_bit(CONN_WD_ST_CHG_REQ, &connection->flags);
Philipp Reisnerdf24aa42011-02-15 11:14:44 +01001867 if (rv < SS_SUCCESS)
1868 goto abort;
1869 }
1870
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001871 conn_old_common_state(connection, &os, &flags);
Philipp Reisner706cb242011-03-29 15:20:27 +02001872 flags |= CS_DC_SUSP;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001873 conn_set_state(connection, mask, val, &ns_min, &ns_max, flags);
1874 conn_pr_state_change(connection, os, ns_max, flags);
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001875
1876 acscw = kmalloc(sizeof(*acscw), GFP_ATOMIC);
1877 if (acscw) {
Philipp Reisner435693e2011-03-25 15:11:30 +01001878 acscw->oc = os.conn;
Philipp Reisner8c7e16c2011-03-29 14:01:02 +02001879 acscw->ns_min = ns_min;
Philipp Reisner5f082f92011-03-29 13:20:58 +02001880 acscw->ns_max = ns_max;
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001881 acscw->flags = flags;
Andreas Gruenbacher4c007602011-08-25 15:14:48 +02001882 acscw->w.cb = w_after_conn_state_ch;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001883 kref_get(&connection->kref);
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02001884 acscw->connection = connection;
Andreas Gruenbacher4c007602011-08-25 15:14:48 +02001885 drbd_queue_work(&connection->sender_work, &acscw->w);
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001886 } else {
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +02001887 drbd_err(connection, "Could not kmalloc an acscw\n");
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001888 }
1889
Philipp Reisnera01842e2011-12-13 17:40:53 +01001890 abort:
Lars Ellenbergc02abda2012-08-22 16:15:26 +02001891 if (have_mutex) {
1892 /* mutex_unlock() "... must not be used in interrupt context.",
1893 * so give up the spinlock, then re-aquire it */
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001894 spin_unlock_irq(&connection->resource->req_lock);
Lars Ellenbergc02abda2012-08-22 16:15:26 +02001895 abort_unlocked:
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001896 mutex_unlock(&connection->cstate_mutex);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001897 spin_lock_irq(&connection->resource->req_lock);
Lars Ellenbergc02abda2012-08-22 16:15:26 +02001898 }
1899 if (rv < SS_SUCCESS && flags & CS_VERBOSE) {
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +02001900 drbd_err(connection, "State change failed: %s\n", drbd_set_st_err_str(rv));
1901 drbd_err(connection, " mask = 0x%x val = 0x%x\n", mask.i, val.i);
1902 drbd_err(connection, " old_conn:%s wanted_conn:%s\n", drbd_conn_str(oc), drbd_conn_str(val.conn));
Philipp Reisnera01842e2011-12-13 17:40:53 +01001903 }
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001904 return rv;
1905}
1906
1907enum drbd_state_rv
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001908conn_request_state(struct drbd_connection *connection, union drbd_state mask, union drbd_state val,
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001909 enum chg_state_flags flags)
1910{
1911 enum drbd_state_rv rv;
1912
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001913 spin_lock_irq(&connection->resource->req_lock);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001914 rv = _conn_request_state(connection, mask, val, flags);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001915 spin_unlock_irq(&connection->resource->req_lock);
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001916
1917 return rv;
1918}