]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/block/drbd/drbd_nl.c
Merge branches 'for-4.11/upstream-fixes', 'for-4.12/accutouch', 'for-4.12/cp2112...
[mirror_ubuntu-artful-kernel.git] / drivers / block / drbd / drbd_nl.c
CommitLineData
b411b363
PR
1/*
2 drbd_nl.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 drbd is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2, or (at your option)
13 any later version.
14
15 drbd is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with drbd; see the file COPYING. If not, write to
22 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
23
24 */
25
f88c5d90
LE
26#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
27
b411b363
PR
28#include <linux/module.h>
29#include <linux/drbd.h>
30#include <linux/in.h>
31#include <linux/fs.h>
32#include <linux/file.h>
33#include <linux/slab.h>
b411b363
PR
34#include <linux/blkpg.h>
35#include <linux/cpumask.h>
36#include "drbd_int.h"
a3603a6e 37#include "drbd_protocol.h"
265be2d0 38#include "drbd_req.h"
a2972846 39#include "drbd_state_change.h"
b411b363 40#include <asm/unaligned.h>
b411b363 41#include <linux/drbd_limits.h>
87f7be4c 42#include <linux/kthread.h>
b411b363 43
3b98c0c2
LE
44#include <net/genetlink.h>
45
46/* .doit */
47// int drbd_adm_create_resource(struct sk_buff *skb, struct genl_info *info);
48// int drbd_adm_delete_resource(struct sk_buff *skb, struct genl_info *info);
49
05a10ec7
AG
50int drbd_adm_new_minor(struct sk_buff *skb, struct genl_info *info);
51int drbd_adm_del_minor(struct sk_buff *skb, struct genl_info *info);
3b98c0c2 52
789c1b62
AG
53int drbd_adm_new_resource(struct sk_buff *skb, struct genl_info *info);
54int drbd_adm_del_resource(struct sk_buff *skb, struct genl_info *info);
85f75dd7 55int drbd_adm_down(struct sk_buff *skb, struct genl_info *info);
3b98c0c2
LE
56
57int drbd_adm_set_role(struct sk_buff *skb, struct genl_info *info);
58int drbd_adm_attach(struct sk_buff *skb, struct genl_info *info);
f399002e 59int drbd_adm_disk_opts(struct sk_buff *skb, struct genl_info *info);
3b98c0c2
LE
60int drbd_adm_detach(struct sk_buff *skb, struct genl_info *info);
61int drbd_adm_connect(struct sk_buff *skb, struct genl_info *info);
f399002e 62int drbd_adm_net_opts(struct sk_buff *skb, struct genl_info *info);
3b98c0c2
LE
63int drbd_adm_resize(struct sk_buff *skb, struct genl_info *info);
64int drbd_adm_start_ov(struct sk_buff *skb, struct genl_info *info);
65int drbd_adm_new_c_uuid(struct sk_buff *skb, struct genl_info *info);
66int drbd_adm_disconnect(struct sk_buff *skb, struct genl_info *info);
67int drbd_adm_invalidate(struct sk_buff *skb, struct genl_info *info);
68int drbd_adm_invalidate_peer(struct sk_buff *skb, struct genl_info *info);
69int drbd_adm_pause_sync(struct sk_buff *skb, struct genl_info *info);
70int drbd_adm_resume_sync(struct sk_buff *skb, struct genl_info *info);
71int drbd_adm_suspend_io(struct sk_buff *skb, struct genl_info *info);
72int drbd_adm_resume_io(struct sk_buff *skb, struct genl_info *info);
73int drbd_adm_outdate(struct sk_buff *skb, struct genl_info *info);
f399002e 74int drbd_adm_resource_opts(struct sk_buff *skb, struct genl_info *info);
3b98c0c2
LE
75int drbd_adm_get_status(struct sk_buff *skb, struct genl_info *info);
76int drbd_adm_get_timeout_type(struct sk_buff *skb, struct genl_info *info);
77/* .dumpit */
78int drbd_adm_get_status_all(struct sk_buff *skb, struct netlink_callback *cb);
a55bbd37
AG
79int drbd_adm_dump_resources(struct sk_buff *skb, struct netlink_callback *cb);
80int drbd_adm_dump_devices(struct sk_buff *skb, struct netlink_callback *cb);
81int drbd_adm_dump_devices_done(struct netlink_callback *cb);
82int drbd_adm_dump_connections(struct sk_buff *skb, struct netlink_callback *cb);
83int drbd_adm_dump_connections_done(struct netlink_callback *cb);
84int drbd_adm_dump_peer_devices(struct sk_buff *skb, struct netlink_callback *cb);
85int drbd_adm_dump_peer_devices_done(struct netlink_callback *cb);
a2972846 86int drbd_adm_get_initial_state(struct sk_buff *skb, struct netlink_callback *cb);
3b98c0c2
LE
87
88#include <linux/drbd_genl_api.h>
01b39b50 89#include "drbd_nla.h"
3b98c0c2
LE
90#include <linux/genl_magic_func.h>
91
a2972846
AG
92static atomic_t drbd_genl_seq = ATOMIC_INIT(2); /* two. */
93static atomic_t notify_genl_seq = ATOMIC_INIT(2); /* two. */
94
95DEFINE_MUTEX(notification_mutex);
96
3b98c0c2 97/* used blkdev_get_by_path, to claim our meta data device(s) */
b411b363
PR
98static char *drbd_m_holder = "Hands off! this is DRBD's meta data device.";
99
3b98c0c2
LE
100static void drbd_adm_send_reply(struct sk_buff *skb, struct genl_info *info)
101{
102 genlmsg_end(skb, genlmsg_data(nlmsg_data(nlmsg_hdr(skb))));
103 if (genlmsg_reply(skb, info))
f88c5d90 104 pr_err("error sending genl reply\n");
b411b363 105}
3b98c0c2
LE
106
107/* Used on a fresh "drbd_adm_prepare"d reply_skb, this cannot fail: The only
108 * reason it could fail was no space in skb, and there are 4k available. */
f221f4bc 109static int drbd_msg_put_info(struct sk_buff *skb, const char *info)
3b98c0c2 110{
3b98c0c2
LE
111 struct nlattr *nla;
112 int err = -EMSGSIZE;
113
114 if (!info || !info[0])
115 return 0;
116
117 nla = nla_nest_start(skb, DRBD_NLA_CFG_REPLY);
118 if (!nla)
119 return err;
120
121 err = nla_put_string(skb, T_info_text, info);
122 if (err) {
123 nla_nest_cancel(skb, nla);
124 return err;
125 } else
126 nla_nest_end(skb, nla);
127 return 0;
b411b363
PR
128}
129
3b98c0c2
LE
130/* This would be a good candidate for a "pre_doit" hook,
131 * and per-family private info->pointers.
132 * But we need to stay compatible with older kernels.
133 * If it returns successfully, adm_ctx members are valid.
9e276872
LE
134 *
135 * At this point, we still rely on the global genl_lock().
136 * If we want to avoid that, and allow "genl_family.parallel_ops", we may need
137 * to add additional synchronization against object destruction/modification.
3b98c0c2
LE
138 */
139#define DRBD_ADM_NEED_MINOR 1
44e52cfa 140#define DRBD_ADM_NEED_RESOURCE 2
089c075d 141#define DRBD_ADM_NEED_CONNECTION 4
a910b123
LE
142static int drbd_adm_prepare(struct drbd_config_context *adm_ctx,
143 struct sk_buff *skb, struct genl_info *info, unsigned flags)
3b98c0c2
LE
144{
145 struct drbd_genlmsghdr *d_in = info->userhdr;
146 const u8 cmd = info->genlhdr->cmd;
147 int err;
148
a910b123 149 memset(adm_ctx, 0, sizeof(*adm_ctx));
3b98c0c2
LE
150
151 /* genl_rcv_msg only checks for CAP_NET_ADMIN on "GENL_ADMIN_PERM" :( */
98683650 152 if (cmd != DRBD_ADM_GET_STATUS && !capable(CAP_NET_ADMIN))
3b98c0c2
LE
153 return -EPERM;
154
a910b123
LE
155 adm_ctx->reply_skb = genlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
156 if (!adm_ctx->reply_skb) {
1e2a2551 157 err = -ENOMEM;
3b98c0c2 158 goto fail;
1e2a2551 159 }
3b98c0c2 160
a910b123 161 adm_ctx->reply_dh = genlmsg_put_reply(adm_ctx->reply_skb,
3b98c0c2
LE
162 info, &drbd_genl_family, 0, cmd);
163 /* put of a few bytes into a fresh skb of >= 4k will always succeed.
164 * but anyways */
a910b123 165 if (!adm_ctx->reply_dh) {
1e2a2551 166 err = -ENOMEM;
3b98c0c2 167 goto fail;
1e2a2551 168 }
3b98c0c2 169
a910b123
LE
170 adm_ctx->reply_dh->minor = d_in->minor;
171 adm_ctx->reply_dh->ret_code = NO_ERROR;
3b98c0c2 172
a910b123 173 adm_ctx->volume = VOLUME_UNSPECIFIED;
3b98c0c2
LE
174 if (info->attrs[DRBD_NLA_CFG_CONTEXT]) {
175 struct nlattr *nla;
176 /* parse and validate only */
f399002e 177 err = drbd_cfg_context_from_attrs(NULL, info);
3b98c0c2
LE
178 if (err)
179 goto fail;
180
181 /* It was present, and valid,
182 * copy it over to the reply skb. */
a910b123 183 err = nla_put_nohdr(adm_ctx->reply_skb,
3b98c0c2
LE
184 info->attrs[DRBD_NLA_CFG_CONTEXT]->nla_len,
185 info->attrs[DRBD_NLA_CFG_CONTEXT]);
186 if (err)
187 goto fail;
188
9e276872 189 /* and assign stuff to the adm_ctx */
3b98c0c2 190 nla = nested_attr_tb[__nla_type(T_ctx_volume)];
089c075d 191 if (nla)
a910b123 192 adm_ctx->volume = nla_get_u32(nla);
7c3063cc 193 nla = nested_attr_tb[__nla_type(T_ctx_resource_name)];
3b98c0c2 194 if (nla)
a910b123
LE
195 adm_ctx->resource_name = nla_data(nla);
196 adm_ctx->my_addr = nested_attr_tb[__nla_type(T_ctx_my_addr)];
197 adm_ctx->peer_addr = nested_attr_tb[__nla_type(T_ctx_peer_addr)];
198 if ((adm_ctx->my_addr &&
199 nla_len(adm_ctx->my_addr) > sizeof(adm_ctx->connection->my_addr)) ||
200 (adm_ctx->peer_addr &&
201 nla_len(adm_ctx->peer_addr) > sizeof(adm_ctx->connection->peer_addr))) {
089c075d
AG
202 err = -EINVAL;
203 goto fail;
204 }
205 }
3b98c0c2 206
a910b123
LE
207 adm_ctx->minor = d_in->minor;
208 adm_ctx->device = minor_to_device(d_in->minor);
9e276872
LE
209
210 /* We are protected by the global genl_lock().
211 * But we may explicitly drop it/retake it in drbd_adm_set_role(),
212 * so make sure this object stays around. */
213 if (adm_ctx->device)
214 kref_get(&adm_ctx->device->kref);
215
a910b123
LE
216 if (adm_ctx->resource_name) {
217 adm_ctx->resource = drbd_find_resource(adm_ctx->resource_name);
4bc76048 218 }
3b98c0c2 219
a910b123
LE
220 if (!adm_ctx->device && (flags & DRBD_ADM_NEED_MINOR)) {
221 drbd_msg_put_info(adm_ctx->reply_skb, "unknown minor");
3b98c0c2
LE
222 return ERR_MINOR_INVALID;
223 }
a910b123
LE
224 if (!adm_ctx->resource && (flags & DRBD_ADM_NEED_RESOURCE)) {
225 drbd_msg_put_info(adm_ctx->reply_skb, "unknown resource");
226 if (adm_ctx->resource_name)
a10f6b8a 227 return ERR_RES_NOT_KNOWN;
3b98c0c2
LE
228 return ERR_INVALID_REQUEST;
229 }
230
089c075d 231 if (flags & DRBD_ADM_NEED_CONNECTION) {
a910b123
LE
232 if (adm_ctx->resource) {
233 drbd_msg_put_info(adm_ctx->reply_skb, "no resource name expected");
089c075d
AG
234 return ERR_INVALID_REQUEST;
235 }
a910b123
LE
236 if (adm_ctx->device) {
237 drbd_msg_put_info(adm_ctx->reply_skb, "no minor number expected");
089c075d
AG
238 return ERR_INVALID_REQUEST;
239 }
a910b123
LE
240 if (adm_ctx->my_addr && adm_ctx->peer_addr)
241 adm_ctx->connection = conn_get_by_addrs(nla_data(adm_ctx->my_addr),
242 nla_len(adm_ctx->my_addr),
243 nla_data(adm_ctx->peer_addr),
244 nla_len(adm_ctx->peer_addr));
245 if (!adm_ctx->connection) {
246 drbd_msg_put_info(adm_ctx->reply_skb, "unknown connection");
089c075d
AG
247 return ERR_INVALID_REQUEST;
248 }
249 }
250
3b98c0c2 251 /* some more paranoia, if the request was over-determined */
a910b123
LE
252 if (adm_ctx->device && adm_ctx->resource &&
253 adm_ctx->device->resource != adm_ctx->resource) {
4bc76048 254 pr_warning("request: minor=%u, resource=%s; but that minor belongs to resource %s\n",
a910b123
LE
255 adm_ctx->minor, adm_ctx->resource->name,
256 adm_ctx->device->resource->name);
257 drbd_msg_put_info(adm_ctx->reply_skb, "minor exists in different resource");
527f4b24
LE
258 return ERR_INVALID_REQUEST;
259 }
a910b123
LE
260 if (adm_ctx->device &&
261 adm_ctx->volume != VOLUME_UNSPECIFIED &&
262 adm_ctx->volume != adm_ctx->device->vnr) {
3b98c0c2 263 pr_warning("request: minor=%u, volume=%u; but that minor is volume %u in %s\n",
a910b123
LE
264 adm_ctx->minor, adm_ctx->volume,
265 adm_ctx->device->vnr,
266 adm_ctx->device->resource->name);
267 drbd_msg_put_info(adm_ctx->reply_skb, "minor exists as different volume");
3b98c0c2
LE
268 return ERR_INVALID_REQUEST;
269 }
0ace9dfa 270
9e276872
LE
271 /* still, provide adm_ctx->resource always, if possible. */
272 if (!adm_ctx->resource) {
273 adm_ctx->resource = adm_ctx->device ? adm_ctx->device->resource
274 : adm_ctx->connection ? adm_ctx->connection->resource : NULL;
275 if (adm_ctx->resource)
276 kref_get(&adm_ctx->resource->kref);
277 }
278
3b98c0c2
LE
279 return NO_ERROR;
280
281fail:
a910b123
LE
282 nlmsg_free(adm_ctx->reply_skb);
283 adm_ctx->reply_skb = NULL;
1e2a2551 284 return err;
3b98c0c2
LE
285}
286
a910b123
LE
287static int drbd_adm_finish(struct drbd_config_context *adm_ctx,
288 struct genl_info *info, int retcode)
3b98c0c2 289{
9e276872
LE
290 if (adm_ctx->device) {
291 kref_put(&adm_ctx->device->kref, drbd_destroy_device);
292 adm_ctx->device = NULL;
293 }
a910b123
LE
294 if (adm_ctx->connection) {
295 kref_put(&adm_ctx->connection->kref, &drbd_destroy_connection);
296 adm_ctx->connection = NULL;
0ace9dfa 297 }
a910b123
LE
298 if (adm_ctx->resource) {
299 kref_put(&adm_ctx->resource->kref, drbd_destroy_resource);
300 adm_ctx->resource = NULL;
4bc76048 301 }
0ace9dfa 302
a910b123 303 if (!adm_ctx->reply_skb)
3b98c0c2
LE
304 return -ENOMEM;
305
a910b123
LE
306 adm_ctx->reply_dh->ret_code = retcode;
307 drbd_adm_send_reply(adm_ctx->reply_skb, info);
3b98c0c2
LE
308 return 0;
309}
b411b363 310
bde89a9e 311static void setup_khelper_env(struct drbd_connection *connection, char **envp)
b411b363 312{
6b75dced 313 char *afs;
b411b363 314
089c075d 315 /* FIXME: A future version will not allow this case. */
bde89a9e 316 if (connection->my_addr_len == 0 || connection->peer_addr_len == 0)
089c075d
AG
317 return;
318
bde89a9e 319 switch (((struct sockaddr *)&connection->peer_addr)->sa_family) {
089c075d
AG
320 case AF_INET6:
321 afs = "ipv6";
322 snprintf(envp[4], 60, "DRBD_PEER_ADDRESS=%pI6",
bde89a9e 323 &((struct sockaddr_in6 *)&connection->peer_addr)->sin6_addr);
b411b363 324 break;
089c075d
AG
325 case AF_INET:
326 afs = "ipv4";
327 snprintf(envp[4], 60, "DRBD_PEER_ADDRESS=%pI4",
bde89a9e 328 &((struct sockaddr_in *)&connection->peer_addr)->sin_addr);
b411b363 329 break;
089c075d
AG
330 default:
331 afs = "ssocks";
332 snprintf(envp[4], 60, "DRBD_PEER_ADDRESS=%pI4",
bde89a9e 333 &((struct sockaddr_in *)&connection->peer_addr)->sin_addr);
b411b363 334 }
089c075d 335 snprintf(envp[3], 20, "DRBD_PEER_AF=%s", afs);
6b75dced 336}
b411b363 337
b30ab791 338int drbd_khelper(struct drbd_device *device, char *cmd)
b411b363
PR
339{
340 char *envp[] = { "HOME=/",
341 "TERM=linux",
342 "PATH=/sbin:/usr/sbin:/bin:/usr/bin",
6b75dced
PR
343 (char[20]) { }, /* address family */
344 (char[60]) { }, /* address */
b411b363 345 NULL };
0982368b 346 char mb[14];
b411b363 347 char *argv[] = {usermode_helper, cmd, mb, NULL };
a6b32bc3 348 struct drbd_connection *connection = first_peer_device(device)->connection;
6b75dced 349 struct sib_info sib;
b411b363
PR
350 int ret;
351
bde89a9e
AG
352 if (current == connection->worker.task)
353 set_bit(CALLBACK_PENDING, &connection->flags);
c2ba686f 354
0982368b 355 snprintf(mb, 14, "minor-%d", device_to_minor(device));
bde89a9e 356 setup_khelper_env(connection, envp);
b411b363 357
1090c056
LE
358 /* The helper may take some time.
359 * write out any unsynced meta data changes now */
b30ab791 360 drbd_md_sync(device);
1090c056 361
d0180171 362 drbd_info(device, "helper command: %s %s %s\n", usermode_helper, cmd, mb);
3b98c0c2
LE
363 sib.sib_reason = SIB_HELPER_PRE;
364 sib.helper_name = cmd;
b30ab791 365 drbd_bcast_event(device, &sib);
a2972846 366 notify_helper(NOTIFY_CALL, device, connection, cmd, 0);
70834d30 367 ret = call_usermodehelper(usermode_helper, argv, envp, UMH_WAIT_PROC);
b411b363 368 if (ret)
d0180171 369 drbd_warn(device, "helper command: %s %s %s exit code %u (0x%x)\n",
b411b363
PR
370 usermode_helper, cmd, mb,
371 (ret >> 8) & 0xff, ret);
372 else
d0180171 373 drbd_info(device, "helper command: %s %s %s exit code %u (0x%x)\n",
b411b363
PR
374 usermode_helper, cmd, mb,
375 (ret >> 8) & 0xff, ret);
3b98c0c2
LE
376 sib.sib_reason = SIB_HELPER_POST;
377 sib.helper_exit_code = ret;
b30ab791 378 drbd_bcast_event(device, &sib);
a2972846 379 notify_helper(NOTIFY_RESPONSE, device, connection, cmd, ret);
b411b363 380
bde89a9e
AG
381 if (current == connection->worker.task)
382 clear_bit(CALLBACK_PENDING, &connection->flags);
b411b363
PR
383
384 if (ret < 0) /* Ignore any ERRNOs we got. */
385 ret = 0;
386
387 return ret;
388}
389
7e5fec31 390enum drbd_peer_state conn_khelper(struct drbd_connection *connection, char *cmd)
6b75dced
PR
391{
392 char *envp[] = { "HOME=/",
393 "TERM=linux",
394 "PATH=/sbin:/usr/sbin:/bin:/usr/bin",
395 (char[20]) { }, /* address family */
396 (char[60]) { }, /* address */
397 NULL };
77c556f6
AG
398 char *resource_name = connection->resource->name;
399 char *argv[] = {usermode_helper, cmd, resource_name, NULL };
6b75dced
PR
400 int ret;
401
bde89a9e
AG
402 setup_khelper_env(connection, envp);
403 conn_md_sync(connection);
6b75dced 404
1ec861eb 405 drbd_info(connection, "helper command: %s %s %s\n", usermode_helper, cmd, resource_name);
6b75dced 406 /* TODO: conn_bcast_event() ?? */
a2972846 407 notify_helper(NOTIFY_CALL, NULL, connection, cmd, 0);
6b75dced 408
98683650 409 ret = call_usermodehelper(usermode_helper, argv, envp, UMH_WAIT_PROC);
6b75dced 410 if (ret)
1ec861eb 411 drbd_warn(connection, "helper command: %s %s %s exit code %u (0x%x)\n",
77c556f6 412 usermode_helper, cmd, resource_name,
6b75dced
PR
413 (ret >> 8) & 0xff, ret);
414 else
1ec861eb 415 drbd_info(connection, "helper command: %s %s %s exit code %u (0x%x)\n",
77c556f6 416 usermode_helper, cmd, resource_name,
6b75dced
PR
417 (ret >> 8) & 0xff, ret);
418 /* TODO: conn_bcast_event() ?? */
a2972846 419 notify_helper(NOTIFY_RESPONSE, NULL, connection, cmd, ret);
c2ba686f 420
b411b363
PR
421 if (ret < 0) /* Ignore any ERRNOs we got. */
422 ret = 0;
423
424 return ret;
425}
426
bde89a9e 427static enum drbd_fencing_p highest_fencing_policy(struct drbd_connection *connection)
b411b363 428{
cb703454 429 enum drbd_fencing_p fp = FP_NOT_AVAIL;
c06ece6b 430 struct drbd_peer_device *peer_device;
cb703454
PR
431 int vnr;
432
695d08fa 433 rcu_read_lock();
c06ece6b
AG
434 idr_for_each_entry(&connection->peer_devices, peer_device, vnr) {
435 struct drbd_device *device = peer_device->device;
b30ab791 436 if (get_ldev_if_state(device, D_CONSISTENT)) {
c06ece6b
AG
437 struct disk_conf *disk_conf =
438 rcu_dereference(peer_device->device->ldev->disk_conf);
439 fp = max_t(enum drbd_fencing_p, fp, disk_conf->fencing);
b30ab791 440 put_ldev(device);
cb703454
PR
441 }
442 }
695d08fa 443 rcu_read_unlock();
cb703454
PR
444
445 return fp;
446}
447
7bd000cb
LE
448static bool resource_is_supended(struct drbd_resource *resource)
449{
450 return resource->susp || resource->susp_fen || resource->susp_nod;
451}
452
bde89a9e 453bool conn_try_outdate_peer(struct drbd_connection *connection)
b411b363 454{
7bd000cb 455 struct drbd_resource * const resource = connection->resource;
28e448bb 456 unsigned int connect_cnt;
cb703454
PR
457 union drbd_state mask = { };
458 union drbd_state val = { };
459 enum drbd_fencing_p fp;
b411b363
PR
460 char *ex_to_string;
461 int r;
b411b363 462
7bd000cb 463 spin_lock_irq(&resource->req_lock);
bde89a9e 464 if (connection->cstate >= C_WF_REPORT_PARAMS) {
1ec861eb 465 drbd_err(connection, "Expected cstate < C_WF_REPORT_PARAMS\n");
7bd000cb 466 spin_unlock_irq(&resource->req_lock);
cb703454
PR
467 return false;
468 }
b411b363 469
bde89a9e 470 connect_cnt = connection->connect_cnt;
7bd000cb 471 spin_unlock_irq(&resource->req_lock);
28e448bb 472
bde89a9e 473 fp = highest_fencing_policy(connection);
cb703454
PR
474 switch (fp) {
475 case FP_NOT_AVAIL:
1ec861eb 476 drbd_warn(connection, "Not fencing peer, I'm not even Consistent myself.\n");
7bd000cb
LE
477 spin_lock_irq(&resource->req_lock);
478 if (connection->cstate < C_WF_REPORT_PARAMS) {
479 _conn_request_state(connection,
480 (union drbd_state) { { .susp_fen = 1 } },
481 (union drbd_state) { { .susp_fen = 0 } },
482 CS_VERBOSE | CS_HARD | CS_DC_SUSP);
483 /* We are no longer suspended due to the fencing policy.
484 * We may still be suspended due to the on-no-data-accessible policy.
485 * If that was OND_IO_ERROR, fail pending requests. */
486 if (!resource_is_supended(resource))
487 _tl_restart(connection, CONNECTION_LOST_WHILE_PENDING);
488 }
489 /* Else: in case we raced with a connection handshake,
490 * let the handshake figure out if we maybe can RESEND,
491 * and do not resume/fail pending requests here.
492 * Worst case is we stay suspended for now, which may be
493 * resolved by either re-establishing the replication link, or
494 * the next link failure, or eventually the administrator. */
495 spin_unlock_irq(&resource->req_lock);
496 return false;
497
cb703454
PR
498 case FP_DONT_CARE:
499 return true;
500 default: ;
b411b363
PR
501 }
502
bde89a9e 503 r = conn_khelper(connection, "fence-peer");
b411b363
PR
504
505 switch ((r>>8) & 0xff) {
7e5fec31 506 case P_INCONSISTENT: /* peer is inconsistent */
b411b363 507 ex_to_string = "peer is inconsistent or worse";
cb703454
PR
508 mask.pdsk = D_MASK;
509 val.pdsk = D_INCONSISTENT;
b411b363 510 break;
7e5fec31 511 case P_OUTDATED: /* peer got outdated, or was already outdated */
b411b363 512 ex_to_string = "peer was fenced";
cb703454
PR
513 mask.pdsk = D_MASK;
514 val.pdsk = D_OUTDATED;
b411b363 515 break;
7e5fec31 516 case P_DOWN: /* peer was down */
bde89a9e 517 if (conn_highest_disk(connection) == D_UP_TO_DATE) {
b411b363
PR
518 /* we will(have) create(d) a new UUID anyways... */
519 ex_to_string = "peer is unreachable, assumed to be dead";
cb703454
PR
520 mask.pdsk = D_MASK;
521 val.pdsk = D_OUTDATED;
b411b363
PR
522 } else {
523 ex_to_string = "peer unreachable, doing nothing since disk != UpToDate";
b411b363
PR
524 }
525 break;
7e5fec31 526 case P_PRIMARY: /* Peer is primary, voluntarily outdate myself.
b411b363
PR
527 * This is useful when an unconnected R_SECONDARY is asked to
528 * become R_PRIMARY, but finds the other peer being active. */
529 ex_to_string = "peer is active";
1ec861eb 530 drbd_warn(connection, "Peer is primary, outdating myself.\n");
cb703454
PR
531 mask.disk = D_MASK;
532 val.disk = D_OUTDATED;
b411b363 533 break;
7e5fec31
FF
534 case P_FENCING:
535 /* THINK: do we need to handle this
536 * like case 4, or more like case 5? */
b411b363 537 if (fp != FP_STONITH)
1ec861eb 538 drbd_err(connection, "fence-peer() = 7 && fencing != Stonith !!!\n");
b411b363 539 ex_to_string = "peer was stonithed";
cb703454
PR
540 mask.pdsk = D_MASK;
541 val.pdsk = D_OUTDATED;
b411b363
PR
542 break;
543 default:
544 /* The script is broken ... */
1ec861eb 545 drbd_err(connection, "fence-peer helper broken, returned %d\n", (r>>8)&0xff);
cb703454 546 return false; /* Eventually leave IO frozen */
b411b363
PR
547 }
548
1ec861eb 549 drbd_info(connection, "fence-peer helper returned %d (%s)\n",
cb703454 550 (r>>8) & 0xff, ex_to_string);
fb22c402 551
cb703454 552 /* Not using
bde89a9e 553 conn_request_state(connection, mask, val, CS_VERBOSE);
cb703454
PR
554 here, because we might were able to re-establish the connection in the
555 meantime. */
7bd000cb 556 spin_lock_irq(&resource->req_lock);
bde89a9e
AG
557 if (connection->cstate < C_WF_REPORT_PARAMS && !test_bit(STATE_SENT, &connection->flags)) {
558 if (connection->connect_cnt != connect_cnt)
28e448bb
PR
559 /* In case the connection was established and droped
560 while the fence-peer handler was running, ignore it */
1ec861eb 561 drbd_info(connection, "Ignoring fence-peer exit code\n");
28e448bb 562 else
bde89a9e 563 _conn_request_state(connection, mask, val, CS_VERBOSE);
28e448bb 564 }
7bd000cb 565 spin_unlock_irq(&resource->req_lock);
cb703454 566
bde89a9e 567 return conn_highest_pdsk(connection) <= D_OUTDATED;
b411b363
PR
568}
569
87f7be4c
PR
570static int _try_outdate_peer_async(void *data)
571{
bde89a9e 572 struct drbd_connection *connection = (struct drbd_connection *)data;
87f7be4c 573
bde89a9e 574 conn_try_outdate_peer(connection);
87f7be4c 575
05a10ec7 576 kref_put(&connection->kref, drbd_destroy_connection);
87f7be4c
PR
577 return 0;
578}
579
bde89a9e 580void conn_try_outdate_peer_async(struct drbd_connection *connection)
87f7be4c
PR
581{
582 struct task_struct *opa;
583
bde89a9e 584 kref_get(&connection->kref);
bbc1c5e8
LE
585 /* We may just have force_sig()'ed this thread
586 * to get it out of some blocking network function.
587 * Clear signals; otherwise kthread_run(), which internally uses
588 * wait_on_completion_killable(), will mistake our pending signal
589 * for a new fatal signal and fail. */
590 flush_signals(current);
bde89a9e 591 opa = kthread_run(_try_outdate_peer_async, connection, "drbd_async_h");
9dc9fbb3 592 if (IS_ERR(opa)) {
1ec861eb 593 drbd_err(connection, "out of mem, failed to invoke fence-peer helper\n");
05a10ec7 594 kref_put(&connection->kref, drbd_destroy_connection);
9dc9fbb3 595 }
87f7be4c 596}
b411b363 597
bf885f8a 598enum drbd_state_rv
44a4d551 599drbd_set_role(struct drbd_device *const device, enum drbd_role new_role, int force)
b411b363 600{
44a4d551
LE
601 struct drbd_peer_device *const peer_device = first_peer_device(device);
602 struct drbd_connection *const connection = peer_device ? peer_device->connection : NULL;
b411b363 603 const int max_tries = 4;
bf885f8a 604 enum drbd_state_rv rv = SS_UNKNOWN_ERROR;
44ed167d 605 struct net_conf *nc;
b411b363
PR
606 int try = 0;
607 int forced = 0;
608 union drbd_state mask, val;
b411b363 609
b6f85ef9
AG
610 if (new_role == R_PRIMARY) {
611 struct drbd_connection *connection;
612
613 /* Detect dead peers as soon as possible. */
614
615 rcu_read_lock();
616 for_each_connection(connection, device->resource)
617 request_ping(connection);
618 rcu_read_unlock();
619 }
b411b363 620
b30ab791 621 mutex_lock(device->state_mutex);
b411b363
PR
622
623 mask.i = 0; mask.role = R_MASK;
624 val.i = 0; val.role = new_role;
625
626 while (try++ < max_tries) {
a8821531 627 rv = _drbd_request_state_holding_state_mutex(device, mask, val, CS_WAIT_COMPLETE);
b411b363
PR
628
629 /* in case we first succeeded to outdate,
630 * but now suddenly could establish a connection */
bf885f8a 631 if (rv == SS_CW_FAILED_BY_PEER && mask.pdsk != 0) {
b411b363
PR
632 val.pdsk = 0;
633 mask.pdsk = 0;
634 continue;
635 }
636
bf885f8a 637 if (rv == SS_NO_UP_TO_DATE_DISK && force &&
b30ab791
AG
638 (device->state.disk < D_UP_TO_DATE &&
639 device->state.disk >= D_INCONSISTENT)) {
b411b363
PR
640 mask.disk = D_MASK;
641 val.disk = D_UP_TO_DATE;
642 forced = 1;
643 continue;
644 }
645
bf885f8a 646 if (rv == SS_NO_UP_TO_DATE_DISK &&
b30ab791 647 device->state.disk == D_CONSISTENT && mask.pdsk == 0) {
0b0ba1ef 648 D_ASSERT(device, device->state.pdsk == D_UNKNOWN);
b411b363 649
44a4d551 650 if (conn_try_outdate_peer(connection)) {
b411b363
PR
651 val.disk = D_UP_TO_DATE;
652 mask.disk = D_MASK;
653 }
b411b363
PR
654 continue;
655 }
656
bf885f8a 657 if (rv == SS_NOTHING_TO_DO)
3b98c0c2 658 goto out;
bf885f8a 659 if (rv == SS_PRIMARY_NOP && mask.pdsk == 0) {
44a4d551 660 if (!conn_try_outdate_peer(connection) && force) {
d0180171 661 drbd_warn(device, "Forced into split brain situation!\n");
cb703454
PR
662 mask.pdsk = D_MASK;
663 val.pdsk = D_OUTDATED;
b411b363 664
cb703454 665 }
b411b363
PR
666 continue;
667 }
bf885f8a 668 if (rv == SS_TWO_PRIMARIES) {
b411b363
PR
669 /* Maybe the peer is detected as dead very soon...
670 retry at most once more in this case. */
44ed167d
PR
671 int timeo;
672 rcu_read_lock();
44a4d551 673 nc = rcu_dereference(connection->net_conf);
44ed167d
PR
674 timeo = nc ? (nc->ping_timeo + 1) * HZ / 10 : 1;
675 rcu_read_unlock();
676 schedule_timeout_interruptible(timeo);
b411b363
PR
677 if (try < max_tries)
678 try = max_tries - 1;
679 continue;
680 }
bf885f8a 681 if (rv < SS_SUCCESS) {
b30ab791 682 rv = _drbd_request_state(device, mask, val,
b411b363 683 CS_VERBOSE + CS_WAIT_COMPLETE);
bf885f8a 684 if (rv < SS_SUCCESS)
3b98c0c2 685 goto out;
b411b363
PR
686 }
687 break;
688 }
689
bf885f8a 690 if (rv < SS_SUCCESS)
3b98c0c2 691 goto out;
b411b363
PR
692
693 if (forced)
d0180171 694 drbd_warn(device, "Forced to consider local data as UpToDate!\n");
b411b363
PR
695
696 /* Wait until nothing is on the fly :) */
b30ab791 697 wait_event(device->misc_wait, atomic_read(&device->ap_pending_cnt) == 0);
b411b363 698
b6dd1a89
LE
699 /* FIXME also wait for all pending P_BARRIER_ACK? */
700
b411b363 701 if (new_role == R_SECONDARY) {
b30ab791
AG
702 if (get_ldev(device)) {
703 device->ldev->md.uuid[UI_CURRENT] &= ~(u64)1;
704 put_ldev(device);
b411b363
PR
705 }
706 } else {
66ce6dbc 707 mutex_lock(&device->resource->conf_update);
44a4d551 708 nc = connection->net_conf;
44ed167d 709 if (nc)
6139f60d 710 nc->discard_my_data = 0; /* without copy; single bit op is atomic */
66ce6dbc 711 mutex_unlock(&device->resource->conf_update);
91fd4dad 712
b30ab791
AG
713 if (get_ldev(device)) {
714 if (((device->state.conn < C_CONNECTED ||
715 device->state.pdsk <= D_FAILED)
716 && device->ldev->md.uuid[UI_BITMAP] == 0) || forced)
717 drbd_uuid_new_current(device);
b411b363 718
b30ab791
AG
719 device->ldev->md.uuid[UI_CURRENT] |= (u64)1;
720 put_ldev(device);
b411b363
PR
721 }
722 }
723
19f843aa
LE
724 /* writeout of activity log covered areas of the bitmap
725 * to stable storage done in after state change already */
b411b363 726
b30ab791 727 if (device->state.conn >= C_WF_REPORT_PARAMS) {
b411b363
PR
728 /* if this was forced, we should consider sync */
729 if (forced)
44a4d551
LE
730 drbd_send_uuids(peer_device);
731 drbd_send_current_state(peer_device);
b411b363
PR
732 }
733
b30ab791 734 drbd_md_sync(device);
720979fb 735 set_disk_ro(device->vdisk, new_role == R_SECONDARY);
b30ab791 736 kobject_uevent(&disk_to_dev(device->vdisk)->kobj, KOBJ_CHANGE);
3b98c0c2 737out:
b30ab791 738 mutex_unlock(device->state_mutex);
bf885f8a 739 return rv;
b411b363
PR
740}
741
3b98c0c2 742static const char *from_attrs_err_to_txt(int err)
ef50a3e3 743{
3b98c0c2
LE
744 return err == -ENOMSG ? "required attribute missing" :
745 err == -EOPNOTSUPP ? "unknown mandatory attribute" :
f399002e 746 err == -EEXIST ? "can not change invariant setting" :
3b98c0c2 747 "invalid attribute value";
ef50a3e3 748}
b411b363 749
3b98c0c2 750int drbd_adm_set_role(struct sk_buff *skb, struct genl_info *info)
b411b363 751{
a910b123 752 struct drbd_config_context adm_ctx;
3b98c0c2
LE
753 struct set_role_parms parms;
754 int err;
755 enum drbd_ret_code retcode;
b411b363 756
a910b123 757 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
3b98c0c2
LE
758 if (!adm_ctx.reply_skb)
759 return retcode;
760 if (retcode != NO_ERROR)
761 goto out;
b411b363 762
3b98c0c2
LE
763 memset(&parms, 0, sizeof(parms));
764 if (info->attrs[DRBD_NLA_SET_ROLE_PARMS]) {
f399002e 765 err = set_role_parms_from_attrs(&parms, info);
3b98c0c2
LE
766 if (err) {
767 retcode = ERR_MANDATORY_TAG;
a910b123 768 drbd_msg_put_info(adm_ctx.reply_skb, from_attrs_err_to_txt(err));
3b98c0c2
LE
769 goto out;
770 }
771 }
9e276872
LE
772 genl_unlock();
773 mutex_lock(&adm_ctx.resource->adm_mutex);
b411b363 774
3b98c0c2 775 if (info->genlhdr->cmd == DRBD_ADM_PRIMARY)
b30ab791 776 retcode = drbd_set_role(adm_ctx.device, R_PRIMARY, parms.assume_uptodate);
3b98c0c2 777 else
b30ab791 778 retcode = drbd_set_role(adm_ctx.device, R_SECONDARY, 0);
9e276872
LE
779
780 mutex_unlock(&adm_ctx.resource->adm_mutex);
781 genl_lock();
3b98c0c2 782out:
a910b123 783 drbd_adm_finish(&adm_ctx, info, retcode);
b411b363
PR
784 return 0;
785}
786
ae8bf312
LE
787/* Initializes the md.*_offset members, so we are able to find
788 * the on disk meta data.
789 *
790 * We currently have two possible layouts:
791 * external:
792 * |----------- md_size_sect ------------------|
793 * [ 4k superblock ][ activity log ][ Bitmap ]
794 * | al_offset == 8 |
795 * | bm_offset = al_offset + X |
796 * ==> bitmap sectors = md_size_sect - bm_offset
797 *
798 * internal:
799 * |----------- md_size_sect ------------------|
800 * [data.....][ Bitmap ][ activity log ][ 4k superblock ]
801 * | al_offset < 0 |
802 * | bm_offset = al_offset - Y |
803 * ==> bitmap sectors = Y = al_offset - bm_offset
804 *
805 * Activity log size used to be fixed 32kB,
806 * but is about to become configurable.
807 */
b30ab791 808static void drbd_md_set_sector_offsets(struct drbd_device *device,
b411b363
PR
809 struct drbd_backing_dev *bdev)
810{
811 sector_t md_size_sect = 0;
c04ccaa6 812 unsigned int al_size_sect = bdev->md.al_size_4k * 8;
daeda1cc 813
3a4d4eb3
LE
814 bdev->md.md_offset = drbd_md_ss(bdev);
815
68e41a43 816 switch (bdev->md.meta_dev_idx) {
b411b363
PR
817 default:
818 /* v07 style fixed size indexed meta data */
ae8bf312 819 bdev->md.md_size_sect = MD_128MB_SECT;
ae8bf312
LE
820 bdev->md.al_offset = MD_4kB_SECT;
821 bdev->md.bm_offset = MD_4kB_SECT + al_size_sect;
b411b363
PR
822 break;
823 case DRBD_MD_INDEX_FLEX_EXT:
824 /* just occupy the full device; unit: sectors */
825 bdev->md.md_size_sect = drbd_get_capacity(bdev->md_bdev);
ae8bf312
LE
826 bdev->md.al_offset = MD_4kB_SECT;
827 bdev->md.bm_offset = MD_4kB_SECT + al_size_sect;
b411b363
PR
828 break;
829 case DRBD_MD_INDEX_INTERNAL:
830 case DRBD_MD_INDEX_FLEX_INT:
b411b363 831 /* al size is still fixed */
ae8bf312 832 bdev->md.al_offset = -al_size_sect;
b411b363
PR
833 /* we need (slightly less than) ~ this much bitmap sectors: */
834 md_size_sect = drbd_get_capacity(bdev->backing_bdev);
835 md_size_sect = ALIGN(md_size_sect, BM_SECT_PER_EXT);
836 md_size_sect = BM_SECT_TO_EXT(md_size_sect);
837 md_size_sect = ALIGN(md_size_sect, 8);
838
839 /* plus the "drbd meta data super block",
840 * and the activity log; */
ae8bf312 841 md_size_sect += MD_4kB_SECT + al_size_sect;
b411b363
PR
842
843 bdev->md.md_size_sect = md_size_sect;
844 /* bitmap offset is adjusted by 'super' block size */
ae8bf312 845 bdev->md.bm_offset = -md_size_sect + MD_4kB_SECT;
b411b363
PR
846 break;
847 }
848}
849
4b0715f0 850/* input size is expected to be in KB */
b411b363
PR
851char *ppsize(char *buf, unsigned long long size)
852{
4b0715f0
LE
853 /* Needs 9 bytes at max including trailing NUL:
854 * -1ULL ==> "16384 EB" */
b411b363
PR
855 static char units[] = { 'K', 'M', 'G', 'T', 'P', 'E' };
856 int base = 0;
4b0715f0 857 while (size >= 10000 && base < sizeof(units)-1) {
b411b363
PR
858 /* shift + round */
859 size = (size >> 10) + !!(size & (1<<9));
860 base++;
861 }
4b0715f0 862 sprintf(buf, "%u %cB", (unsigned)size, units[base]);
b411b363
PR
863
864 return buf;
865}
866
867/* there is still a theoretical deadlock when called from receiver
868 * on an D_INCONSISTENT R_PRIMARY:
869 * remote READ does inc_ap_bio, receiver would need to receive answer
870 * packet from remote to dec_ap_bio again.
871 * receiver receive_sizes(), comes here,
872 * waits for ap_bio_cnt == 0. -> deadlock.
873 * but this cannot happen, actually, because:
874 * R_PRIMARY D_INCONSISTENT, and peer's disk is unreachable
875 * (not connected, or bad/no disk on peer):
876 * see drbd_fail_request_early, ap_bio_cnt is zero.
877 * R_PRIMARY D_INCONSISTENT, and C_SYNC_TARGET:
878 * peer may not initiate a resize.
879 */
3b98c0c2
LE
880/* Note these are not to be confused with
881 * drbd_adm_suspend_io/drbd_adm_resume_io,
882 * which are (sub) state changes triggered by admin (drbdsetup),
883 * and can be long lived.
b30ab791 884 * This changes an device->flag, is triggered by drbd internals,
3b98c0c2 885 * and should be short-lived. */
7dbb4386
PR
886/* It needs to be a counter, since multiple threads might
887 independently suspend and resume IO. */
b30ab791 888void drbd_suspend_io(struct drbd_device *device)
b411b363 889{
7dbb4386 890 atomic_inc(&device->suspend_cnt);
b30ab791 891 if (drbd_suspended(device))
265be2d0 892 return;
b30ab791 893 wait_event(device->misc_wait, !atomic_read(&device->ap_bio_cnt));
b411b363
PR
894}
895
b30ab791 896void drbd_resume_io(struct drbd_device *device)
b411b363 897{
7dbb4386
PR
898 if (atomic_dec_and_test(&device->suspend_cnt))
899 wake_up(&device->misc_wait);
b411b363
PR
900}
901
902/**
903 * drbd_determine_dev_size() - Sets the right device size obeying all constraints
b30ab791 904 * @device: DRBD device.
b411b363
PR
905 *
906 * Returns 0 on success, negative return values indicate errors.
907 * You should call drbd_md_sync() after calling this function.
908 */
d752b269 909enum determine_dev_size
b30ab791 910drbd_determine_dev_size(struct drbd_device *device, enum dds_flags flags, struct resize_parms *rs) __must_hold(local)
b411b363 911{
8011e249
LE
912 struct md_offsets_and_sizes {
913 u64 last_agreed_sect;
914 u64 md_offset;
915 s32 al_offset;
916 s32 bm_offset;
917 u32 md_size_sect;
918
919 u32 al_stripes;
920 u32 al_stripe_size_4k;
921 } prev;
922 sector_t u_size, size;
b30ab791 923 struct drbd_md *md = &device->ldev->md;
b411b363 924 char ppb[10];
d752b269 925 void *buffer;
b411b363
PR
926
927 int md_moved, la_size_changed;
e96c9633 928 enum determine_dev_size rv = DS_UNCHANGED;
b411b363 929
5f7c0124
LE
930 /* We may change the on-disk offsets of our meta data below. Lock out
931 * anything that may cause meta data IO, to avoid acting on incomplete
932 * layout changes or scribbling over meta data that is in the process
933 * of being moved.
b411b363 934 *
5f7c0124
LE
935 * Move is not exactly correct, btw, currently we have all our meta
936 * data in core memory, to "move" it we just write it all out, there
937 * are no reads. */
b30ab791 938 drbd_suspend_io(device);
e37d2438 939 buffer = drbd_md_get_buffer(device, __func__); /* Lock meta-data IO */
d752b269 940 if (!buffer) {
b30ab791 941 drbd_resume_io(device);
d752b269
PR
942 return DS_ERROR;
943 }
b411b363 944
8011e249
LE
945 /* remember current offset and sizes */
946 prev.last_agreed_sect = md->la_size_sect;
947 prev.md_offset = md->md_offset;
948 prev.al_offset = md->al_offset;
949 prev.bm_offset = md->bm_offset;
950 prev.md_size_sect = md->md_size_sect;
951 prev.al_stripes = md->al_stripes;
952 prev.al_stripe_size_4k = md->al_stripe_size_4k;
b411b363 953
d752b269
PR
954 if (rs) {
955 /* rs is non NULL if we should change the AL layout only */
d752b269
PR
956 md->al_stripes = rs->al_stripes;
957 md->al_stripe_size_4k = rs->al_stripe_size / 4;
958 md->al_size_4k = (u64)rs->al_stripes * rs->al_stripe_size / 4;
959 }
960
b30ab791 961 drbd_md_set_sector_offsets(device, device->ldev);
b411b363 962
daeda1cc 963 rcu_read_lock();
b30ab791 964 u_size = rcu_dereference(device->ldev->disk_conf)->disk_size;
daeda1cc 965 rcu_read_unlock();
b30ab791 966 size = drbd_new_dev_size(device, device->ldev, u_size, flags & DDSF_FORCED);
b411b363 967
8011e249 968 if (size < prev.last_agreed_sect) {
d752b269
PR
969 if (rs && u_size == 0) {
970 /* Remove "rs &&" later. This check should always be active, but
971 right now the receiver expects the permissive behavior */
d0180171 972 drbd_warn(device, "Implicit shrink not allowed. "
d752b269
PR
973 "Use --size=%llus for explicit shrink.\n",
974 (unsigned long long)size);
975 rv = DS_ERROR_SHRINK;
976 }
977 if (u_size > size)
978 rv = DS_ERROR_SPACE_MD;
979 if (rv != DS_UNCHANGED)
980 goto err_out;
981 }
982
b30ab791
AG
983 if (drbd_get_capacity(device->this_bdev) != size ||
984 drbd_bm_capacity(device) != size) {
b411b363 985 int err;
b30ab791 986 err = drbd_bm_resize(device, size, !(flags & DDSF_NO_RESYNC));
b411b363
PR
987 if (unlikely(err)) {
988 /* currently there is only one error: ENOMEM! */
8011e249 989 size = drbd_bm_capacity(device);
b411b363 990 if (size == 0) {
d0180171 991 drbd_err(device, "OUT OF MEMORY! "
b411b363
PR
992 "Could not allocate bitmap!\n");
993 } else {
d0180171 994 drbd_err(device, "BM resizing failed. "
8011e249 995 "Leaving size unchanged\n");
b411b363 996 }
e96c9633 997 rv = DS_ERROR;
b411b363
PR
998 }
999 /* racy, see comments above. */
b30ab791 1000 drbd_set_my_capacity(device, size);
8011e249 1001 md->la_size_sect = size;
d0180171 1002 drbd_info(device, "size = %s (%llu KB)\n", ppsize(ppb, size>>1),
b411b363
PR
1003 (unsigned long long)size>>1);
1004 }
d752b269
PR
1005 if (rv <= DS_ERROR)
1006 goto err_out;
b411b363 1007
8011e249 1008 la_size_changed = (prev.last_agreed_sect != md->la_size_sect);
b411b363 1009
8011e249
LE
1010 md_moved = prev.md_offset != md->md_offset
1011 || prev.md_size_sect != md->md_size_sect;
b411b363 1012
d752b269
PR
1013 if (la_size_changed || md_moved || rs) {
1014 u32 prev_flags;
24dccabb 1015
fcb09674
LE
1016 /* We do some synchronous IO below, which may take some time.
1017 * Clear the timer, to avoid scary "timer expired!" messages,
1018 * "Superblock" is written out at least twice below, anyways. */
1019 del_timer(&device->md_sync_timer);
d752b269 1020
5f7c0124
LE
1021 /* We won't change the "al-extents" setting, we just may need
1022 * to move the on-disk location of the activity log ringbuffer.
1023 * Lock for transaction is good enough, it may well be "dirty"
1024 * or even "starving". */
1025 wait_event(device->al_wait, lc_try_lock_for_transaction(device->act_log));
1026
1027 /* mark current on-disk bitmap and activity log as unreliable */
d752b269 1028 prev_flags = md->flags;
5f7c0124 1029 md->flags |= MDF_FULL_SYNC | MDF_AL_DISABLED;
b30ab791 1030 drbd_md_write(device, buffer);
d752b269 1031
5f7c0124
LE
1032 drbd_al_initialize(device, buffer);
1033
d0180171 1034 drbd_info(device, "Writing the whole bitmap, %s\n",
b411b363
PR
1035 la_size_changed && md_moved ? "size changed and md moved" :
1036 la_size_changed ? "size changed" : "md moved");
20ceb2b2 1037 /* next line implicitly does drbd_suspend_io()+drbd_resume_io() */
b30ab791 1038 drbd_bitmap_io(device, md_moved ? &drbd_bm_write_all : &drbd_bm_write,
d752b269 1039 "size changed", BM_LOCKED_MASK);
d752b269 1040
5f7c0124
LE
1041 /* on-disk bitmap and activity log is authoritative again
1042 * (unless there was an IO error meanwhile...) */
d752b269 1043 md->flags = prev_flags;
b30ab791 1044 drbd_md_write(device, buffer);
d752b269
PR
1045
1046 if (rs)
d0180171
AG
1047 drbd_info(device, "Changed AL layout to al-stripes = %d, al-stripe-size-kB = %d\n",
1048 md->al_stripes, md->al_stripe_size_4k * 4);
b411b363
PR
1049 }
1050
8011e249
LE
1051 if (size > prev.last_agreed_sect)
1052 rv = prev.last_agreed_sect ? DS_GREW : DS_GREW_FROM_ZERO;
1053 if (size < prev.last_agreed_sect)
e96c9633 1054 rv = DS_SHRUNK;
d752b269
PR
1055
1056 if (0) {
1057 err_out:
8011e249
LE
1058 /* restore previous offset and sizes */
1059 md->la_size_sect = prev.last_agreed_sect;
1060 md->md_offset = prev.md_offset;
1061 md->al_offset = prev.al_offset;
1062 md->bm_offset = prev.bm_offset;
1063 md->md_size_sect = prev.md_size_sect;
1064 md->al_stripes = prev.al_stripes;
1065 md->al_stripe_size_4k = prev.al_stripe_size_4k;
1066 md->al_size_4k = (u64)prev.al_stripes * prev.al_stripe_size_4k;
d752b269 1067 }
b30ab791
AG
1068 lc_unlock(device->act_log);
1069 wake_up(&device->al_wait);
1070 drbd_md_put_buffer(device);
1071 drbd_resume_io(device);
b411b363
PR
1072
1073 return rv;
1074}
1075
1076sector_t
b30ab791 1077drbd_new_dev_size(struct drbd_device *device, struct drbd_backing_dev *bdev,
ef5e44a6 1078 sector_t u_size, int assume_peer_has_space)
b411b363 1079{
b30ab791 1080 sector_t p_size = device->p_size; /* partner's disk size. */
cccac985 1081 sector_t la_size_sect = bdev->md.la_size_sect; /* last agreed size. */
b411b363 1082 sector_t m_size; /* my size */
b411b363
PR
1083 sector_t size = 0;
1084
1085 m_size = drbd_get_max_capacity(bdev);
1086
b30ab791 1087 if (device->state.conn < C_CONNECTED && assume_peer_has_space) {
d0180171 1088 drbd_warn(device, "Resize while not connected was forced by the user!\n");
a393db6f
PR
1089 p_size = m_size;
1090 }
1091
b411b363
PR
1092 if (p_size && m_size) {
1093 size = min_t(sector_t, p_size, m_size);
1094 } else {
cccac985
LE
1095 if (la_size_sect) {
1096 size = la_size_sect;
b411b363
PR
1097 if (m_size && m_size < size)
1098 size = m_size;
1099 if (p_size && p_size < size)
1100 size = p_size;
1101 } else {
1102 if (m_size)
1103 size = m_size;
1104 if (p_size)
1105 size = p_size;
1106 }
1107 }
1108
1109 if (size == 0)
d0180171 1110 drbd_err(device, "Both nodes diskless!\n");
b411b363
PR
1111
1112 if (u_size) {
1113 if (u_size > size)
d0180171 1114 drbd_err(device, "Requested disk size is too big (%lu > %lu)\n",
b411b363
PR
1115 (unsigned long)u_size>>1, (unsigned long)size>>1);
1116 else
1117 size = u_size;
1118 }
1119
1120 return size;
1121}
1122
1123/**
1124 * drbd_check_al_size() - Ensures that the AL is of the right size
b30ab791 1125 * @device: DRBD device.
b411b363
PR
1126 *
1127 * Returns -EBUSY if current al lru is still used, -ENOMEM when allocation
1128 * failed, and 0 on success. You should call drbd_md_sync() after you called
1129 * this function.
1130 */
b30ab791 1131static int drbd_check_al_size(struct drbd_device *device, struct disk_conf *dc)
b411b363
PR
1132{
1133 struct lru_cache *n, *t;
1134 struct lc_element *e;
1135 unsigned int in_use;
1136 int i;
1137
b30ab791
AG
1138 if (device->act_log &&
1139 device->act_log->nr_elements == dc->al_extents)
b411b363
PR
1140 return 0;
1141
1142 in_use = 0;
b30ab791 1143 t = device->act_log;
7ad651b5 1144 n = lc_create("act_log", drbd_al_ext_cache, AL_UPDATES_PER_TRANSACTION,
f399002e 1145 dc->al_extents, sizeof(struct lc_element), 0);
b411b363
PR
1146
1147 if (n == NULL) {
d0180171 1148 drbd_err(device, "Cannot allocate act_log lru!\n");
b411b363
PR
1149 return -ENOMEM;
1150 }
b30ab791 1151 spin_lock_irq(&device->al_lock);
b411b363
PR
1152 if (t) {
1153 for (i = 0; i < t->nr_elements; i++) {
1154 e = lc_element_by_index(t, i);
1155 if (e->refcnt)
d0180171 1156 drbd_err(device, "refcnt(%d)==%d\n",
b411b363
PR
1157 e->lc_number, e->refcnt);
1158 in_use += e->refcnt;
1159 }
1160 }
1161 if (!in_use)
b30ab791
AG
1162 device->act_log = n;
1163 spin_unlock_irq(&device->al_lock);
b411b363 1164 if (in_use) {
d0180171 1165 drbd_err(device, "Activity log still in use!\n");
b411b363
PR
1166 lc_destroy(n);
1167 return -EBUSY;
1168 } else {
d01efcee 1169 lc_destroy(t);
b411b363 1170 }
b30ab791 1171 drbd_md_mark_dirty(device); /* we changed device->act_log->nr_elemens */
b411b363
PR
1172 return 0;
1173}
1174
69ba1ee9
LE
1175static void blk_queue_discard_granularity(struct request_queue *q, unsigned int granularity)
1176{
1177 q->limits.discard_granularity = granularity;
1178}
9104d31a
LE
1179
1180static unsigned int drbd_max_discard_sectors(struct drbd_connection *connection)
1181{
1182 /* when we introduced REQ_WRITE_SAME support, we also bumped
1183 * our maximum supported batch bio size used for discards. */
1184 if (connection->agreed_features & DRBD_FF_WSAME)
1185 return DRBD_MAX_BBIO_SECTORS;
1186 /* before, with DRBD <= 8.4.6, we only allowed up to one AL_EXTENT_SIZE. */
1187 return AL_EXTENT_SIZE >> 9;
1188}
1189
69ba1ee9
LE
1190static void decide_on_discard_support(struct drbd_device *device,
1191 struct request_queue *q,
1192 struct request_queue *b,
1193 bool discard_zeroes_if_aligned)
1194{
1195 /* q = drbd device queue (device->rq_queue)
1196 * b = backing device queue (device->ldev->backing_bdev->bd_disk->queue),
1197 * or NULL if diskless
1198 */
1199 struct drbd_connection *connection = first_peer_device(device)->connection;
1200 bool can_do = b ? blk_queue_discard(b) : true;
1201
1202 if (can_do && b && !b->limits.discard_zeroes_data && !discard_zeroes_if_aligned) {
1203 can_do = false;
1204 drbd_info(device, "discard_zeroes_data=0 and discard_zeroes_if_aligned=no: disabling discards\n");
1205 }
9104d31a 1206 if (can_do && connection->cstate >= C_CONNECTED && !(connection->agreed_features & DRBD_FF_TRIM)) {
69ba1ee9
LE
1207 can_do = false;
1208 drbd_info(connection, "peer DRBD too old, does not support TRIM: disabling discards\n");
1209 }
1210 if (can_do) {
1211 /* We don't care for the granularity, really.
1212 * Stacking limits below should fix it for the local
1213 * device. Whether or not it is a suitable granularity
1214 * on the remote device is not our problem, really. If
1215 * you care, you need to use devices with similar
1216 * topology on all peers. */
1217 blk_queue_discard_granularity(q, 512);
9104d31a 1218 q->limits.max_discard_sectors = drbd_max_discard_sectors(connection);
69ba1ee9
LE
1219 queue_flag_set_unlocked(QUEUE_FLAG_DISCARD, q);
1220 } else {
1221 queue_flag_clear_unlocked(QUEUE_FLAG_DISCARD, q);
1222 blk_queue_discard_granularity(q, 0);
1223 q->limits.max_discard_sectors = 0;
1224 }
1225}
1226
1227static void fixup_discard_if_not_supported(struct request_queue *q)
1228{
1229 /* To avoid confusion, if this queue does not support discard, clear
1230 * max_discard_sectors, which is what lsblk -D reports to the user.
1231 * Older kernels got this wrong in "stack limits".
1232 * */
1233 if (!blk_queue_discard(q)) {
1234 blk_queue_max_discard_sectors(q, 0);
1235 blk_queue_discard_granularity(q, 0);
1236 }
1237}
1238
9104d31a
LE
1239static void decide_on_write_same_support(struct drbd_device *device,
1240 struct request_queue *q,
1241 struct request_queue *b, struct o_qlim *o)
1242{
1243 struct drbd_peer_device *peer_device = first_peer_device(device);
1244 struct drbd_connection *connection = peer_device->connection;
1245 bool can_do = b ? b->limits.max_write_same_sectors : true;
1246
1247 if (can_do && connection->cstate >= C_CONNECTED && !(connection->agreed_features & DRBD_FF_WSAME)) {
1248 can_do = false;
1249 drbd_info(peer_device, "peer does not support WRITE_SAME\n");
1250 }
1251
1252 if (o) {
1253 /* logical block size; queue_logical_block_size(NULL) is 512 */
1254 unsigned int peer_lbs = be32_to_cpu(o->logical_block_size);
1255 unsigned int me_lbs_b = queue_logical_block_size(b);
1256 unsigned int me_lbs = queue_logical_block_size(q);
1257
1258 if (me_lbs_b != me_lbs) {
1259 drbd_warn(device,
1260 "logical block size of local backend does not match (drbd:%u, backend:%u); was this a late attach?\n",
1261 me_lbs, me_lbs_b);
1262 /* rather disable write same than trigger some BUG_ON later in the scsi layer. */
1263 can_do = false;
1264 }
1265 if (me_lbs_b != peer_lbs) {
1266 drbd_warn(peer_device, "logical block sizes do not match (me:%u, peer:%u); this may cause problems.\n",
1267 me_lbs, peer_lbs);
1268 if (can_do) {
1269 drbd_dbg(peer_device, "logical block size mismatch: WRITE_SAME disabled.\n");
1270 can_do = false;
1271 }
1272 me_lbs = max(me_lbs, me_lbs_b);
1273 /* We cannot change the logical block size of an in-use queue.
1274 * We can only hope that access happens to be properly aligned.
1275 * If not, the peer will likely produce an IO error, and detach. */
1276 if (peer_lbs > me_lbs) {
1277 if (device->state.role != R_PRIMARY) {
1278 blk_queue_logical_block_size(q, peer_lbs);
1279 drbd_warn(peer_device, "logical block size set to %u\n", peer_lbs);
1280 } else {
1281 drbd_warn(peer_device,
1282 "current Primary must NOT adjust logical block size (%u -> %u); hope for the best.\n",
1283 me_lbs, peer_lbs);
1284 }
1285 }
1286 }
1287 if (can_do && !o->write_same_capable) {
1288 /* If we introduce an open-coded write-same loop on the receiving side,
1289 * the peer would present itself as "capable". */
1290 drbd_dbg(peer_device, "WRITE_SAME disabled (peer device not capable)\n");
1291 can_do = false;
1292 }
1293 }
1294
1295 blk_queue_max_write_same_sectors(q, can_do ? DRBD_MAX_BBIO_SECTORS : 0);
1296}
1297
8fe39aac 1298static void drbd_setup_queue_param(struct drbd_device *device, struct drbd_backing_dev *bdev,
9104d31a 1299 unsigned int max_bio_size, struct o_qlim *o)
b411b363 1300{
b30ab791 1301 struct request_queue * const q = device->rq_queue;
db141b2f
LE
1302 unsigned int max_hw_sectors = max_bio_size >> 9;
1303 unsigned int max_segments = 0;
c1b3156f 1304 struct request_queue *b = NULL;
dd4f699d
LE
1305 struct disk_conf *dc;
1306 bool discard_zeroes_if_aligned = true;
99432fcc 1307
8fe39aac
PR
1308 if (bdev) {
1309 b = bdev->backing_bdev->bd_disk->queue;
99432fcc
PR
1310
1311 max_hw_sectors = min(queue_max_hw_sectors(b), max_bio_size >> 9);
daeda1cc 1312 rcu_read_lock();
dd4f699d
LE
1313 dc = rcu_dereference(device->ldev->disk_conf);
1314 max_segments = dc->max_bio_bvecs;
1315 discard_zeroes_if_aligned = dc->discard_zeroes_if_aligned;
daeda1cc 1316 rcu_read_unlock();
c1b3156f
PR
1317
1318 blk_set_stacking_limits(&q->limits);
99432fcc 1319 }
b411b363 1320
1816a2b4
LE
1321 blk_queue_max_hw_sectors(q, max_hw_sectors);
1322 /* This is the workaround for "bio would need to, but cannot, be split" */
1323 blk_queue_max_segments(q, max_segments ? max_segments : BLK_MAX_SEGMENTS);
09cbfeaf 1324 blk_queue_segment_boundary(q, PAGE_SIZE-1);
69ba1ee9 1325 decide_on_discard_support(device, q, b, discard_zeroes_if_aligned);
9104d31a
LE
1326 decide_on_write_same_support(device, q, b, o);
1327
c1b3156f 1328 if (b) {
99432fcc
PR
1329 blk_queue_stack_limits(q, b);
1330
dc3b17cc
JK
1331 if (q->backing_dev_info->ra_pages !=
1332 b->backing_dev_info->ra_pages) {
d0180171 1333 drbd_info(device, "Adjusting my ra_pages to backing device's (%lu -> %lu)\n",
dc3b17cc
JK
1334 q->backing_dev_info->ra_pages,
1335 b->backing_dev_info->ra_pages);
1336 q->backing_dev_info->ra_pages =
1337 b->backing_dev_info->ra_pages;
99432fcc 1338 }
99432fcc 1339 }
69ba1ee9 1340 fixup_discard_if_not_supported(q);
99432fcc
PR
1341}
1342
9104d31a 1343void drbd_reconsider_queue_parameters(struct drbd_device *device, struct drbd_backing_dev *bdev, struct o_qlim *o)
99432fcc 1344{
db141b2f 1345 unsigned int now, new, local, peer;
99432fcc 1346
b30ab791
AG
1347 now = queue_max_hw_sectors(device->rq_queue) << 9;
1348 local = device->local_max_bio_size; /* Eventually last known value, from volatile memory */
1349 peer = device->peer_max_bio_size; /* Eventually last known value, from meta data */
b411b363 1350
8fe39aac
PR
1351 if (bdev) {
1352 local = queue_max_hw_sectors(bdev->backing_bdev->bd_disk->queue) << 9;
b30ab791 1353 device->local_max_bio_size = local;
b411b363 1354 }
db141b2f 1355 local = min(local, DRBD_MAX_BIO_SIZE);
99432fcc
PR
1356
1357 /* We may ignore peer limits if the peer is modern enough.
1358 Because new from 8.3.8 onwards the peer can use multiple
1359 BIOs for a single peer_request */
b30ab791 1360 if (device->state.conn >= C_WF_REPORT_PARAMS) {
a6b32bc3 1361 if (first_peer_device(device)->connection->agreed_pro_version < 94)
b30ab791 1362 peer = min(device->peer_max_bio_size, DRBD_MAX_SIZE_H80_PACKET);
6809384c 1363 /* Correct old drbd (up to 8.3.7) if it believes it can do more than 32KiB */
a6b32bc3 1364 else if (first_peer_device(device)->connection->agreed_pro_version == 94)
99432fcc 1365 peer = DRBD_MAX_SIZE_H80_PACKET;
a6b32bc3 1366 else if (first_peer_device(device)->connection->agreed_pro_version < 100)
2ffca4f3
PR
1367 peer = DRBD_MAX_BIO_SIZE_P95; /* drbd 8.3.8 onwards, before 8.4.0 */
1368 else
99432fcc 1369 peer = DRBD_MAX_BIO_SIZE;
99432fcc 1370
fa090e70
LE
1371 /* We may later detach and re-attach on a disconnected Primary.
1372 * Avoid this setting to jump back in that case.
1373 * We want to store what we know the peer DRBD can handle,
1374 * not what the peer IO backend can handle. */
1375 if (peer > device->peer_max_bio_size)
1376 device->peer_max_bio_size = peer;
1377 }
db141b2f 1378 new = min(local, peer);
99432fcc 1379
b30ab791 1380 if (device->state.role == R_PRIMARY && new < now)
d0180171 1381 drbd_err(device, "ASSERT FAILED new < now; (%u < %u)\n", new, now);
99432fcc
PR
1382
1383 if (new != now)
d0180171 1384 drbd_info(device, "max BIO size = %u\n", new);
99432fcc 1385
9104d31a 1386 drbd_setup_queue_param(device, bdev, new, o);
b411b363
PR
1387}
1388
a18e9d1e 1389/* Starts the worker thread */
bde89a9e 1390static void conn_reconfig_start(struct drbd_connection *connection)
b411b363 1391{
bde89a9e 1392 drbd_thread_start(&connection->worker);
b5043c5e 1393 drbd_flush_workqueue(&connection->sender_work);
b411b363
PR
1394}
1395
a18e9d1e 1396/* if still unconfigured, stops worker again. */
bde89a9e 1397static void conn_reconfig_done(struct drbd_connection *connection)
b411b363 1398{
992d6e91 1399 bool stop_threads;
0500813f 1400 spin_lock_irq(&connection->resource->req_lock);
bde89a9e
AG
1401 stop_threads = conn_all_vols_unconf(connection) &&
1402 connection->cstate == C_STANDALONE;
0500813f 1403 spin_unlock_irq(&connection->resource->req_lock);
992d6e91 1404 if (stop_threads) {
668700b4
PR
1405 /* ack_receiver thread and ack_sender workqueue are implicitly
1406 * stopped by receiver in conn_disconnect() */
bde89a9e
AG
1407 drbd_thread_stop(&connection->receiver);
1408 drbd_thread_stop(&connection->worker);
992d6e91 1409 }
b411b363
PR
1410}
1411
0778286a 1412/* Make sure IO is suspended before calling this function(). */
b30ab791 1413static void drbd_suspend_al(struct drbd_device *device)
0778286a
PR
1414{
1415 int s = 0;
1416
b30ab791 1417 if (!lc_try_lock(device->act_log)) {
d0180171 1418 drbd_warn(device, "Failed to lock al in drbd_suspend_al()\n");
0778286a
PR
1419 return;
1420 }
1421
b30ab791 1422 drbd_al_shrink(device);
0500813f 1423 spin_lock_irq(&device->resource->req_lock);
b30ab791
AG
1424 if (device->state.conn < C_CONNECTED)
1425 s = !test_and_set_bit(AL_SUSPENDED, &device->flags);
0500813f 1426 spin_unlock_irq(&device->resource->req_lock);
b30ab791 1427 lc_unlock(device->act_log);
0778286a
PR
1428
1429 if (s)
d0180171 1430 drbd_info(device, "Suspended AL updates\n");
0778286a
PR
1431}
1432
5979e361
LE
1433
1434static bool should_set_defaults(struct genl_info *info)
1435{
1436 unsigned flags = ((struct drbd_genlmsghdr*)info->userhdr)->flags;
1437 return 0 != (flags & DRBD_GENL_F_SET_DEFAULTS);
1438}
1439
5bbcf5e6 1440static unsigned int drbd_al_extents_max(struct drbd_backing_dev *bdev)
d589a21e 1441{
5bbcf5e6
LE
1442 /* This is limited by 16 bit "slot" numbers,
1443 * and by available on-disk context storage.
1444 *
1445 * Also (u16)~0 is special (denotes a "free" extent).
1446 *
1447 * One transaction occupies one 4kB on-disk block,
1448 * we have n such blocks in the on disk ring buffer,
1449 * the "current" transaction may fail (n-1),
1450 * and there is 919 slot numbers context information per transaction.
1451 *
1452 * 72 transaction blocks amounts to more than 2**16 context slots,
1453 * so cap there first.
1454 */
1455 const unsigned int max_al_nr = DRBD_AL_EXTENTS_MAX;
1456 const unsigned int sufficient_on_disk =
1457 (max_al_nr + AL_CONTEXT_PER_TRANSACTION -1)
1458 /AL_CONTEXT_PER_TRANSACTION;
d589a21e 1459
5bbcf5e6
LE
1460 unsigned int al_size_4k = bdev->md.al_size_4k;
1461
1462 if (al_size_4k > sufficient_on_disk)
1463 return max_al_nr;
1464
1465 return (al_size_4k - 1) * AL_CONTEXT_PER_TRANSACTION;
d589a21e
PR
1466}
1467
70df7092
LE
1468static bool write_ordering_changed(struct disk_conf *a, struct disk_conf *b)
1469{
1470 return a->disk_barrier != b->disk_barrier ||
1471 a->disk_flushes != b->disk_flushes ||
1472 a->disk_drain != b->disk_drain;
1473}
1474
a5ca66c4
PR
1475static void sanitize_disk_conf(struct drbd_device *device, struct disk_conf *disk_conf,
1476 struct drbd_backing_dev *nbc)
c5c23854 1477{
a5ca66c4
PR
1478 struct request_queue * const q = nbc->backing_bdev->bd_disk->queue;
1479
c5c23854
PR
1480 if (disk_conf->al_extents < DRBD_AL_EXTENTS_MIN)
1481 disk_conf->al_extents = DRBD_AL_EXTENTS_MIN;
1482 if (disk_conf->al_extents > drbd_al_extents_max(nbc))
1483 disk_conf->al_extents = drbd_al_extents_max(nbc);
a5ca66c4 1484
65f5be35
LE
1485 if (!blk_queue_discard(q)
1486 || (!q->limits.discard_zeroes_data && !disk_conf->discard_zeroes_if_aligned)) {
1487 if (disk_conf->rs_discard_granularity) {
1488 disk_conf->rs_discard_granularity = 0; /* disable feature */
1489 drbd_info(device, "rs_discard_granularity feature disabled\n");
1490 }
a5ca66c4
PR
1491 }
1492
1493 if (disk_conf->rs_discard_granularity) {
1494 int orig_value = disk_conf->rs_discard_granularity;
1495 int remainder;
1496
1497 if (q->limits.discard_granularity > disk_conf->rs_discard_granularity)
1498 disk_conf->rs_discard_granularity = q->limits.discard_granularity;
1499
1500 remainder = disk_conf->rs_discard_granularity % q->limits.discard_granularity;
1501 disk_conf->rs_discard_granularity += remainder;
1502
1503 if (disk_conf->rs_discard_granularity > q->limits.max_discard_sectors << 9)
1504 disk_conf->rs_discard_granularity = q->limits.max_discard_sectors << 9;
1505
1506 if (disk_conf->rs_discard_granularity != orig_value)
1507 drbd_info(device, "rs_discard_granularity changed to %d\n",
1508 disk_conf->rs_discard_granularity);
1509 }
c5c23854
PR
1510}
1511
f399002e
LE
1512int drbd_adm_disk_opts(struct sk_buff *skb, struct genl_info *info)
1513{
a910b123 1514 struct drbd_config_context adm_ctx;
f399002e 1515 enum drbd_ret_code retcode;
b30ab791 1516 struct drbd_device *device;
daeda1cc 1517 struct disk_conf *new_disk_conf, *old_disk_conf;
813472ce 1518 struct fifo_buffer *old_plan = NULL, *new_plan = NULL;
f399002e 1519 int err, fifo_size;
f399002e 1520
a910b123 1521 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
f399002e
LE
1522 if (!adm_ctx.reply_skb)
1523 return retcode;
1524 if (retcode != NO_ERROR)
9e276872 1525 goto finish;
f399002e 1526
b30ab791 1527 device = adm_ctx.device;
9e276872 1528 mutex_lock(&adm_ctx.resource->adm_mutex);
f399002e
LE
1529
1530 /* we also need a disk
1531 * to change the options on */
b30ab791 1532 if (!get_ldev(device)) {
f399002e
LE
1533 retcode = ERR_NO_DISK;
1534 goto out;
1535 }
1536
daeda1cc 1537 new_disk_conf = kmalloc(sizeof(struct disk_conf), GFP_KERNEL);
5ecc72c3 1538 if (!new_disk_conf) {
f399002e
LE
1539 retcode = ERR_NOMEM;
1540 goto fail;
1541 }
1542
0500813f 1543 mutex_lock(&device->resource->conf_update);
b30ab791 1544 old_disk_conf = device->ldev->disk_conf;
daeda1cc 1545 *new_disk_conf = *old_disk_conf;
5979e361 1546 if (should_set_defaults(info))
b966b5dd 1547 set_disk_conf_defaults(new_disk_conf);
5979e361 1548
5ecc72c3 1549 err = disk_conf_from_attrs_for_change(new_disk_conf, info);
c75b9b10 1550 if (err && err != -ENOMSG) {
f399002e 1551 retcode = ERR_MANDATORY_TAG;
a910b123 1552 drbd_msg_put_info(adm_ctx.reply_skb, from_attrs_err_to_txt(err));
8e229434 1553 goto fail_unlock;
f399002e
LE
1554 }
1555
5ecc72c3
LE
1556 if (!expect(new_disk_conf->resync_rate >= 1))
1557 new_disk_conf->resync_rate = 1;
f399002e 1558
a5ca66c4 1559 sanitize_disk_conf(device, new_disk_conf, device->ldev);
5bbcf5e6
LE
1560
1561 if (new_disk_conf->c_plan_ahead > DRBD_C_PLAN_AHEAD_MAX)
1562 new_disk_conf->c_plan_ahead = DRBD_C_PLAN_AHEAD_MAX;
f399002e 1563
5ecc72c3 1564 fifo_size = (new_disk_conf->c_plan_ahead * 10 * SLEEP_TIME) / HZ;
b30ab791 1565 if (fifo_size != device->rs_plan_s->size) {
813472ce
PR
1566 new_plan = fifo_alloc(fifo_size);
1567 if (!new_plan) {
d0180171 1568 drbd_err(device, "kmalloc of fifo_buffer failed");
f399002e 1569 retcode = ERR_NOMEM;
daeda1cc 1570 goto fail_unlock;
f399002e
LE
1571 }
1572 }
1573
b30ab791
AG
1574 drbd_suspend_io(device);
1575 wait_event(device->al_wait, lc_try_lock(device->act_log));
1576 drbd_al_shrink(device);
1577 err = drbd_check_al_size(device, new_disk_conf);
1578 lc_unlock(device->act_log);
1579 wake_up(&device->al_wait);
1580 drbd_resume_io(device);
f399002e
LE
1581
1582 if (err) {
1583 retcode = ERR_NOMEM;
daeda1cc 1584 goto fail_unlock;
f399002e
LE
1585 }
1586
28bc3b8c 1587 lock_all_resources();
b30ab791 1588 retcode = drbd_resync_after_valid(device, new_disk_conf->resync_after);
dc97b708 1589 if (retcode == NO_ERROR) {
b30ab791
AG
1590 rcu_assign_pointer(device->ldev->disk_conf, new_disk_conf);
1591 drbd_resync_after_changed(device);
dc97b708 1592 }
28bc3b8c 1593 unlock_all_resources();
f399002e 1594
daeda1cc
PR
1595 if (retcode != NO_ERROR)
1596 goto fail_unlock;
f399002e 1597
813472ce 1598 if (new_plan) {
b30ab791
AG
1599 old_plan = device->rs_plan_s;
1600 rcu_assign_pointer(device->rs_plan_s, new_plan);
9958c857 1601 }
9958c857 1602
0500813f 1603 mutex_unlock(&device->resource->conf_update);
27eb13e9 1604
9a51ab1c 1605 if (new_disk_conf->al_updates)
b30ab791 1606 device->ldev->md.flags &= ~MDF_AL_DISABLED;
9a51ab1c 1607 else
b30ab791 1608 device->ldev->md.flags |= MDF_AL_DISABLED;
9a51ab1c 1609
691631c0 1610 if (new_disk_conf->md_flushes)
b30ab791 1611 clear_bit(MD_NO_FUA, &device->flags);
691631c0 1612 else
b30ab791 1613 set_bit(MD_NO_FUA, &device->flags);
691631c0 1614
70df7092 1615 if (write_ordering_changed(old_disk_conf, new_disk_conf))
f6ba8636 1616 drbd_bump_write_ordering(device->resource, NULL, WO_BDEV_FLUSH);
27eb13e9 1617
dd4f699d 1618 if (old_disk_conf->discard_zeroes_if_aligned != new_disk_conf->discard_zeroes_if_aligned)
9104d31a 1619 drbd_reconsider_queue_parameters(device, device->ldev, NULL);
dd4f699d 1620
b30ab791 1621 drbd_md_sync(device);
f399002e 1622
69a22773
AG
1623 if (device->state.conn >= C_CONNECTED) {
1624 struct drbd_peer_device *peer_device;
1625
1626 for_each_peer_device(peer_device, device)
1627 drbd_send_sync_param(peer_device);
1628 }
f399002e 1629
daeda1cc
PR
1630 synchronize_rcu();
1631 kfree(old_disk_conf);
813472ce 1632 kfree(old_plan);
b30ab791 1633 mod_timer(&device->request_timer, jiffies + HZ);
daeda1cc
PR
1634 goto success;
1635
1636fail_unlock:
0500813f 1637 mutex_unlock(&device->resource->conf_update);
f399002e 1638 fail:
5ecc72c3 1639 kfree(new_disk_conf);
813472ce 1640 kfree(new_plan);
daeda1cc 1641success:
b30ab791 1642 put_ldev(device);
f399002e 1643 out:
9e276872
LE
1644 mutex_unlock(&adm_ctx.resource->adm_mutex);
1645 finish:
a910b123 1646 drbd_adm_finish(&adm_ctx, info, retcode);
f399002e
LE
1647 return 0;
1648}
1649
63a7c8ad
LE
1650static struct block_device *open_backing_dev(struct drbd_device *device,
1651 const char *bdev_path, void *claim_ptr, bool do_bd_link)
1652{
1653 struct block_device *bdev;
1654 int err = 0;
1655
1656 bdev = blkdev_get_by_path(bdev_path,
1657 FMODE_READ | FMODE_WRITE | FMODE_EXCL, claim_ptr);
1658 if (IS_ERR(bdev)) {
1659 drbd_err(device, "open(\"%s\") failed with %ld\n",
1660 bdev_path, PTR_ERR(bdev));
1661 return bdev;
1662 }
1663
1664 if (!do_bd_link)
1665 return bdev;
1666
1667 err = bd_link_disk_holder(bdev, device->vdisk);
1668 if (err) {
1669 blkdev_put(bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL);
1670 drbd_err(device, "bd_link_disk_holder(\"%s\", ...) failed with %d\n",
1671 bdev_path, err);
1672 bdev = ERR_PTR(err);
1673 }
1674 return bdev;
1675}
1676
1677static int open_backing_devices(struct drbd_device *device,
1678 struct disk_conf *new_disk_conf,
1679 struct drbd_backing_dev *nbc)
1680{
1681 struct block_device *bdev;
1682
1683 bdev = open_backing_dev(device, new_disk_conf->backing_dev, device, true);
1684 if (IS_ERR(bdev))
1685 return ERR_OPEN_DISK;
1686 nbc->backing_bdev = bdev;
1687
1688 /*
1689 * meta_dev_idx >= 0: external fixed size, possibly multiple
1690 * drbd sharing one meta device. TODO in that case, paranoia
1691 * check that [md_bdev, meta_dev_idx] is not yet used by some
1692 * other drbd minor! (if you use drbd.conf + drbdadm, that
1693 * should check it for you already; but if you don't, or
1694 * someone fooled it, we need to double check here)
1695 */
1696 bdev = open_backing_dev(device, new_disk_conf->meta_dev,
1697 /* claim ptr: device, if claimed exclusively; shared drbd_m_holder,
1698 * if potentially shared with other drbd minors */
1699 (new_disk_conf->meta_dev_idx < 0) ? (void*)device : (void*)drbd_m_holder,
1700 /* avoid double bd_claim_by_disk() for the same (source,target) tuple,
1701 * as would happen with internal metadata. */
1702 (new_disk_conf->meta_dev_idx != DRBD_MD_INDEX_FLEX_INT &&
1703 new_disk_conf->meta_dev_idx != DRBD_MD_INDEX_INTERNAL));
1704 if (IS_ERR(bdev))
1705 return ERR_OPEN_MD_DISK;
1706 nbc->md_bdev = bdev;
1707 return NO_ERROR;
1708}
1709
1710static void close_backing_dev(struct drbd_device *device, struct block_device *bdev,
1711 bool do_bd_unlink)
1712{
1713 if (!bdev)
1714 return;
1715 if (do_bd_unlink)
1716 bd_unlink_disk_holder(bdev, device->vdisk);
1717 blkdev_put(bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL);
1718}
1719
1720void drbd_backing_dev_free(struct drbd_device *device, struct drbd_backing_dev *ldev)
1721{
1722 if (ldev == NULL)
1723 return;
1724
1725 close_backing_dev(device, ldev->md_bdev, ldev->md_bdev != ldev->backing_bdev);
1726 close_backing_dev(device, ldev->backing_bdev, true);
1727
1728 kfree(ldev->disk_conf);
1729 kfree(ldev);
1730}
1731
3b98c0c2 1732int drbd_adm_attach(struct sk_buff *skb, struct genl_info *info)
b411b363 1733{
a910b123 1734 struct drbd_config_context adm_ctx;
b30ab791 1735 struct drbd_device *device;
44a4d551
LE
1736 struct drbd_peer_device *peer_device;
1737 struct drbd_connection *connection;
3b98c0c2 1738 int err;
116676ca 1739 enum drbd_ret_code retcode;
b411b363
PR
1740 enum determine_dev_size dd;
1741 sector_t max_possible_sectors;
1742 sector_t min_md_device_sectors;
1743 struct drbd_backing_dev *nbc = NULL; /* new_backing_conf */
daeda1cc 1744 struct disk_conf *new_disk_conf = NULL;
b411b363 1745 struct lru_cache *resync_lru = NULL;
9958c857 1746 struct fifo_buffer *new_plan = NULL;
b411b363 1747 union drbd_state ns, os;
f2024e7c 1748 enum drbd_state_rv rv;
44ed167d 1749 struct net_conf *nc;
b411b363 1750
a910b123 1751 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
3b98c0c2
LE
1752 if (!adm_ctx.reply_skb)
1753 return retcode;
1754 if (retcode != NO_ERROR)
40cbf085 1755 goto finish;
b411b363 1756
b30ab791 1757 device = adm_ctx.device;
9e276872 1758 mutex_lock(&adm_ctx.resource->adm_mutex);
44a4d551 1759 peer_device = first_peer_device(device);
3b8a44f8 1760 connection = peer_device->connection;
44a4d551 1761 conn_reconfig_start(connection);
b411b363
PR
1762
1763 /* if you want to reconfigure, please tear down first */
b30ab791 1764 if (device->state.disk > D_DISKLESS) {
b411b363
PR
1765 retcode = ERR_DISK_CONFIGURED;
1766 goto fail;
1767 }
82f59cc6
LE
1768 /* It may just now have detached because of IO error. Make sure
1769 * drbd_ldev_destroy is done already, we may end up here very fast,
1770 * e.g. if someone calls attach from the on-io-error handler,
1771 * to realize a "hot spare" feature (not that I'd recommend that) */
e334f550 1772 wait_event(device->misc_wait, !test_bit(GOING_DISKLESS, &device->flags));
b411b363 1773
383606e0 1774 /* make sure there is no leftover from previous force-detach attempts */
b30ab791
AG
1775 clear_bit(FORCE_DETACH, &device->flags);
1776 clear_bit(WAS_IO_ERROR, &device->flags);
1777 clear_bit(WAS_READ_ERROR, &device->flags);
383606e0 1778
0029d624 1779 /* and no leftover from previously aborted resync or verify, either */
b30ab791
AG
1780 device->rs_total = 0;
1781 device->rs_failed = 0;
1782 atomic_set(&device->rs_pending_cnt, 0);
0029d624 1783
3b98c0c2 1784 /* allocation not in the IO path, drbdsetup context */
b411b363
PR
1785 nbc = kzalloc(sizeof(struct drbd_backing_dev), GFP_KERNEL);
1786 if (!nbc) {
1787 retcode = ERR_NOMEM;
1788 goto fail;
1789 }
9f2247bb
PR
1790 spin_lock_init(&nbc->md.uuid_lock);
1791
daeda1cc
PR
1792 new_disk_conf = kzalloc(sizeof(struct disk_conf), GFP_KERNEL);
1793 if (!new_disk_conf) {
1794 retcode = ERR_NOMEM;
b411b363
PR
1795 goto fail;
1796 }
daeda1cc 1797 nbc->disk_conf = new_disk_conf;
b411b363 1798
daeda1cc
PR
1799 set_disk_conf_defaults(new_disk_conf);
1800 err = disk_conf_from_attrs(new_disk_conf, info);
3b98c0c2 1801 if (err) {
b411b363 1802 retcode = ERR_MANDATORY_TAG;
a910b123 1803 drbd_msg_put_info(adm_ctx.reply_skb, from_attrs_err_to_txt(err));
b411b363
PR
1804 goto fail;
1805 }
1806
5bbcf5e6
LE
1807 if (new_disk_conf->c_plan_ahead > DRBD_C_PLAN_AHEAD_MAX)
1808 new_disk_conf->c_plan_ahead = DRBD_C_PLAN_AHEAD_MAX;
d589a21e 1809
9958c857
PR
1810 new_plan = fifo_alloc((new_disk_conf->c_plan_ahead * 10 * SLEEP_TIME) / HZ);
1811 if (!new_plan) {
1812 retcode = ERR_NOMEM;
1813 goto fail;
1814 }
1815
daeda1cc 1816 if (new_disk_conf->meta_dev_idx < DRBD_MD_INDEX_FLEX_INT) {
b411b363
PR
1817 retcode = ERR_MD_IDX_INVALID;
1818 goto fail;
1819 }
1820
44ed167d 1821 rcu_read_lock();
44a4d551 1822 nc = rcu_dereference(connection->net_conf);
44ed167d 1823 if (nc) {
daeda1cc 1824 if (new_disk_conf->fencing == FP_STONITH && nc->wire_protocol == DRBD_PROT_A) {
44ed167d 1825 rcu_read_unlock();
47ff2d0a 1826 retcode = ERR_STONITH_AND_PROT_A;
28bc3b8c 1827 goto fail;
47ff2d0a
PR
1828 }
1829 }
44ed167d 1830 rcu_read_unlock();
47ff2d0a 1831
63a7c8ad
LE
1832 retcode = open_backing_devices(device, new_disk_conf, nbc);
1833 if (retcode != NO_ERROR)
28bc3b8c 1834 goto fail;
b411b363 1835
e525fd89 1836 if ((nbc->backing_bdev == nbc->md_bdev) !=
daeda1cc
PR
1837 (new_disk_conf->meta_dev_idx == DRBD_MD_INDEX_INTERNAL ||
1838 new_disk_conf->meta_dev_idx == DRBD_MD_INDEX_FLEX_INT)) {
e525fd89 1839 retcode = ERR_MD_IDX_INVALID;
28bc3b8c 1840 goto fail;
b411b363
PR
1841 }
1842
1843 resync_lru = lc_create("resync", drbd_bm_ext_cache,
46a15bc3 1844 1, 61, sizeof(struct bm_extent),
b411b363
PR
1845 offsetof(struct bm_extent, lce));
1846 if (!resync_lru) {
1847 retcode = ERR_NOMEM;
28bc3b8c 1848 goto fail;
b411b363
PR
1849 }
1850
c04ccaa6
LE
1851 /* Read our meta data super block early.
1852 * This also sets other on-disk offsets. */
b30ab791 1853 retcode = drbd_md_read(device, nbc);
c04ccaa6 1854 if (retcode != NO_ERROR)
28bc3b8c 1855 goto fail;
b411b363 1856
a5ca66c4 1857 sanitize_disk_conf(device, new_disk_conf, nbc);
5bbcf5e6 1858
daeda1cc 1859 if (drbd_get_max_capacity(nbc) < new_disk_conf->disk_size) {
d0180171 1860 drbd_err(device, "max capacity %llu smaller than disk size %llu\n",
b411b363 1861 (unsigned long long) drbd_get_max_capacity(nbc),
daeda1cc 1862 (unsigned long long) new_disk_conf->disk_size);
7948bcdc 1863 retcode = ERR_DISK_TOO_SMALL;
28bc3b8c 1864 goto fail;
b411b363
PR
1865 }
1866
daeda1cc 1867 if (new_disk_conf->meta_dev_idx < 0) {
b411b363
PR
1868 max_possible_sectors = DRBD_MAX_SECTORS_FLEX;
1869 /* at least one MB, otherwise it does not make sense */
1870 min_md_device_sectors = (2<<10);
1871 } else {
1872 max_possible_sectors = DRBD_MAX_SECTORS;
ae8bf312 1873 min_md_device_sectors = MD_128MB_SECT * (new_disk_conf->meta_dev_idx + 1);
b411b363
PR
1874 }
1875
b411b363 1876 if (drbd_get_capacity(nbc->md_bdev) < min_md_device_sectors) {
7948bcdc 1877 retcode = ERR_MD_DISK_TOO_SMALL;
d0180171 1878 drbd_warn(device, "refusing attach: md-device too small, "
b411b363
PR
1879 "at least %llu sectors needed for this meta-disk type\n",
1880 (unsigned long long) min_md_device_sectors);
28bc3b8c 1881 goto fail;
b411b363
PR
1882 }
1883
1884 /* Make sure the new disk is big enough
1885 * (we may currently be R_PRIMARY with no local disk...) */
1886 if (drbd_get_max_capacity(nbc) <
b30ab791 1887 drbd_get_capacity(device->this_bdev)) {
7948bcdc 1888 retcode = ERR_DISK_TOO_SMALL;
28bc3b8c 1889 goto fail;
b411b363
PR
1890 }
1891
1892 nbc->known_size = drbd_get_capacity(nbc->backing_bdev);
1893
1352994b 1894 if (nbc->known_size > max_possible_sectors) {
d0180171 1895 drbd_warn(device, "==> truncating very big lower level device "
1352994b
LE
1896 "to currently maximum possible %llu sectors <==\n",
1897 (unsigned long long) max_possible_sectors);
daeda1cc 1898 if (new_disk_conf->meta_dev_idx >= 0)
d0180171 1899 drbd_warn(device, "==>> using internal or flexible "
1352994b
LE
1900 "meta data may help <<==\n");
1901 }
1902
b30ab791 1903 drbd_suspend_io(device);
b411b363 1904 /* also wait for the last barrier ack. */
b6dd1a89
LE
1905 /* FIXME see also https://daiquiri.linbit/cgi-bin/bugzilla/show_bug.cgi?id=171
1906 * We need a way to either ignore barrier acks for barriers sent before a device
1907 * was attached, or a way to wait for all pending barrier acks to come in.
1908 * As barriers are counted per resource,
1909 * we'd need to suspend io on all devices of a resource.
1910 */
b30ab791 1911 wait_event(device->misc_wait, !atomic_read(&device->ap_pending_cnt) || drbd_suspended(device));
b411b363 1912 /* and for any other previously queued work */
44a4d551 1913 drbd_flush_workqueue(&connection->sender_work);
b411b363 1914
b30ab791 1915 rv = _drbd_request_state(device, NS(disk, D_ATTACHING), CS_VERBOSE);
f2024e7c 1916 retcode = rv; /* FIXME: Type mismatch. */
b30ab791 1917 drbd_resume_io(device);
f2024e7c 1918 if (rv < SS_SUCCESS)
28bc3b8c 1919 goto fail;
b411b363 1920
b30ab791 1921 if (!get_ldev_if_state(device, D_ATTACHING))
b411b363
PR
1922 goto force_diskless;
1923
b30ab791
AG
1924 if (!device->bitmap) {
1925 if (drbd_bm_init(device)) {
b411b363
PR
1926 retcode = ERR_NOMEM;
1927 goto force_diskless_dec;
1928 }
1929 }
1930
b30ab791 1931 if (device->state.conn < C_CONNECTED &&
babea49e 1932 device->state.role == R_PRIMARY && device->ed_uuid &&
b30ab791 1933 (device->ed_uuid & ~((u64)1)) != (nbc->md.uuid[UI_CURRENT] & ~((u64)1))) {
d0180171 1934 drbd_err(device, "Can only attach to data with current UUID=%016llX\n",
b30ab791 1935 (unsigned long long)device->ed_uuid);
b411b363
PR
1936 retcode = ERR_DATA_NOT_CURRENT;
1937 goto force_diskless_dec;
1938 }
1939
1940 /* Since we are diskless, fix the activity log first... */
b30ab791 1941 if (drbd_check_al_size(device, new_disk_conf)) {
b411b363
PR
1942 retcode = ERR_NOMEM;
1943 goto force_diskless_dec;
1944 }
1945
1946 /* Prevent shrinking of consistent devices ! */
1947 if (drbd_md_test_flag(nbc, MDF_CONSISTENT) &&
b30ab791 1948 drbd_new_dev_size(device, nbc, nbc->disk_conf->disk_size, 0) < nbc->md.la_size_sect) {
d0180171 1949 drbd_warn(device, "refusing to truncate a consistent device\n");
7948bcdc 1950 retcode = ERR_DISK_TOO_SMALL;
b411b363
PR
1951 goto force_diskless_dec;
1952 }
1953
28bc3b8c
AG
1954 lock_all_resources();
1955 retcode = drbd_resync_after_valid(device, new_disk_conf->resync_after);
1956 if (retcode != NO_ERROR) {
1957 unlock_all_resources();
1958 goto force_diskless_dec;
1959 }
1960
b411b363
PR
1961 /* Reset the "barriers don't work" bits here, then force meta data to
1962 * be written, to ensure we determine if barriers are supported. */
e544046a 1963 if (new_disk_conf->md_flushes)
b30ab791 1964 clear_bit(MD_NO_FUA, &device->flags);
b411b363 1965 else
b30ab791 1966 set_bit(MD_NO_FUA, &device->flags);
b411b363
PR
1967
1968 /* Point of no return reached.
1969 * Devices and memory are no longer released by error cleanup below.
b30ab791 1970 * now device takes over responsibility, and the state engine should
b411b363 1971 * clean it up somewhere. */
0b0ba1ef 1972 D_ASSERT(device, device->ldev == NULL);
b30ab791
AG
1973 device->ldev = nbc;
1974 device->resync = resync_lru;
1975 device->rs_plan_s = new_plan;
b411b363
PR
1976 nbc = NULL;
1977 resync_lru = NULL;
daeda1cc 1978 new_disk_conf = NULL;
9958c857 1979 new_plan = NULL;
b411b363 1980
1ec317d3 1981 drbd_resync_after_changed(device);
f6ba8636 1982 drbd_bump_write_ordering(device->resource, device->ldev, WO_BDEV_FLUSH);
28bc3b8c 1983 unlock_all_resources();
b411b363 1984
b30ab791
AG
1985 if (drbd_md_test_flag(device->ldev, MDF_CRASHED_PRIMARY))
1986 set_bit(CRASHED_PRIMARY, &device->flags);
b411b363 1987 else
b30ab791 1988 clear_bit(CRASHED_PRIMARY, &device->flags);
b411b363 1989
b30ab791 1990 if (drbd_md_test_flag(device->ldev, MDF_PRIMARY_IND) &&
6bbf53ca 1991 !(device->state.role == R_PRIMARY && device->resource->susp_nod))
b30ab791 1992 set_bit(CRASHED_PRIMARY, &device->flags);
b411b363 1993
b30ab791
AG
1994 device->send_cnt = 0;
1995 device->recv_cnt = 0;
1996 device->read_cnt = 0;
1997 device->writ_cnt = 0;
b411b363 1998
9104d31a 1999 drbd_reconsider_queue_parameters(device, device->ldev, NULL);
b411b363
PR
2000
2001 /* If I am currently not R_PRIMARY,
2002 * but meta data primary indicator is set,
2003 * I just now recover from a hard crash,
2004 * and have been R_PRIMARY before that crash.
2005 *
2006 * Now, if I had no connection before that crash
2007 * (have been degraded R_PRIMARY), chances are that
2008 * I won't find my peer now either.
2009 *
2010 * In that case, and _only_ in that case,
2011 * we use the degr-wfc-timeout instead of the default,
2012 * so we can automatically recover from a crash of a
2013 * degraded but active "cluster" after a certain timeout.
2014 */
b30ab791
AG
2015 clear_bit(USE_DEGR_WFC_T, &device->flags);
2016 if (device->state.role != R_PRIMARY &&
2017 drbd_md_test_flag(device->ldev, MDF_PRIMARY_IND) &&
2018 !drbd_md_test_flag(device->ldev, MDF_CONNECTED_IND))
2019 set_bit(USE_DEGR_WFC_T, &device->flags);
b411b363 2020
b30ab791 2021 dd = drbd_determine_dev_size(device, 0, NULL);
d752b269 2022 if (dd <= DS_ERROR) {
b411b363
PR
2023 retcode = ERR_NOMEM_BITMAP;
2024 goto force_diskless_dec;
e96c9633 2025 } else if (dd == DS_GREW)
b30ab791 2026 set_bit(RESYNC_AFTER_NEG, &device->flags);
b411b363 2027
b30ab791
AG
2028 if (drbd_md_test_flag(device->ldev, MDF_FULL_SYNC) ||
2029 (test_bit(CRASHED_PRIMARY, &device->flags) &&
2030 drbd_md_test_flag(device->ldev, MDF_AL_DISABLED))) {
d0180171 2031 drbd_info(device, "Assuming that all blocks are out of sync "
b411b363 2032 "(aka FullSync)\n");
b30ab791 2033 if (drbd_bitmap_io(device, &drbd_bmio_set_n_write,
20ceb2b2 2034 "set_n_write from attaching", BM_LOCKED_MASK)) {
b411b363
PR
2035 retcode = ERR_IO_MD_DISK;
2036 goto force_diskless_dec;
2037 }
2038 } else {
b30ab791 2039 if (drbd_bitmap_io(device, &drbd_bm_read,
22ab6a30 2040 "read from attaching", BM_LOCKED_MASK)) {
19f843aa
LE
2041 retcode = ERR_IO_MD_DISK;
2042 goto force_diskless_dec;
2043 }
b411b363
PR
2044 }
2045
b30ab791
AG
2046 if (_drbd_bm_total_weight(device) == drbd_bm_bits(device))
2047 drbd_suspend_al(device); /* IO is still suspended here... */
0778286a 2048
0500813f 2049 spin_lock_irq(&device->resource->req_lock);
b30ab791 2050 os = drbd_read_state(device);
78bae59b 2051 ns = os;
b411b363
PR
2052 /* If MDF_CONSISTENT is not set go into inconsistent state,
2053 otherwise investigate MDF_WasUpToDate...
2054 If MDF_WAS_UP_TO_DATE is not set go into D_OUTDATED disk state,
2055 otherwise into D_CONSISTENT state.
2056 */
b30ab791
AG
2057 if (drbd_md_test_flag(device->ldev, MDF_CONSISTENT)) {
2058 if (drbd_md_test_flag(device->ldev, MDF_WAS_UP_TO_DATE))
b411b363
PR
2059 ns.disk = D_CONSISTENT;
2060 else
2061 ns.disk = D_OUTDATED;
2062 } else {
2063 ns.disk = D_INCONSISTENT;
2064 }
2065
b30ab791 2066 if (drbd_md_test_flag(device->ldev, MDF_PEER_OUT_DATED))
b411b363
PR
2067 ns.pdsk = D_OUTDATED;
2068
daeda1cc
PR
2069 rcu_read_lock();
2070 if (ns.disk == D_CONSISTENT &&
b30ab791 2071 (ns.pdsk == D_OUTDATED || rcu_dereference(device->ldev->disk_conf)->fencing == FP_DONT_CARE))
b411b363
PR
2072 ns.disk = D_UP_TO_DATE;
2073
2074 /* All tests on MDF_PRIMARY_IND, MDF_CONNECTED_IND,
2075 MDF_CONSISTENT and MDF_WAS_UP_TO_DATE must happen before
2076 this point, because drbd_request_state() modifies these
2077 flags. */
2078
b30ab791
AG
2079 if (rcu_dereference(device->ldev->disk_conf)->al_updates)
2080 device->ldev->md.flags &= ~MDF_AL_DISABLED;
9a51ab1c 2081 else
b30ab791 2082 device->ldev->md.flags |= MDF_AL_DISABLED;
9a51ab1c
PR
2083
2084 rcu_read_unlock();
2085
b411b363
PR
2086 /* In case we are C_CONNECTED postpone any decision on the new disk
2087 state after the negotiation phase. */
b30ab791
AG
2088 if (device->state.conn == C_CONNECTED) {
2089 device->new_state_tmp.i = ns.i;
b411b363
PR
2090 ns.i = os.i;
2091 ns.disk = D_NEGOTIATING;
dc66c74d
PR
2092
2093 /* We expect to receive up-to-date UUIDs soon.
2094 To avoid a race in receive_state, free p_uuid while
2095 holding req_lock. I.e. atomic with the state change */
b30ab791
AG
2096 kfree(device->p_uuid);
2097 device->p_uuid = NULL;
b411b363
PR
2098 }
2099
b30ab791 2100 rv = _drbd_set_state(device, ns, CS_VERBOSE, NULL);
0500813f 2101 spin_unlock_irq(&device->resource->req_lock);
b411b363
PR
2102
2103 if (rv < SS_SUCCESS)
2104 goto force_diskless_dec;
2105
b30ab791 2106 mod_timer(&device->request_timer, jiffies + HZ);
cdfda633 2107
b30ab791
AG
2108 if (device->state.role == R_PRIMARY)
2109 device->ldev->md.uuid[UI_CURRENT] |= (u64)1;
b411b363 2110 else
b30ab791 2111 device->ldev->md.uuid[UI_CURRENT] &= ~(u64)1;
b411b363 2112
b30ab791
AG
2113 drbd_md_mark_dirty(device);
2114 drbd_md_sync(device);
b411b363 2115
b30ab791
AG
2116 kobject_uevent(&disk_to_dev(device->vdisk)->kobj, KOBJ_CHANGE);
2117 put_ldev(device);
44a4d551 2118 conn_reconfig_done(connection);
9e276872 2119 mutex_unlock(&adm_ctx.resource->adm_mutex);
a910b123 2120 drbd_adm_finish(&adm_ctx, info, retcode);
b411b363
PR
2121 return 0;
2122
2123 force_diskless_dec:
b30ab791 2124 put_ldev(device);
b411b363 2125 force_diskless:
b30ab791
AG
2126 drbd_force_state(device, NS(disk, D_DISKLESS));
2127 drbd_md_sync(device);
b411b363 2128 fail:
44a4d551 2129 conn_reconfig_done(connection);
b411b363 2130 if (nbc) {
63a7c8ad
LE
2131 close_backing_dev(device, nbc->md_bdev, nbc->md_bdev != nbc->backing_bdev);
2132 close_backing_dev(device, nbc->backing_bdev, true);
b411b363
PR
2133 kfree(nbc);
2134 }
daeda1cc 2135 kfree(new_disk_conf);
b411b363 2136 lc_destroy(resync_lru);
9958c857 2137 kfree(new_plan);
9e276872 2138 mutex_unlock(&adm_ctx.resource->adm_mutex);
40cbf085 2139 finish:
a910b123 2140 drbd_adm_finish(&adm_ctx, info, retcode);
b411b363
PR
2141 return 0;
2142}
2143
b30ab791 2144static int adm_detach(struct drbd_device *device, int force)
b411b363 2145{
19f83c76 2146 enum drbd_state_rv retcode;
6434f404 2147 void *buffer;
9a0d9d03 2148 int ret;
02ee8f95 2149
cdfda633 2150 if (force) {
b30ab791
AG
2151 set_bit(FORCE_DETACH, &device->flags);
2152 drbd_force_state(device, NS(disk, D_FAILED));
cdfda633 2153 retcode = SS_SUCCESS;
02ee8f95
PR
2154 goto out;
2155 }
2156
b30ab791 2157 drbd_suspend_io(device); /* so no-one is stuck in drbd_al_begin_io */
6434f404
LE
2158 buffer = drbd_md_get_buffer(device, __func__); /* make sure there is no in-flight meta-data IO */
2159 if (buffer) {
2160 retcode = drbd_request_state(device, NS(disk, D_FAILED));
2161 drbd_md_put_buffer(device);
2162 } else /* already <= D_FAILED */
2163 retcode = SS_NOTHING_TO_DO;
9a0d9d03 2164 /* D_FAILED will transition to DISKLESS. */
05a72772 2165 drbd_resume_io(device);
b30ab791
AG
2166 ret = wait_event_interruptible(device->misc_wait,
2167 device->state.disk != D_FAILED);
9b2f61ae 2168 if ((int)retcode == (int)SS_IS_DISKLESS)
9a0d9d03
LE
2169 retcode = SS_NOTHING_TO_DO;
2170 if (ret)
2171 retcode = ERR_INTR;
02ee8f95 2172out:
85f75dd7 2173 return retcode;
b411b363
PR
2174}
2175
82f59cc6
LE
2176/* Detaching the disk is a process in multiple stages. First we need to lock
2177 * out application IO, in-flight IO, IO stuck in drbd_al_begin_io.
2178 * Then we transition to D_DISKLESS, and wait for put_ldev() to return all
2179 * internal references as well.
2180 * Only then we have finally detached. */
3b98c0c2 2181int drbd_adm_detach(struct sk_buff *skb, struct genl_info *info)
b411b363 2182{
a910b123 2183 struct drbd_config_context adm_ctx;
116676ca 2184 enum drbd_ret_code retcode;
cdfda633
PR
2185 struct detach_parms parms = { };
2186 int err;
b411b363 2187
a910b123 2188 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
3b98c0c2
LE
2189 if (!adm_ctx.reply_skb)
2190 return retcode;
2191 if (retcode != NO_ERROR)
2192 goto out;
b411b363 2193
cdfda633
PR
2194 if (info->attrs[DRBD_NLA_DETACH_PARMS]) {
2195 err = detach_parms_from_attrs(&parms, info);
2196 if (err) {
2197 retcode = ERR_MANDATORY_TAG;
a910b123 2198 drbd_msg_put_info(adm_ctx.reply_skb, from_attrs_err_to_txt(err));
cdfda633
PR
2199 goto out;
2200 }
b411b363
PR
2201 }
2202
9e276872 2203 mutex_lock(&adm_ctx.resource->adm_mutex);
b30ab791 2204 retcode = adm_detach(adm_ctx.device, parms.force_detach);
9e276872 2205 mutex_unlock(&adm_ctx.resource->adm_mutex);
3b98c0c2 2206out:
a910b123 2207 drbd_adm_finish(&adm_ctx, info, retcode);
b411b363
PR
2208 return 0;
2209}
b411b363 2210
bde89a9e 2211static bool conn_resync_running(struct drbd_connection *connection)
f399002e 2212{
c06ece6b 2213 struct drbd_peer_device *peer_device;
695d08fa 2214 bool rv = false;
f399002e
LE
2215 int vnr;
2216
695d08fa 2217 rcu_read_lock();
c06ece6b
AG
2218 idr_for_each_entry(&connection->peer_devices, peer_device, vnr) {
2219 struct drbd_device *device = peer_device->device;
b30ab791
AG
2220 if (device->state.conn == C_SYNC_SOURCE ||
2221 device->state.conn == C_SYNC_TARGET ||
2222 device->state.conn == C_PAUSED_SYNC_S ||
2223 device->state.conn == C_PAUSED_SYNC_T) {
695d08fa
PR
2224 rv = true;
2225 break;
2226 }
b411b363 2227 }
695d08fa 2228 rcu_read_unlock();
b411b363 2229
695d08fa 2230 return rv;
f399002e 2231}
47ff2d0a 2232
bde89a9e 2233static bool conn_ov_running(struct drbd_connection *connection)
f399002e 2234{
c06ece6b 2235 struct drbd_peer_device *peer_device;
695d08fa 2236 bool rv = false;
f399002e
LE
2237 int vnr;
2238
695d08fa 2239 rcu_read_lock();
c06ece6b
AG
2240 idr_for_each_entry(&connection->peer_devices, peer_device, vnr) {
2241 struct drbd_device *device = peer_device->device;
b30ab791
AG
2242 if (device->state.conn == C_VERIFY_S ||
2243 device->state.conn == C_VERIFY_T) {
695d08fa
PR
2244 rv = true;
2245 break;
47ff2d0a
PR
2246 }
2247 }
695d08fa 2248 rcu_read_unlock();
b411b363 2249
695d08fa 2250 return rv;
f399002e 2251}
422028b1 2252
cd64397c 2253static enum drbd_ret_code
270eb5c9 2254_check_net_options(struct drbd_connection *connection, struct net_conf *old_net_conf, struct net_conf *new_net_conf)
cd64397c 2255{
c06ece6b 2256 struct drbd_peer_device *peer_device;
cd64397c 2257 int i;
b411b363 2258
270eb5c9
AG
2259 if (old_net_conf && connection->cstate == C_WF_REPORT_PARAMS && connection->agreed_pro_version < 100) {
2260 if (new_net_conf->wire_protocol != old_net_conf->wire_protocol)
dcb20d1a 2261 return ERR_NEED_APV_100;
b411b363 2262
270eb5c9 2263 if (new_net_conf->two_primaries != old_net_conf->two_primaries)
dcb20d1a
PR
2264 return ERR_NEED_APV_100;
2265
270eb5c9 2266 if (strcmp(new_net_conf->integrity_alg, old_net_conf->integrity_alg))
dcb20d1a 2267 return ERR_NEED_APV_100;
b411b363
PR
2268 }
2269
270eb5c9 2270 if (!new_net_conf->two_primaries &&
bde89a9e
AG
2271 conn_highest_role(connection) == R_PRIMARY &&
2272 conn_highest_peer(connection) == R_PRIMARY)
dcb20d1a 2273 return ERR_NEED_ALLOW_TWO_PRI;
b411b363 2274
270eb5c9
AG
2275 if (new_net_conf->two_primaries &&
2276 (new_net_conf->wire_protocol != DRBD_PROT_C))
cd64397c
PR
2277 return ERR_NOT_PROTO_C;
2278
c06ece6b
AG
2279 idr_for_each_entry(&connection->peer_devices, peer_device, i) {
2280 struct drbd_device *device = peer_device->device;
b30ab791
AG
2281 if (get_ldev(device)) {
2282 enum drbd_fencing_p fp = rcu_dereference(device->ldev->disk_conf)->fencing;
2283 put_ldev(device);
270eb5c9 2284 if (new_net_conf->wire_protocol == DRBD_PROT_A && fp == FP_STONITH)
cd64397c 2285 return ERR_STONITH_AND_PROT_A;
b411b363 2286 }
270eb5c9 2287 if (device->state.role == R_PRIMARY && new_net_conf->discard_my_data)
eb12010e 2288 return ERR_DISCARD_IMPOSSIBLE;
b411b363
PR
2289 }
2290
270eb5c9 2291 if (new_net_conf->on_congestion != OC_BLOCK && new_net_conf->wire_protocol != DRBD_PROT_A)
cd64397c 2292 return ERR_CONG_NOT_PROTO_A;
b411b363 2293
cd64397c
PR
2294 return NO_ERROR;
2295}
b411b363 2296
44ed167d 2297static enum drbd_ret_code
270eb5c9 2298check_net_options(struct drbd_connection *connection, struct net_conf *new_net_conf)
44ed167d
PR
2299{
2300 static enum drbd_ret_code rv;
c06ece6b 2301 struct drbd_peer_device *peer_device;
44ed167d 2302 int i;
b411b363 2303
44ed167d 2304 rcu_read_lock();
270eb5c9 2305 rv = _check_net_options(connection, rcu_dereference(connection->net_conf), new_net_conf);
44ed167d 2306 rcu_read_unlock();
b411b363 2307
179e20b8 2308 /* connection->peer_devices protected by genl_lock() here */
c06ece6b
AG
2309 idr_for_each_entry(&connection->peer_devices, peer_device, i) {
2310 struct drbd_device *device = peer_device->device;
b30ab791
AG
2311 if (!device->bitmap) {
2312 if (drbd_bm_init(device))
44ed167d 2313 return ERR_NOMEM;
b411b363
PR
2314 }
2315 }
2316
44ed167d
PR
2317 return rv;
2318}
b411b363 2319
0fd0ea06 2320struct crypto {
9534d671
HX
2321 struct crypto_ahash *verify_tfm;
2322 struct crypto_ahash *csums_tfm;
2323 struct crypto_shash *cram_hmac_tfm;
2324 struct crypto_ahash *integrity_tfm;
0fd0ea06 2325};
b411b363 2326
0fd0ea06 2327static int
9534d671 2328alloc_shash(struct crypto_shash **tfm, char *tfm_name, int err_alg)
0fd0ea06
PR
2329{
2330 if (!tfm_name[0])
2331 return NO_ERROR;
b411b363 2332
9534d671
HX
2333 *tfm = crypto_alloc_shash(tfm_name, 0, 0);
2334 if (IS_ERR(*tfm)) {
2335 *tfm = NULL;
2336 return err_alg;
2337 }
2338
2339 return NO_ERROR;
2340}
2341
2342static int
2343alloc_ahash(struct crypto_ahash **tfm, char *tfm_name, int err_alg)
2344{
2345 if (!tfm_name[0])
2346 return NO_ERROR;
2347
2348 *tfm = crypto_alloc_ahash(tfm_name, 0, CRYPTO_ALG_ASYNC);
0fd0ea06
PR
2349 if (IS_ERR(*tfm)) {
2350 *tfm = NULL;
2351 return err_alg;
b411b363 2352 }
b411b363 2353
0fd0ea06
PR
2354 return NO_ERROR;
2355}
b411b363 2356
0fd0ea06 2357static enum drbd_ret_code
270eb5c9 2358alloc_crypto(struct crypto *crypto, struct net_conf *new_net_conf)
0fd0ea06
PR
2359{
2360 char hmac_name[CRYPTO_MAX_ALG_NAME];
2361 enum drbd_ret_code rv;
0fd0ea06 2362
9534d671
HX
2363 rv = alloc_ahash(&crypto->csums_tfm, new_net_conf->csums_alg,
2364 ERR_CSUMS_ALG);
0fd0ea06
PR
2365 if (rv != NO_ERROR)
2366 return rv;
9534d671
HX
2367 rv = alloc_ahash(&crypto->verify_tfm, new_net_conf->verify_alg,
2368 ERR_VERIFY_ALG);
0fd0ea06
PR
2369 if (rv != NO_ERROR)
2370 return rv;
9534d671
HX
2371 rv = alloc_ahash(&crypto->integrity_tfm, new_net_conf->integrity_alg,
2372 ERR_INTEGRITY_ALG);
0fd0ea06
PR
2373 if (rv != NO_ERROR)
2374 return rv;
270eb5c9 2375 if (new_net_conf->cram_hmac_alg[0] != 0) {
0fd0ea06 2376 snprintf(hmac_name, CRYPTO_MAX_ALG_NAME, "hmac(%s)",
270eb5c9 2377 new_net_conf->cram_hmac_alg);
b411b363 2378
9534d671
HX
2379 rv = alloc_shash(&crypto->cram_hmac_tfm, hmac_name,
2380 ERR_AUTH_ALG);
b411b363
PR
2381 }
2382
0fd0ea06
PR
2383 return rv;
2384}
b411b363 2385
0fd0ea06
PR
2386static void free_crypto(struct crypto *crypto)
2387{
9534d671
HX
2388 crypto_free_shash(crypto->cram_hmac_tfm);
2389 crypto_free_ahash(crypto->integrity_tfm);
2390 crypto_free_ahash(crypto->csums_tfm);
2391 crypto_free_ahash(crypto->verify_tfm);
0fd0ea06 2392}
b411b363 2393
f399002e
LE
2394int drbd_adm_net_opts(struct sk_buff *skb, struct genl_info *info)
2395{
a910b123 2396 struct drbd_config_context adm_ctx;
f399002e 2397 enum drbd_ret_code retcode;
bde89a9e 2398 struct drbd_connection *connection;
270eb5c9 2399 struct net_conf *old_net_conf, *new_net_conf = NULL;
f399002e
LE
2400 int err;
2401 int ovr; /* online verify running */
2402 int rsr; /* re-sync running */
0fd0ea06 2403 struct crypto crypto = { };
b411b363 2404
a910b123 2405 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_CONNECTION);
f399002e
LE
2406 if (!adm_ctx.reply_skb)
2407 return retcode;
2408 if (retcode != NO_ERROR)
9e276872 2409 goto finish;
b411b363 2410
bde89a9e 2411 connection = adm_ctx.connection;
9e276872 2412 mutex_lock(&adm_ctx.resource->adm_mutex);
b411b363 2413
270eb5c9
AG
2414 new_net_conf = kzalloc(sizeof(struct net_conf), GFP_KERNEL);
2415 if (!new_net_conf) {
f399002e
LE
2416 retcode = ERR_NOMEM;
2417 goto out;
2418 }
b411b363 2419
bde89a9e 2420 conn_reconfig_start(connection);
b411b363 2421
bde89a9e 2422 mutex_lock(&connection->data.mutex);
0500813f 2423 mutex_lock(&connection->resource->conf_update);
270eb5c9 2424 old_net_conf = connection->net_conf;
2561b9c1 2425
270eb5c9 2426 if (!old_net_conf) {
a910b123 2427 drbd_msg_put_info(adm_ctx.reply_skb, "net conf missing, try connect");
f399002e 2428 retcode = ERR_INVALID_REQUEST;
2561b9c1
PR
2429 goto fail;
2430 }
2431
270eb5c9 2432 *new_net_conf = *old_net_conf;
5979e361 2433 if (should_set_defaults(info))
270eb5c9 2434 set_net_conf_defaults(new_net_conf);
f399002e 2435
270eb5c9 2436 err = net_conf_from_attrs_for_change(new_net_conf, info);
c75b9b10 2437 if (err && err != -ENOMSG) {
f399002e 2438 retcode = ERR_MANDATORY_TAG;
a910b123 2439 drbd_msg_put_info(adm_ctx.reply_skb, from_attrs_err_to_txt(err));
f399002e 2440 goto fail;
2561b9c1 2441 }
b411b363 2442
270eb5c9 2443 retcode = check_net_options(connection, new_net_conf);
cd64397c
PR
2444 if (retcode != NO_ERROR)
2445 goto fail;
b411b363 2446
f399002e 2447 /* re-sync running */
bde89a9e 2448 rsr = conn_resync_running(connection);
270eb5c9 2449 if (rsr && strcmp(new_net_conf->csums_alg, old_net_conf->csums_alg)) {
f399002e 2450 retcode = ERR_CSUMS_RESYNC_RUNNING;
91fd4dad 2451 goto fail;
b411b363
PR
2452 }
2453
f399002e 2454 /* online verify running */
bde89a9e 2455 ovr = conn_ov_running(connection);
270eb5c9 2456 if (ovr && strcmp(new_net_conf->verify_alg, old_net_conf->verify_alg)) {
0fd0ea06 2457 retcode = ERR_VERIFY_RUNNING;
b411b363 2458 goto fail;
f399002e 2459 }
b411b363 2460
270eb5c9 2461 retcode = alloc_crypto(&crypto, new_net_conf);
0fd0ea06 2462 if (retcode != NO_ERROR)
b411b363 2463 goto fail;
f399002e 2464
270eb5c9 2465 rcu_assign_pointer(connection->net_conf, new_net_conf);
f399002e
LE
2466
2467 if (!rsr) {
9534d671 2468 crypto_free_ahash(connection->csums_tfm);
bde89a9e 2469 connection->csums_tfm = crypto.csums_tfm;
0fd0ea06 2470 crypto.csums_tfm = NULL;
f399002e
LE
2471 }
2472 if (!ovr) {
9534d671 2473 crypto_free_ahash(connection->verify_tfm);
bde89a9e 2474 connection->verify_tfm = crypto.verify_tfm;
0fd0ea06 2475 crypto.verify_tfm = NULL;
b411b363
PR
2476 }
2477
9534d671 2478 crypto_free_ahash(connection->integrity_tfm);
bde89a9e
AG
2479 connection->integrity_tfm = crypto.integrity_tfm;
2480 if (connection->cstate >= C_WF_REPORT_PARAMS && connection->agreed_pro_version >= 100)
2481 /* Do this without trying to take connection->data.mutex again. */
2482 __drbd_send_protocol(connection, P_PROTOCOL_UPDATE);
0fd0ea06 2483
9534d671 2484 crypto_free_shash(connection->cram_hmac_tfm);
bde89a9e 2485 connection->cram_hmac_tfm = crypto.cram_hmac_tfm;
0fd0ea06 2486
0500813f 2487 mutex_unlock(&connection->resource->conf_update);
bde89a9e 2488 mutex_unlock(&connection->data.mutex);
91fd4dad 2489 synchronize_rcu();
270eb5c9 2490 kfree(old_net_conf);
91fd4dad 2491
69a22773
AG
2492 if (connection->cstate >= C_WF_REPORT_PARAMS) {
2493 struct drbd_peer_device *peer_device;
2494 int vnr;
2495
2496 idr_for_each_entry(&connection->peer_devices, peer_device, vnr)
2497 drbd_send_sync_param(peer_device);
2498 }
f399002e 2499
91fd4dad
PR
2500 goto done;
2501
b411b363 2502 fail:
0500813f 2503 mutex_unlock(&connection->resource->conf_update);
bde89a9e 2504 mutex_unlock(&connection->data.mutex);
0fd0ea06 2505 free_crypto(&crypto);
270eb5c9 2506 kfree(new_net_conf);
91fd4dad 2507 done:
bde89a9e 2508 conn_reconfig_done(connection);
f399002e 2509 out:
9e276872
LE
2510 mutex_unlock(&adm_ctx.resource->adm_mutex);
2511 finish:
a910b123 2512 drbd_adm_finish(&adm_ctx, info, retcode);
b411b363
PR
2513 return 0;
2514}
2515
a2972846
AG
2516static void connection_to_info(struct connection_info *info,
2517 struct drbd_connection *connection)
2518{
2519 info->conn_connection_state = connection->cstate;
2520 info->conn_role = conn_highest_peer(connection);
2521}
2522
2523static void peer_device_to_info(struct peer_device_info *info,
2524 struct drbd_peer_device *peer_device)
2525{
2526 struct drbd_device *device = peer_device->device;
2527
2528 info->peer_repl_state =
2529 max_t(enum drbd_conns, C_WF_REPORT_PARAMS, device->state.conn);
2530 info->peer_disk_state = device->state.pdsk;
2531 info->peer_resync_susp_user = device->state.user_isp;
2532 info->peer_resync_susp_peer = device->state.peer_isp;
2533 info->peer_resync_susp_dependency = device->state.aftr_isp;
2534}
2535
3b98c0c2 2536int drbd_adm_connect(struct sk_buff *skb, struct genl_info *info)
b411b363 2537{
a2972846
AG
2538 struct connection_info connection_info;
2539 enum drbd_notification_type flags;
2540 unsigned int peer_devices = 0;
a910b123 2541 struct drbd_config_context adm_ctx;
c06ece6b 2542 struct drbd_peer_device *peer_device;
270eb5c9 2543 struct net_conf *old_net_conf, *new_net_conf = NULL;
0fd0ea06 2544 struct crypto crypto = { };
77c556f6 2545 struct drbd_resource *resource;
bde89a9e 2546 struct drbd_connection *connection;
3b98c0c2
LE
2547 enum drbd_ret_code retcode;
2548 int i;
2549 int err;
b411b363 2550
a910b123 2551 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_RESOURCE);
b411b363 2552
3b98c0c2
LE
2553 if (!adm_ctx.reply_skb)
2554 return retcode;
2555 if (retcode != NO_ERROR)
2556 goto out;
089c075d 2557 if (!(adm_ctx.my_addr && adm_ctx.peer_addr)) {
a910b123 2558 drbd_msg_put_info(adm_ctx.reply_skb, "connection endpoint(s) missing");
089c075d
AG
2559 retcode = ERR_INVALID_REQUEST;
2560 goto out;
2561 }
b411b363 2562
089c075d
AG
2563 /* No need for _rcu here. All reconfiguration is
2564 * strictly serialized on genl_lock(). We are protected against
2565 * concurrent reconfiguration/addition/deletion */
77c556f6
AG
2566 for_each_resource(resource, &drbd_resources) {
2567 for_each_connection(connection, resource) {
2568 if (nla_len(adm_ctx.my_addr) == connection->my_addr_len &&
2569 !memcmp(nla_data(adm_ctx.my_addr), &connection->my_addr,
2570 connection->my_addr_len)) {
2571 retcode = ERR_LOCAL_ADDR;
2572 goto out;
2573 }
b411b363 2574
77c556f6
AG
2575 if (nla_len(adm_ctx.peer_addr) == connection->peer_addr_len &&
2576 !memcmp(nla_data(adm_ctx.peer_addr), &connection->peer_addr,
2577 connection->peer_addr_len)) {
2578 retcode = ERR_PEER_ADDR;
2579 goto out;
2580 }
089c075d 2581 }
b411b363
PR
2582 }
2583
9e276872 2584 mutex_lock(&adm_ctx.resource->adm_mutex);
3ab706fe 2585 connection = first_connection(adm_ctx.resource);
bde89a9e 2586 conn_reconfig_start(connection);
b411b363 2587
bde89a9e 2588 if (connection->cstate > C_STANDALONE) {
b411b363 2589 retcode = ERR_NET_CONFIGURED;
b411b363
PR
2590 goto fail;
2591 }
2592
a209b4ae 2593 /* allocation not in the IO path, drbdsetup / netlink process context */
270eb5c9
AG
2594 new_net_conf = kzalloc(sizeof(*new_net_conf), GFP_KERNEL);
2595 if (!new_net_conf) {
b411b363 2596 retcode = ERR_NOMEM;
b411b363
PR
2597 goto fail;
2598 }
2599
270eb5c9 2600 set_net_conf_defaults(new_net_conf);
b411b363 2601
270eb5c9 2602 err = net_conf_from_attrs(new_net_conf, info);
25e40932 2603 if (err && err != -ENOMSG) {
b411b363 2604 retcode = ERR_MANDATORY_TAG;
a910b123 2605 drbd_msg_put_info(adm_ctx.reply_skb, from_attrs_err_to_txt(err));
b411b363
PR
2606 goto fail;
2607 }
2608
270eb5c9 2609 retcode = check_net_options(connection, new_net_conf);
cd64397c 2610 if (retcode != NO_ERROR)
422028b1 2611 goto fail;
b411b363 2612
270eb5c9 2613 retcode = alloc_crypto(&crypto, new_net_conf);
0fd0ea06
PR
2614 if (retcode != NO_ERROR)
2615 goto fail;
b411b363 2616
270eb5c9 2617 ((char *)new_net_conf->shared_secret)[SHARED_SECRET_MAX-1] = 0;
7b4e4d31 2618
b5043c5e 2619 drbd_flush_workqueue(&connection->sender_work);
b411b363 2620
0500813f 2621 mutex_lock(&adm_ctx.resource->conf_update);
270eb5c9
AG
2622 old_net_conf = connection->net_conf;
2623 if (old_net_conf) {
b411b363 2624 retcode = ERR_NET_CONFIGURED;
0500813f 2625 mutex_unlock(&adm_ctx.resource->conf_update);
b411b363
PR
2626 goto fail;
2627 }
270eb5c9 2628 rcu_assign_pointer(connection->net_conf, new_net_conf);
b411b363 2629
bde89a9e
AG
2630 conn_free_crypto(connection);
2631 connection->cram_hmac_tfm = crypto.cram_hmac_tfm;
2632 connection->integrity_tfm = crypto.integrity_tfm;
2633 connection->csums_tfm = crypto.csums_tfm;
2634 connection->verify_tfm = crypto.verify_tfm;
b411b363 2635
bde89a9e
AG
2636 connection->my_addr_len = nla_len(adm_ctx.my_addr);
2637 memcpy(&connection->my_addr, nla_data(adm_ctx.my_addr), connection->my_addr_len);
2638 connection->peer_addr_len = nla_len(adm_ctx.peer_addr);
2639 memcpy(&connection->peer_addr, nla_data(adm_ctx.peer_addr), connection->peer_addr_len);
b411b363 2640
a2972846
AG
2641 idr_for_each_entry(&connection->peer_devices, peer_device, i) {
2642 peer_devices++;
2643 }
2644
2645 connection_to_info(&connection_info, connection);
2646 flags = (peer_devices--) ? NOTIFY_CONTINUES : 0;
2647 mutex_lock(&notification_mutex);
2648 notify_connection_state(NULL, 0, connection, &connection_info, NOTIFY_CREATE | flags);
2649 idr_for_each_entry(&connection->peer_devices, peer_device, i) {
2650 struct peer_device_info peer_device_info;
2651
2652 peer_device_to_info(&peer_device_info, peer_device);
2653 flags = (peer_devices--) ? NOTIFY_CONTINUES : 0;
2654 notify_peer_device_state(NULL, 0, peer_device, &peer_device_info, NOTIFY_CREATE | flags);
2655 }
2656 mutex_unlock(&notification_mutex);
0500813f 2657 mutex_unlock(&adm_ctx.resource->conf_update);
b411b363 2658
695d08fa 2659 rcu_read_lock();
c06ece6b
AG
2660 idr_for_each_entry(&connection->peer_devices, peer_device, i) {
2661 struct drbd_device *device = peer_device->device;
b30ab791
AG
2662 device->send_cnt = 0;
2663 device->recv_cnt = 0;
b411b363 2664 }
695d08fa 2665 rcu_read_unlock();
b411b363 2666
bde89a9e 2667 retcode = conn_request_state(connection, NS(conn, C_UNCONNECTED), CS_VERBOSE);
b411b363 2668
bde89a9e 2669 conn_reconfig_done(connection);
9e276872 2670 mutex_unlock(&adm_ctx.resource->adm_mutex);
a910b123 2671 drbd_adm_finish(&adm_ctx, info, retcode);
b411b363 2672 return 0;
b411b363 2673
b411b363 2674fail:
0fd0ea06 2675 free_crypto(&crypto);
270eb5c9 2676 kfree(new_net_conf);
b411b363 2677
bde89a9e 2678 conn_reconfig_done(connection);
9e276872 2679 mutex_unlock(&adm_ctx.resource->adm_mutex);
3b98c0c2 2680out:
a910b123 2681 drbd_adm_finish(&adm_ctx, info, retcode);
b411b363
PR
2682 return 0;
2683}
2684
bde89a9e 2685static enum drbd_state_rv conn_try_disconnect(struct drbd_connection *connection, bool force)
85f75dd7
LE
2686{
2687 enum drbd_state_rv rv;
85f75dd7 2688
bde89a9e 2689 rv = conn_request_state(connection, NS(conn, C_DISCONNECTING),
f3dfa40a 2690 force ? CS_HARD : 0);
85f75dd7
LE
2691
2692 switch (rv) {
2693 case SS_NOTHING_TO_DO:
f3dfa40a 2694 break;
85f75dd7
LE
2695 case SS_ALREADY_STANDALONE:
2696 return SS_SUCCESS;
2697 case SS_PRIMARY_NOP:
2698 /* Our state checking code wants to see the peer outdated. */
bde89a9e 2699 rv = conn_request_state(connection, NS2(conn, C_DISCONNECTING, pdsk, D_OUTDATED), 0);
2bd5ed5d
PR
2700
2701 if (rv == SS_OUTDATE_WO_CONN) /* lost connection before graceful disconnect succeeded */
bde89a9e 2702 rv = conn_request_state(connection, NS(conn, C_DISCONNECTING), CS_VERBOSE);
2bd5ed5d 2703
85f75dd7
LE
2704 break;
2705 case SS_CW_FAILED_BY_PEER:
2706 /* The peer probably wants to see us outdated. */
bde89a9e 2707 rv = conn_request_state(connection, NS2(conn, C_DISCONNECTING,
85f75dd7
LE
2708 disk, D_OUTDATED), 0);
2709 if (rv == SS_IS_DISKLESS || rv == SS_LOWER_THAN_OUTDATED) {
bde89a9e 2710 rv = conn_request_state(connection, NS(conn, C_DISCONNECTING),
f3dfa40a 2711 CS_HARD);
b411b363 2712 }
85f75dd7
LE
2713 break;
2714 default:;
2715 /* no special handling necessary */
2716 }
2717
f3dfa40a
LE
2718 if (rv >= SS_SUCCESS) {
2719 enum drbd_state_rv rv2;
2720 /* No one else can reconfigure the network while I am here.
2721 * The state handling only uses drbd_thread_stop_nowait(),
2722 * we want to really wait here until the receiver is no more.
2723 */
9693da23 2724 drbd_thread_stop(&connection->receiver);
f3dfa40a
LE
2725
2726 /* Race breaker. This additional state change request may be
2727 * necessary, if this was a forced disconnect during a receiver
2728 * restart. We may have "killed" the receiver thread just
8fe60551 2729 * after drbd_receiver() returned. Typically, we should be
f3dfa40a
LE
2730 * C_STANDALONE already, now, and this becomes a no-op.
2731 */
bde89a9e 2732 rv2 = conn_request_state(connection, NS(conn, C_STANDALONE),
f3dfa40a
LE
2733 CS_VERBOSE | CS_HARD);
2734 if (rv2 < SS_SUCCESS)
1ec861eb 2735 drbd_err(connection,
f3dfa40a
LE
2736 "unexpected rv2=%d in conn_try_disconnect()\n",
2737 rv2);
a2972846
AG
2738 /* Unlike in DRBD 9, the state engine has generated
2739 * NOTIFY_DESTROY events before clearing connection->net_conf. */
b411b363 2740 }
85f75dd7
LE
2741 return rv;
2742}
b411b363 2743
3b98c0c2 2744int drbd_adm_disconnect(struct sk_buff *skb, struct genl_info *info)
b411b363 2745{
a910b123 2746 struct drbd_config_context adm_ctx;
3b98c0c2 2747 struct disconnect_parms parms;
bde89a9e 2748 struct drbd_connection *connection;
85f75dd7 2749 enum drbd_state_rv rv;
3b98c0c2
LE
2750 enum drbd_ret_code retcode;
2751 int err;
2561b9c1 2752
a910b123 2753 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_CONNECTION);
3b98c0c2
LE
2754 if (!adm_ctx.reply_skb)
2755 return retcode;
2756 if (retcode != NO_ERROR)
2561b9c1 2757 goto fail;
b411b363 2758
bde89a9e 2759 connection = adm_ctx.connection;
3b98c0c2
LE
2760 memset(&parms, 0, sizeof(parms));
2761 if (info->attrs[DRBD_NLA_DISCONNECT_PARMS]) {
f399002e 2762 err = disconnect_parms_from_attrs(&parms, info);
3b98c0c2
LE
2763 if (err) {
2764 retcode = ERR_MANDATORY_TAG;
a910b123 2765 drbd_msg_put_info(adm_ctx.reply_skb, from_attrs_err_to_txt(err));
b411b363
PR
2766 goto fail;
2767 }
2768 }
2769
9e276872 2770 mutex_lock(&adm_ctx.resource->adm_mutex);
bde89a9e 2771 rv = conn_try_disconnect(connection, parms.force_disconnect);
85f75dd7 2772 if (rv < SS_SUCCESS)
f3dfa40a
LE
2773 retcode = rv; /* FIXME: Type mismatch. */
2774 else
2775 retcode = NO_ERROR;
9e276872 2776 mutex_unlock(&adm_ctx.resource->adm_mutex);
b411b363 2777 fail:
a910b123 2778 drbd_adm_finish(&adm_ctx, info, retcode);
b411b363
PR
2779 return 0;
2780}
2781
b30ab791 2782void resync_after_online_grow(struct drbd_device *device)
b411b363
PR
2783{
2784 int iass; /* I am sync source */
2785
d0180171 2786 drbd_info(device, "Resync of new storage after online grow\n");
b30ab791
AG
2787 if (device->state.role != device->state.peer)
2788 iass = (device->state.role == R_PRIMARY);
b411b363 2789 else
a6b32bc3 2790 iass = test_bit(RESOLVE_CONFLICTS, &first_peer_device(device)->connection->flags);
b411b363
PR
2791
2792 if (iass)
b30ab791 2793 drbd_start_resync(device, C_SYNC_SOURCE);
b411b363 2794 else
b30ab791 2795 _drbd_request_state(device, NS(conn, C_WF_SYNC_UUID), CS_VERBOSE + CS_SERIALIZE);
b411b363
PR
2796}
2797
3b98c0c2 2798int drbd_adm_resize(struct sk_buff *skb, struct genl_info *info)
b411b363 2799{
a910b123 2800 struct drbd_config_context adm_ctx;
daeda1cc 2801 struct disk_conf *old_disk_conf, *new_disk_conf = NULL;
3b98c0c2 2802 struct resize_parms rs;
b30ab791 2803 struct drbd_device *device;
3b98c0c2 2804 enum drbd_ret_code retcode;
b411b363 2805 enum determine_dev_size dd;
d752b269 2806 bool change_al_layout = false;
6495d2c6 2807 enum dds_flags ddsf;
daeda1cc 2808 sector_t u_size;
3b98c0c2 2809 int err;
b411b363 2810
a910b123 2811 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
3b98c0c2
LE
2812 if (!adm_ctx.reply_skb)
2813 return retcode;
2814 if (retcode != NO_ERROR)
9e276872 2815 goto finish;
3b98c0c2 2816
9e276872 2817 mutex_lock(&adm_ctx.resource->adm_mutex);
b30ab791
AG
2818 device = adm_ctx.device;
2819 if (!get_ldev(device)) {
d752b269
PR
2820 retcode = ERR_NO_DISK;
2821 goto fail;
2822 }
2823
3b98c0c2 2824 memset(&rs, 0, sizeof(struct resize_parms));
b30ab791
AG
2825 rs.al_stripes = device->ldev->md.al_stripes;
2826 rs.al_stripe_size = device->ldev->md.al_stripe_size_4k * 4;
3b98c0c2 2827 if (info->attrs[DRBD_NLA_RESIZE_PARMS]) {
f399002e 2828 err = resize_parms_from_attrs(&rs, info);
b411b363 2829 if (err) {
3b98c0c2 2830 retcode = ERR_MANDATORY_TAG;
a910b123 2831 drbd_msg_put_info(adm_ctx.reply_skb, from_attrs_err_to_txt(err));
d752b269 2832 goto fail_ldev;
b411b363
PR
2833 }
2834 }
2835
b30ab791 2836 if (device->state.conn > C_CONNECTED) {
b411b363 2837 retcode = ERR_RESIZE_RESYNC;
d752b269 2838 goto fail_ldev;
b411b363 2839 }
b411b363 2840
b30ab791
AG
2841 if (device->state.role == R_SECONDARY &&
2842 device->state.peer == R_SECONDARY) {
b411b363 2843 retcode = ERR_NO_PRIMARY;
d752b269 2844 goto fail_ldev;
b411b363 2845 }
b411b363 2846
a6b32bc3 2847 if (rs.no_resync && first_peer_device(device)->connection->agreed_pro_version < 93) {
6495d2c6 2848 retcode = ERR_NEED_APV_93;
9bcd2521 2849 goto fail_ldev;
6495d2c6
PR
2850 }
2851
daeda1cc 2852 rcu_read_lock();
b30ab791 2853 u_size = rcu_dereference(device->ldev->disk_conf)->disk_size;
daeda1cc
PR
2854 rcu_read_unlock();
2855 if (u_size != (sector_t)rs.resize_size) {
2856 new_disk_conf = kmalloc(sizeof(struct disk_conf), GFP_KERNEL);
2857 if (!new_disk_conf) {
778f271d 2858 retcode = ERR_NOMEM;
9bcd2521 2859 goto fail_ldev;
778f271d
PR
2860 }
2861 }
2862
b30ab791
AG
2863 if (device->ldev->md.al_stripes != rs.al_stripes ||
2864 device->ldev->md.al_stripe_size_4k != rs.al_stripe_size / 4) {
d752b269
PR
2865 u32 al_size_k = rs.al_stripes * rs.al_stripe_size;
2866
2867 if (al_size_k > (16 * 1024 * 1024)) {
2868 retcode = ERR_MD_LAYOUT_TOO_BIG;
2869 goto fail_ldev;
2870 }
2871
2872 if (al_size_k < MD_32kB_SECT/2) {
2873 retcode = ERR_MD_LAYOUT_TOO_SMALL;
2874 goto fail_ldev;
2875 }
2876
cdc6af8d 2877 if (device->state.conn != C_CONNECTED && !rs.resize_force) {
d752b269
PR
2878 retcode = ERR_MD_LAYOUT_CONNECTED;
2879 goto fail_ldev;
2880 }
2881
2882 change_al_layout = true;
2883 }
2884
b30ab791
AG
2885 if (device->ldev->known_size != drbd_get_capacity(device->ldev->backing_bdev))
2886 device->ldev->known_size = drbd_get_capacity(device->ldev->backing_bdev);
b411b363 2887
daeda1cc 2888 if (new_disk_conf) {
0500813f 2889 mutex_lock(&device->resource->conf_update);
b30ab791 2890 old_disk_conf = device->ldev->disk_conf;
daeda1cc
PR
2891 *new_disk_conf = *old_disk_conf;
2892 new_disk_conf->disk_size = (sector_t)rs.resize_size;
b30ab791 2893 rcu_assign_pointer(device->ldev->disk_conf, new_disk_conf);
0500813f 2894 mutex_unlock(&device->resource->conf_update);
daeda1cc
PR
2895 synchronize_rcu();
2896 kfree(old_disk_conf);
70644786 2897 new_disk_conf = NULL;
b411b363
PR
2898 }
2899
6495d2c6 2900 ddsf = (rs.resize_force ? DDSF_FORCED : 0) | (rs.no_resync ? DDSF_NO_RESYNC : 0);
b30ab791
AG
2901 dd = drbd_determine_dev_size(device, ddsf, change_al_layout ? &rs : NULL);
2902 drbd_md_sync(device);
2903 put_ldev(device);
e96c9633 2904 if (dd == DS_ERROR) {
b411b363
PR
2905 retcode = ERR_NOMEM_BITMAP;
2906 goto fail;
d752b269
PR
2907 } else if (dd == DS_ERROR_SPACE_MD) {
2908 retcode = ERR_MD_LAYOUT_NO_FIT;
2909 goto fail;
2910 } else if (dd == DS_ERROR_SHRINK) {
2911 retcode = ERR_IMPLICIT_SHRINK;
2912 goto fail;
b411b363 2913 }
778f271d 2914
b30ab791 2915 if (device->state.conn == C_CONNECTED) {
e96c9633 2916 if (dd == DS_GREW)
b30ab791 2917 set_bit(RESIZE_PENDING, &device->flags);
b411b363 2918
69a22773
AG
2919 drbd_send_uuids(first_peer_device(device));
2920 drbd_send_sizes(first_peer_device(device), 1, ddsf);
778f271d
PR
2921 }
2922
b411b363 2923 fail:
9e276872
LE
2924 mutex_unlock(&adm_ctx.resource->adm_mutex);
2925 finish:
a910b123 2926 drbd_adm_finish(&adm_ctx, info, retcode);
b411b363 2927 return 0;
b411b363 2928
9bcd2521 2929 fail_ldev:
b30ab791 2930 put_ldev(device);
70644786 2931 kfree(new_disk_conf);
9bcd2521 2932 goto fail;
b411b363 2933}
b411b363 2934
f399002e 2935int drbd_adm_resource_opts(struct sk_buff *skb, struct genl_info *info)
b411b363 2936{
a910b123 2937 struct drbd_config_context adm_ctx;
3b98c0c2 2938 enum drbd_ret_code retcode;
b57a1e27 2939 struct res_opts res_opts;
f399002e 2940 int err;
b411b363 2941
a910b123 2942 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_RESOURCE);
3b98c0c2
LE
2943 if (!adm_ctx.reply_skb)
2944 return retcode;
2945 if (retcode != NO_ERROR)
2946 goto fail;
b411b363 2947
eb6bea67 2948 res_opts = adm_ctx.resource->res_opts;
5979e361 2949 if (should_set_defaults(info))
b966b5dd 2950 set_res_opts_defaults(&res_opts);
b411b363 2951
b57a1e27 2952 err = res_opts_from_attrs(&res_opts, info);
c75b9b10 2953 if (err && err != -ENOMSG) {
b411b363 2954 retcode = ERR_MANDATORY_TAG;
a910b123 2955 drbd_msg_put_info(adm_ctx.reply_skb, from_attrs_err_to_txt(err));
b411b363
PR
2956 goto fail;
2957 }
2958
9e276872 2959 mutex_lock(&adm_ctx.resource->adm_mutex);
eb6bea67 2960 err = set_resource_options(adm_ctx.resource, &res_opts);
afbbfa88
AG
2961 if (err) {
2962 retcode = ERR_INVALID_REQUEST;
2963 if (err == -ENOMEM)
2964 retcode = ERR_NOMEM;
b411b363 2965 }
9e276872 2966 mutex_unlock(&adm_ctx.resource->adm_mutex);
b411b363 2967
b411b363 2968fail:
a910b123 2969 drbd_adm_finish(&adm_ctx, info, retcode);
b411b363
PR
2970 return 0;
2971}
2972
3b98c0c2 2973int drbd_adm_invalidate(struct sk_buff *skb, struct genl_info *info)
b411b363 2974{
a910b123 2975 struct drbd_config_context adm_ctx;
b30ab791 2976 struct drbd_device *device;
3b98c0c2
LE
2977 int retcode; /* enum drbd_ret_code rsp. enum drbd_state_rv */
2978
a910b123 2979 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
3b98c0c2
LE
2980 if (!adm_ctx.reply_skb)
2981 return retcode;
2982 if (retcode != NO_ERROR)
2983 goto out;
2984
b30ab791 2985 device = adm_ctx.device;
8fe39aac
PR
2986 if (!get_ldev(device)) {
2987 retcode = ERR_NO_DISK;
2988 goto out;
2989 }
2990
2991 mutex_lock(&adm_ctx.resource->adm_mutex);
b411b363 2992
194bfb32 2993 /* If there is still bitmap IO pending, probably because of a previous
7ee1fb93
LE
2994 * resync just being finished, wait for it before requesting a new resync.
2995 * Also wait for it's after_state_ch(). */
b30ab791
AG
2996 drbd_suspend_io(device);
2997 wait_event(device->misc_wait, !test_bit(BITMAP_IO, &device->flags));
b5043c5e 2998 drbd_flush_workqueue(&first_peer_device(device)->connection->sender_work);
194bfb32 2999
0b2dafcd
PR
3000 /* If we happen to be C_STANDALONE R_SECONDARY, just change to
3001 * D_INCONSISTENT, and set all bits in the bitmap. Otherwise,
3002 * try to start a resync handshake as sync target for full sync.
9376d9f8 3003 */
b30ab791
AG
3004 if (device->state.conn == C_STANDALONE && device->state.role == R_SECONDARY) {
3005 retcode = drbd_request_state(device, NS(disk, D_INCONSISTENT));
0b2dafcd 3006 if (retcode >= SS_SUCCESS) {
b30ab791 3007 if (drbd_bitmap_io(device, &drbd_bmio_set_n_write,
0b2dafcd
PR
3008 "set_n_write from invalidate", BM_LOCKED_MASK))
3009 retcode = ERR_IO_MD_DISK;
3010 }
3011 } else
b30ab791
AG
3012 retcode = drbd_request_state(device, NS(conn, C_STARTING_SYNC_T));
3013 drbd_resume_io(device);
9e276872 3014 mutex_unlock(&adm_ctx.resource->adm_mutex);
8fe39aac 3015 put_ldev(device);
3b98c0c2 3016out:
a910b123 3017 drbd_adm_finish(&adm_ctx, info, retcode);
b411b363
PR
3018 return 0;
3019}
3020
3b98c0c2
LE
3021static int drbd_adm_simple_request_state(struct sk_buff *skb, struct genl_info *info,
3022 union drbd_state mask, union drbd_state val)
b411b363 3023{
a910b123 3024 struct drbd_config_context adm_ctx;
3b98c0c2 3025 enum drbd_ret_code retcode;
194bfb32 3026
a910b123 3027 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
3b98c0c2
LE
3028 if (!adm_ctx.reply_skb)
3029 return retcode;
3030 if (retcode != NO_ERROR)
3031 goto out;
b411b363 3032
9e276872 3033 mutex_lock(&adm_ctx.resource->adm_mutex);
b30ab791 3034 retcode = drbd_request_state(adm_ctx.device, mask, val);
9e276872 3035 mutex_unlock(&adm_ctx.resource->adm_mutex);
3b98c0c2 3036out:
a910b123 3037 drbd_adm_finish(&adm_ctx, info, retcode);
b411b363
PR
3038 return 0;
3039}
3040
8fe39aac 3041static int drbd_bmio_set_susp_al(struct drbd_device *device) __must_hold(local)
0778286a
PR
3042{
3043 int rv;
3044
b30ab791
AG
3045 rv = drbd_bmio_set_n_write(device);
3046 drbd_suspend_al(device);
0778286a
PR
3047 return rv;
3048}
3049
3b98c0c2 3050int drbd_adm_invalidate_peer(struct sk_buff *skb, struct genl_info *info)
b411b363 3051{
a910b123 3052 struct drbd_config_context adm_ctx;
25b0d6c8 3053 int retcode; /* drbd_ret_code, drbd_state_rv */
b30ab791 3054 struct drbd_device *device;
25b0d6c8 3055
a910b123 3056 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
25b0d6c8
PR
3057 if (!adm_ctx.reply_skb)
3058 return retcode;
3059 if (retcode != NO_ERROR)
3060 goto out;
3061
b30ab791 3062 device = adm_ctx.device;
8fe39aac
PR
3063 if (!get_ldev(device)) {
3064 retcode = ERR_NO_DISK;
3065 goto out;
3066 }
3067
3068 mutex_lock(&adm_ctx.resource->adm_mutex);
b411b363 3069
194bfb32 3070 /* If there is still bitmap IO pending, probably because of a previous
7ee1fb93
LE
3071 * resync just being finished, wait for it before requesting a new resync.
3072 * Also wait for it's after_state_ch(). */
b30ab791
AG
3073 drbd_suspend_io(device);
3074 wait_event(device->misc_wait, !test_bit(BITMAP_IO, &device->flags));
b5043c5e 3075 drbd_flush_workqueue(&first_peer_device(device)->connection->sender_work);
194bfb32 3076
0b2dafcd
PR
3077 /* If we happen to be C_STANDALONE R_PRIMARY, just set all bits
3078 * in the bitmap. Otherwise, try to start a resync handshake
3079 * as sync source for full sync.
3080 */
b30ab791 3081 if (device->state.conn == C_STANDALONE && device->state.role == R_PRIMARY) {
0b2dafcd
PR
3082 /* The peer will get a resync upon connect anyways. Just make that
3083 into a full resync. */
b30ab791 3084 retcode = drbd_request_state(device, NS(pdsk, D_INCONSISTENT));
0b2dafcd 3085 if (retcode >= SS_SUCCESS) {
b30ab791 3086 if (drbd_bitmap_io(device, &drbd_bmio_set_susp_al,
0b2dafcd
PR
3087 "set_n_write from invalidate_peer",
3088 BM_LOCKED_SET_ALLOWED))
3089 retcode = ERR_IO_MD_DISK;
3090 }
3091 } else
b30ab791
AG
3092 retcode = drbd_request_state(device, NS(conn, C_STARTING_SYNC_S));
3093 drbd_resume_io(device);
9e276872 3094 mutex_unlock(&adm_ctx.resource->adm_mutex);
8fe39aac 3095 put_ldev(device);
25b0d6c8 3096out:
a910b123 3097 drbd_adm_finish(&adm_ctx, info, retcode);
b411b363
PR
3098 return 0;
3099}
3100
3b98c0c2 3101int drbd_adm_pause_sync(struct sk_buff *skb, struct genl_info *info)
b411b363 3102{
a910b123 3103 struct drbd_config_context adm_ctx;
3b98c0c2 3104 enum drbd_ret_code retcode;
b411b363 3105
a910b123 3106 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
3b98c0c2
LE
3107 if (!adm_ctx.reply_skb)
3108 return retcode;
3109 if (retcode != NO_ERROR)
3110 goto out;
b411b363 3111
9e276872 3112 mutex_lock(&adm_ctx.resource->adm_mutex);
b30ab791 3113 if (drbd_request_state(adm_ctx.device, NS(user_isp, 1)) == SS_NOTHING_TO_DO)
3b98c0c2 3114 retcode = ERR_PAUSE_IS_SET;
9e276872 3115 mutex_unlock(&adm_ctx.resource->adm_mutex);
3b98c0c2 3116out:
a910b123 3117 drbd_adm_finish(&adm_ctx, info, retcode);
b411b363
PR
3118 return 0;
3119}
3120
3b98c0c2 3121int drbd_adm_resume_sync(struct sk_buff *skb, struct genl_info *info)
b411b363 3122{
a910b123 3123 struct drbd_config_context adm_ctx;
da9fbc27 3124 union drbd_dev_state s;
3b98c0c2
LE
3125 enum drbd_ret_code retcode;
3126
a910b123 3127 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
3b98c0c2
LE
3128 if (!adm_ctx.reply_skb)
3129 return retcode;
3130 if (retcode != NO_ERROR)
3131 goto out;
b411b363 3132
9e276872 3133 mutex_lock(&adm_ctx.resource->adm_mutex);
b30ab791
AG
3134 if (drbd_request_state(adm_ctx.device, NS(user_isp, 0)) == SS_NOTHING_TO_DO) {
3135 s = adm_ctx.device->state;
cd88d030
PR
3136 if (s.conn == C_PAUSED_SYNC_S || s.conn == C_PAUSED_SYNC_T) {
3137 retcode = s.aftr_isp ? ERR_PIC_AFTER_DEP :
3138 s.peer_isp ? ERR_PIC_PEER_DEP : ERR_PAUSE_IS_CLEAR;
3139 } else {
3140 retcode = ERR_PAUSE_IS_CLEAR;
3141 }
3142 }
9e276872 3143 mutex_unlock(&adm_ctx.resource->adm_mutex);
3b98c0c2 3144out:
a910b123 3145 drbd_adm_finish(&adm_ctx, info, retcode);
b411b363
PR
3146 return 0;
3147}
3148
3b98c0c2 3149int drbd_adm_suspend_io(struct sk_buff *skb, struct genl_info *info)
b411b363 3150{
3b98c0c2 3151 return drbd_adm_simple_request_state(skb, info, NS(susp, 1));
b411b363
PR
3152}
3153
3b98c0c2 3154int drbd_adm_resume_io(struct sk_buff *skb, struct genl_info *info)
b411b363 3155{
a910b123 3156 struct drbd_config_context adm_ctx;
b30ab791 3157 struct drbd_device *device;
3b98c0c2
LE
3158 int retcode; /* enum drbd_ret_code rsp. enum drbd_state_rv */
3159
a910b123 3160 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
3b98c0c2
LE
3161 if (!adm_ctx.reply_skb)
3162 return retcode;
3163 if (retcode != NO_ERROR)
3164 goto out;
3165
9e276872 3166 mutex_lock(&adm_ctx.resource->adm_mutex);
b30ab791
AG
3167 device = adm_ctx.device;
3168 if (test_bit(NEW_CUR_UUID, &device->flags)) {
9fa48269
LE
3169 if (get_ldev_if_state(device, D_ATTACHING)) {
3170 drbd_uuid_new_current(device);
3171 put_ldev(device);
3172 } else {
3173 /* This is effectively a multi-stage "forced down".
3174 * The NEW_CUR_UUID bit is supposedly only set, if we
3175 * lost the replication connection, and are configured
3176 * to freeze IO and wait for some fence-peer handler.
3177 * So we still don't have a replication connection.
3178 * And now we don't have a local disk either. After
3179 * resume, we will fail all pending and new IO, because
3180 * we don't have any data anymore. Which means we will
3181 * eventually be able to terminate all users of this
3182 * device, and then take it down. By bumping the
3183 * "effective" data uuid, we make sure that you really
3184 * need to tear down before you reconfigure, we will
3185 * the refuse to re-connect or re-attach (because no
3186 * matching real data uuid exists).
3187 */
3188 u64 val;
3189 get_random_bytes(&val, sizeof(u64));
3190 drbd_set_ed_uuid(device, val);
3191 drbd_warn(device, "Resumed without access to data; please tear down before attempting to re-configure.\n");
3192 }
b30ab791 3193 clear_bit(NEW_CUR_UUID, &device->flags);
43a5182c 3194 }
b30ab791
AG
3195 drbd_suspend_io(device);
3196 retcode = drbd_request_state(device, NS3(susp, 0, susp_nod, 0, susp_fen, 0));
3b98c0c2 3197 if (retcode == SS_SUCCESS) {
b30ab791 3198 if (device->state.conn < C_CONNECTED)
a6b32bc3 3199 tl_clear(first_peer_device(device)->connection);
b30ab791 3200 if (device->state.disk == D_DISKLESS || device->state.disk == D_FAILED)
a6b32bc3 3201 tl_restart(first_peer_device(device)->connection, FAIL_FROZEN_DISK_IO);
265be2d0 3202 }
b30ab791 3203 drbd_resume_io(device);
9e276872 3204 mutex_unlock(&adm_ctx.resource->adm_mutex);
3b98c0c2 3205out:
a910b123 3206 drbd_adm_finish(&adm_ctx, info, retcode);
b411b363
PR
3207 return 0;
3208}
3209
3b98c0c2 3210int drbd_adm_outdate(struct sk_buff *skb, struct genl_info *info)
b411b363 3211{
3b98c0c2 3212 return drbd_adm_simple_request_state(skb, info, NS(disk, D_OUTDATED));
b411b363
PR
3213}
3214
251b8f8e
AG
3215static int nla_put_drbd_cfg_context(struct sk_buff *skb,
3216 struct drbd_resource *resource,
3217 struct drbd_connection *connection,
3218 struct drbd_device *device)
b411b363 3219{
543cc10b
LE
3220 struct nlattr *nla;
3221 nla = nla_nest_start(skb, DRBD_NLA_CFG_CONTEXT);
3222 if (!nla)
3223 goto nla_put_failure;
251b8f8e
AG
3224 if (device &&
3225 nla_put_u32(skb, T_ctx_volume, device->vnr))
26ec9287 3226 goto nla_put_failure;
f597f6b8 3227 if (nla_put_string(skb, T_ctx_resource_name, resource->name))
26ec9287 3228 goto nla_put_failure;
251b8f8e
AG
3229 if (connection) {
3230 if (connection->my_addr_len &&
3231 nla_put(skb, T_ctx_my_addr, connection->my_addr_len, &connection->my_addr))
3232 goto nla_put_failure;
3233 if (connection->peer_addr_len &&
3234 nla_put(skb, T_ctx_peer_addr, connection->peer_addr_len, &connection->peer_addr))
3235 goto nla_put_failure;
3236 }
543cc10b
LE
3237 nla_nest_end(skb, nla);
3238 return 0;
b411b363 3239
543cc10b
LE
3240nla_put_failure:
3241 if (nla)
3242 nla_nest_cancel(skb, nla);
3243 return -EMSGSIZE;
3244}
b411b363 3245
a55bbd37
AG
3246/*
3247 * The generic netlink dump callbacks are called outside the genl_lock(), so
3248 * they cannot use the simple attribute parsing code which uses global
3249 * attribute tables.
3250 */
3251static struct nlattr *find_cfg_context_attr(const struct nlmsghdr *nlh, int attr)
3252{
3253 const unsigned hdrlen = GENL_HDRLEN + GENL_MAGIC_FAMILY_HDRSZ;
3254 const int maxtype = ARRAY_SIZE(drbd_cfg_context_nl_policy) - 1;
3255 struct nlattr *nla;
3256
3257 nla = nla_find(nlmsg_attrdata(nlh, hdrlen), nlmsg_attrlen(nlh, hdrlen),
3258 DRBD_NLA_CFG_CONTEXT);
3259 if (!nla)
3260 return NULL;
3261 return drbd_nla_find_nested(maxtype, nla, __nla_type(attr));
3262}
3263
3264static void resource_to_info(struct resource_info *, struct drbd_resource *);
3265
3266int drbd_adm_dump_resources(struct sk_buff *skb, struct netlink_callback *cb)
3267{
3268 struct drbd_genlmsghdr *dh;
3269 struct drbd_resource *resource;
3270 struct resource_info resource_info;
3271 struct resource_statistics resource_statistics;
3272 int err;
3273
3274 rcu_read_lock();
3275 if (cb->args[0]) {
3276 for_each_resource_rcu(resource, &drbd_resources)
3277 if (resource == (struct drbd_resource *)cb->args[0])
3278 goto found_resource;
3279 err = 0; /* resource was probably deleted */
3280 goto out;
3281 }
3282 resource = list_entry(&drbd_resources,
3283 struct drbd_resource, resources);
3284
3285found_resource:
3286 list_for_each_entry_continue_rcu(resource, &drbd_resources, resources) {
3287 goto put_result;
3288 }
3289 err = 0;
3290 goto out;
3291
3292put_result:
3293 dh = genlmsg_put(skb, NETLINK_CB(cb->skb).portid,
3294 cb->nlh->nlmsg_seq, &drbd_genl_family,
3295 NLM_F_MULTI, DRBD_ADM_GET_RESOURCES);
3296 err = -ENOMEM;
3297 if (!dh)
3298 goto out;
3299 dh->minor = -1U;
3300 dh->ret_code = NO_ERROR;
3301 err = nla_put_drbd_cfg_context(skb, resource, NULL, NULL);
3302 if (err)
3303 goto out;
3304 err = res_opts_to_skb(skb, &resource->res_opts, !capable(CAP_SYS_ADMIN));
3305 if (err)
3306 goto out;
3307 resource_to_info(&resource_info, resource);
3308 err = resource_info_to_skb(skb, &resource_info, !capable(CAP_SYS_ADMIN));
3309 if (err)
3310 goto out;
3311 resource_statistics.res_stat_write_ordering = resource->write_ordering;
3312 err = resource_statistics_to_skb(skb, &resource_statistics, !capable(CAP_SYS_ADMIN));
3313 if (err)
3314 goto out;
3315 cb->args[0] = (long)resource;
3316 genlmsg_end(skb, dh);
3317 err = 0;
3318
3319out:
3320 rcu_read_unlock();
3321 if (err)
3322 return err;
3323 return skb->len;
3324}
3325
3326static void device_to_statistics(struct device_statistics *s,
3327 struct drbd_device *device)
3328{
3329 memset(s, 0, sizeof(*s));
3330 s->dev_upper_blocked = !may_inc_ap_bio(device);
3331 if (get_ldev(device)) {
3332 struct drbd_md *md = &device->ldev->md;
3333 u64 *history_uuids = (u64 *)s->history_uuids;
3334 struct request_queue *q;
3335 int n;
3336
3337 spin_lock_irq(&md->uuid_lock);
3338 s->dev_current_uuid = md->uuid[UI_CURRENT];
3339 BUILD_BUG_ON(sizeof(s->history_uuids) < UI_HISTORY_END - UI_HISTORY_START + 1);
3340 for (n = 0; n < UI_HISTORY_END - UI_HISTORY_START + 1; n++)
3341 history_uuids[n] = md->uuid[UI_HISTORY_START + n];
3342 for (; n < HISTORY_UUIDS; n++)
3343 history_uuids[n] = 0;
3344 s->history_uuids_len = HISTORY_UUIDS;
3345 spin_unlock_irq(&md->uuid_lock);
3346
3347 s->dev_disk_flags = md->flags;
3348 q = bdev_get_queue(device->ldev->backing_bdev);
3349 s->dev_lower_blocked =
dc3b17cc 3350 bdi_congested(q->backing_dev_info,
a55bbd37
AG
3351 (1 << WB_async_congested) |
3352 (1 << WB_sync_congested));
3353 put_ldev(device);
3354 }
3355 s->dev_size = drbd_get_capacity(device->this_bdev);
3356 s->dev_read = device->read_cnt;
3357 s->dev_write = device->writ_cnt;
3358 s->dev_al_writes = device->al_writ_cnt;
3359 s->dev_bm_writes = device->bm_writ_cnt;
3360 s->dev_upper_pending = atomic_read(&device->ap_bio_cnt);
3361 s->dev_lower_pending = atomic_read(&device->local_cnt);
3362 s->dev_al_suspended = test_bit(AL_SUSPENDED, &device->flags);
3363 s->dev_exposed_data_uuid = device->ed_uuid;
3364}
3365
3366static int put_resource_in_arg0(struct netlink_callback *cb, int holder_nr)
3367{
3368 if (cb->args[0]) {
3369 struct drbd_resource *resource =
3370 (struct drbd_resource *)cb->args[0];
3371 kref_put(&resource->kref, drbd_destroy_resource);
3372 }
3373
3374 return 0;
3375}
3376
3377int drbd_adm_dump_devices_done(struct netlink_callback *cb) {
3378 return put_resource_in_arg0(cb, 7);
3379}
3380
3381static void device_to_info(struct device_info *, struct drbd_device *);
3382
3383int drbd_adm_dump_devices(struct sk_buff *skb, struct netlink_callback *cb)
3384{
3385 struct nlattr *resource_filter;
3386 struct drbd_resource *resource;
3387 struct drbd_device *uninitialized_var(device);
3388 int minor, err, retcode;
3389 struct drbd_genlmsghdr *dh;
3390 struct device_info device_info;
3391 struct device_statistics device_statistics;
3392 struct idr *idr_to_search;
3393
3394 resource = (struct drbd_resource *)cb->args[0];
3395 if (!cb->args[0] && !cb->args[1]) {
3396 resource_filter = find_cfg_context_attr(cb->nlh, T_ctx_resource_name);
3397 if (resource_filter) {
3398 retcode = ERR_RES_NOT_KNOWN;
3399 resource = drbd_find_resource(nla_data(resource_filter));
3400 if (!resource)
3401 goto put_result;
3402 cb->args[0] = (long)resource;
3403 }
3404 }
3405
3406 rcu_read_lock();
3407 minor = cb->args[1];
3408 idr_to_search = resource ? &resource->devices : &drbd_devices;
3409 device = idr_get_next(idr_to_search, &minor);
3410 if (!device) {
3411 err = 0;
3412 goto out;
3413 }
3414 idr_for_each_entry_continue(idr_to_search, device, minor) {
3415 retcode = NO_ERROR;
3416 goto put_result; /* only one iteration */
3417 }
3418 err = 0;
3419 goto out; /* no more devices */
3420
3421put_result:
3422 dh = genlmsg_put(skb, NETLINK_CB(cb->skb).portid,
3423 cb->nlh->nlmsg_seq, &drbd_genl_family,
3424 NLM_F_MULTI, DRBD_ADM_GET_DEVICES);
3425 err = -ENOMEM;
3426 if (!dh)
3427 goto out;
3428 dh->ret_code = retcode;
3429 dh->minor = -1U;
3430 if (retcode == NO_ERROR) {
3431 dh->minor = device->minor;
3432 err = nla_put_drbd_cfg_context(skb, device->resource, NULL, device);
3433 if (err)
3434 goto out;
3435 if (get_ldev(device)) {
3436 struct disk_conf *disk_conf =
3437 rcu_dereference(device->ldev->disk_conf);
3438
3439 err = disk_conf_to_skb(skb, disk_conf, !capable(CAP_SYS_ADMIN));
3440 put_ldev(device);
3441 if (err)
3442 goto out;
3443 }
3444 device_to_info(&device_info, device);
3445 err = device_info_to_skb(skb, &device_info, !capable(CAP_SYS_ADMIN));
3446 if (err)
3447 goto out;
3448
3449 device_to_statistics(&device_statistics, device);
3450 err = device_statistics_to_skb(skb, &device_statistics, !capable(CAP_SYS_ADMIN));
3451 if (err)
3452 goto out;
3453 cb->args[1] = minor + 1;
3454 }
3455 genlmsg_end(skb, dh);
3456 err = 0;
3457
3458out:
3459 rcu_read_unlock();
3460 if (err)
3461 return err;
3462 return skb->len;
3463}
3464
3465int drbd_adm_dump_connections_done(struct netlink_callback *cb)
3466{
3467 return put_resource_in_arg0(cb, 6);
3468}
3469
3470enum { SINGLE_RESOURCE, ITERATE_RESOURCES };
3471
3472int drbd_adm_dump_connections(struct sk_buff *skb, struct netlink_callback *cb)
3473{
3474 struct nlattr *resource_filter;
3475 struct drbd_resource *resource = NULL, *next_resource;
3476 struct drbd_connection *uninitialized_var(connection);
3477 int err = 0, retcode;
3478 struct drbd_genlmsghdr *dh;
3479 struct connection_info connection_info;
3480 struct connection_statistics connection_statistics;
3481
3482 rcu_read_lock();
3483 resource = (struct drbd_resource *)cb->args[0];
3484 if (!cb->args[0]) {
3485 resource_filter = find_cfg_context_attr(cb->nlh, T_ctx_resource_name);
3486 if (resource_filter) {
3487 retcode = ERR_RES_NOT_KNOWN;
3488 resource = drbd_find_resource(nla_data(resource_filter));
3489 if (!resource)
3490 goto put_result;
3491 cb->args[0] = (long)resource;
3492 cb->args[1] = SINGLE_RESOURCE;
3493 }
3494 }
3495 if (!resource) {
3496 if (list_empty(&drbd_resources))
3497 goto out;
3498 resource = list_first_entry(&drbd_resources, struct drbd_resource, resources);
3499 kref_get(&resource->kref);
3500 cb->args[0] = (long)resource;
3501 cb->args[1] = ITERATE_RESOURCES;
3502 }
3503
3504 next_resource:
3505 rcu_read_unlock();
3506 mutex_lock(&resource->conf_update);
3507 rcu_read_lock();
3508 if (cb->args[2]) {
3509 for_each_connection_rcu(connection, resource)
3510 if (connection == (struct drbd_connection *)cb->args[2])
3511 goto found_connection;
3512 /* connection was probably deleted */
3513 goto no_more_connections;
3514 }
3515 connection = list_entry(&resource->connections, struct drbd_connection, connections);
3516
3517found_connection:
3518 list_for_each_entry_continue_rcu(connection, &resource->connections, connections) {
3519 if (!has_net_conf(connection))
3520 continue;
3521 retcode = NO_ERROR;
3522 goto put_result; /* only one iteration */
3523 }
3524
3525no_more_connections:
3526 if (cb->args[1] == ITERATE_RESOURCES) {
3527 for_each_resource_rcu(next_resource, &drbd_resources) {
3528 if (next_resource == resource)
3529 goto found_resource;
3530 }
3531 /* resource was probably deleted */
3532 }
3533 goto out;
3534
3535found_resource:
3536 list_for_each_entry_continue_rcu(next_resource, &drbd_resources, resources) {
3537 mutex_unlock(&resource->conf_update);
3538 kref_put(&resource->kref, drbd_destroy_resource);
3539 resource = next_resource;
3540 kref_get(&resource->kref);
3541 cb->args[0] = (long)resource;
3542 cb->args[2] = 0;
3543 goto next_resource;
3544 }
3545 goto out; /* no more resources */
3546
3547put_result:
3548 dh = genlmsg_put(skb, NETLINK_CB(cb->skb).portid,
3549 cb->nlh->nlmsg_seq, &drbd_genl_family,
3550 NLM_F_MULTI, DRBD_ADM_GET_CONNECTIONS);
3551 err = -ENOMEM;
3552 if (!dh)
3553 goto out;
3554 dh->ret_code = retcode;
3555 dh->minor = -1U;
3556 if (retcode == NO_ERROR) {
3557 struct net_conf *net_conf;
3558
3559 err = nla_put_drbd_cfg_context(skb, resource, connection, NULL);
3560 if (err)
3561 goto out;
3562 net_conf = rcu_dereference(connection->net_conf);
3563 if (net_conf) {
3564 err = net_conf_to_skb(skb, net_conf, !capable(CAP_SYS_ADMIN));
3565 if (err)
3566 goto out;
3567 }
3568 connection_to_info(&connection_info, connection);
3569 err = connection_info_to_skb(skb, &connection_info, !capable(CAP_SYS_ADMIN));
3570 if (err)
3571 goto out;
3572 connection_statistics.conn_congested = test_bit(NET_CONGESTED, &connection->flags);
3573 err = connection_statistics_to_skb(skb, &connection_statistics, !capable(CAP_SYS_ADMIN));
3574 if (err)
3575 goto out;
3576 cb->args[2] = (long)connection;
3577 }
3578 genlmsg_end(skb, dh);
3579 err = 0;
3580
3581out:
3582 rcu_read_unlock();
3583 if (resource)
3584 mutex_unlock(&resource->conf_update);
3585 if (err)
3586 return err;
3587 return skb->len;
3588}
3589
3590enum mdf_peer_flag {
3591 MDF_PEER_CONNECTED = 1 << 0,
3592 MDF_PEER_OUTDATED = 1 << 1,
3593 MDF_PEER_FENCING = 1 << 2,
3594 MDF_PEER_FULL_SYNC = 1 << 3,
3595};
3596
3597static void peer_device_to_statistics(struct peer_device_statistics *s,
3598 struct drbd_peer_device *peer_device)
3599{
3600 struct drbd_device *device = peer_device->device;
3601
3602 memset(s, 0, sizeof(*s));
3603 s->peer_dev_received = device->recv_cnt;
3604 s->peer_dev_sent = device->send_cnt;
3605 s->peer_dev_pending = atomic_read(&device->ap_pending_cnt) +
3606 atomic_read(&device->rs_pending_cnt);
3607 s->peer_dev_unacked = atomic_read(&device->unacked_cnt);
3608 s->peer_dev_out_of_sync = drbd_bm_total_weight(device) << (BM_BLOCK_SHIFT - 9);
3609 s->peer_dev_resync_failed = device->rs_failed << (BM_BLOCK_SHIFT - 9);
3610 if (get_ldev(device)) {
3611 struct drbd_md *md = &device->ldev->md;
3612
3613 spin_lock_irq(&md->uuid_lock);
3614 s->peer_dev_bitmap_uuid = md->uuid[UI_BITMAP];
3615 spin_unlock_irq(&md->uuid_lock);
3616 s->peer_dev_flags =
3617 (drbd_md_test_flag(device->ldev, MDF_CONNECTED_IND) ?
3618 MDF_PEER_CONNECTED : 0) +
3619 (drbd_md_test_flag(device->ldev, MDF_CONSISTENT) &&
3620 !drbd_md_test_flag(device->ldev, MDF_WAS_UP_TO_DATE) ?
3621 MDF_PEER_OUTDATED : 0) +
3622 /* FIXME: MDF_PEER_FENCING? */
3623 (drbd_md_test_flag(device->ldev, MDF_FULL_SYNC) ?
3624 MDF_PEER_FULL_SYNC : 0);
3625 put_ldev(device);
3626 }
3627}
3628
3629int drbd_adm_dump_peer_devices_done(struct netlink_callback *cb)
3630{
3631 return put_resource_in_arg0(cb, 9);
3632}
3633
3634int drbd_adm_dump_peer_devices(struct sk_buff *skb, struct netlink_callback *cb)
3635{
3636 struct nlattr *resource_filter;
3637 struct drbd_resource *resource;
3638 struct drbd_device *uninitialized_var(device);
3639 struct drbd_peer_device *peer_device = NULL;
3640 int minor, err, retcode;
3641 struct drbd_genlmsghdr *dh;
3642 struct idr *idr_to_search;
3643
3644 resource = (struct drbd_resource *)cb->args[0];
3645 if (!cb->args[0] && !cb->args[1]) {
3646 resource_filter = find_cfg_context_attr(cb->nlh, T_ctx_resource_name);
3647 if (resource_filter) {
3648 retcode = ERR_RES_NOT_KNOWN;
3649 resource = drbd_find_resource(nla_data(resource_filter));
3650 if (!resource)
3651 goto put_result;
3652 }
3653 cb->args[0] = (long)resource;
3654 }
3655
3656 rcu_read_lock();
3657 minor = cb->args[1];
3658 idr_to_search = resource ? &resource->devices : &drbd_devices;
3659 device = idr_find(idr_to_search, minor);
3660 if (!device) {
3661next_device:
3662 minor++;
3663 cb->args[2] = 0;
3664 device = idr_get_next(idr_to_search, &minor);
3665 if (!device) {
3666 err = 0;
3667 goto out;
3668 }
3669 }
3670 if (cb->args[2]) {
3671 for_each_peer_device(peer_device, device)
3672 if (peer_device == (struct drbd_peer_device *)cb->args[2])
3673 goto found_peer_device;
3674 /* peer device was probably deleted */
3675 goto next_device;
3676 }
3677 /* Make peer_device point to the list head (not the first entry). */
3678 peer_device = list_entry(&device->peer_devices, struct drbd_peer_device, peer_devices);
3679
3680found_peer_device:
3681 list_for_each_entry_continue_rcu(peer_device, &device->peer_devices, peer_devices) {
3682 if (!has_net_conf(peer_device->connection))
3683 continue;
3684 retcode = NO_ERROR;
3685 goto put_result; /* only one iteration */
3686 }
3687 goto next_device;
3688
3689put_result:
3690 dh = genlmsg_put(skb, NETLINK_CB(cb->skb).portid,
3691 cb->nlh->nlmsg_seq, &drbd_genl_family,
3692 NLM_F_MULTI, DRBD_ADM_GET_PEER_DEVICES);
3693 err = -ENOMEM;
3694 if (!dh)
3695 goto out;
3696 dh->ret_code = retcode;
3697 dh->minor = -1U;
3698 if (retcode == NO_ERROR) {
3699 struct peer_device_info peer_device_info;
3700 struct peer_device_statistics peer_device_statistics;
3701
3702 dh->minor = minor;
3703 err = nla_put_drbd_cfg_context(skb, device->resource, peer_device->connection, device);
3704 if (err)
3705 goto out;
3706 peer_device_to_info(&peer_device_info, peer_device);
3707 err = peer_device_info_to_skb(skb, &peer_device_info, !capable(CAP_SYS_ADMIN));
3708 if (err)
3709 goto out;
3710 peer_device_to_statistics(&peer_device_statistics, peer_device);
3711 err = peer_device_statistics_to_skb(skb, &peer_device_statistics, !capable(CAP_SYS_ADMIN));
3712 if (err)
3713 goto out;
3714 cb->args[1] = minor;
3715 cb->args[2] = (long)peer_device;
3716 }
3717 genlmsg_end(skb, dh);
3718 err = 0;
3719
3720out:
3721 rcu_read_unlock();
3722 if (err)
3723 return err;
3724 return skb->len;
3725}
251b8f8e
AG
3726/*
3727 * Return the connection of @resource if @resource has exactly one connection.
3728 */
3729static struct drbd_connection *the_only_connection(struct drbd_resource *resource)
3730{
3731 struct list_head *connections = &resource->connections;
3732
3733 if (list_empty(connections) || connections->next->next != connections)
3734 return NULL;
3735 return list_first_entry(&resource->connections, struct drbd_connection, connections);
3736}
3737
8ce953aa 3738static int nla_put_status_info(struct sk_buff *skb, struct drbd_device *device,
3b98c0c2 3739 const struct sib_info *sib)
b411b363 3740{
251b8f8e 3741 struct drbd_resource *resource = device->resource;
3b98c0c2
LE
3742 struct state_info *si = NULL; /* for sizeof(si->member); */
3743 struct nlattr *nla;
3744 int got_ldev;
3b98c0c2
LE
3745 int err = 0;
3746 int exclude_sensitive;
3747
3748 /* If sib != NULL, this is drbd_bcast_event, which anyone can listen
3749 * to. So we better exclude_sensitive information.
3750 *
3751 * If sib == NULL, this is drbd_adm_get_status, executed synchronously
3752 * in the context of the requesting user process. Exclude sensitive
3753 * information, unless current has superuser.
3754 *
3755 * NOTE: for drbd_adm_get_status_all(), this is a netlink dump, and
3756 * relies on the current implementation of netlink_dump(), which
3757 * executes the dump callback successively from netlink_recvmsg(),
3758 * always in the context of the receiving process */
3759 exclude_sensitive = sib || !capable(CAP_SYS_ADMIN);
3760
b30ab791 3761 got_ldev = get_ldev(device);
3b98c0c2
LE
3762
3763 /* We need to add connection name and volume number information still.
3764 * Minor number is in drbd_genlmsghdr. */
251b8f8e 3765 if (nla_put_drbd_cfg_context(skb, resource, the_only_connection(resource), device))
3b98c0c2 3766 goto nla_put_failure;
3b98c0c2 3767
eb6bea67 3768 if (res_opts_to_skb(skb, &device->resource->res_opts, exclude_sensitive))
f399002e
LE
3769 goto nla_put_failure;
3770
daeda1cc 3771 rcu_read_lock();
f9eb7bf4
AG
3772 if (got_ldev) {
3773 struct disk_conf *disk_conf;
44ed167d 3774
b30ab791 3775 disk_conf = rcu_dereference(device->ldev->disk_conf);
f9eb7bf4
AG
3776 err = disk_conf_to_skb(skb, disk_conf, exclude_sensitive);
3777 }
3778 if (!err) {
3779 struct net_conf *nc;
3780
a6b32bc3 3781 nc = rcu_dereference(first_peer_device(device)->connection->net_conf);
f9eb7bf4
AG
3782 if (nc)
3783 err = net_conf_to_skb(skb, nc, exclude_sensitive);
3784 }
44ed167d
PR
3785 rcu_read_unlock();
3786 if (err)
3787 goto nla_put_failure;
3b98c0c2 3788
3b98c0c2
LE
3789 nla = nla_nest_start(skb, DRBD_NLA_STATE_INFO);
3790 if (!nla)
3791 goto nla_put_failure;
26ec9287 3792 if (nla_put_u32(skb, T_sib_reason, sib ? sib->sib_reason : SIB_GET_STATUS_REPLY) ||
b30ab791 3793 nla_put_u32(skb, T_current_state, device->state.i) ||
1dee3f59
ND
3794 nla_put_u64_0pad(skb, T_ed_uuid, device->ed_uuid) ||
3795 nla_put_u64_0pad(skb, T_capacity,
3796 drbd_get_capacity(device->this_bdev)) ||
3797 nla_put_u64_0pad(skb, T_send_cnt, device->send_cnt) ||
3798 nla_put_u64_0pad(skb, T_recv_cnt, device->recv_cnt) ||
3799 nla_put_u64_0pad(skb, T_read_cnt, device->read_cnt) ||
3800 nla_put_u64_0pad(skb, T_writ_cnt, device->writ_cnt) ||
3801 nla_put_u64_0pad(skb, T_al_writ_cnt, device->al_writ_cnt) ||
3802 nla_put_u64_0pad(skb, T_bm_writ_cnt, device->bm_writ_cnt) ||
b30ab791
AG
3803 nla_put_u32(skb, T_ap_bio_cnt, atomic_read(&device->ap_bio_cnt)) ||
3804 nla_put_u32(skb, T_ap_pending_cnt, atomic_read(&device->ap_pending_cnt)) ||
3805 nla_put_u32(skb, T_rs_pending_cnt, atomic_read(&device->rs_pending_cnt)))
26ec9287 3806 goto nla_put_failure;
3b98c0c2
LE
3807
3808 if (got_ldev) {
39a1aa7f 3809 int err;
b411b363 3810
b30ab791
AG
3811 spin_lock_irq(&device->ldev->md.uuid_lock);
3812 err = nla_put(skb, T_uuids, sizeof(si->uuids), device->ldev->md.uuid);
3813 spin_unlock_irq(&device->ldev->md.uuid_lock);
39a1aa7f
PR
3814
3815 if (err)
3816 goto nla_put_failure;
3817
b30ab791 3818 if (nla_put_u32(skb, T_disk_flags, device->ldev->md.flags) ||
1dee3f59
ND
3819 nla_put_u64_0pad(skb, T_bits_total, drbd_bm_bits(device)) ||
3820 nla_put_u64_0pad(skb, T_bits_oos,
3821 drbd_bm_total_weight(device)))
26ec9287 3822 goto nla_put_failure;
b30ab791
AG
3823 if (C_SYNC_SOURCE <= device->state.conn &&
3824 C_PAUSED_SYNC_T >= device->state.conn) {
1dee3f59
ND
3825 if (nla_put_u64_0pad(skb, T_bits_rs_total,
3826 device->rs_total) ||
3827 nla_put_u64_0pad(skb, T_bits_rs_failed,
3828 device->rs_failed))
26ec9287 3829 goto nla_put_failure;
3b98c0c2 3830 }
b411b363 3831 }
b411b363 3832
3b98c0c2
LE
3833 if (sib) {
3834 switch(sib->sib_reason) {
3835 case SIB_SYNC_PROGRESS:
3836 case SIB_GET_STATUS_REPLY:
3837 break;
3838 case SIB_STATE_CHANGE:
26ec9287
AG
3839 if (nla_put_u32(skb, T_prev_state, sib->os.i) ||
3840 nla_put_u32(skb, T_new_state, sib->ns.i))
3841 goto nla_put_failure;
3b98c0c2
LE
3842 break;
3843 case SIB_HELPER_POST:
26ec9287
AG
3844 if (nla_put_u32(skb, T_helper_exit_code,
3845 sib->helper_exit_code))
3846 goto nla_put_failure;
3b98c0c2
LE
3847 /* fall through */
3848 case SIB_HELPER_PRE:
26ec9287
AG
3849 if (nla_put_string(skb, T_helper, sib->helper_name))
3850 goto nla_put_failure;
3b98c0c2
LE
3851 break;
3852 }
b411b363 3853 }
3b98c0c2 3854 nla_nest_end(skb, nla);
b411b363 3855
3b98c0c2
LE
3856 if (0)
3857nla_put_failure:
3858 err = -EMSGSIZE;
3859 if (got_ldev)
b30ab791 3860 put_ldev(device);
3b98c0c2 3861 return err;
b411b363
PR
3862}
3863
3b98c0c2 3864int drbd_adm_get_status(struct sk_buff *skb, struct genl_info *info)
b411b363 3865{
a910b123 3866 struct drbd_config_context adm_ctx;
3b98c0c2
LE
3867 enum drbd_ret_code retcode;
3868 int err;
b411b363 3869
a910b123 3870 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
3b98c0c2
LE
3871 if (!adm_ctx.reply_skb)
3872 return retcode;
3873 if (retcode != NO_ERROR)
3874 goto out;
b411b363 3875
b30ab791 3876 err = nla_put_status_info(adm_ctx.reply_skb, adm_ctx.device, NULL);
3b98c0c2
LE
3877 if (err) {
3878 nlmsg_free(adm_ctx.reply_skb);
3879 return err;
b411b363 3880 }
3b98c0c2 3881out:
a910b123 3882 drbd_adm_finish(&adm_ctx, info, retcode);
3b98c0c2 3883 return 0;
b411b363
PR
3884}
3885
4b7a530f 3886static int get_one_status(struct sk_buff *skb, struct netlink_callback *cb)
b411b363 3887{
b30ab791 3888 struct drbd_device *device;
3b98c0c2 3889 struct drbd_genlmsghdr *dh;
77c556f6
AG
3890 struct drbd_resource *pos = (struct drbd_resource *)cb->args[0];
3891 struct drbd_resource *resource = NULL;
77c556f6 3892 struct drbd_resource *tmp;
543cc10b
LE
3893 unsigned volume = cb->args[1];
3894
3895 /* Open coded, deferred, iteration:
77c556f6 3896 * for_each_resource_safe(resource, tmp, &drbd_resources) {
251b8f8e
AG
3897 * connection = "first connection of resource or undefined";
3898 * idr_for_each_entry(&resource->devices, device, i) {
543cc10b
LE
3899 * ...
3900 * }
3901 * }
77c556f6 3902 * where resource is cb->args[0];
543cc10b
LE
3903 * and i is cb->args[1];
3904 *
71932efc
LE
3905 * cb->args[2] indicates if we shall loop over all resources,
3906 * or just dump all volumes of a single resource.
3907 *
3b98c0c2
LE
3908 * This may miss entries inserted after this dump started,
3909 * or entries deleted before they are reached.
543cc10b 3910 *
b30ab791 3911 * We need to make sure the device won't disappear while
543cc10b
LE
3912 * we are looking at it, and revalidate our iterators
3913 * on each iteration.
3914 */
b411b363 3915
05a10ec7 3916 /* synchronize with conn_create()/drbd_destroy_connection() */
c141ebda 3917 rcu_read_lock();
543cc10b 3918 /* revalidate iterator position */
77c556f6 3919 for_each_resource_rcu(tmp, &drbd_resources) {
543cc10b
LE
3920 if (pos == NULL) {
3921 /* first iteration */
3922 pos = tmp;
77c556f6 3923 resource = pos;
543cc10b
LE
3924 break;
3925 }
3926 if (tmp == pos) {
77c556f6 3927 resource = pos;
543cc10b
LE
3928 break;
3929 }
b411b363 3930 }
77c556f6
AG
3931 if (resource) {
3932next_resource:
251b8f8e
AG
3933 device = idr_get_next(&resource->devices, &volume);
3934 if (!device) {
77c556f6
AG
3935 /* No more volumes to dump on this resource.
3936 * Advance resource iterator. */
3937 pos = list_entry_rcu(resource->resources.next,
3938 struct drbd_resource, resources);
3939 /* Did we dump any volume of this resource yet? */
543cc10b 3940 if (volume != 0) {
71932efc
LE
3941 /* If we reached the end of the list,
3942 * or only a single resource dump was requested,
3943 * we are done. */
77c556f6 3944 if (&pos->resources == &drbd_resources || cb->args[2])
71932efc 3945 goto out;
543cc10b 3946 volume = 0;
77c556f6
AG
3947 resource = pos;
3948 goto next_resource;
543cc10b
LE
3949 }
3950 }
3951
98683650 3952 dh = genlmsg_put(skb, NETLINK_CB(cb->skb).portid,
3b98c0c2
LE
3953 cb->nlh->nlmsg_seq, &drbd_genl_family,
3954 NLM_F_MULTI, DRBD_ADM_GET_STATUS);
3955 if (!dh)
543cc10b
LE
3956 goto out;
3957
251b8f8e 3958 if (!device) {
bde89a9e 3959 /* This is a connection without a single volume.
367d675d
LE
3960 * Suprisingly enough, it may have a network
3961 * configuration. */
251b8f8e
AG
3962 struct drbd_connection *connection;
3963
543cc10b
LE
3964 dh->minor = -1U;
3965 dh->ret_code = NO_ERROR;
251b8f8e
AG
3966 connection = the_only_connection(resource);
3967 if (nla_put_drbd_cfg_context(skb, resource, connection, NULL))
367d675d 3968 goto cancel;
251b8f8e
AG
3969 if (connection) {
3970 struct net_conf *nc;
3971
3972 nc = rcu_dereference(connection->net_conf);
3973 if (nc && net_conf_to_skb(skb, nc, 1) != 0)
3974 goto cancel;
3975 }
367d675d 3976 goto done;
543cc10b 3977 }
b411b363 3978
0b0ba1ef 3979 D_ASSERT(device, device->vnr == volume);
251b8f8e 3980 D_ASSERT(device, device->resource == resource);
3b98c0c2 3981
b30ab791 3982 dh->minor = device_to_minor(device);
3b98c0c2
LE
3983 dh->ret_code = NO_ERROR;
3984
b30ab791 3985 if (nla_put_status_info(skb, device, NULL)) {
367d675d 3986cancel:
3b98c0c2 3987 genlmsg_cancel(skb, dh);
543cc10b 3988 goto out;
3b98c0c2 3989 }
367d675d 3990done:
3b98c0c2 3991 genlmsg_end(skb, dh);
bde89a9e 3992 }
b411b363 3993
543cc10b 3994out:
c141ebda 3995 rcu_read_unlock();
543cc10b 3996 /* where to start the next iteration */
bde89a9e 3997 cb->args[0] = (long)pos;
77c556f6 3998 cb->args[1] = (pos == resource) ? volume + 1 : 0;
b411b363 3999
77c556f6 4000 /* No more resources/volumes/minors found results in an empty skb.
543cc10b 4001 * Which will terminate the dump. */
3b98c0c2 4002 return skb->len;
b411b363
PR
4003}
4004
71932efc
LE
4005/*
4006 * Request status of all resources, or of all volumes within a single resource.
4007 *
4008 * This is a dump, as the answer may not fit in a single reply skb otherwise.
4009 * Which means we cannot use the family->attrbuf or other such members, because
4010 * dump is NOT protected by the genl_lock(). During dump, we only have access
4011 * to the incoming skb, and need to opencode "parsing" of the nlattr payload.
4012 *
4013 * Once things are setup properly, we call into get_one_status().
b411b363 4014 */
71932efc 4015int drbd_adm_get_status_all(struct sk_buff *skb, struct netlink_callback *cb)
b411b363 4016{
71932efc
LE
4017 const unsigned hdrlen = GENL_HDRLEN + GENL_MAGIC_FAMILY_HDRSZ;
4018 struct nlattr *nla;
7c3063cc 4019 const char *resource_name;
4bc76048 4020 struct drbd_resource *resource;
7c3063cc 4021 int maxtype;
71932efc
LE
4022
4023 /* Is this a followup call? */
4024 if (cb->args[0]) {
4025 /* ... of a single resource dump,
4026 * and the resource iterator has been advanced already? */
4027 if (cb->args[2] && cb->args[2] != cb->args[0])
4028 return 0; /* DONE. */
4029 goto dump;
4030 }
4031
4032 /* First call (from netlink_dump_start). We need to figure out
4033 * which resource(s) the user wants us to dump. */
4034 nla = nla_find(nlmsg_attrdata(cb->nlh, hdrlen),
4035 nlmsg_attrlen(cb->nlh, hdrlen),
4036 DRBD_NLA_CFG_CONTEXT);
4037
4038 /* No explicit context given. Dump all. */
4039 if (!nla)
4040 goto dump;
7c3063cc
AG
4041 maxtype = ARRAY_SIZE(drbd_cfg_context_nl_policy) - 1;
4042 nla = drbd_nla_find_nested(maxtype, nla, __nla_type(T_ctx_resource_name));
4043 if (IS_ERR(nla))
4044 return PTR_ERR(nla);
71932efc
LE
4045 /* context given, but no name present? */
4046 if (!nla)
4047 return -EINVAL;
7c3063cc 4048 resource_name = nla_data(nla);
4bc76048
AG
4049 if (!*resource_name)
4050 return -ENODEV;
4051 resource = drbd_find_resource(resource_name);
4052 if (!resource)
71932efc
LE
4053 return -ENODEV;
4054
4bc76048 4055 kref_put(&resource->kref, drbd_destroy_resource); /* get_one_status() revalidates the resource */
0ace9dfa 4056
71932efc 4057 /* prime iterators, and set "filter" mode mark:
bde89a9e 4058 * only dump this connection. */
4bc76048 4059 cb->args[0] = (long)resource;
71932efc 4060 /* cb->args[1] = 0; passed in this way. */
4bc76048 4061 cb->args[2] = (long)resource;
71932efc
LE
4062
4063dump:
4064 return get_one_status(skb, cb);
4065}
b411b363 4066
3b98c0c2 4067int drbd_adm_get_timeout_type(struct sk_buff *skb, struct genl_info *info)
b411b363 4068{
a910b123 4069 struct drbd_config_context adm_ctx;
3b98c0c2
LE
4070 enum drbd_ret_code retcode;
4071 struct timeout_parms tp;
4072 int err;
b411b363 4073
a910b123 4074 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
3b98c0c2
LE
4075 if (!adm_ctx.reply_skb)
4076 return retcode;
4077 if (retcode != NO_ERROR)
4078 goto out;
b411b363 4079
3b98c0c2 4080 tp.timeout_type =
b30ab791
AG
4081 adm_ctx.device->state.pdsk == D_OUTDATED ? UT_PEER_OUTDATED :
4082 test_bit(USE_DEGR_WFC_T, &adm_ctx.device->flags) ? UT_DEGRADED :
3b98c0c2 4083 UT_DEFAULT;
b411b363 4084
3b98c0c2
LE
4085 err = timeout_parms_to_priv_skb(adm_ctx.reply_skb, &tp);
4086 if (err) {
4087 nlmsg_free(adm_ctx.reply_skb);
4088 return err;
4089 }
4090out:
a910b123 4091 drbd_adm_finish(&adm_ctx, info, retcode);
3b98c0c2 4092 return 0;
b411b363
PR
4093}
4094
3b98c0c2 4095int drbd_adm_start_ov(struct sk_buff *skb, struct genl_info *info)
b411b363 4096{
a910b123 4097 struct drbd_config_context adm_ctx;
b30ab791 4098 struct drbd_device *device;
3b98c0c2 4099 enum drbd_ret_code retcode;
58ffa580 4100 struct start_ov_parms parms;
b411b363 4101
a910b123 4102 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
3b98c0c2
LE
4103 if (!adm_ctx.reply_skb)
4104 return retcode;
4105 if (retcode != NO_ERROR)
4106 goto out;
873b0d5f 4107
b30ab791 4108 device = adm_ctx.device;
58ffa580
LE
4109
4110 /* resume from last known position, if possible */
b30ab791 4111 parms.ov_start_sector = device->ov_start_sector;
58ffa580 4112 parms.ov_stop_sector = ULLONG_MAX;
3b98c0c2 4113 if (info->attrs[DRBD_NLA_START_OV_PARMS]) {
f399002e 4114 int err = start_ov_parms_from_attrs(&parms, info);
3b98c0c2
LE
4115 if (err) {
4116 retcode = ERR_MANDATORY_TAG;
a910b123 4117 drbd_msg_put_info(adm_ctx.reply_skb, from_attrs_err_to_txt(err));
3b98c0c2
LE
4118 goto out;
4119 }
b411b363 4120 }
9e276872
LE
4121 mutex_lock(&adm_ctx.resource->adm_mutex);
4122
58ffa580 4123 /* w_make_ov_request expects position to be aligned */
b30ab791
AG
4124 device->ov_start_sector = parms.ov_start_sector & ~(BM_SECT_PER_BIT-1);
4125 device->ov_stop_sector = parms.ov_stop_sector;
873b0d5f
LE
4126
4127 /* If there is still bitmap IO pending, e.g. previous resync or verify
4128 * just being finished, wait for it before requesting a new resync. */
b30ab791
AG
4129 drbd_suspend_io(device);
4130 wait_event(device->misc_wait, !test_bit(BITMAP_IO, &device->flags));
4131 retcode = drbd_request_state(device, NS(conn, C_VERIFY_S));
4132 drbd_resume_io(device);
9e276872
LE
4133
4134 mutex_unlock(&adm_ctx.resource->adm_mutex);
3b98c0c2 4135out:
a910b123 4136 drbd_adm_finish(&adm_ctx, info, retcode);
b411b363
PR
4137 return 0;
4138}
4139
4140
3b98c0c2 4141int drbd_adm_new_c_uuid(struct sk_buff *skb, struct genl_info *info)
b411b363 4142{
a910b123 4143 struct drbd_config_context adm_ctx;
b30ab791 4144 struct drbd_device *device;
3b98c0c2 4145 enum drbd_ret_code retcode;
b411b363
PR
4146 int skip_initial_sync = 0;
4147 int err;
3b98c0c2 4148 struct new_c_uuid_parms args;
b411b363 4149
a910b123 4150 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
3b98c0c2
LE
4151 if (!adm_ctx.reply_skb)
4152 return retcode;
4153 if (retcode != NO_ERROR)
4154 goto out_nolock;
b411b363 4155
b30ab791 4156 device = adm_ctx.device;
3b98c0c2
LE
4157 memset(&args, 0, sizeof(args));
4158 if (info->attrs[DRBD_NLA_NEW_C_UUID_PARMS]) {
f399002e 4159 err = new_c_uuid_parms_from_attrs(&args, info);
3b98c0c2
LE
4160 if (err) {
4161 retcode = ERR_MANDATORY_TAG;
a910b123 4162 drbd_msg_put_info(adm_ctx.reply_skb, from_attrs_err_to_txt(err));
3b98c0c2
LE
4163 goto out_nolock;
4164 }
b411b363
PR
4165 }
4166
9e276872 4167 mutex_lock(&adm_ctx.resource->adm_mutex);
b30ab791 4168 mutex_lock(device->state_mutex); /* Protects us against serialized state changes. */
b411b363 4169
b30ab791 4170 if (!get_ldev(device)) {
b411b363
PR
4171 retcode = ERR_NO_DISK;
4172 goto out;
4173 }
4174
4175 /* this is "skip initial sync", assume to be clean */
a6b32bc3
AG
4176 if (device->state.conn == C_CONNECTED &&
4177 first_peer_device(device)->connection->agreed_pro_version >= 90 &&
b30ab791 4178 device->ldev->md.uuid[UI_CURRENT] == UUID_JUST_CREATED && args.clear_bm) {
d0180171 4179 drbd_info(device, "Preparing to skip initial sync\n");
b411b363 4180 skip_initial_sync = 1;
b30ab791 4181 } else if (device->state.conn != C_STANDALONE) {
b411b363
PR
4182 retcode = ERR_CONNECTED;
4183 goto out_dec;
4184 }
4185
b30ab791
AG
4186 drbd_uuid_set(device, UI_BITMAP, 0); /* Rotate UI_BITMAP to History 1, etc... */
4187 drbd_uuid_new_current(device); /* New current, previous to UI_BITMAP */
b411b363
PR
4188
4189 if (args.clear_bm) {
b30ab791 4190 err = drbd_bitmap_io(device, &drbd_bmio_clear_n_write,
20ceb2b2 4191 "clear_n_write from new_c_uuid", BM_LOCKED_MASK);
b411b363 4192 if (err) {
d0180171 4193 drbd_err(device, "Writing bitmap failed with %d\n", err);
b411b363
PR
4194 retcode = ERR_IO_MD_DISK;
4195 }
4196 if (skip_initial_sync) {
69a22773 4197 drbd_send_uuids_skip_initial_sync(first_peer_device(device));
b30ab791
AG
4198 _drbd_uuid_set(device, UI_BITMAP, 0);
4199 drbd_print_uuids(device, "cleared bitmap UUID");
0500813f 4200 spin_lock_irq(&device->resource->req_lock);
b30ab791 4201 _drbd_set_state(_NS2(device, disk, D_UP_TO_DATE, pdsk, D_UP_TO_DATE),
b411b363 4202 CS_VERBOSE, NULL);
0500813f 4203 spin_unlock_irq(&device->resource->req_lock);
b411b363
PR
4204 }
4205 }
4206
b30ab791 4207 drbd_md_sync(device);
b411b363 4208out_dec:
b30ab791 4209 put_ldev(device);
b411b363 4210out:
b30ab791 4211 mutex_unlock(device->state_mutex);
9e276872 4212 mutex_unlock(&adm_ctx.resource->adm_mutex);
3b98c0c2 4213out_nolock:
a910b123 4214 drbd_adm_finish(&adm_ctx, info, retcode);
b411b363
PR
4215 return 0;
4216}
4217
3b98c0c2 4218static enum drbd_ret_code
a910b123 4219drbd_check_resource_name(struct drbd_config_context *adm_ctx)
b411b363 4220{
a910b123 4221 const char *name = adm_ctx->resource_name;
3b98c0c2 4222 if (!name || !name[0]) {
a910b123 4223 drbd_msg_put_info(adm_ctx->reply_skb, "resource name missing");
3b98c0c2 4224 return ERR_MANDATORY_TAG;
b411b363 4225 }
3b98c0c2
LE
4226 /* if we want to use these in sysfs/configfs/debugfs some day,
4227 * we must not allow slashes */
4228 if (strchr(name, '/')) {
a910b123 4229 drbd_msg_put_info(adm_ctx->reply_skb, "invalid resource name");
3b98c0c2 4230 return ERR_INVALID_REQUEST;
b411b363 4231 }
3b98c0c2 4232 return NO_ERROR;
774b3055 4233}
b411b363 4234
a2972846
AG
4235static void resource_to_info(struct resource_info *info,
4236 struct drbd_resource *resource)
4237{
4238 info->res_role = conn_highest_role(first_connection(resource));
4239 info->res_susp = resource->susp;
4240 info->res_susp_nod = resource->susp_nod;
4241 info->res_susp_fen = resource->susp_fen;
4242}
4243
789c1b62 4244int drbd_adm_new_resource(struct sk_buff *skb, struct genl_info *info)
b411b363 4245{
a2972846 4246 struct drbd_connection *connection;
a910b123 4247 struct drbd_config_context adm_ctx;
3b98c0c2 4248 enum drbd_ret_code retcode;
afbbfa88
AG
4249 struct res_opts res_opts;
4250 int err;
b411b363 4251
a910b123 4252 retcode = drbd_adm_prepare(&adm_ctx, skb, info, 0);
3b98c0c2
LE
4253 if (!adm_ctx.reply_skb)
4254 return retcode;
4255 if (retcode != NO_ERROR)
4256 goto out;
b411b363 4257
afbbfa88
AG
4258 set_res_opts_defaults(&res_opts);
4259 err = res_opts_from_attrs(&res_opts, info);
4260 if (err && err != -ENOMSG) {
4261 retcode = ERR_MANDATORY_TAG;
a910b123 4262 drbd_msg_put_info(adm_ctx.reply_skb, from_attrs_err_to_txt(err));
afbbfa88 4263 goto out;
b411b363
PR
4264 }
4265
a910b123 4266 retcode = drbd_check_resource_name(&adm_ctx);
3b98c0c2
LE
4267 if (retcode != NO_ERROR)
4268 goto out;
b411b363 4269
5c661042 4270 if (adm_ctx.resource) {
38f19616
LE
4271 if (info->nlhdr->nlmsg_flags & NLM_F_EXCL) {
4272 retcode = ERR_INVALID_REQUEST;
a910b123 4273 drbd_msg_put_info(adm_ctx.reply_skb, "resource exists");
38f19616
LE
4274 }
4275 /* else: still NO_ERROR */
3b98c0c2 4276 goto out;
b411b363 4277 }
b411b363 4278
9e276872 4279 /* not yet safe for genl_family.parallel_ops */
28bc3b8c 4280 mutex_lock(&resources_mutex);
a2972846 4281 connection = conn_create(adm_ctx.resource_name, &res_opts);
28bc3b8c 4282 mutex_unlock(&resources_mutex);
a2972846
AG
4283
4284 if (connection) {
4285 struct resource_info resource_info;
4286
4287 mutex_lock(&notification_mutex);
4288 resource_to_info(&resource_info, connection->resource);
4289 notify_resource_state(NULL, 0, connection->resource,
4290 &resource_info, NOTIFY_CREATE);
4291 mutex_unlock(&notification_mutex);
4292 } else
4293 retcode = ERR_NOMEM;
4294
3b98c0c2 4295out:
a910b123 4296 drbd_adm_finish(&adm_ctx, info, retcode);
3b98c0c2 4297 return 0;
b411b363
PR
4298}
4299
a2972846
AG
4300static void device_to_info(struct device_info *info,
4301 struct drbd_device *device)
4302{
4303 info->dev_disk_state = device->state.disk;
4304}
4305
4306
05a10ec7 4307int drbd_adm_new_minor(struct sk_buff *skb, struct genl_info *info)
b411b363 4308{
a910b123 4309 struct drbd_config_context adm_ctx;
3b98c0c2
LE
4310 struct drbd_genlmsghdr *dh = info->userhdr;
4311 enum drbd_ret_code retcode;
b411b363 4312
a910b123 4313 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_RESOURCE);
3b98c0c2
LE
4314 if (!adm_ctx.reply_skb)
4315 return retcode;
4316 if (retcode != NO_ERROR)
4317 goto out;
b411b363 4318
f2257a56 4319 if (dh->minor > MINORMASK) {
a910b123 4320 drbd_msg_put_info(adm_ctx.reply_skb, "requested minor out of range");
3b98c0c2
LE
4321 retcode = ERR_INVALID_REQUEST;
4322 goto out;
b411b363 4323 }
0c8e36d9 4324 if (adm_ctx.volume > DRBD_VOLUME_MAX) {
a910b123 4325 drbd_msg_put_info(adm_ctx.reply_skb, "requested volume id out of range");
3b98c0c2
LE
4326 retcode = ERR_INVALID_REQUEST;
4327 goto out;
b411b363 4328 }
b411b363 4329
38f19616 4330 /* drbd_adm_prepare made sure already
a6b32bc3 4331 * that first_peer_device(device)->connection and device->vnr match the request. */
b30ab791 4332 if (adm_ctx.device) {
38f19616 4333 if (info->nlhdr->nlmsg_flags & NLM_F_EXCL)
179e20b8 4334 retcode = ERR_MINOR_OR_VOLUME_EXISTS;
38f19616
LE
4335 /* else: still NO_ERROR */
4336 goto out;
b411b363 4337 }
38f19616 4338
9e276872 4339 mutex_lock(&adm_ctx.resource->adm_mutex);
a910b123 4340 retcode = drbd_create_device(&adm_ctx, dh->minor);
a2972846
AG
4341 if (retcode == NO_ERROR) {
4342 struct drbd_device *device;
4343 struct drbd_peer_device *peer_device;
4344 struct device_info info;
4345 unsigned int peer_devices = 0;
4346 enum drbd_notification_type flags;
4347
4348 device = minor_to_device(dh->minor);
4349 for_each_peer_device(peer_device, device) {
4350 if (!has_net_conf(peer_device->connection))
4351 continue;
4352 peer_devices++;
4353 }
4354
4355 device_to_info(&info, device);
4356 mutex_lock(&notification_mutex);
4357 flags = (peer_devices--) ? NOTIFY_CONTINUES : 0;
4358 notify_device_state(NULL, 0, device, &info, NOTIFY_CREATE | flags);
4359 for_each_peer_device(peer_device, device) {
4360 struct peer_device_info peer_device_info;
4361
4362 if (!has_net_conf(peer_device->connection))
4363 continue;
4364 peer_device_to_info(&peer_device_info, peer_device);
4365 flags = (peer_devices--) ? NOTIFY_CONTINUES : 0;
4366 notify_peer_device_state(NULL, 0, peer_device, &peer_device_info,
4367 NOTIFY_CREATE | flags);
4368 }
4369 mutex_unlock(&notification_mutex);
4370 }
9e276872 4371 mutex_unlock(&adm_ctx.resource->adm_mutex);
3b98c0c2 4372out:
a910b123 4373 drbd_adm_finish(&adm_ctx, info, retcode);
3b98c0c2 4374 return 0;
b411b363
PR
4375}
4376
05a10ec7 4377static enum drbd_ret_code adm_del_minor(struct drbd_device *device)
b411b363 4378{
a2972846
AG
4379 struct drbd_peer_device *peer_device;
4380
b30ab791
AG
4381 if (device->state.disk == D_DISKLESS &&
4382 /* no need to be device->state.conn == C_STANDALONE &&
85f75dd7
LE
4383 * we may want to delete a minor from a live replication group.
4384 */
b30ab791 4385 device->state.role == R_SECONDARY) {
a2972846
AG
4386 struct drbd_connection *connection =
4387 first_connection(device->resource);
4388
b30ab791 4389 _drbd_request_state(device, NS(conn, C_WF_REPORT_PARAMS),
369bea63 4390 CS_VERBOSE + CS_WAIT_COMPLETE);
a2972846
AG
4391
4392 /* If the state engine hasn't stopped the sender thread yet, we
4393 * need to flush the sender work queue before generating the
4394 * DESTROY events here. */
4395 if (get_t_state(&connection->worker) == RUNNING)
4396 drbd_flush_workqueue(&connection->sender_work);
4397
4398 mutex_lock(&notification_mutex);
4399 for_each_peer_device(peer_device, device) {
4400 if (!has_net_conf(peer_device->connection))
4401 continue;
4402 notify_peer_device_state(NULL, 0, peer_device, NULL,
4403 NOTIFY_DESTROY | NOTIFY_CONTINUES);
4404 }
4405 notify_device_state(NULL, 0, device, NULL, NOTIFY_DESTROY);
4406 mutex_unlock(&notification_mutex);
4407
f82795d6 4408 drbd_delete_device(device);
85f75dd7
LE
4409 return NO_ERROR;
4410 } else
4411 return ERR_MINOR_CONFIGURED;
b411b363
PR
4412}
4413
05a10ec7 4414int drbd_adm_del_minor(struct sk_buff *skb, struct genl_info *info)
b411b363 4415{
a910b123 4416 struct drbd_config_context adm_ctx;
3b98c0c2 4417 enum drbd_ret_code retcode;
b411b363 4418
a910b123 4419 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_MINOR);
3b98c0c2
LE
4420 if (!adm_ctx.reply_skb)
4421 return retcode;
4422 if (retcode != NO_ERROR)
4423 goto out;
b411b363 4424
9e276872 4425 mutex_lock(&adm_ctx.resource->adm_mutex);
05a10ec7 4426 retcode = adm_del_minor(adm_ctx.device);
9e276872 4427 mutex_unlock(&adm_ctx.resource->adm_mutex);
85f75dd7 4428out:
a910b123 4429 drbd_adm_finish(&adm_ctx, info, retcode);
85f75dd7 4430 return 0;
b411b363
PR
4431}
4432
179e20b8
AG
4433static int adm_del_resource(struct drbd_resource *resource)
4434{
4435 struct drbd_connection *connection;
4436
4437 for_each_connection(connection, resource) {
4438 if (connection->cstate > C_STANDALONE)
4439 return ERR_NET_CONFIGURED;
4440 }
4441 if (!idr_is_empty(&resource->devices))
4442 return ERR_RES_IN_USE;
4443
a2972846
AG
4444 /* The state engine has stopped the sender thread, so we don't
4445 * need to flush the sender work queue before generating the
4446 * DESTROY event here. */
4447 mutex_lock(&notification_mutex);
4448 notify_resource_state(NULL, 0, resource, NULL, NOTIFY_DESTROY);
4449 mutex_unlock(&notification_mutex);
4450
28bc3b8c 4451 mutex_lock(&resources_mutex);
179e20b8 4452 list_del_rcu(&resource->resources);
28bc3b8c 4453 mutex_unlock(&resources_mutex);
179e20b8
AG
4454 /* Make sure all threads have actually stopped: state handling only
4455 * does drbd_thread_stop_nowait(). */
4456 list_for_each_entry(connection, &resource->connections, connections)
4457 drbd_thread_stop(&connection->worker);
4458 synchronize_rcu();
4459 drbd_free_resource(resource);
4460 return NO_ERROR;
4461}
4462
85f75dd7 4463int drbd_adm_down(struct sk_buff *skb, struct genl_info *info)
b411b363 4464{
a910b123 4465 struct drbd_config_context adm_ctx;
b6f85ef9
AG
4466 struct drbd_resource *resource;
4467 struct drbd_connection *connection;
4468 struct drbd_device *device;
f3dfa40a 4469 int retcode; /* enum drbd_ret_code rsp. enum drbd_state_rv */
85f75dd7 4470 unsigned i;
b411b363 4471
a910b123 4472 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_RESOURCE);
85f75dd7
LE
4473 if (!adm_ctx.reply_skb)
4474 return retcode;
4475 if (retcode != NO_ERROR)
9e276872 4476 goto finish;
b411b363 4477
b6f85ef9 4478 resource = adm_ctx.resource;
9e276872 4479 mutex_lock(&resource->adm_mutex);
85f75dd7 4480 /* demote */
b6f85ef9
AG
4481 for_each_connection(connection, resource) {
4482 struct drbd_peer_device *peer_device;
4483
4484 idr_for_each_entry(&connection->peer_devices, peer_device, i) {
4485 retcode = drbd_set_role(peer_device->device, R_SECONDARY, 0);
4486 if (retcode < SS_SUCCESS) {
a910b123 4487 drbd_msg_put_info(adm_ctx.reply_skb, "failed to demote");
b6f85ef9
AG
4488 goto out;
4489 }
4490 }
4491
4492 retcode = conn_try_disconnect(connection, 0);
85f75dd7 4493 if (retcode < SS_SUCCESS) {
a910b123 4494 drbd_msg_put_info(adm_ctx.reply_skb, "failed to disconnect");
c141ebda 4495 goto out;
85f75dd7 4496 }
b411b363 4497 }
b411b363 4498
85f75dd7 4499 /* detach */
b6f85ef9
AG
4500 idr_for_each_entry(&resource->devices, device, i) {
4501 retcode = adm_detach(device, 0);
27012382 4502 if (retcode < SS_SUCCESS || retcode > NO_ERROR) {
a910b123 4503 drbd_msg_put_info(adm_ctx.reply_skb, "failed to detach");
c141ebda 4504 goto out;
85f75dd7
LE
4505 }
4506 }
b411b363 4507
85f75dd7 4508 /* delete volumes */
b6f85ef9
AG
4509 idr_for_each_entry(&resource->devices, device, i) {
4510 retcode = adm_del_minor(device);
85f75dd7
LE
4511 if (retcode != NO_ERROR) {
4512 /* "can not happen" */
a910b123 4513 drbd_msg_put_info(adm_ctx.reply_skb, "failed to delete volume");
ef356262 4514 goto out;
85f75dd7
LE
4515 }
4516 }
b411b363 4517
179e20b8 4518 retcode = adm_del_resource(resource);
3b98c0c2 4519out:
9e276872
LE
4520 mutex_unlock(&resource->adm_mutex);
4521finish:
a910b123 4522 drbd_adm_finish(&adm_ctx, info, retcode);
3b98c0c2 4523 return 0;
b411b363
PR
4524}
4525
789c1b62 4526int drbd_adm_del_resource(struct sk_buff *skb, struct genl_info *info)
b411b363 4527{
a910b123 4528 struct drbd_config_context adm_ctx;
77c556f6 4529 struct drbd_resource *resource;
3b98c0c2 4530 enum drbd_ret_code retcode;
b411b363 4531
a910b123 4532 retcode = drbd_adm_prepare(&adm_ctx, skb, info, DRBD_ADM_NEED_RESOURCE);
3b98c0c2
LE
4533 if (!adm_ctx.reply_skb)
4534 return retcode;
4535 if (retcode != NO_ERROR)
9e276872 4536 goto finish;
77c556f6 4537 resource = adm_ctx.resource;
b411b363 4538
179e20b8
AG
4539 mutex_lock(&resource->adm_mutex);
4540 retcode = adm_del_resource(resource);
9e276872
LE
4541 mutex_unlock(&resource->adm_mutex);
4542finish:
a910b123 4543 drbd_adm_finish(&adm_ctx, info, retcode);
b411b363
PR
4544 return 0;
4545}
4546
b30ab791 4547void drbd_bcast_event(struct drbd_device *device, const struct sib_info *sib)
b411b363 4548{
3b98c0c2
LE
4549 struct sk_buff *msg;
4550 struct drbd_genlmsghdr *d_out;
4551 unsigned seq;
4552 int err = -ENOMEM;
4553
4554 seq = atomic_inc_return(&drbd_genl_seq);
4555 msg = genlmsg_new(NLMSG_GOODSIZE, GFP_NOIO);
4556 if (!msg)
4557 goto failed;
4558
4559 err = -EMSGSIZE;
4560 d_out = genlmsg_put(msg, 0, seq, &drbd_genl_family, 0, DRBD_EVENT);
4561 if (!d_out) /* cannot happen, but anyways. */
4562 goto nla_put_failure;
b30ab791 4563 d_out->minor = device_to_minor(device);
6f9b5f84 4564 d_out->ret_code = NO_ERROR;
3b98c0c2 4565
b30ab791 4566 if (nla_put_status_info(msg, device, sib))
3b98c0c2
LE
4567 goto nla_put_failure;
4568 genlmsg_end(msg, d_out);
d38f8612 4569 err = drbd_genl_multicast_events(msg, GFP_NOWAIT);
3b98c0c2
LE
4570 /* msg has been consumed or freed in netlink_broadcast() */
4571 if (err && err != -ESRCH)
4572 goto failed;
b411b363 4573
3b98c0c2 4574 return;
b411b363 4575
3b98c0c2
LE
4576nla_put_failure:
4577 nlmsg_free(msg);
4578failed:
d0180171 4579 drbd_err(device, "Error %d while broadcasting event. "
3b98c0c2
LE
4580 "Event seq:%u sib_reason:%u\n",
4581 err, seq, sib->sib_reason);
b411b363 4582}
a2972846 4583
a2972846
AG
4584static int nla_put_notification_header(struct sk_buff *msg,
4585 enum drbd_notification_type type)
4586{
4587 struct drbd_notification_header nh = {
4588 .nh_type = type,
4589 };
4590
4591 return drbd_notification_header_to_skb(msg, &nh, true);
4592}
4593
4594void notify_resource_state(struct sk_buff *skb,
4595 unsigned int seq,
4596 struct drbd_resource *resource,
4597 struct resource_info *resource_info,
4598 enum drbd_notification_type type)
4599{
4600 struct resource_statistics resource_statistics;
4601 struct drbd_genlmsghdr *dh;
4602 bool multicast = false;
4603 int err;
4604
4605 if (!skb) {
4606 seq = atomic_inc_return(&notify_genl_seq);
4607 skb = genlmsg_new(NLMSG_GOODSIZE, GFP_NOIO);
4608 err = -ENOMEM;
4609 if (!skb)
4610 goto failed;
4611 multicast = true;
4612 }
4613
4614 err = -EMSGSIZE;
4615 dh = genlmsg_put(skb, 0, seq, &drbd_genl_family, 0, DRBD_RESOURCE_STATE);
4616 if (!dh)
4617 goto nla_put_failure;
4618 dh->minor = -1U;
4619 dh->ret_code = NO_ERROR;
4620 if (nla_put_drbd_cfg_context(skb, resource, NULL, NULL) ||
4621 nla_put_notification_header(skb, type) ||
4622 ((type & ~NOTIFY_FLAGS) != NOTIFY_DESTROY &&
4623 resource_info_to_skb(skb, resource_info, true)))
4624 goto nla_put_failure;
4625 resource_statistics.res_stat_write_ordering = resource->write_ordering;
4626 err = resource_statistics_to_skb(skb, &resource_statistics, !capable(CAP_SYS_ADMIN));
4627 if (err)
4628 goto nla_put_failure;
4629 genlmsg_end(skb, dh);
4630 if (multicast) {
d38f8612 4631 err = drbd_genl_multicast_events(skb, GFP_NOWAIT);
a2972846
AG
4632 /* skb has been consumed or freed in netlink_broadcast() */
4633 if (err && err != -ESRCH)
4634 goto failed;
4635 }
4636 return;
4637
4638nla_put_failure:
4639 nlmsg_free(skb);
4640failed:
4641 drbd_err(resource, "Error %d while broadcasting event. Event seq:%u\n",
4642 err, seq);
4643}
4644
4645void notify_device_state(struct sk_buff *skb,
4646 unsigned int seq,
4647 struct drbd_device *device,
4648 struct device_info *device_info,
4649 enum drbd_notification_type type)
4650{
4651 struct device_statistics device_statistics;
4652 struct drbd_genlmsghdr *dh;
4653 bool multicast = false;
4654 int err;
4655
4656 if (!skb) {
4657 seq = atomic_inc_return(&notify_genl_seq);
4658 skb = genlmsg_new(NLMSG_GOODSIZE, GFP_NOIO);
4659 err = -ENOMEM;
4660 if (!skb)
4661 goto failed;
4662 multicast = true;
4663 }
4664
4665 err = -EMSGSIZE;
4666 dh = genlmsg_put(skb, 0, seq, &drbd_genl_family, 0, DRBD_DEVICE_STATE);
4667 if (!dh)
4668 goto nla_put_failure;
4669 dh->minor = device->minor;
4670 dh->ret_code = NO_ERROR;
4671 if (nla_put_drbd_cfg_context(skb, device->resource, NULL, device) ||
4672 nla_put_notification_header(skb, type) ||
4673 ((type & ~NOTIFY_FLAGS) != NOTIFY_DESTROY &&
4674 device_info_to_skb(skb, device_info, true)))
4675 goto nla_put_failure;
4676 device_to_statistics(&device_statistics, device);
4677 device_statistics_to_skb(skb, &device_statistics, !capable(CAP_SYS_ADMIN));
4678 genlmsg_end(skb, dh);
4679 if (multicast) {
d38f8612 4680 err = drbd_genl_multicast_events(skb, GFP_NOWAIT);
a2972846
AG
4681 /* skb has been consumed or freed in netlink_broadcast() */
4682 if (err && err != -ESRCH)
4683 goto failed;
4684 }
4685 return;
4686
4687nla_put_failure:
4688 nlmsg_free(skb);
4689failed:
4690 drbd_err(device, "Error %d while broadcasting event. Event seq:%u\n",
4691 err, seq);
4692}
4693
4694void notify_connection_state(struct sk_buff *skb,
4695 unsigned int seq,
4696 struct drbd_connection *connection,
4697 struct connection_info *connection_info,
4698 enum drbd_notification_type type)
4699{
4700 struct connection_statistics connection_statistics;
4701 struct drbd_genlmsghdr *dh;
4702 bool multicast = false;
4703 int err;
4704
4705 if (!skb) {
4706 seq = atomic_inc_return(&notify_genl_seq);
4707 skb = genlmsg_new(NLMSG_GOODSIZE, GFP_NOIO);
4708 err = -ENOMEM;
4709 if (!skb)
4710 goto failed;
4711 multicast = true;
4712 }
4713
4714 err = -EMSGSIZE;
4715 dh = genlmsg_put(skb, 0, seq, &drbd_genl_family, 0, DRBD_CONNECTION_STATE);
4716 if (!dh)
4717 goto nla_put_failure;
4718 dh->minor = -1U;
4719 dh->ret_code = NO_ERROR;
4720 if (nla_put_drbd_cfg_context(skb, connection->resource, connection, NULL) ||
4721 nla_put_notification_header(skb, type) ||
4722 ((type & ~NOTIFY_FLAGS) != NOTIFY_DESTROY &&
4723 connection_info_to_skb(skb, connection_info, true)))
4724 goto nla_put_failure;
4725 connection_statistics.conn_congested = test_bit(NET_CONGESTED, &connection->flags);
4726 connection_statistics_to_skb(skb, &connection_statistics, !capable(CAP_SYS_ADMIN));
4727 genlmsg_end(skb, dh);
4728 if (multicast) {
d38f8612 4729 err = drbd_genl_multicast_events(skb, GFP_NOWAIT);
a2972846
AG
4730 /* skb has been consumed or freed in netlink_broadcast() */
4731 if (err && err != -ESRCH)
4732 goto failed;
4733 }
4734 return;
4735
4736nla_put_failure:
4737 nlmsg_free(skb);
4738failed:
4739 drbd_err(connection, "Error %d while broadcasting event. Event seq:%u\n",
4740 err, seq);
4741}
4742
4743void notify_peer_device_state(struct sk_buff *skb,
4744 unsigned int seq,
4745 struct drbd_peer_device *peer_device,
4746 struct peer_device_info *peer_device_info,
4747 enum drbd_notification_type type)
4748{
4749 struct peer_device_statistics peer_device_statistics;
4750 struct drbd_resource *resource = peer_device->device->resource;
4751 struct drbd_genlmsghdr *dh;
4752 bool multicast = false;
4753 int err;
4754
4755 if (!skb) {
4756 seq = atomic_inc_return(&notify_genl_seq);
4757 skb = genlmsg_new(NLMSG_GOODSIZE, GFP_NOIO);
4758 err = -ENOMEM;
4759 if (!skb)
4760 goto failed;
4761 multicast = true;
4762 }
4763
4764 err = -EMSGSIZE;
4765 dh = genlmsg_put(skb, 0, seq, &drbd_genl_family, 0, DRBD_PEER_DEVICE_STATE);
4766 if (!dh)
4767 goto nla_put_failure;
4768 dh->minor = -1U;
4769 dh->ret_code = NO_ERROR;
4770 if (nla_put_drbd_cfg_context(skb, resource, peer_device->connection, peer_device->device) ||
4771 nla_put_notification_header(skb, type) ||
4772 ((type & ~NOTIFY_FLAGS) != NOTIFY_DESTROY &&
4773 peer_device_info_to_skb(skb, peer_device_info, true)))
4774 goto nla_put_failure;
4775 peer_device_to_statistics(&peer_device_statistics, peer_device);
4776 peer_device_statistics_to_skb(skb, &peer_device_statistics, !capable(CAP_SYS_ADMIN));
4777 genlmsg_end(skb, dh);
4778 if (multicast) {
d38f8612 4779 err = drbd_genl_multicast_events(skb, GFP_NOWAIT);
a2972846
AG
4780 /* skb has been consumed or freed in netlink_broadcast() */
4781 if (err && err != -ESRCH)
4782 goto failed;
4783 }
4784 return;
4785
4786nla_put_failure:
4787 nlmsg_free(skb);
4788failed:
4789 drbd_err(peer_device, "Error %d while broadcasting event. Event seq:%u\n",
4790 err, seq);
4791}
4792
4793void notify_helper(enum drbd_notification_type type,
4794 struct drbd_device *device, struct drbd_connection *connection,
4795 const char *name, int status)
4796{
4797 struct drbd_resource *resource = device ? device->resource : connection->resource;
4798 struct drbd_helper_info helper_info;
4799 unsigned int seq = atomic_inc_return(&notify_genl_seq);
4800 struct sk_buff *skb = NULL;
4801 struct drbd_genlmsghdr *dh;
4802 int err;
4803
4804 strlcpy(helper_info.helper_name, name, sizeof(helper_info.helper_name));
4805 helper_info.helper_name_len = min(strlen(name), sizeof(helper_info.helper_name));
4806 helper_info.helper_status = status;
4807
4808 skb = genlmsg_new(NLMSG_GOODSIZE, GFP_NOIO);
4809 err = -ENOMEM;
4810 if (!skb)
4811 goto fail;
4812
4813 err = -EMSGSIZE;
4814 dh = genlmsg_put(skb, 0, seq, &drbd_genl_family, 0, DRBD_HELPER);
4815 if (!dh)
4816 goto fail;
4817 dh->minor = device ? device->minor : -1;
4818 dh->ret_code = NO_ERROR;
4819 mutex_lock(&notification_mutex);
4820 if (nla_put_drbd_cfg_context(skb, resource, connection, device) ||
4821 nla_put_notification_header(skb, type) ||
4822 drbd_helper_info_to_skb(skb, &helper_info, true))
4823 goto unlock_fail;
4824 genlmsg_end(skb, dh);
d38f8612 4825 err = drbd_genl_multicast_events(skb, GFP_NOWAIT);
a2972846
AG
4826 skb = NULL;
4827 /* skb has been consumed or freed in netlink_broadcast() */
4828 if (err && err != -ESRCH)
4829 goto unlock_fail;
4830 mutex_unlock(&notification_mutex);
4831 return;
4832
4833unlock_fail:
4834 mutex_unlock(&notification_mutex);
4835fail:
4836 nlmsg_free(skb);
4837 drbd_err(resource, "Error %d while broadcasting event. Event seq:%u\n",
4838 err, seq);
4839}
4840
4841static void notify_initial_state_done(struct sk_buff *skb, unsigned int seq)
4842{
4843 struct drbd_genlmsghdr *dh;
4844 int err;
4845
4846 err = -EMSGSIZE;
4847 dh = genlmsg_put(skb, 0, seq, &drbd_genl_family, 0, DRBD_INITIAL_STATE_DONE);
4848 if (!dh)
4849 goto nla_put_failure;
4850 dh->minor = -1U;
4851 dh->ret_code = NO_ERROR;
4852 if (nla_put_notification_header(skb, NOTIFY_EXISTS))
4853 goto nla_put_failure;
4854 genlmsg_end(skb, dh);
4855 return;
4856
4857nla_put_failure:
4858 nlmsg_free(skb);
4859 pr_err("Error %d sending event. Event seq:%u\n", err, seq);
4860}
4861
4862static void free_state_changes(struct list_head *list)
4863{
4864 while (!list_empty(list)) {
4865 struct drbd_state_change *state_change =
4866 list_first_entry(list, struct drbd_state_change, list);
4867 list_del(&state_change->list);
4868 forget_state_change(state_change);
4869 }
4870}
4871
4872static unsigned int notifications_for_state_change(struct drbd_state_change *state_change)
4873{
4874 return 1 +
4875 state_change->n_connections +
4876 state_change->n_devices +
4877 state_change->n_devices * state_change->n_connections;
4878}
4879
4880static int get_initial_state(struct sk_buff *skb, struct netlink_callback *cb)
4881{
4882 struct drbd_state_change *state_change = (struct drbd_state_change *)cb->args[0];
4883 unsigned int seq = cb->args[2];
4884 unsigned int n;
4885 enum drbd_notification_type flags = 0;
4886
4887 /* There is no need for taking notification_mutex here: it doesn't
4888 matter if the initial state events mix with later state chage
4889 events; we can always tell the events apart by the NOTIFY_EXISTS
4890 flag. */
4891
4892 cb->args[5]--;
4893 if (cb->args[5] == 1) {
4894 notify_initial_state_done(skb, seq);
4895 goto out;
4896 }
4897 n = cb->args[4]++;
4898 if (cb->args[4] < cb->args[3])
4899 flags |= NOTIFY_CONTINUES;
4900 if (n < 1) {
4901 notify_resource_state_change(skb, seq, state_change->resource,
4902 NOTIFY_EXISTS | flags);
4903 goto next;
4904 }
4905 n--;
4906 if (n < state_change->n_connections) {
4907 notify_connection_state_change(skb, seq, &state_change->connections[n],
4908 NOTIFY_EXISTS | flags);
4909 goto next;
4910 }
4911 n -= state_change->n_connections;
4912 if (n < state_change->n_devices) {
4913 notify_device_state_change(skb, seq, &state_change->devices[n],
4914 NOTIFY_EXISTS | flags);
4915 goto next;
4916 }
4917 n -= state_change->n_devices;
4918 if (n < state_change->n_devices * state_change->n_connections) {
4919 notify_peer_device_state_change(skb, seq, &state_change->peer_devices[n],
4920 NOTIFY_EXISTS | flags);
4921 goto next;
4922 }
4923
4924next:
4925 if (cb->args[4] == cb->args[3]) {
4926 struct drbd_state_change *next_state_change =
4927 list_entry(state_change->list.next,
4928 struct drbd_state_change, list);
4929 cb->args[0] = (long)next_state_change;
4930 cb->args[3] = notifications_for_state_change(next_state_change);
4931 cb->args[4] = 0;
4932 }
4933out:
4934 return skb->len;
4935}
4936
4937int drbd_adm_get_initial_state(struct sk_buff *skb, struct netlink_callback *cb)
4938{
4939 struct drbd_resource *resource;
4940 LIST_HEAD(head);
4941
4942 if (cb->args[5] >= 1) {
4943 if (cb->args[5] > 1)
4944 return get_initial_state(skb, cb);
4945 if (cb->args[0]) {
4946 struct drbd_state_change *state_change =
4947 (struct drbd_state_change *)cb->args[0];
4948
4949 /* connect list to head */
4950 list_add(&head, &state_change->list);
4951 free_state_changes(&head);
4952 }
4953 return 0;
4954 }
4955
4956 cb->args[5] = 2; /* number of iterations */
4957 mutex_lock(&resources_mutex);
4958 for_each_resource(resource, &drbd_resources) {
4959 struct drbd_state_change *state_change;
4960
4961 state_change = remember_old_state(resource, GFP_KERNEL);
4962 if (!state_change) {
4963 if (!list_empty(&head))
4964 free_state_changes(&head);
4965 mutex_unlock(&resources_mutex);
4966 return -ENOMEM;
4967 }
4968 copy_old_to_new_state_change(state_change);
4969 list_add_tail(&state_change->list, &head);
4970 cb->args[5] += notifications_for_state_change(state_change);
4971 }
4972 mutex_unlock(&resources_mutex);
4973
4974 if (!list_empty(&head)) {
4975 struct drbd_state_change *state_change =
4976 list_entry(head.next, struct drbd_state_change, list);
4977 cb->args[0] = (long)state_change;
4978 cb->args[3] = notifications_for_state_change(state_change);
4979 list_del(&head); /* detach list from head */
4980 }
4981
4982 cb->args[2] = cb->nlh->nlmsg_seq;
4983 return get_initial_state(skb, cb);
4984}