blob: 1a84345a3868b90e79425a7770884192b1e54b85 [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);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +020057static union drbd_state sanitize_state(struct drbd_device *device, union drbd_state ns,
Philipp Reisnerd942ae42011-05-31 13:07:24 +020058 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{
139 enum drbd_disk_state ds = 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 Gruenbacherb30ab792011-07-03 13:26:43 +0200146 ds = max_t(enum drbd_disk_state, ds, 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
150 return ds;
151}
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{
155 enum drbd_disk_state ds = 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 Gruenbacherb30ab792011-07-03 13:26:43 +0200162 ds = min_t(enum drbd_disk_state, ds, 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
166 return ds;
167}
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{
171 enum drbd_disk_state ds = 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 Gruenbacherb30ab792011-07-03 13:26:43 +0200178 ds = max_t(enum drbd_disk_state, ds, 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
182 return ds;
183}
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
218
Philipp Reisnerb8907332011-01-27 14:07:51 +0100219/**
220 * cl_wide_st_chg() - true if the state change is a cluster wide one
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200221 * @device: DRBD device.
Philipp Reisnerb8907332011-01-27 14:07:51 +0100222 * @os: old (current) state.
223 * @ns: new (wanted) state.
224 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200225static int cl_wide_st_chg(struct drbd_device *device,
Philipp Reisnerb8907332011-01-27 14:07:51 +0100226 union drbd_state os, union drbd_state ns)
227{
228 return (os.conn >= C_CONNECTED && ns.conn >= C_CONNECTED &&
229 ((os.role != R_PRIMARY && ns.role == R_PRIMARY) ||
230 (os.conn != C_STARTING_SYNC_T && ns.conn == C_STARTING_SYNC_T) ||
231 (os.conn != C_STARTING_SYNC_S && ns.conn == C_STARTING_SYNC_S) ||
Lars Ellenberge8744f52012-03-26 15:57:00 +0200232 (os.disk != D_FAILED && ns.disk == D_FAILED))) ||
Philipp Reisnerb8907332011-01-27 14:07:51 +0100233 (os.conn >= C_CONNECTED && ns.conn == C_DISCONNECTING) ||
Philipp Reisner369bea62011-07-06 23:04:44 +0200234 (os.conn == C_CONNECTED && ns.conn == C_VERIFY_S) ||
235 (os.conn == C_CONNECTED && ns.conn == C_WF_REPORT_PARAMS);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100236}
237
Philipp Reisner56707f92011-02-16 14:57:50 +0100238static union drbd_state
239apply_mask_val(union drbd_state os, union drbd_state mask, union drbd_state val)
240{
241 union drbd_state ns;
242 ns.i = (os.i & ~mask.i) | val.i;
243 return ns;
244}
245
Philipp Reisnerb8907332011-01-27 14:07:51 +0100246enum drbd_state_rv
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200247drbd_change_state(struct drbd_device *device, enum chg_state_flags f,
Philipp Reisnerb8907332011-01-27 14:07:51 +0100248 union drbd_state mask, union drbd_state val)
249{
250 unsigned long flags;
Philipp Reisner56707f92011-02-16 14:57:50 +0100251 union drbd_state ns;
Philipp Reisnerb8907332011-01-27 14:07:51 +0100252 enum drbd_state_rv rv;
253
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200254 spin_lock_irqsave(&device->resource->req_lock, flags);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200255 ns = apply_mask_val(drbd_read_state(device), mask, val);
256 rv = _drbd_set_state(device, ns, f, NULL);
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200257 spin_unlock_irqrestore(&device->resource->req_lock, flags);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100258
259 return rv;
260}
261
262/**
263 * drbd_force_state() - Impose a change which happens outside our control on our state
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200264 * @device: DRBD device.
Philipp Reisnerb8907332011-01-27 14:07:51 +0100265 * @mask: mask of state bits to change.
266 * @val: value of new state bits.
267 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200268void drbd_force_state(struct drbd_device *device,
Philipp Reisnerb8907332011-01-27 14:07:51 +0100269 union drbd_state mask, union drbd_state val)
270{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200271 drbd_change_state(device, CS_HARD, mask, val);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100272}
273
274static enum drbd_state_rv
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200275_req_st_cond(struct drbd_device *device, union drbd_state mask,
Philipp Reisnerb8907332011-01-27 14:07:51 +0100276 union drbd_state val)
277{
278 union drbd_state os, ns;
279 unsigned long flags;
280 enum drbd_state_rv rv;
281
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200282 if (test_and_clear_bit(CL_ST_CHG_SUCCESS, &device->flags))
Philipp Reisnerb8907332011-01-27 14:07:51 +0100283 return SS_CW_SUCCESS;
284
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200285 if (test_and_clear_bit(CL_ST_CHG_FAIL, &device->flags))
Philipp Reisnerb8907332011-01-27 14:07:51 +0100286 return SS_CW_FAILED_BY_PEER;
287
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200288 spin_lock_irqsave(&device->resource->req_lock, flags);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200289 os = drbd_read_state(device);
290 ns = sanitize_state(device, apply_mask_val(os, mask, val), NULL);
Philipp Reisner35095022011-02-09 16:29:33 +0100291 rv = is_valid_transition(os, ns);
Philipp Reisnera3025a22012-09-03 15:39:01 +0200292 if (rv >= SS_SUCCESS)
Philipp Reisner35095022011-02-09 16:29:33 +0100293 rv = SS_UNKNOWN_ERROR; /* cont waiting, otherwise fail. */
Philipp Reisnerb8907332011-01-27 14:07:51 +0100294
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200295 if (!cl_wide_st_chg(device, os, ns))
Philipp Reisnerb8907332011-01-27 14:07:51 +0100296 rv = SS_CW_NO_NEED;
Philipp Reisner35095022011-02-09 16:29:33 +0100297 if (rv == SS_UNKNOWN_ERROR) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200298 rv = is_valid_state(device, ns);
Philipp Reisnera3025a22012-09-03 15:39:01 +0200299 if (rv >= SS_SUCCESS) {
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +0200300 rv = is_valid_soft_transition(os, ns, first_peer_device(device)->connection);
Philipp Reisnera3025a22012-09-03 15:39:01 +0200301 if (rv >= SS_SUCCESS)
Philipp Reisnerb8907332011-01-27 14:07:51 +0100302 rv = SS_UNKNOWN_ERROR; /* cont waiting, otherwise fail. */
303 }
304 }
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200305 spin_unlock_irqrestore(&device->resource->req_lock, flags);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100306
307 return rv;
308}
309
310/**
311 * drbd_req_state() - Perform an eventually cluster wide state change
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200312 * @device: DRBD device.
Philipp Reisnerb8907332011-01-27 14:07:51 +0100313 * @mask: mask of state bits to change.
314 * @val: value of new state bits.
315 * @f: flags
316 *
317 * Should not be called directly, use drbd_request_state() or
318 * _drbd_request_state().
319 */
320static enum drbd_state_rv
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200321drbd_req_state(struct drbd_device *device, union drbd_state mask,
Philipp Reisnerb8907332011-01-27 14:07:51 +0100322 union drbd_state val, enum chg_state_flags f)
323{
324 struct completion done;
325 unsigned long flags;
326 union drbd_state os, ns;
327 enum drbd_state_rv rv;
328
329 init_completion(&done);
330
331 if (f & CS_SERIALIZE)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200332 mutex_lock(device->state_mutex);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100333
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200334 spin_lock_irqsave(&device->resource->req_lock, flags);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200335 os = drbd_read_state(device);
336 ns = sanitize_state(device, apply_mask_val(os, mask, val), NULL);
Philipp Reisner35095022011-02-09 16:29:33 +0100337 rv = is_valid_transition(os, ns);
Lars Ellenberg3c5e5f62011-03-15 16:04:09 +0100338 if (rv < SS_SUCCESS) {
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200339 spin_unlock_irqrestore(&device->resource->req_lock, flags);
Philipp Reisner35095022011-02-09 16:29:33 +0100340 goto abort;
Lars Ellenberg3c5e5f62011-03-15 16:04:09 +0100341 }
Philipp Reisnerb8907332011-01-27 14:07:51 +0100342
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200343 if (cl_wide_st_chg(device, os, ns)) {
344 rv = is_valid_state(device, ns);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100345 if (rv == SS_SUCCESS)
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +0200346 rv = is_valid_soft_transition(os, ns, first_peer_device(device)->connection);
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200347 spin_unlock_irqrestore(&device->resource->req_lock, flags);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100348
349 if (rv < SS_SUCCESS) {
350 if (f & CS_VERBOSE)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200351 print_st_err(device, os, ns, rv);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100352 goto abort;
353 }
354
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200355 if (drbd_send_state_req(first_peer_device(device), mask, val)) {
Philipp Reisnerb8907332011-01-27 14:07:51 +0100356 rv = SS_CW_FAILED_BY_PEER;
357 if (f & CS_VERBOSE)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200358 print_st_err(device, os, ns, rv);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100359 goto abort;
360 }
361
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200362 wait_event(device->state_wait,
363 (rv = _req_st_cond(device, mask, val)));
Philipp Reisnerb8907332011-01-27 14:07:51 +0100364
365 if (rv < SS_SUCCESS) {
Philipp Reisnerb8907332011-01-27 14:07:51 +0100366 if (f & CS_VERBOSE)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200367 print_st_err(device, os, ns, rv);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100368 goto abort;
369 }
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200370 spin_lock_irqsave(&device->resource->req_lock, flags);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200371 ns = apply_mask_val(drbd_read_state(device), mask, val);
372 rv = _drbd_set_state(device, ns, f, &done);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100373 } else {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200374 rv = _drbd_set_state(device, ns, f, &done);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100375 }
376
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200377 spin_unlock_irqrestore(&device->resource->req_lock, flags);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100378
379 if (f & CS_WAIT_COMPLETE && rv == SS_SUCCESS) {
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200380 D_ASSERT(device, current != first_peer_device(device)->connection->worker.task);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100381 wait_for_completion(&done);
382 }
383
384abort:
385 if (f & CS_SERIALIZE)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200386 mutex_unlock(device->state_mutex);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100387
388 return rv;
389}
390
391/**
392 * _drbd_request_state() - Request a state change (with flags)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200393 * @device: DRBD device.
Philipp Reisnerb8907332011-01-27 14:07:51 +0100394 * @mask: mask of state bits to change.
395 * @val: value of new state bits.
396 * @f: flags
397 *
398 * Cousin of drbd_request_state(), useful with the CS_WAIT_COMPLETE
399 * flag, or when logging of failed state change requests is not desired.
400 */
401enum drbd_state_rv
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200402_drbd_request_state(struct drbd_device *device, union drbd_state mask,
Philipp Reisnerb8907332011-01-27 14:07:51 +0100403 union drbd_state val, enum chg_state_flags f)
404{
405 enum drbd_state_rv rv;
406
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200407 wait_event(device->state_wait,
408 (rv = drbd_req_state(device, mask, val, f)) != SS_IN_TRANSIENT_STATE);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100409
410 return rv;
411}
412
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200413static void print_st(struct drbd_device *device, char *name, union drbd_state ns)
Philipp Reisnerb8907332011-01-27 14:07:51 +0100414{
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200415 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 +0100416 name,
417 drbd_conn_str(ns.conn),
418 drbd_role_str(ns.role),
419 drbd_role_str(ns.peer),
420 drbd_disk_str(ns.disk),
421 drbd_disk_str(ns.pdsk),
422 is_susp(ns) ? 's' : 'r',
423 ns.aftr_isp ? 'a' : '-',
424 ns.peer_isp ? 'p' : '-',
425 ns.user_isp ? 'u' : '-',
426 ns.susp_fen ? 'F' : '-',
427 ns.susp_nod ? 'N' : '-'
428 );
429}
430
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200431void print_st_err(struct drbd_device *device, union drbd_state os,
Philipp Reisnerb8907332011-01-27 14:07:51 +0100432 union drbd_state ns, enum drbd_state_rv err)
433{
434 if (err == SS_IN_TRANSIENT_STATE)
435 return;
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200436 drbd_err(device, "State change failed: %s\n", drbd_set_st_err_str(err));
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200437 print_st(device, " state", os);
438 print_st(device, "wanted", ns);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100439}
440
Philipp Reisner435693e2011-03-25 15:11:30 +0100441static long print_state_change(char *pb, union drbd_state os, union drbd_state ns,
Philipp Reisnerbbeb6412011-02-10 13:45:46 +0100442 enum chg_state_flags flags)
443{
Philipp Reisner435693e2011-03-25 15:11:30 +0100444 char *pbp;
Philipp Reisnerbbeb6412011-02-10 13:45:46 +0100445 pbp = pb;
446 *pbp = 0;
Philipp Reisner706cb242011-03-29 15:20:27 +0200447
Philipp Reisner435693e2011-03-25 15:11:30 +0100448 if (ns.role != os.role && flags & CS_DC_ROLE)
Philipp Reisnerbbeb6412011-02-10 13:45:46 +0100449 pbp += sprintf(pbp, "role( %s -> %s ) ",
450 drbd_role_str(os.role),
451 drbd_role_str(ns.role));
Philipp Reisner435693e2011-03-25 15:11:30 +0100452 if (ns.peer != os.peer && flags & CS_DC_PEER)
Philipp Reisnerbbeb6412011-02-10 13:45:46 +0100453 pbp += sprintf(pbp, "peer( %s -> %s ) ",
454 drbd_role_str(os.peer),
455 drbd_role_str(ns.peer));
Philipp Reisner435693e2011-03-25 15:11:30 +0100456 if (ns.conn != os.conn && flags & CS_DC_CONN)
Philipp Reisnerbbeb6412011-02-10 13:45:46 +0100457 pbp += sprintf(pbp, "conn( %s -> %s ) ",
458 drbd_conn_str(os.conn),
459 drbd_conn_str(ns.conn));
Philipp Reisner435693e2011-03-25 15:11:30 +0100460 if (ns.disk != os.disk && flags & CS_DC_DISK)
Philipp Reisnerbbeb6412011-02-10 13:45:46 +0100461 pbp += sprintf(pbp, "disk( %s -> %s ) ",
462 drbd_disk_str(os.disk),
463 drbd_disk_str(ns.disk));
Philipp Reisner435693e2011-03-25 15:11:30 +0100464 if (ns.pdsk != os.pdsk && flags & CS_DC_PDSK)
Philipp Reisnerbbeb6412011-02-10 13:45:46 +0100465 pbp += sprintf(pbp, "pdsk( %s -> %s ) ",
466 drbd_disk_str(os.pdsk),
467 drbd_disk_str(ns.pdsk));
Philipp Reisner706cb242011-03-29 15:20:27 +0200468
469 return pbp - pb;
470}
471
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200472static void drbd_pr_state_change(struct drbd_device *device, union drbd_state os, union drbd_state ns,
Philipp Reisner706cb242011-03-29 15:20:27 +0200473 enum chg_state_flags flags)
474{
475 char pb[300];
476 char *pbp = pb;
477
478 pbp += print_state_change(pbp, os, ns, flags ^ CS_DC_MASK);
479
Philipp Reisnerbbeb6412011-02-10 13:45:46 +0100480 if (ns.aftr_isp != os.aftr_isp)
481 pbp += sprintf(pbp, "aftr_isp( %d -> %d ) ",
482 os.aftr_isp,
483 ns.aftr_isp);
484 if (ns.peer_isp != os.peer_isp)
485 pbp += sprintf(pbp, "peer_isp( %d -> %d ) ",
486 os.peer_isp,
487 ns.peer_isp);
488 if (ns.user_isp != os.user_isp)
489 pbp += sprintf(pbp, "user_isp( %d -> %d ) ",
490 os.user_isp,
491 ns.user_isp);
Philipp Reisner435693e2011-03-25 15:11:30 +0100492
Philipp Reisner706cb242011-03-29 15:20:27 +0200493 if (pbp != pb)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200494 drbd_info(device, "%s\n", pb);
Philipp Reisnerbbeb6412011-02-10 13:45:46 +0100495}
Philipp Reisnerb8907332011-01-27 14:07:51 +0100496
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200497static void conn_pr_state_change(struct drbd_connection *connection, union drbd_state os, union drbd_state ns,
Philipp Reisner435693e2011-03-25 15:11:30 +0100498 enum chg_state_flags flags)
499{
500 char pb[300];
Philipp Reisner706cb242011-03-29 15:20:27 +0200501 char *pbp = pb;
Philipp Reisner435693e2011-03-25 15:11:30 +0100502
Philipp Reisner706cb242011-03-29 15:20:27 +0200503 pbp += print_state_change(pbp, os, ns, flags);
504
505 if (is_susp(ns) != is_susp(os) && flags & CS_DC_SUSP)
506 pbp += sprintf(pbp, "susp( %d -> %d ) ",
507 is_susp(os),
508 is_susp(ns));
509
510 if (pbp != pb)
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +0200511 drbd_info(connection, "%s\n", pb);
Philipp Reisner435693e2011-03-25 15:11:30 +0100512}
513
514
Philipp Reisnerb8907332011-01-27 14:07:51 +0100515/**
516 * is_valid_state() - Returns an SS_ error code if ns is not valid
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200517 * @device: DRBD device.
Philipp Reisnerb8907332011-01-27 14:07:51 +0100518 * @ns: State to consider.
519 */
520static enum drbd_state_rv
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200521is_valid_state(struct drbd_device *device, union drbd_state ns)
Philipp Reisnerb8907332011-01-27 14:07:51 +0100522{
523 /* See drbd_state_sw_errors in drbd_strings.c */
524
525 enum drbd_fencing_p fp;
526 enum drbd_state_rv rv = SS_SUCCESS;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200527 struct net_conf *nc;
Philipp Reisnerb8907332011-01-27 14:07:51 +0100528
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200529 rcu_read_lock();
Philipp Reisnerb8907332011-01-27 14:07:51 +0100530 fp = FP_DONT_CARE;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200531 if (get_ldev(device)) {
532 fp = rcu_dereference(device->ldev->disk_conf)->fencing;
533 put_ldev(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100534 }
535
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +0200536 nc = rcu_dereference(first_peer_device(device)->connection->net_conf);
Philipp Reisner44ed1672011-04-19 17:10:19 +0200537 if (nc) {
538 if (!nc->two_primaries && ns.role == R_PRIMARY) {
Philipp Reisner047e95e22011-03-16 14:43:36 +0100539 if (ns.peer == R_PRIMARY)
540 rv = SS_TWO_PRIMARIES;
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +0200541 else if (conn_highest_peer(first_peer_device(device)->connection) == R_PRIMARY)
Philipp Reisner047e95e22011-03-16 14:43:36 +0100542 rv = SS_O_VOL_PEER_PRI;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200543 }
Philipp Reisnerb8907332011-01-27 14:07:51 +0100544 }
545
546 if (rv <= 0)
547 /* already found a reason to abort */;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200548 else if (ns.role == R_SECONDARY && device->open_cnt)
Philipp Reisnerb8907332011-01-27 14:07:51 +0100549 rv = SS_DEVICE_IN_USE;
550
551 else if (ns.role == R_PRIMARY && ns.conn < C_CONNECTED && ns.disk < D_UP_TO_DATE)
552 rv = SS_NO_UP_TO_DATE_DISK;
553
554 else if (fp >= FP_RESOURCE &&
555 ns.role == R_PRIMARY && ns.conn < C_CONNECTED && ns.pdsk >= D_UNKNOWN)
556 rv = SS_PRIMARY_NOP;
557
558 else if (ns.role == R_PRIMARY && ns.disk <= D_INCONSISTENT && ns.pdsk <= D_INCONSISTENT)
559 rv = SS_NO_UP_TO_DATE_DISK;
560
561 else if (ns.conn > C_CONNECTED && ns.disk < D_INCONSISTENT)
562 rv = SS_NO_LOCAL_DISK;
563
564 else if (ns.conn > C_CONNECTED && ns.pdsk < D_INCONSISTENT)
565 rv = SS_NO_REMOTE_DISK;
566
567 else if (ns.conn > C_CONNECTED && ns.disk < D_UP_TO_DATE && ns.pdsk < D_UP_TO_DATE)
568 rv = SS_NO_UP_TO_DATE_DISK;
569
570 else if ((ns.conn == C_CONNECTED ||
571 ns.conn == C_WF_BITMAP_S ||
572 ns.conn == C_SYNC_SOURCE ||
573 ns.conn == C_PAUSED_SYNC_S) &&
574 ns.disk == D_OUTDATED)
575 rv = SS_CONNECTED_OUTDATES;
576
577 else if ((ns.conn == C_VERIFY_S || ns.conn == C_VERIFY_T) &&
Philipp Reisner44ed1672011-04-19 17:10:19 +0200578 (nc->verify_alg[0] == 0))
Philipp Reisnerb8907332011-01-27 14:07:51 +0100579 rv = SS_NO_VERIFY_ALG;
580
581 else if ((ns.conn == C_VERIFY_S || ns.conn == C_VERIFY_T) &&
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +0200582 first_peer_device(device)->connection->agreed_pro_version < 88)
Philipp Reisnerb8907332011-01-27 14:07:51 +0100583 rv = SS_NOT_SUPPORTED;
584
Philipp Reisner5c4f13d2013-03-27 14:08:37 +0100585 else if (ns.role == R_PRIMARY && ns.disk < D_UP_TO_DATE && ns.pdsk < D_UP_TO_DATE)
586 rv = SS_NO_UP_TO_DATE_DISK;
587
588 else if ((ns.conn == C_STARTING_SYNC_S || ns.conn == C_STARTING_SYNC_T) &&
589 ns.pdsk == D_UNKNOWN)
590 rv = SS_NEED_CONNECTION;
591
Philipp Reisnerb8907332011-01-27 14:07:51 +0100592 else if (ns.conn >= C_CONNECTED && ns.pdsk == D_UNKNOWN)
593 rv = SS_CONNECTED_OUTDATES;
594
Philipp Reisner44ed1672011-04-19 17:10:19 +0200595 rcu_read_unlock();
596
Philipp Reisnerb8907332011-01-27 14:07:51 +0100597 return rv;
598}
599
600/**
Philipp Reisnera75f34a2011-02-09 15:10:33 +0100601 * is_valid_soft_transition() - Returns an SS_ error code if the state transition is not possible
Philipp Reisner35095022011-02-09 16:29:33 +0100602 * This function limits state transitions that may be declined by DRBD. I.e.
603 * user requests (aka soft transitions).
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200604 * @device: DRBD device.
Philipp Reisnerb8907332011-01-27 14:07:51 +0100605 * @ns: new state.
606 * @os: old state.
607 */
608static enum drbd_state_rv
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200609is_valid_soft_transition(union drbd_state os, union drbd_state ns, struct drbd_connection *connection)
Philipp Reisnerb8907332011-01-27 14:07:51 +0100610{
611 enum drbd_state_rv rv = SS_SUCCESS;
612
613 if ((ns.conn == C_STARTING_SYNC_T || ns.conn == C_STARTING_SYNC_S) &&
614 os.conn > C_CONNECTED)
615 rv = SS_RESYNC_RUNNING;
616
617 if (ns.conn == C_DISCONNECTING && os.conn == C_STANDALONE)
618 rv = SS_ALREADY_STANDALONE;
619
620 if (ns.disk > D_ATTACHING && os.disk == D_DISKLESS)
621 rv = SS_IS_DISKLESS;
622
623 if (ns.conn == C_WF_CONNECTION && os.conn < C_UNCONNECTED)
624 rv = SS_NO_NET_CONFIG;
625
626 if (ns.disk == D_OUTDATED && os.disk < D_OUTDATED && os.disk != D_ATTACHING)
627 rv = SS_LOWER_THAN_OUTDATED;
628
629 if (ns.conn == C_DISCONNECTING && os.conn == C_UNCONNECTED)
630 rv = SS_IN_TRANSIENT_STATE;
631
Philipp Reisner2325eb62011-03-15 16:56:18 +0100632 /* if (ns.conn == os.conn && ns.conn == C_WF_REPORT_PARAMS)
633 rv = SS_IN_TRANSIENT_STATE; */
Philipp Reisnerb8907332011-01-27 14:07:51 +0100634
Philipp Reisnera1096a62012-04-06 12:07:34 +0200635 /* While establishing a connection only allow cstate to change.
636 Delay/refuse role changes, detach attach etc... */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200637 if (test_bit(STATE_SENT, &connection->flags) &&
Philipp Reisnera1096a62012-04-06 12:07:34 +0200638 !(os.conn == C_WF_REPORT_PARAMS ||
639 (ns.conn == C_WF_REPORT_PARAMS && os.conn == C_WF_CONNECTION)))
640 rv = SS_IN_TRANSIENT_STATE;
641
Philipp Reisnerb8907332011-01-27 14:07:51 +0100642 if ((ns.conn == C_VERIFY_S || ns.conn == C_VERIFY_T) && os.conn < C_CONNECTED)
643 rv = SS_NEED_CONNECTION;
644
645 if ((ns.conn == C_VERIFY_S || ns.conn == C_VERIFY_T) &&
646 ns.conn != os.conn && os.conn > C_CONNECTED)
647 rv = SS_RESYNC_RUNNING;
648
649 if ((ns.conn == C_STARTING_SYNC_S || ns.conn == C_STARTING_SYNC_T) &&
650 os.conn < C_CONNECTED)
651 rv = SS_NEED_CONNECTION;
652
653 if ((ns.conn == C_SYNC_TARGET || ns.conn == C_SYNC_SOURCE)
654 && os.conn < C_WF_REPORT_PARAMS)
655 rv = SS_NEED_CONNECTION; /* No NetworkFailure -> SyncTarget etc... */
656
Philipp Reisner2bd5ed52013-03-27 14:08:40 +0100657 if (ns.conn == C_DISCONNECTING && ns.pdsk == D_OUTDATED &&
658 os.conn < C_CONNECTED && os.pdsk > D_OUTDATED)
659 rv = SS_OUTDATE_WO_CONN;
660
Philipp Reisnerb8907332011-01-27 14:07:51 +0100661 return rv;
662}
663
Philipp Reisnerfda74112011-02-10 10:38:06 +0100664static enum drbd_state_rv
665is_valid_conn_transition(enum drbd_conns oc, enum drbd_conns nc)
666{
Lars Ellenbergd9cc6e22011-04-27 10:25:28 +0200667 /* no change -> nothing to do, at least for the connection part */
668 if (oc == nc)
669 return SS_NOTHING_TO_DO;
Philipp Reisnerfda74112011-02-10 10:38:06 +0100670
Lars Ellenbergd9cc6e22011-04-27 10:25:28 +0200671 /* disconnect of an unconfigured connection does not make sense */
672 if (oc == C_STANDALONE && nc == C_DISCONNECTING)
673 return SS_ALREADY_STANDALONE;
674
675 /* from C_STANDALONE, we start with C_UNCONNECTED */
676 if (oc == C_STANDALONE && nc != C_UNCONNECTED)
677 return SS_NEED_CONNECTION;
Philipp Reisnerfda74112011-02-10 10:38:06 +0100678
Philipp Reisner25b0d6c2012-02-14 12:12:35 +0100679 /* When establishing a connection we need to go through WF_REPORT_PARAMS!
680 Necessary to do the right thing upon invalidate-remote on a disconnected resource */
681 if (oc < C_WF_REPORT_PARAMS && nc >= C_CONNECTED)
682 return SS_NEED_CONNECTION;
683
Philipp Reisnerfda74112011-02-10 10:38:06 +0100684 /* After a network error only C_UNCONNECTED or C_DISCONNECTING may follow. */
685 if (oc >= C_TIMEOUT && oc <= C_TEAR_DOWN && nc != C_UNCONNECTED && nc != C_DISCONNECTING)
Lars Ellenbergd9cc6e22011-04-27 10:25:28 +0200686 return SS_IN_TRANSIENT_STATE;
Philipp Reisnerfda74112011-02-10 10:38:06 +0100687
688 /* After C_DISCONNECTING only C_STANDALONE may follow */
689 if (oc == C_DISCONNECTING && nc != C_STANDALONE)
Lars Ellenbergd9cc6e22011-04-27 10:25:28 +0200690 return SS_IN_TRANSIENT_STATE;
Philipp Reisnerfda74112011-02-10 10:38:06 +0100691
Lars Ellenbergd9cc6e22011-04-27 10:25:28 +0200692 return SS_SUCCESS;
Philipp Reisnerfda74112011-02-10 10:38:06 +0100693}
694
695
Philipp Reisnerb8907332011-01-27 14:07:51 +0100696/**
Philipp Reisner35095022011-02-09 16:29:33 +0100697 * is_valid_transition() - Returns an SS_ error code if the state transition is not possible
698 * This limits hard state transitions. Hard state transitions are facts there are
699 * imposed on DRBD by the environment. E.g. disk broke or network broke down.
700 * But those hard state transitions are still not allowed to do everything.
701 * @ns: new state.
702 * @os: old state.
703 */
704static enum drbd_state_rv
705is_valid_transition(union drbd_state os, union drbd_state ns)
706{
Philipp Reisnerfda74112011-02-10 10:38:06 +0100707 enum drbd_state_rv rv;
Philipp Reisner35095022011-02-09 16:29:33 +0100708
Philipp Reisnerfda74112011-02-10 10:38:06 +0100709 rv = is_valid_conn_transition(os.conn, ns.conn);
Philipp Reisner35095022011-02-09 16:29:33 +0100710
711 /* we cannot fail (again) if we already detached */
712 if (ns.disk == D_FAILED && os.disk == D_DISKLESS)
713 rv = SS_IS_DISKLESS;
714
715 return rv;
716}
717
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200718static void print_sanitize_warnings(struct drbd_device *device, enum sanitize_state_warnings warn)
Philipp Reisnerd942ae42011-05-31 13:07:24 +0200719{
720 static const char *msg_table[] = {
721 [NO_WARNING] = "",
722 [ABORTED_ONLINE_VERIFY] = "Online-verify aborted.",
723 [ABORTED_RESYNC] = "Resync aborted.",
724 [CONNECTION_LOST_NEGOTIATING] = "Connection lost while negotiating, no data!",
725 [IMPLICITLY_UPGRADED_DISK] = "Implicitly upgraded disk",
726 [IMPLICITLY_UPGRADED_PDSK] = "Implicitly upgraded pdsk",
727 };
728
729 if (warn != NO_WARNING)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200730 drbd_warn(device, "%s\n", msg_table[warn]);
Philipp Reisnerd942ae42011-05-31 13:07:24 +0200731}
732
Philipp Reisner35095022011-02-09 16:29:33 +0100733/**
Philipp Reisnerb8907332011-01-27 14:07:51 +0100734 * sanitize_state() - Resolves implicitly necessary additional changes to a state transition
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200735 * @device: DRBD device.
Philipp Reisnerb8907332011-01-27 14:07:51 +0100736 * @os: old state.
737 * @ns: new state.
738 * @warn_sync_abort:
739 *
740 * When we loose connection, we have to set the state of the peers disk (pdsk)
741 * to D_UNKNOWN. This rule and many more along those lines are in this function.
742 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200743static union drbd_state sanitize_state(struct drbd_device *device, union drbd_state ns,
Philipp Reisnerd942ae42011-05-31 13:07:24 +0200744 enum sanitize_state_warnings *warn)
Philipp Reisnerb8907332011-01-27 14:07:51 +0100745{
746 enum drbd_fencing_p fp;
747 enum drbd_disk_state disk_min, disk_max, pdsk_min, pdsk_max;
748
Philipp Reisnerd942ae42011-05-31 13:07:24 +0200749 if (warn)
750 *warn = NO_WARNING;
751
Philipp Reisnerb8907332011-01-27 14:07:51 +0100752 fp = FP_DONT_CARE;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200753 if (get_ldev(device)) {
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200754 rcu_read_lock();
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200755 fp = rcu_dereference(device->ldev->disk_conf)->fencing;
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200756 rcu_read_unlock();
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200757 put_ldev(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100758 }
759
Philipp Reisner35095022011-02-09 16:29:33 +0100760 /* Implications from connection to peer and peer_isp */
Philipp Reisnerb8907332011-01-27 14:07:51 +0100761 if (ns.conn < C_CONNECTED) {
762 ns.peer_isp = 0;
763 ns.peer = R_UNKNOWN;
764 if (ns.pdsk > D_UNKNOWN || ns.pdsk < D_INCONSISTENT)
765 ns.pdsk = D_UNKNOWN;
766 }
767
768 /* Clear the aftr_isp when becoming unconfigured */
769 if (ns.conn == C_STANDALONE && ns.disk == D_DISKLESS && ns.role == R_SECONDARY)
770 ns.aftr_isp = 0;
771
Philipp Reisner4308a0a2011-02-10 11:24:38 +0100772 /* An implication of the disk states onto the connection state */
Philipp Reisnerb8907332011-01-27 14:07:51 +0100773 /* Abort resync if a disk fails/detaches */
Philipp Reisner4308a0a2011-02-10 11:24:38 +0100774 if (ns.conn > C_CONNECTED && (ns.disk <= D_FAILED || ns.pdsk <= D_FAILED)) {
Philipp Reisnerd942ae42011-05-31 13:07:24 +0200775 if (warn)
776 *warn = ns.conn == C_VERIFY_S || ns.conn == C_VERIFY_T ?
777 ABORTED_ONLINE_VERIFY : ABORTED_RESYNC;
Philipp Reisnerb8907332011-01-27 14:07:51 +0100778 ns.conn = C_CONNECTED;
779 }
780
781 /* Connection breaks down before we finished "Negotiating" */
782 if (ns.conn < C_CONNECTED && ns.disk == D_NEGOTIATING &&
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200783 get_ldev_if_state(device, D_NEGOTIATING)) {
784 if (device->ed_uuid == device->ldev->md.uuid[UI_CURRENT]) {
785 ns.disk = device->new_state_tmp.disk;
786 ns.pdsk = device->new_state_tmp.pdsk;
Philipp Reisnerb8907332011-01-27 14:07:51 +0100787 } else {
Philipp Reisnerd942ae42011-05-31 13:07:24 +0200788 if (warn)
789 *warn = CONNECTION_LOST_NEGOTIATING;
Philipp Reisnerb8907332011-01-27 14:07:51 +0100790 ns.disk = D_DISKLESS;
791 ns.pdsk = D_UNKNOWN;
792 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200793 put_ldev(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100794 }
795
796 /* D_CONSISTENT and D_OUTDATED vanish when we get connected */
797 if (ns.conn >= C_CONNECTED && ns.conn < C_AHEAD) {
798 if (ns.disk == D_CONSISTENT || ns.disk == D_OUTDATED)
799 ns.disk = D_UP_TO_DATE;
800 if (ns.pdsk == D_CONSISTENT || ns.pdsk == D_OUTDATED)
801 ns.pdsk = D_UP_TO_DATE;
802 }
803
804 /* Implications of the connection stat on the disk states */
805 disk_min = D_DISKLESS;
806 disk_max = D_UP_TO_DATE;
807 pdsk_min = D_INCONSISTENT;
808 pdsk_max = D_UNKNOWN;
809 switch ((enum drbd_conns)ns.conn) {
810 case C_WF_BITMAP_T:
811 case C_PAUSED_SYNC_T:
812 case C_STARTING_SYNC_T:
813 case C_WF_SYNC_UUID:
814 case C_BEHIND:
815 disk_min = D_INCONSISTENT;
816 disk_max = D_OUTDATED;
817 pdsk_min = D_UP_TO_DATE;
818 pdsk_max = D_UP_TO_DATE;
819 break;
820 case C_VERIFY_S:
821 case C_VERIFY_T:
822 disk_min = D_UP_TO_DATE;
823 disk_max = D_UP_TO_DATE;
824 pdsk_min = D_UP_TO_DATE;
825 pdsk_max = D_UP_TO_DATE;
826 break;
827 case C_CONNECTED:
828 disk_min = D_DISKLESS;
829 disk_max = D_UP_TO_DATE;
830 pdsk_min = D_DISKLESS;
831 pdsk_max = D_UP_TO_DATE;
832 break;
833 case C_WF_BITMAP_S:
834 case C_PAUSED_SYNC_S:
835 case C_STARTING_SYNC_S:
836 case C_AHEAD:
837 disk_min = D_UP_TO_DATE;
838 disk_max = D_UP_TO_DATE;
839 pdsk_min = D_INCONSISTENT;
840 pdsk_max = D_CONSISTENT; /* D_OUTDATED would be nice. But explicit outdate necessary*/
841 break;
842 case C_SYNC_TARGET:
843 disk_min = D_INCONSISTENT;
844 disk_max = D_INCONSISTENT;
845 pdsk_min = D_UP_TO_DATE;
846 pdsk_max = D_UP_TO_DATE;
847 break;
848 case C_SYNC_SOURCE:
849 disk_min = D_UP_TO_DATE;
850 disk_max = D_UP_TO_DATE;
851 pdsk_min = D_INCONSISTENT;
852 pdsk_max = D_INCONSISTENT;
853 break;
854 case C_STANDALONE:
855 case C_DISCONNECTING:
856 case C_UNCONNECTED:
857 case C_TIMEOUT:
858 case C_BROKEN_PIPE:
859 case C_NETWORK_FAILURE:
860 case C_PROTOCOL_ERROR:
861 case C_TEAR_DOWN:
862 case C_WF_CONNECTION:
863 case C_WF_REPORT_PARAMS:
864 case C_MASK:
865 break;
866 }
867 if (ns.disk > disk_max)
868 ns.disk = disk_max;
869
870 if (ns.disk < disk_min) {
Philipp Reisnerd942ae42011-05-31 13:07:24 +0200871 if (warn)
872 *warn = IMPLICITLY_UPGRADED_DISK;
Philipp Reisnerb8907332011-01-27 14:07:51 +0100873 ns.disk = disk_min;
874 }
875 if (ns.pdsk > pdsk_max)
876 ns.pdsk = pdsk_max;
877
878 if (ns.pdsk < pdsk_min) {
Philipp Reisnerd942ae42011-05-31 13:07:24 +0200879 if (warn)
880 *warn = IMPLICITLY_UPGRADED_PDSK;
Philipp Reisnerb8907332011-01-27 14:07:51 +0100881 ns.pdsk = pdsk_min;
882 }
883
884 if (fp == FP_STONITH &&
Philipp Reisner4308a0a2011-02-10 11:24:38 +0100885 (ns.role == R_PRIMARY && ns.conn < C_CONNECTED && ns.pdsk > D_OUTDATED))
Philipp Reisnerb8907332011-01-27 14:07:51 +0100886 ns.susp_fen = 1; /* Suspend IO while fence-peer handler runs (peer lost) */
887
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +0200888 if (device->resource->res_opts.on_no_data == OND_SUSPEND_IO &&
Philipp Reisner4308a0a2011-02-10 11:24:38 +0100889 (ns.role == R_PRIMARY && ns.disk < D_UP_TO_DATE && ns.pdsk < D_UP_TO_DATE))
Philipp Reisnerb8907332011-01-27 14:07:51 +0100890 ns.susp_nod = 1; /* Suspend IO while no data available (no accessible data available) */
891
892 if (ns.aftr_isp || ns.peer_isp || ns.user_isp) {
893 if (ns.conn == C_SYNC_SOURCE)
894 ns.conn = C_PAUSED_SYNC_S;
895 if (ns.conn == C_SYNC_TARGET)
896 ns.conn = C_PAUSED_SYNC_T;
897 } else {
898 if (ns.conn == C_PAUSED_SYNC_S)
899 ns.conn = C_SYNC_SOURCE;
900 if (ns.conn == C_PAUSED_SYNC_T)
901 ns.conn = C_SYNC_TARGET;
902 }
903
904 return ns;
905}
906
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200907void drbd_resume_al(struct drbd_device *device)
Philipp Reisnerb8907332011-01-27 14:07:51 +0100908{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200909 if (test_and_clear_bit(AL_SUSPENDED, &device->flags))
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200910 drbd_info(device, "Resumed AL updates\n");
Philipp Reisnerb8907332011-01-27 14:07:51 +0100911}
912
913/* helper for __drbd_set_state */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200914static void set_ov_position(struct drbd_device *device, enum drbd_conns cs)
Philipp Reisnerb8907332011-01-27 14:07:51 +0100915{
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +0200916 if (first_peer_device(device)->connection->agreed_pro_version < 90)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200917 device->ov_start_sector = 0;
918 device->rs_total = drbd_bm_bits(device);
919 device->ov_position = 0;
Philipp Reisnerb8907332011-01-27 14:07:51 +0100920 if (cs == C_VERIFY_T) {
921 /* starting online verify from an arbitrary position
922 * does not fit well into the existing protocol.
923 * on C_VERIFY_T, we initialize ov_left and friends
924 * implicitly in receive_DataRequest once the
925 * first P_OV_REQUEST is received */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200926 device->ov_start_sector = ~(sector_t)0;
Philipp Reisnerb8907332011-01-27 14:07:51 +0100927 } else {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200928 unsigned long bit = BM_SECT_TO_BIT(device->ov_start_sector);
929 if (bit >= device->rs_total) {
930 device->ov_start_sector =
931 BM_BIT_TO_SECT(device->rs_total - 1);
932 device->rs_total = 1;
Philipp Reisnerb8907332011-01-27 14:07:51 +0100933 } else
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200934 device->rs_total -= bit;
935 device->ov_position = device->ov_start_sector;
Philipp Reisnerb8907332011-01-27 14:07:51 +0100936 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200937 device->ov_left = device->rs_total;
Philipp Reisnerb8907332011-01-27 14:07:51 +0100938}
939
940/**
941 * __drbd_set_state() - Set a new DRBD state
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200942 * @device: DRBD device.
Philipp Reisnerb8907332011-01-27 14:07:51 +0100943 * @ns: new state.
944 * @flags: Flags
945 * @done: Optional completion, that will get completed after the after_state_ch() finished
946 *
947 * Caller needs to hold req_lock, and global_state_lock. Do not call directly.
948 */
949enum drbd_state_rv
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200950__drbd_set_state(struct drbd_device *device, union drbd_state ns,
Philipp Reisnerb8907332011-01-27 14:07:51 +0100951 enum chg_state_flags flags, struct completion *done)
952{
953 union drbd_state os;
954 enum drbd_state_rv rv = SS_SUCCESS;
Philipp Reisnerd942ae42011-05-31 13:07:24 +0200955 enum sanitize_state_warnings ssw;
Philipp Reisnerb8907332011-01-27 14:07:51 +0100956 struct after_state_chg_work *ascw;
Lars Ellenberg2681f7f2013-01-21 15:43:41 +0100957 bool did_remote, should_do_remote;
Philipp Reisnerb8907332011-01-27 14:07:51 +0100958
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200959 os = drbd_read_state(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100960
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200961 ns = sanitize_state(device, ns, &ssw);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100962 if (ns.i == os.i)
963 return SS_NOTHING_TO_DO;
964
Philipp Reisner35095022011-02-09 16:29:33 +0100965 rv = is_valid_transition(os, ns);
966 if (rv < SS_SUCCESS)
967 return rv;
968
Philipp Reisnerb8907332011-01-27 14:07:51 +0100969 if (!(flags & CS_HARD)) {
970 /* pre-state-change checks ; only look at ns */
971 /* See drbd_state_sw_errors in drbd_strings.c */
972
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200973 rv = is_valid_state(device, ns);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100974 if (rv < SS_SUCCESS) {
975 /* If the old state was illegal as well, then let
976 this happen...*/
977
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200978 if (is_valid_state(device, os) == rv)
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +0200979 rv = is_valid_soft_transition(os, ns, first_peer_device(device)->connection);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100980 } else
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +0200981 rv = is_valid_soft_transition(os, ns, first_peer_device(device)->connection);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100982 }
983
984 if (rv < SS_SUCCESS) {
985 if (flags & CS_VERBOSE)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200986 print_st_err(device, os, ns, rv);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100987 return rv;
988 }
989
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200990 print_sanitize_warnings(device, ssw);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100991
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200992 drbd_pr_state_change(device, os, ns, flags);
Philipp Reisnerb8907332011-01-27 14:07:51 +0100993
Philipp Reisner706cb242011-03-29 15:20:27 +0200994 /* Display changes to the susp* flags that where caused by the call to
995 sanitize_state(). Only display it here if we where not called from
996 _conn_request_state() */
997 if (!(flags & CS_DC_SUSP))
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +0200998 conn_pr_state_change(first_peer_device(device)->connection, os, ns,
999 (flags & ~CS_DC_MASK) | CS_DC_SUSP);
Philipp Reisner706cb242011-03-29 15:20:27 +02001000
Philipp Reisnerb8907332011-01-27 14:07:51 +01001001 /* if we are going -> D_FAILED or D_DISKLESS, grab one extra reference
1002 * on the ldev here, to be sure the transition -> D_DISKLESS resp.
1003 * drbd_ldev_destroy() won't happen before our corresponding
1004 * after_state_ch works run, where we put_ldev again. */
1005 if ((os.disk != D_FAILED && ns.disk == D_FAILED) ||
1006 (os.disk != D_DISKLESS && ns.disk == D_DISKLESS))
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001007 atomic_inc(&device->local_cnt);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001008
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001009 did_remote = drbd_should_do_remote(device->state);
1010 device->state.i = ns.i;
1011 should_do_remote = drbd_should_do_remote(device->state);
Andreas Gruenbacher6bbf53c2011-07-08 01:19:44 +02001012 device->resource->susp = ns.susp;
1013 device->resource->susp_nod = ns.susp_nod;
1014 device->resource->susp_fen = ns.susp_fen;
Philipp Reisnerb8907332011-01-27 14:07:51 +01001015
Lars Ellenberg2681f7f2013-01-21 15:43:41 +01001016 /* put replicated vs not-replicated requests in seperate epochs */
1017 if (did_remote != should_do_remote)
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001018 start_new_tl_epoch(first_peer_device(device)->connection);
Lars Ellenberg2681f7f2013-01-21 15:43:41 +01001019
Philipp Reisnerb8907332011-01-27 14:07:51 +01001020 if (os.disk == D_ATTACHING && ns.disk >= D_NEGOTIATING)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001021 drbd_print_uuids(device, "attached to UUIDs");
Philipp Reisnerb8907332011-01-27 14:07:51 +01001022
Philipp Reisner79702012012-08-28 11:33:35 +02001023 /* Wake up role changes, that were delayed because of connection establishing */
1024 if (os.conn == C_WF_REPORT_PARAMS && ns.conn != C_WF_REPORT_PARAMS &&
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001025 no_peer_wf_report_params(first_peer_device(device)->connection))
1026 clear_bit(STATE_SENT, &first_peer_device(device)->connection->flags);
Philipp Reisner79702012012-08-28 11:33:35 +02001027
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001028 wake_up(&device->misc_wait);
1029 wake_up(&device->state_wait);
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001030 wake_up(&first_peer_device(device)->connection->ping_wait);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001031
Lars Ellenberg58ffa582012-07-26 14:09:49 +02001032 /* Aborted verify run, or we reached the stop sector.
1033 * Log the last position, unless end-of-device. */
Philipp Reisnerb8907332011-01-27 14:07:51 +01001034 if ((os.conn == C_VERIFY_S || os.conn == C_VERIFY_T) &&
Lars Ellenberg58ffa582012-07-26 14:09:49 +02001035 ns.conn <= C_CONNECTED) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001036 device->ov_start_sector =
1037 BM_BIT_TO_SECT(drbd_bm_bits(device) - device->ov_left);
1038 if (device->ov_left)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001039 drbd_info(device, "Online Verify reached sector %llu\n",
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001040 (unsigned long long)device->ov_start_sector);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001041 }
1042
1043 if ((os.conn == C_PAUSED_SYNC_T || os.conn == C_PAUSED_SYNC_S) &&
1044 (ns.conn == C_SYNC_TARGET || ns.conn == C_SYNC_SOURCE)) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001045 drbd_info(device, "Syncer continues.\n");
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001046 device->rs_paused += (long)jiffies
1047 -(long)device->rs_mark_time[device->rs_last_mark];
Philipp Reisnerb8907332011-01-27 14:07:51 +01001048 if (ns.conn == C_SYNC_TARGET)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001049 mod_timer(&device->resync_timer, jiffies);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001050 }
1051
1052 if ((os.conn == C_SYNC_TARGET || os.conn == C_SYNC_SOURCE) &&
1053 (ns.conn == C_PAUSED_SYNC_T || ns.conn == C_PAUSED_SYNC_S)) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001054 drbd_info(device, "Resync suspended\n");
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001055 device->rs_mark_time[device->rs_last_mark] = jiffies;
Philipp Reisnerb8907332011-01-27 14:07:51 +01001056 }
1057
1058 if (os.conn == C_CONNECTED &&
1059 (ns.conn == C_VERIFY_S || ns.conn == C_VERIFY_T)) {
1060 unsigned long now = jiffies;
1061 int i;
1062
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001063 set_ov_position(device, ns.conn);
1064 device->rs_start = now;
1065 device->rs_last_events = 0;
1066 device->rs_last_sect_ev = 0;
1067 device->ov_last_oos_size = 0;
1068 device->ov_last_oos_start = 0;
Philipp Reisnerb8907332011-01-27 14:07:51 +01001069
1070 for (i = 0; i < DRBD_SYNC_MARKS; i++) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001071 device->rs_mark_left[i] = device->ov_left;
1072 device->rs_mark_time[i] = now;
Philipp Reisnerb8907332011-01-27 14:07:51 +01001073 }
1074
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001075 drbd_rs_controller_reset(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001076
1077 if (ns.conn == C_VERIFY_S) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001078 drbd_info(device, "Starting Online Verify from sector %llu\n",
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001079 (unsigned long long)device->ov_position);
1080 mod_timer(&device->resync_timer, jiffies);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001081 }
1082 }
1083
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001084 if (get_ldev(device)) {
1085 u32 mdf = device->ldev->md.flags & ~(MDF_CONSISTENT|MDF_PRIMARY_IND|
Philipp Reisnerb8907332011-01-27 14:07:51 +01001086 MDF_CONNECTED_IND|MDF_WAS_UP_TO_DATE|
1087 MDF_PEER_OUT_DATED|MDF_CRASHED_PRIMARY);
1088
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02001089 mdf &= ~MDF_AL_CLEAN;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001090 if (test_bit(CRASHED_PRIMARY, &device->flags))
Philipp Reisnerb8907332011-01-27 14:07:51 +01001091 mdf |= MDF_CRASHED_PRIMARY;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001092 if (device->state.role == R_PRIMARY ||
1093 (device->state.pdsk < D_INCONSISTENT && device->state.peer == R_PRIMARY))
Philipp Reisnerb8907332011-01-27 14:07:51 +01001094 mdf |= MDF_PRIMARY_IND;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001095 if (device->state.conn > C_WF_REPORT_PARAMS)
Philipp Reisnerb8907332011-01-27 14:07:51 +01001096 mdf |= MDF_CONNECTED_IND;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001097 if (device->state.disk > D_INCONSISTENT)
Philipp Reisnerb8907332011-01-27 14:07:51 +01001098 mdf |= MDF_CONSISTENT;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001099 if (device->state.disk > D_OUTDATED)
Philipp Reisnerb8907332011-01-27 14:07:51 +01001100 mdf |= MDF_WAS_UP_TO_DATE;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001101 if (device->state.pdsk <= D_OUTDATED && device->state.pdsk >= D_INCONSISTENT)
Philipp Reisnerb8907332011-01-27 14:07:51 +01001102 mdf |= MDF_PEER_OUT_DATED;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001103 if (mdf != device->ldev->md.flags) {
1104 device->ldev->md.flags = mdf;
1105 drbd_md_mark_dirty(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001106 }
1107 if (os.disk < D_CONSISTENT && ns.disk >= D_CONSISTENT)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001108 drbd_set_ed_uuid(device, device->ldev->md.uuid[UI_CURRENT]);
1109 put_ldev(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001110 }
1111
1112 /* Peer was forced D_UP_TO_DATE & R_PRIMARY, consider to resync */
1113 if (os.disk == D_INCONSISTENT && os.pdsk == D_INCONSISTENT &&
1114 os.peer == R_SECONDARY && ns.peer == R_PRIMARY)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001115 set_bit(CONSIDER_RESYNC, &device->flags);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001116
1117 /* Receiver should clean up itself */
1118 if (os.conn != C_DISCONNECTING && ns.conn == C_DISCONNECTING)
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001119 drbd_thread_stop_nowait(&first_peer_device(device)->connection->receiver);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001120
1121 /* Now the receiver finished cleaning up itself, it should die */
1122 if (os.conn != C_STANDALONE && ns.conn == C_STANDALONE)
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001123 drbd_thread_stop_nowait(&first_peer_device(device)->connection->receiver);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001124
1125 /* Upon network failure, we need to restart the receiver. */
Philipp Reisner823bd832012-11-08 15:04:36 +01001126 if (os.conn > C_WF_CONNECTION &&
Philipp Reisnerb8907332011-01-27 14:07:51 +01001127 ns.conn <= C_TEAR_DOWN && ns.conn >= C_TIMEOUT)
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001128 drbd_thread_restart_nowait(&first_peer_device(device)->connection->receiver);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001129
1130 /* Resume AL writing if we get a connection */
Philipp Reisner28e448b2013-06-25 16:50:06 +02001131 if (os.conn < C_CONNECTED && ns.conn >= C_CONNECTED) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001132 drbd_resume_al(device);
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001133 first_peer_device(device)->connection->connect_cnt++;
Philipp Reisner28e448b2013-06-25 16:50:06 +02001134 }
Philipp Reisnerb8907332011-01-27 14:07:51 +01001135
Lars Ellenberg07be15b2012-05-07 11:53:08 +02001136 /* remember last attach time so request_timer_fn() won't
1137 * kill newly established sessions while we are still trying to thaw
1138 * previously frozen IO */
1139 if ((os.disk == D_ATTACHING || os.disk == D_NEGOTIATING) &&
1140 ns.disk > D_NEGOTIATING)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001141 device->last_reattach_jif = jiffies;
Lars Ellenberg07be15b2012-05-07 11:53:08 +02001142
Philipp Reisnerb8907332011-01-27 14:07:51 +01001143 ascw = kmalloc(sizeof(*ascw), GFP_ATOMIC);
1144 if (ascw) {
1145 ascw->os = os;
1146 ascw->ns = ns;
1147 ascw->flags = flags;
1148 ascw->w.cb = w_after_state_ch;
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02001149 ascw->device = device;
Philipp Reisnerb8907332011-01-27 14:07:51 +01001150 ascw->done = done;
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02001151 drbd_queue_work(&first_peer_device(device)->connection->sender_work,
1152 &ascw->w);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001153 } else {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001154 drbd_err(device, "Could not kmalloc an ascw\n");
Philipp Reisnerb8907332011-01-27 14:07:51 +01001155 }
1156
1157 return rv;
1158}
1159
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001160static int w_after_state_ch(struct drbd_work *w, int unused)
Philipp Reisnerb8907332011-01-27 14:07:51 +01001161{
1162 struct after_state_chg_work *ascw =
1163 container_of(w, struct after_state_chg_work, w);
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02001164 struct drbd_device *device = ascw->device;
Philipp Reisnerb8907332011-01-27 14:07:51 +01001165
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001166 after_state_ch(device, ascw->os, ascw->ns, ascw->flags);
Andreas Gruenbacher137975c2011-08-24 08:19:41 +02001167 if (ascw->flags & CS_WAIT_COMPLETE)
Philipp Reisnerb8907332011-01-27 14:07:51 +01001168 complete(ascw->done);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001169 kfree(ascw);
1170
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001171 return 0;
Philipp Reisnerb8907332011-01-27 14:07:51 +01001172}
1173
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001174static void abw_start_sync(struct drbd_device *device, int rv)
Philipp Reisnerb8907332011-01-27 14:07:51 +01001175{
1176 if (rv) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001177 drbd_err(device, "Writing the bitmap failed not starting resync.\n");
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001178 _drbd_request_state(device, NS(conn, C_CONNECTED), CS_VERBOSE);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001179 return;
1180 }
1181
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001182 switch (device->state.conn) {
Philipp Reisnerb8907332011-01-27 14:07:51 +01001183 case C_STARTING_SYNC_T:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001184 _drbd_request_state(device, NS(conn, C_WF_SYNC_UUID), CS_VERBOSE);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001185 break;
1186 case C_STARTING_SYNC_S:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001187 drbd_start_resync(device, C_SYNC_SOURCE);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001188 break;
1189 }
1190}
1191
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001192int drbd_bitmap_io_from_worker(struct drbd_device *device,
Andreas Gruenbacher54761692011-05-30 16:15:21 +02001193 int (*io_fn)(struct drbd_device *),
Philipp Reisnerb8907332011-01-27 14:07:51 +01001194 char *why, enum bm_flag flags)
1195{
1196 int rv;
1197
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02001198 D_ASSERT(device, current == first_peer_device(device)->connection->worker.task);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001199
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001200 /* open coded non-blocking drbd_suspend_io(device); */
1201 set_bit(SUSPEND_IO, &device->flags);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001202
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001203 drbd_bm_lock(device, why, flags);
1204 rv = io_fn(device);
1205 drbd_bm_unlock(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001206
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001207 drbd_resume_io(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001208
1209 return rv;
1210}
1211
1212/**
1213 * after_state_ch() - Perform after state change actions that may sleep
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001214 * @device: DRBD device.
Philipp Reisnerb8907332011-01-27 14:07:51 +01001215 * @os: old state.
1216 * @ns: new state.
1217 * @flags: Flags
1218 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001219static void after_state_ch(struct drbd_device *device, union drbd_state os,
Philipp Reisnerb8907332011-01-27 14:07:51 +01001220 union drbd_state ns, enum chg_state_flags flags)
1221{
Andreas Gruenbacher6bbf53c2011-07-08 01:19:44 +02001222 struct drbd_resource *resource = device->resource;
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01001223 struct sib_info sib;
1224
1225 sib.sib_reason = SIB_STATE_CHANGE;
1226 sib.os = os;
1227 sib.ns = ns;
Philipp Reisnerb8907332011-01-27 14:07:51 +01001228
1229 if (os.conn != C_CONNECTED && ns.conn == C_CONNECTED) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001230 clear_bit(CRASHED_PRIMARY, &device->flags);
1231 if (device->p_uuid)
1232 device->p_uuid[UI_FLAGS] &= ~((u64)2);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001233 }
1234
Philipp Reisnerb8907332011-01-27 14:07:51 +01001235 /* Inform userspace about the change... */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001236 drbd_bcast_event(device, &sib);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001237
1238 if (!(os.role == R_PRIMARY && os.disk < D_UP_TO_DATE && os.pdsk < D_UP_TO_DATE) &&
1239 (ns.role == R_PRIMARY && ns.disk < D_UP_TO_DATE && ns.pdsk < D_UP_TO_DATE))
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001240 drbd_khelper(device, "pri-on-incon-degr");
Philipp Reisnerb8907332011-01-27 14:07:51 +01001241
1242 /* Here we have the actions that are performed after a
1243 state change. This function might sleep */
1244
Philipp Reisnerb8907332011-01-27 14:07:51 +01001245 if (ns.susp_nod) {
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001246 struct drbd_connection *connection = first_peer_device(device)->connection;
Philipp Reisnera6d00c82011-03-29 18:16:11 +02001247 enum drbd_req_event what = NOTHING;
1248
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001249 spin_lock_irq(&device->resource->req_lock);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001250 if (os.conn < C_CONNECTED && conn_lowest_conn(connection) >= C_CONNECTED)
Philipp Reisnerb8907332011-01-27 14:07:51 +01001251 what = RESEND;
1252
Philipp Reisner3fb47462011-07-15 18:44:26 +02001253 if ((os.disk == D_ATTACHING || os.disk == D_NEGOTIATING) &&
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001254 conn_lowest_disk(connection) > D_NEGOTIATING)
Philipp Reisnerb8907332011-01-27 14:07:51 +01001255 what = RESTART_FROZEN_DISK_IO;
1256
Andreas Gruenbacher6bbf53c2011-07-08 01:19:44 +02001257 if (resource->susp_nod && what != NOTHING) {
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001258 _tl_restart(connection, what);
1259 _conn_request_state(connection,
Philipp Reisner892fdd12012-08-27 17:20:12 +02001260 (union drbd_state) { { .susp_nod = 1 } },
1261 (union drbd_state) { { .susp_nod = 0 } },
1262 CS_VERBOSE);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001263 }
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001264 spin_unlock_irq(&device->resource->req_lock);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001265 }
1266
Philipp Reisner88f79ec2012-08-27 17:16:21 +02001267 if (ns.susp_fen) {
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001268 struct drbd_connection *connection = first_peer_device(device)->connection;
Philipp Reisner88f79ec2012-08-27 17:16:21 +02001269
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001270 spin_lock_irq(&device->resource->req_lock);
Andreas Gruenbacher6bbf53c2011-07-08 01:19:44 +02001271 if (resource->susp_fen && conn_lowest_conn(connection) >= C_CONNECTED) {
Philipp Reisner88f79ec2012-08-27 17:16:21 +02001272 /* case2: The connection was established again: */
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02001273 struct drbd_peer_device *peer_device;
Philipp Reisner88f79ec2012-08-27 17:16:21 +02001274 int vnr;
1275
1276 rcu_read_lock();
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02001277 idr_for_each_entry(&connection->peer_devices, peer_device, vnr)
1278 clear_bit(NEW_CUR_UUID, &peer_device->device->flags);
Philipp Reisner88f79ec2012-08-27 17:16:21 +02001279 rcu_read_unlock();
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001280 _tl_restart(connection, RESEND);
1281 _conn_request_state(connection,
Philipp Reisner88f79ec2012-08-27 17:16:21 +02001282 (union drbd_state) { { .susp_fen = 1 } },
1283 (union drbd_state) { { .susp_fen = 0 } },
1284 CS_VERBOSE);
1285 }
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001286 spin_unlock_irq(&device->resource->req_lock);
Philipp Reisner88f79ec2012-08-27 17:16:21 +02001287 }
1288
Philipp Reisnerb8907332011-01-27 14:07:51 +01001289 /* Became sync source. With protocol >= 96, we still need to send out
1290 * the sync uuid now. Need to do that before any drbd_send_state, or
1291 * the other side may go "paused sync" before receiving the sync uuids,
1292 * which is unexpected. */
1293 if ((os.conn != C_SYNC_SOURCE && os.conn != C_PAUSED_SYNC_S) &&
1294 (ns.conn == C_SYNC_SOURCE || ns.conn == C_PAUSED_SYNC_S) &&
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001295 first_peer_device(device)->connection->agreed_pro_version >= 96 && get_ldev(device)) {
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001296 drbd_gen_and_send_sync_uuid(first_peer_device(device));
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001297 put_ldev(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001298 }
1299
1300 /* Do not change the order of the if above and the two below... */
Philipp Reisner369bea62011-07-06 23:04:44 +02001301 if (os.pdsk == D_DISKLESS &&
1302 ns.pdsk > D_DISKLESS && ns.pdsk != D_UNKNOWN) { /* attach on the peer */
Lars Ellenberga3248962012-07-30 09:10:41 +02001303 /* we probably will start a resync soon.
1304 * make sure those things are properly reset. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001305 device->rs_total = 0;
1306 device->rs_failed = 0;
1307 atomic_set(&device->rs_pending_cnt, 0);
1308 drbd_rs_cancel_all(device);
Lars Ellenberga3248962012-07-30 09:10:41 +02001309
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001310 drbd_send_uuids(first_peer_device(device));
1311 drbd_send_state(first_peer_device(device), ns);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001312 }
1313 /* No point in queuing send_bitmap if we don't have a connection
1314 * anymore, so check also the _current_ state, not only the new state
1315 * at the time this work was queued. */
1316 if (os.conn != C_WF_BITMAP_S && ns.conn == C_WF_BITMAP_S &&
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001317 device->state.conn == C_WF_BITMAP_S)
1318 drbd_queue_bitmap_io(device, &drbd_send_bitmap, NULL,
Philipp Reisnerb8907332011-01-27 14:07:51 +01001319 "send_bitmap (WFBitMapS)",
1320 BM_LOCKED_TEST_ALLOWED);
1321
1322 /* Lost contact to peer's copy of the data */
1323 if ((os.pdsk >= D_INCONSISTENT &&
1324 os.pdsk != D_UNKNOWN &&
1325 os.pdsk != D_OUTDATED)
1326 && (ns.pdsk < D_INCONSISTENT ||
1327 ns.pdsk == D_UNKNOWN ||
1328 ns.pdsk == D_OUTDATED)) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001329 if (get_ldev(device)) {
Philipp Reisnerb8907332011-01-27 14:07:51 +01001330 if ((ns.role == R_PRIMARY || ns.peer == R_PRIMARY) &&
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001331 device->ldev->md.uuid[UI_BITMAP] == 0 && ns.disk >= D_UP_TO_DATE) {
1332 if (drbd_suspended(device)) {
1333 set_bit(NEW_CUR_UUID, &device->flags);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001334 } else {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001335 drbd_uuid_new_current(device);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001336 drbd_send_uuids(first_peer_device(device));
Philipp Reisnerb8907332011-01-27 14:07:51 +01001337 }
1338 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001339 put_ldev(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001340 }
1341 }
1342
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001343 if (ns.pdsk < D_INCONSISTENT && get_ldev(device)) {
Philipp Reisner0cfac5d2011-11-10 12:12:52 +01001344 if (os.peer == R_SECONDARY && ns.peer == R_PRIMARY &&
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001345 device->ldev->md.uuid[UI_BITMAP] == 0 && ns.disk >= D_UP_TO_DATE) {
1346 drbd_uuid_new_current(device);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001347 drbd_send_uuids(first_peer_device(device));
Philipp Reisner0cfac5d2011-11-10 12:12:52 +01001348 }
Philipp Reisnerb8907332011-01-27 14:07:51 +01001349 /* D_DISKLESS Peer becomes secondary */
1350 if (os.peer == R_PRIMARY && ns.peer == R_SECONDARY)
1351 /* We may still be Primary ourselves.
1352 * No harm done if the bitmap still changes,
1353 * redirtied pages will follow later. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001354 drbd_bitmap_io_from_worker(device, &drbd_bm_write,
Philipp Reisnerb8907332011-01-27 14:07:51 +01001355 "demote diskless peer", BM_LOCKED_SET_ALLOWED);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001356 put_ldev(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001357 }
1358
1359 /* Write out all changed bits on demote.
1360 * Though, no need to da that just yet
1361 * if there is a resync going on still */
1362 if (os.role == R_PRIMARY && ns.role == R_SECONDARY &&
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001363 device->state.conn <= C_CONNECTED && get_ldev(device)) {
Philipp Reisnerb8907332011-01-27 14:07:51 +01001364 /* No changes to the bitmap expected this time, so assert that,
1365 * even though no harm was done if it did change. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001366 drbd_bitmap_io_from_worker(device, &drbd_bm_write,
Philipp Reisnerb8907332011-01-27 14:07:51 +01001367 "demote", BM_LOCKED_TEST_ALLOWED);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001368 put_ldev(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001369 }
1370
1371 /* Last part of the attaching process ... */
1372 if (ns.conn >= C_CONNECTED &&
1373 os.disk == D_ATTACHING && ns.disk == D_NEGOTIATING) {
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001374 drbd_send_sizes(first_peer_device(device), 0, 0); /* to start sync... */
1375 drbd_send_uuids(first_peer_device(device));
1376 drbd_send_state(first_peer_device(device), ns);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001377 }
1378
1379 /* We want to pause/continue resync, tell peer. */
1380 if (ns.conn >= C_CONNECTED &&
1381 ((os.aftr_isp != ns.aftr_isp) ||
1382 (os.user_isp != ns.user_isp)))
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001383 drbd_send_state(first_peer_device(device), ns);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001384
1385 /* In case one of the isp bits got set, suspend other devices. */
1386 if ((!os.aftr_isp && !os.peer_isp && !os.user_isp) &&
1387 (ns.aftr_isp || ns.peer_isp || ns.user_isp))
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001388 suspend_other_sg(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001389
1390 /* Make sure the peer gets informed about eventual state
1391 changes (ISP bits) while we were in WFReportParams. */
1392 if (os.conn == C_WF_REPORT_PARAMS && ns.conn >= C_CONNECTED)
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001393 drbd_send_state(first_peer_device(device), ns);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001394
1395 if (os.conn != C_AHEAD && ns.conn == C_AHEAD)
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001396 drbd_send_state(first_peer_device(device), ns);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001397
1398 /* We are in the progress to start a full sync... */
1399 if ((os.conn != C_STARTING_SYNC_T && ns.conn == C_STARTING_SYNC_T) ||
1400 (os.conn != C_STARTING_SYNC_S && ns.conn == C_STARTING_SYNC_S))
1401 /* no other bitmap changes expected during this phase */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001402 drbd_queue_bitmap_io(device,
Philipp Reisnerb8907332011-01-27 14:07:51 +01001403 &drbd_bmio_set_n_write, &abw_start_sync,
1404 "set_n_write from StartingSync", BM_LOCKED_TEST_ALLOWED);
1405
Philipp Reisnerb8907332011-01-27 14:07:51 +01001406 /* first half of local IO error, failure to attach,
1407 * or administrative detach */
1408 if (os.disk != D_FAILED && ns.disk == D_FAILED) {
Philipp Reisner32db80f2012-02-22 11:51:57 +01001409 enum drbd_io_error_p eh = EP_PASS_ON;
1410 int was_io_error = 0;
Philipp Reisnerb8907332011-01-27 14:07:51 +01001411 /* corresponding get_ldev was in __drbd_set_state, to serialize
Philipp Reisner32db80f2012-02-22 11:51:57 +01001412 * our cleanup here with the transition to D_DISKLESS.
1413 * But is is still not save to dreference ldev here, since
1414 * we might come from an failed Attach before ldev was set. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001415 if (device->ldev) {
Philipp Reisner32db80f2012-02-22 11:51:57 +01001416 rcu_read_lock();
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001417 eh = rcu_dereference(device->ldev->disk_conf)->on_io_error;
Philipp Reisner32db80f2012-02-22 11:51:57 +01001418 rcu_read_unlock();
Philipp Reisnerb8907332011-01-27 14:07:51 +01001419
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001420 was_io_error = test_and_clear_bit(WAS_IO_ERROR, &device->flags);
Philipp Reisnercdfda632011-07-05 15:38:59 +02001421
Lars Ellenberg6f1a6562012-07-30 09:11:01 +02001422 if (was_io_error && eh == EP_CALL_HELPER)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001423 drbd_khelper(device, "local-io-error");
Lars Ellenberg6f1a6562012-07-30 09:11:01 +02001424
Lars Ellenberg0c849662012-07-30 09:07:28 +02001425 /* Immediately allow completion of all application IO,
1426 * that waits for completion from the local disk,
1427 * if this was a force-detach due to disk_timeout
1428 * or administrator request (drbdsetup detach --force).
1429 * Do NOT abort otherwise.
1430 * Aborting local requests may cause serious problems,
1431 * if requests are completed to upper layers already,
1432 * and then later the already submitted local bio completes.
1433 * This can cause DMA into former bio pages that meanwhile
1434 * have been re-used for other things.
1435 * So aborting local requests may cause crashes,
1436 * or even worse, silent data corruption.
1437 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001438 if (test_and_clear_bit(FORCE_DETACH, &device->flags))
1439 tl_abort_disk_io(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001440
Philipp Reisner32db80f2012-02-22 11:51:57 +01001441 /* current state still has to be D_FAILED,
1442 * there is only one way out: to D_DISKLESS,
1443 * and that may only happen after our put_ldev below. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001444 if (device->state.disk != D_FAILED)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001445 drbd_err(device,
Philipp Reisner32db80f2012-02-22 11:51:57 +01001446 "ASSERT FAILED: disk is %s during detach\n",
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001447 drbd_disk_str(device->state.disk));
Philipp Reisner6ab9b1b2011-12-13 18:32:18 +01001448
Philipp Reisner32db80f2012-02-22 11:51:57 +01001449 if (ns.conn >= C_CONNECTED)
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001450 drbd_send_state(first_peer_device(device), ns);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001451
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001452 drbd_rs_cancel_all(device);
Philipp Reisner32db80f2012-02-22 11:51:57 +01001453
1454 /* In case we want to get something to stable storage still,
1455 * this may be the last chance.
1456 * Following put_ldev may transition to D_DISKLESS. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001457 drbd_md_sync(device);
Philipp Reisner32db80f2012-02-22 11:51:57 +01001458 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001459 put_ldev(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001460 }
1461
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001462 /* second half of local IO error, failure to attach,
1463 * or administrative detach,
1464 * after local_cnt references have reached zero again */
1465 if (os.disk != D_DISKLESS && ns.disk == D_DISKLESS) {
1466 /* We must still be diskless,
1467 * re-attach has to be serialized with this! */
1468 if (device->state.disk != D_DISKLESS)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001469 drbd_err(device,
1470 "ASSERT FAILED: disk is %s while going diskless\n",
1471 drbd_disk_str(device->state.disk));
Philipp Reisnerb8907332011-01-27 14:07:51 +01001472
Philipp Reisner6ab9b1b2011-12-13 18:32:18 +01001473 if (ns.conn >= C_CONNECTED)
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001474 drbd_send_state(first_peer_device(device), ns);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001475 /* corresponding get_ldev in __drbd_set_state
1476 * this may finally trigger drbd_ldev_destroy. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001477 put_ldev(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001478 }
1479
1480 /* Notify peer that I had a local IO error, and did not detached.. */
Philipp Reisner6ab9b1b2011-12-13 18:32:18 +01001481 if (os.disk == D_UP_TO_DATE && ns.disk == D_INCONSISTENT && ns.conn >= C_CONNECTED)
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001482 drbd_send_state(first_peer_device(device), ns);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001483
1484 /* Disks got bigger while they were detached */
1485 if (ns.disk > D_NEGOTIATING && ns.pdsk > D_NEGOTIATING &&
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001486 test_and_clear_bit(RESYNC_AFTER_NEG, &device->flags)) {
Philipp Reisnerb8907332011-01-27 14:07:51 +01001487 if (ns.conn == C_CONNECTED)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001488 resync_after_online_grow(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001489 }
1490
1491 /* A resync finished or aborted, wake paused devices... */
1492 if ((os.conn > C_CONNECTED && ns.conn <= C_CONNECTED) ||
1493 (os.peer_isp && !ns.peer_isp) ||
1494 (os.user_isp && !ns.user_isp))
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001495 resume_next_sg(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001496
1497 /* sync target done with resync. Explicitly notify peer, even though
1498 * it should (at least for non-empty resyncs) already know itself. */
1499 if (os.disk < D_UP_TO_DATE && os.conn >= C_SYNC_SOURCE && ns.conn == C_CONNECTED)
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001500 drbd_send_state(first_peer_device(device), ns);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001501
Lars Ellenberg58ffa582012-07-26 14:09:49 +02001502 /* Verify finished, or reached stop sector. Peer did not know about
1503 * the stop sector, and we may even have changed the stop sector during
1504 * verify to interrupt/stop early. Send the new state. */
1505 if (os.conn == C_VERIFY_S && ns.conn == C_CONNECTED
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001506 && verify_can_do_stop_sector(device))
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001507 drbd_send_state(first_peer_device(device), ns);
Lars Ellenberg58ffa582012-07-26 14:09:49 +02001508
Philipp Reisnerb8907332011-01-27 14:07:51 +01001509 /* This triggers bitmap writeout of potentially still unwritten pages
1510 * if the resync finished cleanly, or aborted because of peer disk
1511 * failure, or because of connection loss.
1512 * For resync aborted because of local disk failure, we cannot do
1513 * any bitmap writeout anymore.
1514 * No harm done if some bits change during this phase.
1515 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001516 if (os.conn > C_CONNECTED && ns.conn <= C_CONNECTED && get_ldev(device)) {
1517 drbd_queue_bitmap_io(device, &drbd_bm_write_copy_pages, NULL,
Lars Ellenberga220d292012-05-07 12:07:18 +02001518 "write from resync_finished", BM_LOCKED_CHANGE_ALLOWED);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001519 put_ldev(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001520 }
1521
1522 if (ns.disk == D_DISKLESS &&
1523 ns.conn == C_STANDALONE &&
1524 ns.role == R_SECONDARY) {
1525 if (os.aftr_isp != ns.aftr_isp)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001526 resume_next_sg(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001527 }
1528
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001529 drbd_md_sync(device);
Philipp Reisnerb8907332011-01-27 14:07:51 +01001530}
1531
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001532struct after_conn_state_chg_work {
Andreas Gruenbacher4c007602011-08-25 15:14:48 +02001533 struct drbd_work w;
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001534 enum drbd_conns oc;
Philipp Reisner8c7e16c2011-03-29 14:01:02 +02001535 union drbd_state ns_min;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001536 union drbd_state ns_max; /* new, max state, over all devices */
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001537 enum chg_state_flags flags;
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02001538 struct drbd_connection *connection;
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001539};
Philipp Reisnerb8907332011-01-27 14:07:51 +01001540
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001541static int w_after_conn_state_ch(struct drbd_work *w, int unused)
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001542{
1543 struct after_conn_state_chg_work *acscw =
Andreas Gruenbacher4c007602011-08-25 15:14:48 +02001544 container_of(w, struct after_conn_state_chg_work, w);
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02001545 struct drbd_connection *connection = acscw->connection;
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001546 enum drbd_conns oc = acscw->oc;
Philipp Reisner5f082f92011-03-29 13:20:58 +02001547 union drbd_state ns_max = acscw->ns_max;
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02001548 struct drbd_peer_device *peer_device;
Philipp Reisnera6d00c82011-03-29 18:16:11 +02001549 int vnr;
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001550
1551 kfree(acscw);
1552
1553 /* Upon network configuration, we need to start the receiver */
Philipp Reisner5f082f92011-03-29 13:20:58 +02001554 if (oc == C_STANDALONE && ns_max.conn == C_UNCONNECTED)
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001555 drbd_thread_start(&connection->receiver);
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001556
Lars Ellenbergf3dfa402011-05-02 10:45:05 +02001557 if (oc == C_DISCONNECTING && ns_max.conn == C_STANDALONE) {
1558 struct net_conf *old_conf;
1559
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001560 mutex_lock(&connection->resource->conf_update);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001561 old_conf = connection->net_conf;
1562 connection->my_addr_len = 0;
1563 connection->peer_addr_len = 0;
1564 rcu_assign_pointer(connection->net_conf, NULL);
1565 conn_free_crypto(connection);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001566 mutex_unlock(&connection->resource->conf_update);
Lars Ellenbergf3dfa402011-05-02 10:45:05 +02001567
1568 synchronize_rcu();
1569 kfree(old_conf);
1570 }
1571
Philipp Reisnera6d00c82011-03-29 18:16:11 +02001572 if (ns_max.susp_fen) {
1573 /* case1: The outdate peer handler is successful: */
1574 if (ns_max.pdsk <= D_OUTDATED) {
Philipp Reisner695d08f2011-04-11 22:53:32 -07001575 rcu_read_lock();
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02001576 idr_for_each_entry(&connection->peer_devices, peer_device, vnr) {
1577 struct drbd_device *device = peer_device->device;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001578 if (test_bit(NEW_CUR_UUID, &device->flags)) {
1579 drbd_uuid_new_current(device);
1580 clear_bit(NEW_CUR_UUID, &device->flags);
Philipp Reisnera6d00c82011-03-29 18:16:11 +02001581 }
1582 }
Philipp Reisner695d08f2011-04-11 22:53:32 -07001583 rcu_read_unlock();
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001584 spin_lock_irq(&connection->resource->req_lock);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001585 _tl_restart(connection, CONNECTION_LOST_WHILE_PENDING);
1586 _conn_request_state(connection,
Philipp Reisner8a0bab22012-08-07 13:28:00 +02001587 (union drbd_state) { { .susp_fen = 1 } },
1588 (union drbd_state) { { .susp_fen = 0 } },
1589 CS_VERBOSE);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001590 spin_unlock_irq(&connection->resource->req_lock);
Philipp Reisnera6d00c82011-03-29 18:16:11 +02001591 }
Philipp Reisnera6d00c82011-03-29 18:16:11 +02001592 }
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +02001593 kref_put(&connection->kref, drbd_destroy_connection);
Philipp Reisner19fffd72012-08-28 16:48:03 +02001594
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001595 conn_md_sync(connection);
Philipp Reisner19fffd72012-08-28 16:48:03 +02001596
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001597 return 0;
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001598}
1599
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001600void conn_old_common_state(struct drbd_connection *connection, union drbd_state *pcs, enum chg_state_flags *pf)
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001601{
Philipp Reisner435693e2011-03-25 15:11:30 +01001602 enum chg_state_flags flags = ~0;
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02001603 struct drbd_peer_device *peer_device;
Philipp Reisner435693e2011-03-25 15:11:30 +01001604 int vnr, first_vol = 1;
Philipp Reisnere0e16652011-07-11 17:04:23 +02001605 union drbd_dev_state os, cs = {
1606 { .role = R_SECONDARY,
1607 .peer = R_UNKNOWN,
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001608 .conn = connection->cstate,
Philipp Reisnere0e16652011-07-11 17:04:23 +02001609 .disk = D_DISKLESS,
1610 .pdsk = D_UNKNOWN,
1611 } };
Philipp Reisner88ef5942011-03-25 14:31:11 +01001612
Philipp Reisner695d08f2011-04-11 22:53:32 -07001613 rcu_read_lock();
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02001614 idr_for_each_entry(&connection->peer_devices, peer_device, vnr) {
1615 struct drbd_device *device = peer_device->device;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001616 os = device->state;
Philipp Reisner88ef5942011-03-25 14:31:11 +01001617
Philipp Reisner435693e2011-03-25 15:11:30 +01001618 if (first_vol) {
1619 cs = os;
1620 first_vol = 0;
1621 continue;
1622 }
Philipp Reisner88ef5942011-03-25 14:31:11 +01001623
Philipp Reisner435693e2011-03-25 15:11:30 +01001624 if (cs.role != os.role)
1625 flags &= ~CS_DC_ROLE;
Philipp Reisner88ef5942011-03-25 14:31:11 +01001626
Philipp Reisner435693e2011-03-25 15:11:30 +01001627 if (cs.peer != os.peer)
1628 flags &= ~CS_DC_PEER;
Philipp Reisner88ef5942011-03-25 14:31:11 +01001629
Philipp Reisner435693e2011-03-25 15:11:30 +01001630 if (cs.conn != os.conn)
1631 flags &= ~CS_DC_CONN;
Philipp Reisner88ef5942011-03-25 14:31:11 +01001632
Philipp Reisner435693e2011-03-25 15:11:30 +01001633 if (cs.disk != os.disk)
1634 flags &= ~CS_DC_DISK;
1635
1636 if (cs.pdsk != os.pdsk)
1637 flags &= ~CS_DC_PDSK;
Philipp Reisner88ef5942011-03-25 14:31:11 +01001638 }
Philipp Reisner695d08f2011-04-11 22:53:32 -07001639 rcu_read_unlock();
Philipp Reisner88ef5942011-03-25 14:31:11 +01001640
Philipp Reisner435693e2011-03-25 15:11:30 +01001641 *pf |= CS_DC_MASK;
1642 *pf &= flags;
Philipp Reisnerda9fbc22011-03-29 10:52:01 +02001643 (*pcs).i = cs.i;
Philipp Reisner88ef5942011-03-25 14:31:11 +01001644}
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001645
Philipp Reisnerbd0c8242011-03-25 12:02:20 +01001646static enum drbd_state_rv
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001647conn_is_valid_transition(struct drbd_connection *connection, union drbd_state mask, union drbd_state val,
Philipp Reisner88ef5942011-03-25 14:31:11 +01001648 enum chg_state_flags flags)
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001649{
Philipp Reisnerbd0c8242011-03-25 12:02:20 +01001650 enum drbd_state_rv rv = SS_SUCCESS;
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001651 union drbd_state ns, os;
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02001652 struct drbd_peer_device *peer_device;
Philipp Reisnerbd0c8242011-03-25 12:02:20 +01001653 int vnr;
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001654
Philipp Reisner695d08f2011-04-11 22:53:32 -07001655 rcu_read_lock();
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02001656 idr_for_each_entry(&connection->peer_devices, peer_device, vnr) {
1657 struct drbd_device *device = peer_device->device;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001658 os = drbd_read_state(device);
1659 ns = sanitize_state(device, apply_mask_val(os, mask, val), NULL);
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001660
Philipp Reisner778bcf22011-03-28 12:55:03 +02001661 if (flags & CS_IGN_OUTD_FAIL && ns.disk == D_OUTDATED && os.disk < D_OUTDATED)
1662 ns.disk = os.disk;
1663
Philipp Reisnerbd0c8242011-03-25 12:02:20 +01001664 if (ns.i == os.i)
1665 continue;
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001666
Philipp Reisnerbd0c8242011-03-25 12:02:20 +01001667 rv = is_valid_transition(os, ns);
Philipp Reisnerbd0c8242011-03-25 12:02:20 +01001668
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02001669 if (rv >= SS_SUCCESS && !(flags & CS_HARD)) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001670 rv = is_valid_state(device, ns);
Philipp Reisnerbd0c8242011-03-25 12:02:20 +01001671 if (rv < SS_SUCCESS) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001672 if (is_valid_state(device, os) == rv)
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001673 rv = is_valid_soft_transition(os, ns, connection);
Philipp Reisnerbd0c8242011-03-25 12:02:20 +01001674 } else
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001675 rv = is_valid_soft_transition(os, ns, connection);
Philipp Reisnerbd0c8242011-03-25 12:02:20 +01001676 }
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02001677
1678 if (rv < SS_SUCCESS) {
1679 if (flags & CS_VERBOSE)
1680 print_st_err(device, os, ns, rv);
Philipp Reisnerbd0c8242011-03-25 12:02:20 +01001681 break;
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02001682 }
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001683 }
Philipp Reisner695d08f2011-04-11 22:53:32 -07001684 rcu_read_unlock();
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001685
Philipp Reisnerbd0c8242011-03-25 12:02:20 +01001686 return rv;
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001687}
1688
Philipp Reisner8c7e16c2011-03-29 14:01:02 +02001689void
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001690conn_set_state(struct drbd_connection *connection, union drbd_state mask, union drbd_state val,
Philipp Reisner8c7e16c2011-03-29 14:01:02 +02001691 union drbd_state *pns_min, union drbd_state *pns_max, enum chg_state_flags flags)
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001692{
Philipp Reisnerf132f552011-07-18 10:44:24 +02001693 union drbd_state ns, os, ns_max = { };
Philipp Reisner8c7e16c2011-03-29 14:01:02 +02001694 union drbd_state ns_min = {
1695 { .role = R_MASK,
1696 .peer = R_MASK,
Philipp Reisnere0e16652011-07-11 17:04:23 +02001697 .conn = val.conn,
Philipp Reisner8c7e16c2011-03-29 14:01:02 +02001698 .disk = D_MASK,
1699 .pdsk = D_MASK
1700 } };
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02001701 struct drbd_peer_device *peer_device;
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001702 enum drbd_state_rv rv;
Philipp Reisnerf132f552011-07-18 10:44:24 +02001703 int vnr, number_of_volumes = 0;
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001704
Lars Ellenberg07be15b2012-05-07 11:53:08 +02001705 if (mask.conn == C_MASK) {
1706 /* remember last connect time so request_timer_fn() won't
1707 * kill newly established sessions while we are still trying to thaw
1708 * previously frozen IO */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001709 if (connection->cstate != C_WF_REPORT_PARAMS && val.conn == C_WF_REPORT_PARAMS)
1710 connection->last_reconnect_jif = jiffies;
Lars Ellenberg07be15b2012-05-07 11:53:08 +02001711
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001712 connection->cstate = val.conn;
Lars Ellenberg07be15b2012-05-07 11:53:08 +02001713 }
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001714
Philipp Reisner695d08f2011-04-11 22:53:32 -07001715 rcu_read_lock();
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02001716 idr_for_each_entry(&connection->peer_devices, peer_device, vnr) {
1717 struct drbd_device *device = peer_device->device;
Philipp Reisnerf132f552011-07-18 10:44:24 +02001718 number_of_volumes++;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001719 os = drbd_read_state(device);
Philipp Reisnerbd0c8242011-03-25 12:02:20 +01001720 ns = apply_mask_val(os, mask, val);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001721 ns = sanitize_state(device, ns, NULL);
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001722
Philipp Reisner778bcf22011-03-28 12:55:03 +02001723 if (flags & CS_IGN_OUTD_FAIL && ns.disk == D_OUTDATED && os.disk < D_OUTDATED)
1724 ns.disk = os.disk;
1725
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001726 rv = __drbd_set_state(device, ns, flags, NULL);
Philipp Reisnerbd0c8242011-03-25 12:02:20 +01001727 if (rv < SS_SUCCESS)
1728 BUG();
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001729
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001730 ns.i = device->state.i;
Philipp Reisner8c7e16c2011-03-29 14:01:02 +02001731 ns_max.role = max_role(ns.role, ns_max.role);
1732 ns_max.peer = max_role(ns.peer, ns_max.peer);
1733 ns_max.conn = max_t(enum drbd_conns, ns.conn, ns_max.conn);
1734 ns_max.disk = max_t(enum drbd_disk_state, ns.disk, ns_max.disk);
1735 ns_max.pdsk = max_t(enum drbd_disk_state, ns.pdsk, ns_max.pdsk);
1736
1737 ns_min.role = min_role(ns.role, ns_min.role);
1738 ns_min.peer = min_role(ns.peer, ns_min.peer);
1739 ns_min.conn = min_t(enum drbd_conns, ns.conn, ns_min.conn);
1740 ns_min.disk = min_t(enum drbd_disk_state, ns.disk, ns_min.disk);
1741 ns_min.pdsk = min_t(enum drbd_disk_state, ns.pdsk, ns_min.pdsk);
Philipp Reisnerbd0c8242011-03-25 12:02:20 +01001742 }
Philipp Reisner695d08f2011-04-11 22:53:32 -07001743 rcu_read_unlock();
Philipp Reisnerbd0c8242011-03-25 12:02:20 +01001744
Philipp Reisnerf132f552011-07-18 10:44:24 +02001745 if (number_of_volumes == 0) {
1746 ns_min = ns_max = (union drbd_state) { {
1747 .role = R_SECONDARY,
1748 .peer = R_UNKNOWN,
1749 .conn = val.conn,
1750 .disk = D_DISKLESS,
1751 .pdsk = D_UNKNOWN
1752 } };
1753 }
1754
Andreas Gruenbacher6bbf53c2011-07-08 01:19:44 +02001755 ns_min.susp = ns_max.susp = connection->resource->susp;
1756 ns_min.susp_nod = ns_max.susp_nod = connection->resource->susp_nod;
1757 ns_min.susp_fen = ns_max.susp_fen = connection->resource->susp_fen;
Philipp Reisner8c7e16c2011-03-29 14:01:02 +02001758
1759 *pns_min = ns_min;
1760 *pns_max = ns_max;
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001761}
1762
Philipp Reisnerdf24aa42011-02-15 11:14:44 +01001763static enum drbd_state_rv
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001764_conn_rq_cond(struct drbd_connection *connection, union drbd_state mask, union drbd_state val)
Philipp Reisnerdf24aa42011-02-15 11:14:44 +01001765{
Philipp Reisnerdf24aa42011-02-15 11:14:44 +01001766 enum drbd_state_rv rv;
1767
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001768 if (test_and_clear_bit(CONN_WD_ST_CHG_OKAY, &connection->flags))
Philipp Reisnerdf24aa42011-02-15 11:14:44 +01001769 return SS_CW_SUCCESS;
1770
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001771 if (test_and_clear_bit(CONN_WD_ST_CHG_FAIL, &connection->flags))
Philipp Reisnerdf24aa42011-02-15 11:14:44 +01001772 return SS_CW_FAILED_BY_PEER;
1773
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001774 rv = conn_is_valid_transition(connection, mask, val, 0);
1775 if (rv == SS_SUCCESS && connection->cstate == C_WF_REPORT_PARAMS)
Philipp Reisner2bd5ed52013-03-27 14:08:40 +01001776 rv = SS_UNKNOWN_ERROR; /* continue waiting */
Philipp Reisnerdf24aa42011-02-15 11:14:44 +01001777
Philipp Reisnerdf24aa42011-02-15 11:14:44 +01001778 return rv;
1779}
1780
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001781enum drbd_state_rv
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001782_conn_request_state(struct drbd_connection *connection, union drbd_state mask, union drbd_state val,
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001783 enum chg_state_flags flags)
1784{
1785 enum drbd_state_rv rv = SS_SUCCESS;
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001786 struct after_conn_state_chg_work *acscw;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001787 enum drbd_conns oc = connection->cstate;
Philipp Reisner8c7e16c2011-03-29 14:01:02 +02001788 union drbd_state ns_max, ns_min, os;
Lars Ellenbergc02abda2012-08-22 16:15:26 +02001789 bool have_mutex = false;
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001790
Philipp Reisner07fc9612012-08-28 11:07:56 +02001791 if (mask.conn) {
1792 rv = is_valid_conn_transition(oc, val.conn);
1793 if (rv < SS_SUCCESS)
1794 goto abort;
1795 }
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001796
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001797 rv = conn_is_valid_transition(connection, mask, val, flags);
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001798 if (rv < SS_SUCCESS)
1799 goto abort;
1800
Philipp Reisnerdf24aa42011-02-15 11:14:44 +01001801 if (oc == C_WF_REPORT_PARAMS && val.conn == C_DISCONNECTING &&
1802 !(flags & (CS_LOCAL_ONLY | CS_HARD))) {
Lars Ellenbergc02abda2012-08-22 16:15:26 +02001803
1804 /* This will be a cluster-wide state change.
1805 * Need to give up the spinlock, grab the mutex,
1806 * then send the state change request, ... */
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001807 spin_unlock_irq(&connection->resource->req_lock);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001808 mutex_lock(&connection->cstate_mutex);
Lars Ellenbergc02abda2012-08-22 16:15:26 +02001809 have_mutex = true;
1810
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001811 set_bit(CONN_WD_ST_CHG_REQ, &connection->flags);
1812 if (conn_send_state_req(connection, mask, val)) {
Lars Ellenbergc02abda2012-08-22 16:15:26 +02001813 /* sending failed. */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001814 clear_bit(CONN_WD_ST_CHG_REQ, &connection->flags);
Lars Ellenbergc02abda2012-08-22 16:15:26 +02001815 rv = SS_CW_FAILED_BY_PEER;
1816 /* need to re-aquire the spin lock, though */
1817 goto abort_unlocked;
1818 }
1819
1820 if (val.conn == C_DISCONNECTING)
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001821 set_bit(DISCONNECT_SENT, &connection->flags);
Lars Ellenbergc02abda2012-08-22 16:15:26 +02001822
1823 /* ... and re-aquire the spinlock.
1824 * If _conn_rq_cond() returned >= SS_SUCCESS, we must call
1825 * conn_set_state() within the same spinlock. */
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001826 spin_lock_irq(&connection->resource->req_lock);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001827 wait_event_lock_irq(connection->ping_wait,
1828 (rv = _conn_rq_cond(connection, mask, val)),
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001829 connection->resource->req_lock);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001830 clear_bit(CONN_WD_ST_CHG_REQ, &connection->flags);
Philipp Reisnerdf24aa42011-02-15 11:14:44 +01001831 if (rv < SS_SUCCESS)
1832 goto abort;
1833 }
1834
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001835 conn_old_common_state(connection, &os, &flags);
Philipp Reisner706cb242011-03-29 15:20:27 +02001836 flags |= CS_DC_SUSP;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001837 conn_set_state(connection, mask, val, &ns_min, &ns_max, flags);
1838 conn_pr_state_change(connection, os, ns_max, flags);
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001839
1840 acscw = kmalloc(sizeof(*acscw), GFP_ATOMIC);
1841 if (acscw) {
Philipp Reisner435693e2011-03-25 15:11:30 +01001842 acscw->oc = os.conn;
Philipp Reisner8c7e16c2011-03-29 14:01:02 +02001843 acscw->ns_min = ns_min;
Philipp Reisner5f082f92011-03-29 13:20:58 +02001844 acscw->ns_max = ns_max;
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001845 acscw->flags = flags;
Andreas Gruenbacher4c007602011-08-25 15:14:48 +02001846 acscw->w.cb = w_after_conn_state_ch;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001847 kref_get(&connection->kref);
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02001848 acscw->connection = connection;
Andreas Gruenbacher4c007602011-08-25 15:14:48 +02001849 drbd_queue_work(&connection->sender_work, &acscw->w);
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001850 } else {
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +02001851 drbd_err(connection, "Could not kmalloc an acscw\n");
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001852 }
1853
Philipp Reisnera01842e2011-12-13 17:40:53 +01001854 abort:
Lars Ellenbergc02abda2012-08-22 16:15:26 +02001855 if (have_mutex) {
1856 /* mutex_unlock() "... must not be used in interrupt context.",
1857 * so give up the spinlock, then re-aquire it */
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001858 spin_unlock_irq(&connection->resource->req_lock);
Lars Ellenbergc02abda2012-08-22 16:15:26 +02001859 abort_unlocked:
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001860 mutex_unlock(&connection->cstate_mutex);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001861 spin_lock_irq(&connection->resource->req_lock);
Lars Ellenbergc02abda2012-08-22 16:15:26 +02001862 }
1863 if (rv < SS_SUCCESS && flags & CS_VERBOSE) {
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +02001864 drbd_err(connection, "State change failed: %s\n", drbd_set_st_err_str(rv));
1865 drbd_err(connection, " mask = 0x%x val = 0x%x\n", mask.i, val.i);
1866 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 +01001867 }
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001868 return rv;
1869}
1870
1871enum drbd_state_rv
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001872conn_request_state(struct drbd_connection *connection, union drbd_state mask, union drbd_state val,
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001873 enum chg_state_flags flags)
1874{
1875 enum drbd_state_rv rv;
1876
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001877 spin_lock_irq(&connection->resource->req_lock);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001878 rv = _conn_request_state(connection, mask, val, flags);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001879 spin_unlock_irq(&connection->resource->req_lock);
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001880
1881 return rv;
1882}