drbd_nl.c 95.0 KB
Newer Older
P
Philipp Reisner 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
/*
   drbd_nl.c

   This file is part of DRBD by Philipp Reisner and Lars Ellenberg.

   Copyright (C) 2001-2008, LINBIT Information Technologies GmbH.
   Copyright (C) 1999-2008, Philipp Reisner <philipp.reisner@linbit.com>.
   Copyright (C) 2002-2008, Lars Ellenberg <lars.ellenberg@linbit.com>.

   drbd is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2, or (at your option)
   any later version.

   drbd is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with drbd; see the file COPYING.  If not, write to
   the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.

 */

#include <linux/module.h>
#include <linux/drbd.h>
#include <linux/in.h>
#include <linux/fs.h>
#include <linux/file.h>
#include <linux/slab.h>
#include <linux/blkpg.h>
#include <linux/cpumask.h>
#include "drbd_int.h"
35
#include "drbd_req.h"
P
Philipp Reisner 已提交
36 37 38
#include "drbd_wrappers.h"
#include <asm/unaligned.h>
#include <linux/drbd_limits.h>
39
#include <linux/kthread.h>
P
Philipp Reisner 已提交
40

41 42 43 44 45 46 47 48 49
#include <net/genetlink.h>

/* .doit */
// int drbd_adm_create_resource(struct sk_buff *skb, struct genl_info *info);
// int drbd_adm_delete_resource(struct sk_buff *skb, struct genl_info *info);

int drbd_adm_add_minor(struct sk_buff *skb, struct genl_info *info);
int drbd_adm_delete_minor(struct sk_buff *skb, struct genl_info *info);

50 51
int drbd_adm_new_resource(struct sk_buff *skb, struct genl_info *info);
int drbd_adm_del_resource(struct sk_buff *skb, struct genl_info *info);
52
int drbd_adm_down(struct sk_buff *skb, struct genl_info *info);
53 54 55

int drbd_adm_set_role(struct sk_buff *skb, struct genl_info *info);
int drbd_adm_attach(struct sk_buff *skb, struct genl_info *info);
56
int drbd_adm_disk_opts(struct sk_buff *skb, struct genl_info *info);
57 58
int drbd_adm_detach(struct sk_buff *skb, struct genl_info *info);
int drbd_adm_connect(struct sk_buff *skb, struct genl_info *info);
59
int drbd_adm_net_opts(struct sk_buff *skb, struct genl_info *info);
60 61 62 63 64 65 66 67 68 69 70
int drbd_adm_resize(struct sk_buff *skb, struct genl_info *info);
int drbd_adm_start_ov(struct sk_buff *skb, struct genl_info *info);
int drbd_adm_new_c_uuid(struct sk_buff *skb, struct genl_info *info);
int drbd_adm_disconnect(struct sk_buff *skb, struct genl_info *info);
int drbd_adm_invalidate(struct sk_buff *skb, struct genl_info *info);
int drbd_adm_invalidate_peer(struct sk_buff *skb, struct genl_info *info);
int drbd_adm_pause_sync(struct sk_buff *skb, struct genl_info *info);
int drbd_adm_resume_sync(struct sk_buff *skb, struct genl_info *info);
int drbd_adm_suspend_io(struct sk_buff *skb, struct genl_info *info);
int drbd_adm_resume_io(struct sk_buff *skb, struct genl_info *info);
int drbd_adm_outdate(struct sk_buff *skb, struct genl_info *info);
71
int drbd_adm_resource_opts(struct sk_buff *skb, struct genl_info *info);
72 73 74 75 76 77
int drbd_adm_get_status(struct sk_buff *skb, struct genl_info *info);
int drbd_adm_get_timeout_type(struct sk_buff *skb, struct genl_info *info);
/* .dumpit */
int drbd_adm_get_status_all(struct sk_buff *skb, struct netlink_callback *cb);

#include <linux/drbd_genl_api.h>
78
#include "drbd_nla.h"
79 80 81
#include <linux/genl_magic_func.h>

/* used blkdev_get_by_path, to claim our meta data device(s) */
P
Philipp Reisner 已提交
82 83
static char *drbd_m_holder = "Hands off! this is DRBD's meta data device.";

84 85 86 87 88 89 90 91 92 93 94 95
/* Configuration is strictly serialized, because generic netlink message
 * processing is strictly serialized by the genl_lock().
 * Which means we can use one static global drbd_config_context struct.
 */
static struct drbd_config_context {
	/* assigned from drbd_genlmsghdr */
	unsigned int minor;
	/* assigned from request attributes, if present */
	unsigned int volume;
#define VOLUME_UNSPECIFIED		(-1U)
	/* pointer into the request skb,
	 * limited lifetime! */
96
	char *resource_name;
97 98
	struct nlattr *my_addr;
	struct nlattr *peer_addr;
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113

	/* reply buffer */
	struct sk_buff *reply_skb;
	/* pointer into reply buffer */
	struct drbd_genlmsghdr *reply_dh;
	/* resolved from attributes, if possible */
	struct drbd_conf *mdev;
	struct drbd_tconn *tconn;
} adm_ctx;

static void drbd_adm_send_reply(struct sk_buff *skb, struct genl_info *info)
{
	genlmsg_end(skb, genlmsg_data(nlmsg_data(nlmsg_hdr(skb))));
	if (genlmsg_reply(skb, info))
		printk(KERN_ERR "drbd: error sending genl reply\n");
P
Philipp Reisner 已提交
114
}
115 116 117

/* Used on a fresh "drbd_adm_prepare"d reply_skb, this cannot fail: The only
 * reason it could fail was no space in skb, and there are 4k available. */
118
int drbd_msg_put_info(const char *info)
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
{
	struct sk_buff *skb = adm_ctx.reply_skb;
	struct nlattr *nla;
	int err = -EMSGSIZE;

	if (!info || !info[0])
		return 0;

	nla = nla_nest_start(skb, DRBD_NLA_CFG_REPLY);
	if (!nla)
		return err;

	err = nla_put_string(skb, T_info_text, info);
	if (err) {
		nla_nest_cancel(skb, nla);
		return err;
	} else
		nla_nest_end(skb, nla);
	return 0;
P
Philipp Reisner 已提交
138 139
}

140 141 142 143 144 145
/* This would be a good candidate for a "pre_doit" hook,
 * and per-family private info->pointers.
 * But we need to stay compatible with older kernels.
 * If it returns successfully, adm_ctx members are valid.
 */
#define DRBD_ADM_NEED_MINOR	1
146
#define DRBD_ADM_NEED_RESOURCE	2
147
#define DRBD_ADM_NEED_CONNECTION 4
148 149 150 151 152 153 154 155 156 157
static int drbd_adm_prepare(struct sk_buff *skb, struct genl_info *info,
		unsigned flags)
{
	struct drbd_genlmsghdr *d_in = info->userhdr;
	const u8 cmd = info->genlhdr->cmd;
	int err;

	memset(&adm_ctx, 0, sizeof(adm_ctx));

	/* genl_rcv_msg only checks for CAP_NET_ADMIN on "GENL_ADMIN_PERM" :( */
158
	if (cmd != DRBD_ADM_GET_STATUS && !capable(CAP_NET_ADMIN))
159 160 161
	       return -EPERM;

	adm_ctx.reply_skb = genlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
162 163
	if (!adm_ctx.reply_skb) {
		err = -ENOMEM;
164
		goto fail;
165
	}
166 167 168 169 170

	adm_ctx.reply_dh = genlmsg_put_reply(adm_ctx.reply_skb,
					info, &drbd_genl_family, 0, cmd);
	/* put of a few bytes into a fresh skb of >= 4k will always succeed.
	 * but anyways */
171 172
	if (!adm_ctx.reply_dh) {
		err = -ENOMEM;
173
		goto fail;
174
	}
175 176 177 178

	adm_ctx.reply_dh->minor = d_in->minor;
	adm_ctx.reply_dh->ret_code = NO_ERROR;

179
	adm_ctx.volume = VOLUME_UNSPECIFIED;
180 181 182
	if (info->attrs[DRBD_NLA_CFG_CONTEXT]) {
		struct nlattr *nla;
		/* parse and validate only */
183
		err = drbd_cfg_context_from_attrs(NULL, info);
184 185 186 187 188 189 190 191 192 193 194 195 196
		if (err)
			goto fail;

		/* It was present, and valid,
		 * copy it over to the reply skb. */
		err = nla_put_nohdr(adm_ctx.reply_skb,
				info->attrs[DRBD_NLA_CFG_CONTEXT]->nla_len,
				info->attrs[DRBD_NLA_CFG_CONTEXT]);
		if (err)
			goto fail;

		/* and assign stuff to the global adm_ctx */
		nla = nested_attr_tb[__nla_type(T_ctx_volume)];
197 198
		if (nla)
			adm_ctx.volume = nla_get_u32(nla);
199
		nla = nested_attr_tb[__nla_type(T_ctx_resource_name)];
200
		if (nla)
201
			adm_ctx.resource_name = nla_data(nla);
202 203 204 205 206 207 208 209 210 211
		adm_ctx.my_addr = nested_attr_tb[__nla_type(T_ctx_my_addr)];
		adm_ctx.peer_addr = nested_attr_tb[__nla_type(T_ctx_peer_addr)];
		if ((adm_ctx.my_addr &&
		     nla_len(adm_ctx.my_addr) > sizeof(adm_ctx.tconn->my_addr)) ||
		    (adm_ctx.peer_addr &&
		     nla_len(adm_ctx.peer_addr) > sizeof(adm_ctx.tconn->peer_addr))) {
			err = -EINVAL;
			goto fail;
		}
	}
212 213 214

	adm_ctx.minor = d_in->minor;
	adm_ctx.mdev = minor_to_mdev(d_in->minor);
215
	adm_ctx.tconn = conn_get_by_name(adm_ctx.resource_name);
216 217 218 219 220

	if (!adm_ctx.mdev && (flags & DRBD_ADM_NEED_MINOR)) {
		drbd_msg_put_info("unknown minor");
		return ERR_MINOR_INVALID;
	}
221 222
	if (!adm_ctx.tconn && (flags & DRBD_ADM_NEED_RESOURCE)) {
		drbd_msg_put_info("unknown resource");
223 224 225
		return ERR_INVALID_REQUEST;
	}

226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245
	if (flags & DRBD_ADM_NEED_CONNECTION) {
		if (adm_ctx.tconn && !(flags & DRBD_ADM_NEED_RESOURCE)) {
			drbd_msg_put_info("no resource name expected");
			return ERR_INVALID_REQUEST;
		}
		if (adm_ctx.mdev) {
			drbd_msg_put_info("no minor number expected");
			return ERR_INVALID_REQUEST;
		}
		if (adm_ctx.my_addr && adm_ctx.peer_addr)
			adm_ctx.tconn = conn_get_by_addrs(nla_data(adm_ctx.my_addr),
							  nla_len(adm_ctx.my_addr),
							  nla_data(adm_ctx.peer_addr),
							  nla_len(adm_ctx.peer_addr));
		if (!adm_ctx.tconn) {
			drbd_msg_put_info("unknown connection");
			return ERR_INVALID_REQUEST;
		}
	}

246
	/* some more paranoia, if the request was over-determined */
247 248
	if (adm_ctx.mdev && adm_ctx.tconn &&
	    adm_ctx.mdev->tconn != adm_ctx.tconn) {
249
		pr_warning("request: minor=%u, resource=%s; but that minor belongs to connection %s\n",
250 251
				adm_ctx.minor, adm_ctx.resource_name,
				adm_ctx.mdev->tconn->name);
252
		drbd_msg_put_info("minor exists in different resource");
253 254
		return ERR_INVALID_REQUEST;
	}
255 256 257 258 259 260
	if (adm_ctx.mdev &&
	    adm_ctx.volume != VOLUME_UNSPECIFIED &&
	    adm_ctx.volume != adm_ctx.mdev->vnr) {
		pr_warning("request: minor=%u, volume=%u; but that minor is volume %u in %s\n",
				adm_ctx.minor, adm_ctx.volume,
				adm_ctx.mdev->vnr, adm_ctx.mdev->tconn->name);
261
		drbd_msg_put_info("minor exists as different volume");
262 263
		return ERR_INVALID_REQUEST;
	}
264

265 266 267 268 269
	return NO_ERROR;

fail:
	nlmsg_free(adm_ctx.reply_skb);
	adm_ctx.reply_skb = NULL;
270
	return err;
271 272 273 274
}

static int drbd_adm_finish(struct genl_info *info, int retcode)
{
275 276 277 278 279
	if (adm_ctx.tconn) {
		kref_put(&adm_ctx.tconn->kref, &conn_destroy);
		adm_ctx.tconn = NULL;
	}

280 281 282 283 284 285 286
	if (!adm_ctx.reply_skb)
		return -ENOMEM;

	adm_ctx.reply_dh->ret_code = retcode;
	drbd_adm_send_reply(adm_ctx.reply_skb, info);
	return 0;
}
P
Philipp Reisner 已提交
287

288
static void setup_khelper_env(struct drbd_tconn *tconn, char **envp)
P
Philipp Reisner 已提交
289
{
290
	char *afs;
P
Philipp Reisner 已提交
291

292 293 294 295 296 297 298 299 300
	/* FIXME: A future version will not allow this case. */
	if (tconn->my_addr_len == 0 || tconn->peer_addr_len == 0)
		return;

	switch (((struct sockaddr *)&tconn->peer_addr)->sa_family) {
	case AF_INET6:
		afs = "ipv6";
		snprintf(envp[4], 60, "DRBD_PEER_ADDRESS=%pI6",
			 &((struct sockaddr_in6 *)&tconn->peer_addr)->sin6_addr);
P
Philipp Reisner 已提交
301
		break;
302 303 304 305
	case AF_INET:
		afs = "ipv4";
		snprintf(envp[4], 60, "DRBD_PEER_ADDRESS=%pI4",
			 &((struct sockaddr_in *)&tconn->peer_addr)->sin_addr);
P
Philipp Reisner 已提交
306
		break;
307 308 309 310
	default:
		afs = "ssocks";
		snprintf(envp[4], 60, "DRBD_PEER_ADDRESS=%pI4",
			 &((struct sockaddr_in *)&tconn->peer_addr)->sin_addr);
P
Philipp Reisner 已提交
311
	}
312
	snprintf(envp[3], 20, "DRBD_PEER_AF=%s", afs);
313
}
P
Philipp Reisner 已提交
314 315 316 317 318 319

int drbd_khelper(struct drbd_conf *mdev, char *cmd)
{
	char *envp[] = { "HOME=/",
			"TERM=linux",
			"PATH=/sbin:/usr/sbin:/bin:/usr/bin",
320 321
			 (char[20]) { }, /* address family */
			 (char[60]) { }, /* address */
P
Philipp Reisner 已提交
322
			NULL };
323
	char mb[12];
P
Philipp Reisner 已提交
324
	char *argv[] = {usermode_helper, cmd, mb, NULL };
325
	struct drbd_tconn *tconn = mdev->tconn;
326
	struct sib_info sib;
P
Philipp Reisner 已提交
327 328
	int ret;

329 330
	if (current == tconn->worker.task)
		set_bit(CALLBACK_PENDING, &tconn->flags);
331

P
Philipp Reisner 已提交
332
	snprintf(mb, 12, "minor-%d", mdev_to_minor(mdev));
333
	setup_khelper_env(tconn, envp);
P
Philipp Reisner 已提交
334

335 336 337 338
	/* The helper may take some time.
	 * write out any unsynced meta data changes now */
	drbd_md_sync(mdev);

P
Philipp Reisner 已提交
339
	dev_info(DEV, "helper command: %s %s %s\n", usermode_helper, cmd, mb);
340 341 342
	sib.sib_reason = SIB_HELPER_PRE;
	sib.helper_name = cmd;
	drbd_bcast_event(mdev, &sib);
343
	ret = call_usermodehelper(usermode_helper, argv, envp, UMH_WAIT_PROC);
P
Philipp Reisner 已提交
344 345 346 347 348 349 350 351
	if (ret)
		dev_warn(DEV, "helper command: %s %s %s exit code %u (0x%x)\n",
				usermode_helper, cmd, mb,
				(ret >> 8) & 0xff, ret);
	else
		dev_info(DEV, "helper command: %s %s %s exit code %u (0x%x)\n",
				usermode_helper, cmd, mb,
				(ret >> 8) & 0xff, ret);
352 353 354
	sib.sib_reason = SIB_HELPER_POST;
	sib.helper_exit_code = ret;
	drbd_bcast_event(mdev, &sib);
P
Philipp Reisner 已提交
355

356 357
	if (current == tconn->worker.task)
		clear_bit(CALLBACK_PENDING, &tconn->flags);
P
Philipp Reisner 已提交
358 359 360 361 362 363 364

	if (ret < 0) /* Ignore any ERRNOs we got. */
		ret = 0;

	return ret;
}

365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381
int conn_khelper(struct drbd_tconn *tconn, char *cmd)
{
	char *envp[] = { "HOME=/",
			"TERM=linux",
			"PATH=/sbin:/usr/sbin:/bin:/usr/bin",
			 (char[20]) { }, /* address family */
			 (char[60]) { }, /* address */
			NULL };
	char *argv[] = {usermode_helper, cmd, tconn->name, NULL };
	int ret;

	setup_khelper_env(tconn, envp);
	conn_md_sync(tconn);

	conn_info(tconn, "helper command: %s %s %s\n", usermode_helper, cmd, tconn->name);
	/* TODO: conn_bcast_event() ?? */

382
	ret = call_usermodehelper(usermode_helper, argv, envp, UMH_WAIT_PROC);
383 384 385 386 387 388 389 390 391
	if (ret)
		conn_warn(tconn, "helper command: %s %s %s exit code %u (0x%x)\n",
			  usermode_helper, cmd, tconn->name,
			  (ret >> 8) & 0xff, ret);
	else
		conn_info(tconn, "helper command: %s %s %s exit code %u (0x%x)\n",
			  usermode_helper, cmd, tconn->name,
			  (ret >> 8) & 0xff, ret);
	/* TODO: conn_bcast_event() ?? */
392

P
Philipp Reisner 已提交
393 394 395 396 397 398
	if (ret < 0) /* Ignore any ERRNOs we got. */
		ret = 0;

	return ret;
}

399
static enum drbd_fencing_p highest_fencing_policy(struct drbd_tconn *tconn)
P
Philipp Reisner 已提交
400
{
401 402 403 404
	enum drbd_fencing_p fp = FP_NOT_AVAIL;
	struct drbd_conf *mdev;
	int vnr;

405
	rcu_read_lock();
406 407
	idr_for_each_entry(&tconn->volumes, mdev, vnr) {
		if (get_ldev_if_state(mdev, D_CONSISTENT)) {
P
Philipp Reisner 已提交
408 409
			fp = max_t(enum drbd_fencing_p, fp,
				   rcu_dereference(mdev->ldev->disk_conf)->fencing);
410 411 412
			put_ldev(mdev);
		}
	}
413
	rcu_read_unlock();
414 415 416 417 418

	return fp;
}

bool conn_try_outdate_peer(struct drbd_tconn *tconn)
P
Philipp Reisner 已提交
419
{
420
	unsigned int connect_cnt;
421 422 423
	union drbd_state mask = { };
	union drbd_state val = { };
	enum drbd_fencing_p fp;
P
Philipp Reisner 已提交
424 425 426
	char *ex_to_string;
	int r;

427 428 429 430
	if (tconn->cstate >= C_WF_REPORT_PARAMS) {
		conn_err(tconn, "Expected cstate < C_WF_REPORT_PARAMS\n");
		return false;
	}
P
Philipp Reisner 已提交
431

432 433 434 435
	spin_lock_irq(&tconn->req_lock);
	connect_cnt = tconn->connect_cnt;
	spin_unlock_irq(&tconn->req_lock);

436 437 438 439
	fp = highest_fencing_policy(tconn);
	switch (fp) {
	case FP_NOT_AVAIL:
		conn_warn(tconn, "Not fencing peer, I'm not even Consistent myself.\n");
440
		goto out;
441 442 443
	case FP_DONT_CARE:
		return true;
	default: ;
P
Philipp Reisner 已提交
444 445
	}

446
	r = conn_khelper(tconn, "fence-peer");
P
Philipp Reisner 已提交
447 448 449 450

	switch ((r>>8) & 0xff) {
	case 3: /* peer is inconsistent */
		ex_to_string = "peer is inconsistent or worse";
451 452
		mask.pdsk = D_MASK;
		val.pdsk = D_INCONSISTENT;
P
Philipp Reisner 已提交
453 454 455
		break;
	case 4: /* peer got outdated, or was already outdated */
		ex_to_string = "peer was fenced";
456 457
		mask.pdsk = D_MASK;
		val.pdsk = D_OUTDATED;
P
Philipp Reisner 已提交
458 459
		break;
	case 5: /* peer was down */
460
		if (conn_highest_disk(tconn) == D_UP_TO_DATE) {
P
Philipp Reisner 已提交
461 462
			/* we will(have) create(d) a new UUID anyways... */
			ex_to_string = "peer is unreachable, assumed to be dead";
463 464
			mask.pdsk = D_MASK;
			val.pdsk = D_OUTDATED;
P
Philipp Reisner 已提交
465 466 467 468 469 470 471 472
		} else {
			ex_to_string = "peer unreachable, doing nothing since disk != UpToDate";
		}
		break;
	case 6: /* Peer is primary, voluntarily outdate myself.
		 * This is useful when an unconnected R_SECONDARY is asked to
		 * become R_PRIMARY, but finds the other peer being active. */
		ex_to_string = "peer is active";
473 474 475
		conn_warn(tconn, "Peer is primary, outdating myself.\n");
		mask.disk = D_MASK;
		val.disk = D_OUTDATED;
P
Philipp Reisner 已提交
476 477 478
		break;
	case 7:
		if (fp != FP_STONITH)
479
			conn_err(tconn, "fence-peer() = 7 && fencing != Stonith !!!\n");
P
Philipp Reisner 已提交
480
		ex_to_string = "peer was stonithed";
481 482
		mask.pdsk = D_MASK;
		val.pdsk = D_OUTDATED;
P
Philipp Reisner 已提交
483 484 485
		break;
	default:
		/* The script is broken ... */
486 487
		conn_err(tconn, "fence-peer helper broken, returned %d\n", (r>>8)&0xff);
		return false; /* Eventually leave IO frozen */
P
Philipp Reisner 已提交
488 489
	}

490 491
	conn_info(tconn, "fence-peer helper returned %d (%s)\n",
		  (r>>8) & 0xff, ex_to_string);
492

493
 out:
494

495 496 497 498 499
	/* Not using
	   conn_request_state(tconn, mask, val, CS_VERBOSE);
	   here, because we might were able to re-establish the connection in the
	   meantime. */
	spin_lock_irq(&tconn->req_lock);
500 501 502 503 504 505 506 507
	if (tconn->cstate < C_WF_REPORT_PARAMS && !test_bit(STATE_SENT, &tconn->flags)) {
		if (tconn->connect_cnt != connect_cnt)
			/* In case the connection was established and droped
			   while the fence-peer handler was running, ignore it */
			conn_info(tconn, "Ignoring fence-peer exit code\n");
		else
			_conn_request_state(tconn, mask, val, CS_VERBOSE);
	}
508 509 510
	spin_unlock_irq(&tconn->req_lock);

	return conn_highest_pdsk(tconn) <= D_OUTDATED;
P
Philipp Reisner 已提交
511 512
}

513 514
static int _try_outdate_peer_async(void *data)
{
515
	struct drbd_tconn *tconn = (struct drbd_tconn *)data;
516

517
	conn_try_outdate_peer(tconn);
518

519
	kref_put(&tconn->kref, &conn_destroy);
520 521 522
	return 0;
}

523
void conn_try_outdate_peer_async(struct drbd_tconn *tconn)
524 525 526
{
	struct task_struct *opa;

527
	kref_get(&tconn->kref);
528
	opa = kthread_run(_try_outdate_peer_async, tconn, "drbd_async_h");
529
	if (IS_ERR(opa)) {
530
		conn_err(tconn, "out of mem, failed to invoke fence-peer helper\n");
531 532
		kref_put(&tconn->kref, &conn_destroy);
	}
533
}
P
Philipp Reisner 已提交
534

535 536
enum drbd_state_rv
drbd_set_role(struct drbd_conf *mdev, enum drbd_role new_role, int force)
P
Philipp Reisner 已提交
537 538
{
	const int max_tries = 4;
539
	enum drbd_state_rv rv = SS_UNKNOWN_ERROR;
540
	struct net_conf *nc;
P
Philipp Reisner 已提交
541 542 543 544 545
	int try = 0;
	int forced = 0;
	union drbd_state mask, val;

	if (new_role == R_PRIMARY)
546
		request_ping(mdev->tconn); /* Detect a dead peer ASAP */
P
Philipp Reisner 已提交
547

548
	mutex_lock(mdev->state_mutex);
P
Philipp Reisner 已提交
549 550 551 552 553

	mask.i = 0; mask.role = R_MASK;
	val.i  = 0; val.role  = new_role;

	while (try++ < max_tries) {
554
		rv = _drbd_request_state(mdev, mask, val, CS_WAIT_COMPLETE);
P
Philipp Reisner 已提交
555 556 557

		/* in case we first succeeded to outdate,
		 * but now suddenly could establish a connection */
558
		if (rv == SS_CW_FAILED_BY_PEER && mask.pdsk != 0) {
P
Philipp Reisner 已提交
559 560 561 562 563
			val.pdsk = 0;
			mask.pdsk = 0;
			continue;
		}

564
		if (rv == SS_NO_UP_TO_DATE_DISK && force &&
565 566
		    (mdev->state.disk < D_UP_TO_DATE &&
		     mdev->state.disk >= D_INCONSISTENT)) {
P
Philipp Reisner 已提交
567 568 569 570 571 572
			mask.disk = D_MASK;
			val.disk  = D_UP_TO_DATE;
			forced = 1;
			continue;
		}

573
		if (rv == SS_NO_UP_TO_DATE_DISK &&
P
Philipp Reisner 已提交
574 575 576
		    mdev->state.disk == D_CONSISTENT && mask.pdsk == 0) {
			D_ASSERT(mdev->state.pdsk == D_UNKNOWN);

577
			if (conn_try_outdate_peer(mdev->tconn)) {
P
Philipp Reisner 已提交
578 579 580 581 582 583
				val.disk = D_UP_TO_DATE;
				mask.disk = D_MASK;
			}
			continue;
		}

584
		if (rv == SS_NOTHING_TO_DO)
585
			goto out;
586
		if (rv == SS_PRIMARY_NOP && mask.pdsk == 0) {
587
			if (!conn_try_outdate_peer(mdev->tconn) && force) {
P
Philipp Reisner 已提交
588
				dev_warn(DEV, "Forced into split brain situation!\n");
589 590
				mask.pdsk = D_MASK;
				val.pdsk  = D_OUTDATED;
P
Philipp Reisner 已提交
591

592
			}
P
Philipp Reisner 已提交
593 594
			continue;
		}
595
		if (rv == SS_TWO_PRIMARIES) {
P
Philipp Reisner 已提交
596 597
			/* Maybe the peer is detected as dead very soon...
			   retry at most once more in this case. */
598 599 600 601 602 603
			int timeo;
			rcu_read_lock();
			nc = rcu_dereference(mdev->tconn->net_conf);
			timeo = nc ? (nc->ping_timeo + 1) * HZ / 10 : 1;
			rcu_read_unlock();
			schedule_timeout_interruptible(timeo);
P
Philipp Reisner 已提交
604 605 606 607
			if (try < max_tries)
				try = max_tries - 1;
			continue;
		}
608 609
		if (rv < SS_SUCCESS) {
			rv = _drbd_request_state(mdev, mask, val,
P
Philipp Reisner 已提交
610
						CS_VERBOSE + CS_WAIT_COMPLETE);
611
			if (rv < SS_SUCCESS)
612
				goto out;
P
Philipp Reisner 已提交
613 614 615 616
		}
		break;
	}

617
	if (rv < SS_SUCCESS)
618
		goto out;
P
Philipp Reisner 已提交
619 620 621 622 623 624 625

	if (forced)
		dev_warn(DEV, "Forced to consider local data as UpToDate!\n");

	/* Wait until nothing is on the fly :) */
	wait_event(mdev->misc_wait, atomic_read(&mdev->ap_pending_cnt) == 0);

626 627
	/* FIXME also wait for all pending P_BARRIER_ACK? */

P
Philipp Reisner 已提交
628
	if (new_role == R_SECONDARY) {
629
		set_disk_ro(mdev->vdisk, true);
P
Philipp Reisner 已提交
630 631 632 633 634
		if (get_ldev(mdev)) {
			mdev->ldev->md.uuid[UI_CURRENT] &= ~(u64)1;
			put_ldev(mdev);
		}
	} else {
635
		mutex_lock(&mdev->tconn->conf_update);
636
		nc = mdev->tconn->net_conf;
637
		if (nc)
638
			nc->discard_my_data = 0; /* without copy; single bit op is atomic */
639
		mutex_unlock(&mdev->tconn->conf_update);
640

641
		set_disk_ro(mdev->vdisk, false);
P
Philipp Reisner 已提交
642 643 644 645 646 647 648 649 650 651 652
		if (get_ldev(mdev)) {
			if (((mdev->state.conn < C_CONNECTED ||
			       mdev->state.pdsk <= D_FAILED)
			      && mdev->ldev->md.uuid[UI_BITMAP] == 0) || forced)
				drbd_uuid_new_current(mdev);

			mdev->ldev->md.uuid[UI_CURRENT] |=  (u64)1;
			put_ldev(mdev);
		}
	}

653 654
	/* writeout of activity log covered areas of the bitmap
	 * to stable storage done in after state change already */
P
Philipp Reisner 已提交
655 656 657 658 659

	if (mdev->state.conn >= C_WF_REPORT_PARAMS) {
		/* if this was forced, we should consider sync */
		if (forced)
			drbd_send_uuids(mdev);
660
		drbd_send_current_state(mdev);
P
Philipp Reisner 已提交
661 662 663 664 665
	}

	drbd_md_sync(mdev);

	kobject_uevent(&disk_to_dev(mdev->vdisk)->kobj, KOBJ_CHANGE);
666
out:
667
	mutex_unlock(mdev->state_mutex);
668
	return rv;
P
Philipp Reisner 已提交
669 670
}

671
static const char *from_attrs_err_to_txt(int err)
672
{
673 674
	return	err == -ENOMSG ? "required attribute missing" :
		err == -EOPNOTSUPP ? "unknown mandatory attribute" :
675
		err == -EEXIST ? "can not change invariant setting" :
676
		"invalid attribute value";
677
}
P
Philipp Reisner 已提交
678

679
int drbd_adm_set_role(struct sk_buff *skb, struct genl_info *info)
P
Philipp Reisner 已提交
680
{
681 682 683
	struct set_role_parms parms;
	int err;
	enum drbd_ret_code retcode;
P
Philipp Reisner 已提交
684

685 686 687 688 689
	retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
	if (!adm_ctx.reply_skb)
		return retcode;
	if (retcode != NO_ERROR)
		goto out;
P
Philipp Reisner 已提交
690

691 692
	memset(&parms, 0, sizeof(parms));
	if (info->attrs[DRBD_NLA_SET_ROLE_PARMS]) {
693
		err = set_role_parms_from_attrs(&parms, info);
694 695 696 697 698 699
		if (err) {
			retcode = ERR_MANDATORY_TAG;
			drbd_msg_put_info(from_attrs_err_to_txt(err));
			goto out;
		}
	}
P
Philipp Reisner 已提交
700

701 702 703 704 705 706
	if (info->genlhdr->cmd == DRBD_ADM_PRIMARY)
		retcode = drbd_set_role(adm_ctx.mdev, R_PRIMARY, parms.assume_uptodate);
	else
		retcode = drbd_set_role(adm_ctx.mdev, R_SECONDARY, 0);
out:
	drbd_adm_finish(info, retcode);
P
Philipp Reisner 已提交
707 708 709
	return 0;
}

710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730
/* Initializes the md.*_offset members, so we are able to find
 * the on disk meta data.
 *
 * We currently have two possible layouts:
 * external:
 *   |----------- md_size_sect ------------------|
 *   [ 4k superblock ][ activity log ][  Bitmap  ]
 *   | al_offset == 8 |
 *   | bm_offset = al_offset + X      |
 *  ==> bitmap sectors = md_size_sect - bm_offset
 *
 * internal:
 *            |----------- md_size_sect ------------------|
 * [data.....][  Bitmap  ][ activity log ][ 4k superblock ]
 *                        | al_offset < 0 |
 *            | bm_offset = al_offset - Y |
 *  ==> bitmap sectors = Y = al_offset - bm_offset
 *
 *  Activity log size used to be fixed 32kB,
 *  but is about to become configurable.
 */
P
Philipp Reisner 已提交
731 732 733 734
static void drbd_md_set_sector_offsets(struct drbd_conf *mdev,
				       struct drbd_backing_dev *bdev)
{
	sector_t md_size_sect = 0;
735
	unsigned int al_size_sect = bdev->md.al_size_4k * 8;
P
Philipp Reisner 已提交
736

737 738
	bdev->md.md_offset = drbd_md_ss(bdev);

739
	switch (bdev->md.meta_dev_idx) {
P
Philipp Reisner 已提交
740 741
	default:
		/* v07 style fixed size indexed meta data */
742 743 744
		bdev->md.md_size_sect = MD_128MB_SECT;
		bdev->md.al_offset = MD_4kB_SECT;
		bdev->md.bm_offset = MD_4kB_SECT + al_size_sect;
P
Philipp Reisner 已提交
745 746 747 748
		break;
	case DRBD_MD_INDEX_FLEX_EXT:
		/* just occupy the full device; unit: sectors */
		bdev->md.md_size_sect = drbd_get_capacity(bdev->md_bdev);
749 750
		bdev->md.al_offset = MD_4kB_SECT;
		bdev->md.bm_offset = MD_4kB_SECT + al_size_sect;
P
Philipp Reisner 已提交
751 752 753 754
		break;
	case DRBD_MD_INDEX_INTERNAL:
	case DRBD_MD_INDEX_FLEX_INT:
		/* al size is still fixed */
755
		bdev->md.al_offset = -al_size_sect;
P
Philipp Reisner 已提交
756 757 758 759 760 761 762 763
		/* we need (slightly less than) ~ this much bitmap sectors: */
		md_size_sect = drbd_get_capacity(bdev->backing_bdev);
		md_size_sect = ALIGN(md_size_sect, BM_SECT_PER_EXT);
		md_size_sect = BM_SECT_TO_EXT(md_size_sect);
		md_size_sect = ALIGN(md_size_sect, 8);

		/* plus the "drbd meta data super block",
		 * and the activity log; */
764
		md_size_sect += MD_4kB_SECT + al_size_sect;
P
Philipp Reisner 已提交
765 766 767

		bdev->md.md_size_sect = md_size_sect;
		/* bitmap offset is adjusted by 'super' block size */
768
		bdev->md.bm_offset   = -md_size_sect + MD_4kB_SECT;
P
Philipp Reisner 已提交
769 770 771 772
		break;
	}
}

773
/* input size is expected to be in KB */
P
Philipp Reisner 已提交
774 775
char *ppsize(char *buf, unsigned long long size)
{
776 777
	/* Needs 9 bytes at max including trailing NUL:
	 * -1ULL ==> "16384 EB" */
P
Philipp Reisner 已提交
778 779
	static char units[] = { 'K', 'M', 'G', 'T', 'P', 'E' };
	int base = 0;
780
	while (size >= 10000 && base < sizeof(units)-1) {
P
Philipp Reisner 已提交
781 782 783 784
		/* shift + round */
		size = (size >> 10) + !!(size & (1<<9));
		base++;
	}
785
	sprintf(buf, "%u %cB", (unsigned)size, units[base]);
P
Philipp Reisner 已提交
786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802

	return buf;
}

/* there is still a theoretical deadlock when called from receiver
 * on an D_INCONSISTENT R_PRIMARY:
 *  remote READ does inc_ap_bio, receiver would need to receive answer
 *  packet from remote to dec_ap_bio again.
 *  receiver receive_sizes(), comes here,
 *  waits for ap_bio_cnt == 0. -> deadlock.
 * but this cannot happen, actually, because:
 *  R_PRIMARY D_INCONSISTENT, and peer's disk is unreachable
 *  (not connected, or bad/no disk on peer):
 *  see drbd_fail_request_early, ap_bio_cnt is zero.
 *  R_PRIMARY D_INCONSISTENT, and C_SYNC_TARGET:
 *  peer may not initiate a resize.
 */
803 804 805 806 807 808
/* Note these are not to be confused with
 * drbd_adm_suspend_io/drbd_adm_resume_io,
 * which are (sub) state changes triggered by admin (drbdsetup),
 * and can be long lived.
 * This changes an mdev->flag, is triggered by drbd internals,
 * and should be short-lived. */
P
Philipp Reisner 已提交
809 810 811
void drbd_suspend_io(struct drbd_conf *mdev)
{
	set_bit(SUSPEND_IO, &mdev->flags);
812
	if (drbd_suspended(mdev))
813
		return;
P
Philipp Reisner 已提交
814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829
	wait_event(mdev->misc_wait, !atomic_read(&mdev->ap_bio_cnt));
}

void drbd_resume_io(struct drbd_conf *mdev)
{
	clear_bit(SUSPEND_IO, &mdev->flags);
	wake_up(&mdev->misc_wait);
}

/**
 * drbd_determine_dev_size() -  Sets the right device size obeying all constraints
 * @mdev:	DRBD device.
 *
 * Returns 0 on success, negative return values indicate errors.
 * You should call drbd_md_sync() after calling this function.
 */
830 831
enum determine_dev_size
drbd_determine_dev_size(struct drbd_conf *mdev, enum dds_flags flags, struct resize_parms *rs) __must_hold(local)
P
Philipp Reisner 已提交
832 833
{
	sector_t prev_first_sect, prev_size; /* previous meta location */
834
	sector_t la_size_sect, u_size;
835 836 837
	struct drbd_md *md = &mdev->ldev->md;
	u32 prev_al_stripe_size_4k;
	u32 prev_al_stripes;
P
Philipp Reisner 已提交
838 839
	sector_t size;
	char ppb[10];
840
	void *buffer;
P
Philipp Reisner 已提交
841 842

	int md_moved, la_size_changed;
843
	enum determine_dev_size rv = DS_UNCHANGED;
P
Philipp Reisner 已提交
844 845 846 847 848 849 850 851 852 853 854

	/* race:
	 * application request passes inc_ap_bio,
	 * but then cannot get an AL-reference.
	 * this function later may wait on ap_bio_cnt == 0. -> deadlock.
	 *
	 * to avoid that:
	 * Suspend IO right here.
	 * still lock the act_log to not trigger ASSERTs there.
	 */
	drbd_suspend_io(mdev);
855 856 857 858 859
	buffer = drbd_md_get_buffer(mdev); /* Lock meta-data IO */
	if (!buffer) {
		drbd_resume_io(mdev);
		return DS_ERROR;
	}
P
Philipp Reisner 已提交
860 861 862 863 864 865

	/* no wait necessary anymore, actually we could assert that */
	wait_event(mdev->al_wait, lc_try_lock(mdev->act_log));

	prev_first_sect = drbd_md_first_sector(mdev->ldev);
	prev_size = mdev->ldev->md.md_size_sect;
866
	la_size_sect = mdev->ldev->md.la_size_sect;
P
Philipp Reisner 已提交
867

868 869 870 871 872 873 874 875 876 877 878
	if (rs) {
		/* rs is non NULL if we should change the AL layout only */

		prev_al_stripes = md->al_stripes;
		prev_al_stripe_size_4k = md->al_stripe_size_4k;

		md->al_stripes = rs->al_stripes;
		md->al_stripe_size_4k = rs->al_stripe_size / 4;
		md->al_size_4k = (u64)rs->al_stripes * rs->al_stripe_size / 4;
	}

P
Philipp Reisner 已提交
879 880
	drbd_md_set_sector_offsets(mdev, mdev->ldev);

P
Philipp Reisner 已提交
881 882 883
	rcu_read_lock();
	u_size = rcu_dereference(mdev->ldev->disk_conf)->disk_size;
	rcu_read_unlock();
884
	size = drbd_new_dev_size(mdev, mdev->ldev, u_size, flags & DDSF_FORCED);
P
Philipp Reisner 已提交
885

886 887 888 889 890 891 892 893 894 895 896 897 898 899 900
	if (size < la_size_sect) {
		if (rs && u_size == 0) {
			/* Remove "rs &&" later. This check should always be active, but
			   right now the receiver expects the permissive behavior */
			dev_warn(DEV, "Implicit shrink not allowed. "
				 "Use --size=%llus for explicit shrink.\n",
				 (unsigned long long)size);
			rv = DS_ERROR_SHRINK;
		}
		if (u_size > size)
			rv = DS_ERROR_SPACE_MD;
		if (rv != DS_UNCHANGED)
			goto err_out;
	}

P
Philipp Reisner 已提交
901 902 903
	if (drbd_get_capacity(mdev->this_bdev) != size ||
	    drbd_bm_capacity(mdev) != size) {
		int err;
904
		err = drbd_bm_resize(mdev, size, !(flags & DDSF_NO_RESYNC));
P
Philipp Reisner 已提交
905 906 907 908 909 910 911 912 913 914 915
		if (unlikely(err)) {
			/* currently there is only one error: ENOMEM! */
			size = drbd_bm_capacity(mdev)>>1;
			if (size == 0) {
				dev_err(DEV, "OUT OF MEMORY! "
				    "Could not allocate bitmap!\n");
			} else {
				dev_err(DEV, "BM resizing failed. "
				    "Leaving size unchanged at size = %lu KB\n",
				    (unsigned long)size);
			}
916
			rv = DS_ERROR;
P
Philipp Reisner 已提交
917 918 919 920 921 922 923
		}
		/* racy, see comments above. */
		drbd_set_my_capacity(mdev, size);
		mdev->ldev->md.la_size_sect = size;
		dev_info(DEV, "size = %s (%llu KB)\n", ppsize(ppb, size>>1),
		     (unsigned long long)size>>1);
	}
924 925
	if (rv <= DS_ERROR)
		goto err_out;
P
Philipp Reisner 已提交
926

927
	la_size_changed = (la_size_sect != mdev->ldev->md.la_size_sect);
P
Philipp Reisner 已提交
928 929 930 931

	md_moved = prev_first_sect != drbd_md_first_sector(mdev->ldev)
		|| prev_size	   != mdev->ldev->md.md_size_sect;

932 933
	if (la_size_changed || md_moved || rs) {
		u32 prev_flags;
934

P
Philipp Reisner 已提交
935
		drbd_al_shrink(mdev); /* All extents inactive. */
936 937 938 939 940

		prev_flags = md->flags;
		md->flags &= ~MDF_PRIMARY_IND;
		drbd_md_write(mdev, buffer);

P
Philipp Reisner 已提交
941 942 943
		dev_info(DEV, "Writing the whole bitmap, %s\n",
			 la_size_changed && md_moved ? "size changed and md moved" :
			 la_size_changed ? "size changed" : "md moved");
944
		/* next line implicitly does drbd_suspend_io()+drbd_resume_io() */
945 946 947 948 949 950 951 952 953 954
		drbd_bitmap_io(mdev, md_moved ? &drbd_bm_write_all : &drbd_bm_write,
			       "size changed", BM_LOCKED_MASK);
		drbd_initialize_al(mdev, buffer);

		md->flags = prev_flags;
		drbd_md_write(mdev, buffer);

		if (rs)
			dev_info(DEV, "Changed AL layout to al-stripes = %d, al-stripe-size-kB = %d\n",
				 md->al_stripes, md->al_stripe_size_4k * 4);
P
Philipp Reisner 已提交
955 956
	}

957
	if (size > la_size_sect)
958
		rv = DS_GREW;
959
	if (size < la_size_sect)
960
		rv = DS_SHRUNK;
961 962 963 964 965 966 967 968 969 970 971

	if (0) {
	err_out:
		if (rs) {
			md->al_stripes = prev_al_stripes;
			md->al_stripe_size_4k = prev_al_stripe_size_4k;
			md->al_size_4k = (u64)prev_al_stripes * prev_al_stripe_size_4k;

			drbd_md_set_sector_offsets(mdev, mdev->ldev);
		}
	}
P
Philipp Reisner 已提交
972 973
	lc_unlock(mdev->act_log);
	wake_up(&mdev->al_wait);
974
	drbd_md_put_buffer(mdev);
P
Philipp Reisner 已提交
975 976 977 978 979 980
	drbd_resume_io(mdev);

	return rv;
}

sector_t
981 982
drbd_new_dev_size(struct drbd_conf *mdev, struct drbd_backing_dev *bdev,
		  sector_t u_size, int assume_peer_has_space)
P
Philipp Reisner 已提交
983 984
{
	sector_t p_size = mdev->p_size;   /* partner's disk size. */
985
	sector_t la_size_sect = bdev->md.la_size_sect; /* last agreed size. */
P
Philipp Reisner 已提交
986 987 988 989 990
	sector_t m_size; /* my size */
	sector_t size = 0;

	m_size = drbd_get_max_capacity(bdev);

991 992 993 994 995
	if (mdev->state.conn < C_CONNECTED && assume_peer_has_space) {
		dev_warn(DEV, "Resize while not connected was forced by the user!\n");
		p_size = m_size;
	}

P
Philipp Reisner 已提交
996 997 998
	if (p_size && m_size) {
		size = min_t(sector_t, p_size, m_size);
	} else {
999 1000
		if (la_size_sect) {
			size = la_size_sect;
P
Philipp Reisner 已提交
1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034
			if (m_size && m_size < size)
				size = m_size;
			if (p_size && p_size < size)
				size = p_size;
		} else {
			if (m_size)
				size = m_size;
			if (p_size)
				size = p_size;
		}
	}

	if (size == 0)
		dev_err(DEV, "Both nodes diskless!\n");

	if (u_size) {
		if (u_size > size)
			dev_err(DEV, "Requested disk size is too big (%lu > %lu)\n",
			    (unsigned long)u_size>>1, (unsigned long)size>>1);
		else
			size = u_size;
	}

	return size;
}

/**
 * drbd_check_al_size() - Ensures that the AL is of the right size
 * @mdev:	DRBD device.
 *
 * Returns -EBUSY if current al lru is still used, -ENOMEM when allocation
 * failed, and 0 on success. You should call drbd_md_sync() after you called
 * this function.
 */
1035
static int drbd_check_al_size(struct drbd_conf *mdev, struct disk_conf *dc)
P
Philipp Reisner 已提交
1036 1037 1038 1039 1040 1041 1042
{
	struct lru_cache *n, *t;
	struct lc_element *e;
	unsigned int in_use;
	int i;

	if (mdev->act_log &&
1043
	    mdev->act_log->nr_elements == dc->al_extents)
P
Philipp Reisner 已提交
1044 1045 1046 1047
		return 0;

	in_use = 0;
	t = mdev->act_log;
1048
	n = lc_create("act_log", drbd_al_ext_cache, AL_UPDATES_PER_TRANSACTION,
1049
		dc->al_extents, sizeof(struct lc_element), 0);
P
Philipp Reisner 已提交
1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079

	if (n == NULL) {
		dev_err(DEV, "Cannot allocate act_log lru!\n");
		return -ENOMEM;
	}
	spin_lock_irq(&mdev->al_lock);
	if (t) {
		for (i = 0; i < t->nr_elements; i++) {
			e = lc_element_by_index(t, i);
			if (e->refcnt)
				dev_err(DEV, "refcnt(%d)==%d\n",
				    e->lc_number, e->refcnt);
			in_use += e->refcnt;
		}
	}
	if (!in_use)
		mdev->act_log = n;
	spin_unlock_irq(&mdev->al_lock);
	if (in_use) {
		dev_err(DEV, "Activity log still in use!\n");
		lc_destroy(n);
		return -EBUSY;
	} else {
		if (t)
			lc_destroy(t);
	}
	drbd_md_mark_dirty(mdev); /* we changed mdev->act_log->nr_elemens */
	return 0;
}

1080
static void drbd_setup_queue_param(struct drbd_conf *mdev, unsigned int max_bio_size)
P
Philipp Reisner 已提交
1081 1082
{
	struct request_queue * const q = mdev->rq_queue;
1083 1084
	unsigned int max_hw_sectors = max_bio_size >> 9;
	unsigned int max_segments = 0;
1085 1086 1087 1088 1089

	if (get_ldev_if_state(mdev, D_ATTACHING)) {
		struct request_queue * const b = mdev->ldev->backing_bdev->bd_disk->queue;

		max_hw_sectors = min(queue_max_hw_sectors(b), max_bio_size >> 9);
P
Philipp Reisner 已提交
1090 1091 1092
		rcu_read_lock();
		max_segments = rcu_dereference(mdev->ldev->disk_conf)->max_bio_bvecs;
		rcu_read_unlock();
1093 1094
		put_ldev(mdev);
	}
P
Philipp Reisner 已提交
1095 1096

	blk_queue_logical_block_size(q, 512);
1097 1098 1099 1100
	blk_queue_max_hw_sectors(q, max_hw_sectors);
	/* This is the workaround for "bio would need to, but cannot, be split" */
	blk_queue_max_segments(q, max_segments ? max_segments : BLK_MAX_SEGMENTS);
	blk_queue_segment_boundary(q, PAGE_CACHE_SIZE-1);
P
Philipp Reisner 已提交
1101

1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118
	if (get_ldev_if_state(mdev, D_ATTACHING)) {
		struct request_queue * const b = mdev->ldev->backing_bdev->bd_disk->queue;

		blk_queue_stack_limits(q, b);

		if (q->backing_dev_info.ra_pages != b->backing_dev_info.ra_pages) {
			dev_info(DEV, "Adjusting my ra_pages to backing device's (%lu -> %lu)\n",
				 q->backing_dev_info.ra_pages,
				 b->backing_dev_info.ra_pages);
			q->backing_dev_info.ra_pages = b->backing_dev_info.ra_pages;
		}
		put_ldev(mdev);
	}
}

void drbd_reconsider_max_bio_size(struct drbd_conf *mdev)
{
1119
	unsigned int now, new, local, peer;
1120 1121 1122 1123

	now = queue_max_hw_sectors(mdev->rq_queue) << 9;
	local = mdev->local_max_bio_size; /* Eventually last known value, from volatile memory */
	peer = mdev->peer_max_bio_size; /* Eventually last known value, from meta data */
P
Philipp Reisner 已提交
1124

1125 1126 1127 1128
	if (get_ldev_if_state(mdev, D_ATTACHING)) {
		local = queue_max_hw_sectors(mdev->ldev->backing_bdev->bd_disk->queue) << 9;
		mdev->local_max_bio_size = local;
		put_ldev(mdev);
P
Philipp Reisner 已提交
1129
	}
1130
	local = min(local, DRBD_MAX_BIO_SIZE);
1131 1132 1133 1134 1135

	/* We may ignore peer limits if the peer is modern enough.
	   Because new from 8.3.8 onwards the peer can use multiple
	   BIOs for a single peer_request */
	if (mdev->state.conn >= C_CONNECTED) {
1136
		if (mdev->tconn->agreed_pro_version < 94)
1137
			peer = min( mdev->peer_max_bio_size, DRBD_MAX_SIZE_H80_PACKET);
1138
			/* Correct old drbd (up to 8.3.7) if it believes it can do more than 32KiB */
1139
		else if (mdev->tconn->agreed_pro_version == 94)
1140
			peer = DRBD_MAX_SIZE_H80_PACKET;
1141 1142 1143
		else if (mdev->tconn->agreed_pro_version < 100)
			peer = DRBD_MAX_BIO_SIZE_P95;  /* drbd 8.3.8 onwards, before 8.4.0 */
		else
1144 1145 1146
			peer = DRBD_MAX_BIO_SIZE;
	}

1147
	new = min(local, peer);
1148 1149

	if (mdev->state.role == R_PRIMARY && new < now)
1150
		dev_err(DEV, "ASSERT FAILED new < now; (%u < %u)\n", new, now);
1151 1152 1153 1154 1155

	if (new != now)
		dev_info(DEV, "max BIO size = %u\n", new);

	drbd_setup_queue_param(mdev, new);
P
Philipp Reisner 已提交
1156 1157
}

1158
/* Starts the worker thread */
1159
static void conn_reconfig_start(struct drbd_tconn *tconn)
P
Philipp Reisner 已提交
1160
{
1161 1162
	drbd_thread_start(&tconn->worker);
	conn_flush_workqueue(tconn);
P
Philipp Reisner 已提交
1163 1164
}

1165
/* if still unconfigured, stops worker again. */
1166
static void conn_reconfig_done(struct drbd_tconn *tconn)
P
Philipp Reisner 已提交
1167
{
L
Lars Ellenberg 已提交
1168
	bool stop_threads;
1169
	spin_lock_irq(&tconn->req_lock);
1170 1171
	stop_threads = conn_all_vols_unconf(tconn) &&
		tconn->cstate == C_STANDALONE;
1172
	spin_unlock_irq(&tconn->req_lock);
L
Lars Ellenberg 已提交
1173 1174
	if (stop_threads) {
		/* asender is implicitly stopped by receiver
1175
		 * in conn_disconnect() */
L
Lars Ellenberg 已提交
1176 1177 1178
		drbd_thread_stop(&tconn->receiver);
		drbd_thread_stop(&tconn->worker);
	}
P
Philipp Reisner 已提交
1179 1180
}

1181 1182 1183 1184 1185
/* Make sure IO is suspended before calling this function(). */
static void drbd_suspend_al(struct drbd_conf *mdev)
{
	int s = 0;

1186
	if (!lc_try_lock(mdev->act_log)) {
1187 1188 1189 1190
		dev_warn(DEV, "Failed to lock al in drbd_suspend_al()\n");
		return;
	}

1191
	drbd_al_shrink(mdev);
1192
	spin_lock_irq(&mdev->tconn->req_lock);
1193 1194
	if (mdev->state.conn < C_CONNECTED)
		s = !test_and_set_bit(AL_SUSPENDED, &mdev->flags);
1195
	spin_unlock_irq(&mdev->tconn->req_lock);
1196
	lc_unlock(mdev->act_log);
1197 1198 1199 1200 1201

	if (s)
		dev_info(DEV, "Suspended AL updates\n");
}

1202 1203 1204 1205 1206 1207 1208

static bool should_set_defaults(struct genl_info *info)
{
	unsigned flags = ((struct drbd_genlmsghdr*)info->userhdr)->flags;
	return 0 != (flags & DRBD_GENL_F_SET_DEFAULTS);
}

1209
static unsigned int drbd_al_extents_max(struct drbd_backing_dev *bdev)
1210
{
1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227
	/* This is limited by 16 bit "slot" numbers,
	 * and by available on-disk context storage.
	 *
	 * Also (u16)~0 is special (denotes a "free" extent).
	 *
	 * One transaction occupies one 4kB on-disk block,
	 * we have n such blocks in the on disk ring buffer,
	 * the "current" transaction may fail (n-1),
	 * and there is 919 slot numbers context information per transaction.
	 *
	 * 72 transaction blocks amounts to more than 2**16 context slots,
	 * so cap there first.
	 */
	const unsigned int max_al_nr = DRBD_AL_EXTENTS_MAX;
	const unsigned int sufficient_on_disk =
		(max_al_nr + AL_CONTEXT_PER_TRANSACTION -1)
		/AL_CONTEXT_PER_TRANSACTION;
1228

1229 1230 1231 1232 1233 1234
	unsigned int al_size_4k = bdev->md.al_size_4k;

	if (al_size_4k > sufficient_on_disk)
		return max_al_nr;

	return (al_size_4k - 1) * AL_CONTEXT_PER_TRANSACTION;
1235 1236
}

1237 1238 1239 1240
int drbd_adm_disk_opts(struct sk_buff *skb, struct genl_info *info)
{
	enum drbd_ret_code retcode;
	struct drbd_conf *mdev;
P
Philipp Reisner 已提交
1241
	struct disk_conf *new_disk_conf, *old_disk_conf;
P
Philipp Reisner 已提交
1242
	struct fifo_buffer *old_plan = NULL, *new_plan = NULL;
1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259
	int err, fifo_size;

	retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
	if (!adm_ctx.reply_skb)
		return retcode;
	if (retcode != NO_ERROR)
		goto out;

	mdev = adm_ctx.mdev;

	/* we also need a disk
	 * to change the options on */
	if (!get_ldev(mdev)) {
		retcode = ERR_NO_DISK;
		goto out;
	}

P
Philipp Reisner 已提交
1260
	new_disk_conf = kmalloc(sizeof(struct disk_conf), GFP_KERNEL);
1261
	if (!new_disk_conf) {
1262 1263 1264 1265
		retcode = ERR_NOMEM;
		goto fail;
	}

P
Philipp Reisner 已提交
1266 1267 1268
	mutex_lock(&mdev->tconn->conf_update);
	old_disk_conf = mdev->ldev->disk_conf;
	*new_disk_conf = *old_disk_conf;
1269
	if (should_set_defaults(info))
1270
		set_disk_conf_defaults(new_disk_conf);
1271

1272
	err = disk_conf_from_attrs_for_change(new_disk_conf, info);
1273
	if (err && err != -ENOMSG) {
1274 1275 1276 1277
		retcode = ERR_MANDATORY_TAG;
		drbd_msg_put_info(from_attrs_err_to_txt(err));
	}

1278 1279
	if (!expect(new_disk_conf->resync_rate >= 1))
		new_disk_conf->resync_rate = 1;
1280

1281 1282 1283 1284 1285 1286 1287
	if (new_disk_conf->al_extents < DRBD_AL_EXTENTS_MIN)
		new_disk_conf->al_extents = DRBD_AL_EXTENTS_MIN;
	if (new_disk_conf->al_extents > drbd_al_extents_max(mdev->ldev))
		new_disk_conf->al_extents = drbd_al_extents_max(mdev->ldev);

	if (new_disk_conf->c_plan_ahead > DRBD_C_PLAN_AHEAD_MAX)
		new_disk_conf->c_plan_ahead = DRBD_C_PLAN_AHEAD_MAX;
1288

1289
	fifo_size = (new_disk_conf->c_plan_ahead * 10 * SLEEP_TIME) / HZ;
1290
	if (fifo_size != mdev->rs_plan_s->size) {
P
Philipp Reisner 已提交
1291 1292
		new_plan = fifo_alloc(fifo_size);
		if (!new_plan) {
1293 1294
			dev_err(DEV, "kmalloc of fifo_buffer failed");
			retcode = ERR_NOMEM;
P
Philipp Reisner 已提交
1295
			goto fail_unlock;
1296 1297 1298
		}
	}

1299
	drbd_suspend_io(mdev);
1300 1301
	wait_event(mdev->al_wait, lc_try_lock(mdev->act_log));
	drbd_al_shrink(mdev);
1302
	err = drbd_check_al_size(mdev, new_disk_conf);
1303 1304
	lc_unlock(mdev->act_log);
	wake_up(&mdev->al_wait);
1305
	drbd_resume_io(mdev);
1306 1307 1308

	if (err) {
		retcode = ERR_NOMEM;
P
Philipp Reisner 已提交
1309
		goto fail_unlock;
1310 1311
	}

1312
	write_lock_irq(&global_state_lock);
1313
	retcode = drbd_resync_after_valid(mdev, new_disk_conf->resync_after);
1314
	if (retcode == NO_ERROR) {
P
Philipp Reisner 已提交
1315
		rcu_assign_pointer(mdev->ldev->disk_conf, new_disk_conf);
1316
		drbd_resync_after_changed(mdev);
1317 1318
	}
	write_unlock_irq(&global_state_lock);
1319

P
Philipp Reisner 已提交
1320 1321
	if (retcode != NO_ERROR)
		goto fail_unlock;
1322

P
Philipp Reisner 已提交
1323 1324 1325
	if (new_plan) {
		old_plan = mdev->rs_plan_s;
		rcu_assign_pointer(mdev->rs_plan_s, new_plan);
1326 1327
	}

P
Philipp Reisner 已提交
1328
	mutex_unlock(&mdev->tconn->conf_update);
1329

P
Philipp Reisner 已提交
1330
	if (new_disk_conf->al_updates)
1331
		mdev->ldev->md.flags &= ~MDF_AL_DISABLED;
P
Philipp Reisner 已提交
1332 1333 1334
	else
		mdev->ldev->md.flags |= MDF_AL_DISABLED;

1335 1336 1337 1338 1339
	if (new_disk_conf->md_flushes)
		clear_bit(MD_NO_FUA, &mdev->flags);
	else
		set_bit(MD_NO_FUA, &mdev->flags);

1340 1341
	drbd_bump_write_ordering(mdev->tconn, WO_bdev_flush);

P
Philipp Reisner 已提交
1342
	drbd_md_sync(mdev);
1343 1344 1345 1346

	if (mdev->state.conn >= C_CONNECTED)
		drbd_send_sync_param(mdev);

P
Philipp Reisner 已提交
1347 1348
	synchronize_rcu();
	kfree(old_disk_conf);
P
Philipp Reisner 已提交
1349
	kfree(old_plan);
1350
	mod_timer(&mdev->request_timer, jiffies + HZ);
P
Philipp Reisner 已提交
1351 1352 1353 1354
	goto success;

fail_unlock:
	mutex_unlock(&mdev->tconn->conf_update);
1355
 fail:
1356
	kfree(new_disk_conf);
P
Philipp Reisner 已提交
1357
	kfree(new_plan);
P
Philipp Reisner 已提交
1358 1359
success:
	put_ldev(mdev);
1360 1361 1362 1363 1364
 out:
	drbd_adm_finish(info, retcode);
	return 0;
}

1365
int drbd_adm_attach(struct sk_buff *skb, struct genl_info *info)
P
Philipp Reisner 已提交
1366
{
1367 1368
	struct drbd_conf *mdev;
	int err;
1369
	enum drbd_ret_code retcode;
P
Philipp Reisner 已提交
1370 1371 1372 1373
	enum determine_dev_size dd;
	sector_t max_possible_sectors;
	sector_t min_md_device_sectors;
	struct drbd_backing_dev *nbc = NULL; /* new_backing_conf */
P
Philipp Reisner 已提交
1374
	struct disk_conf *new_disk_conf = NULL;
1375
	struct block_device *bdev;
P
Philipp Reisner 已提交
1376
	struct lru_cache *resync_lru = NULL;
1377
	struct fifo_buffer *new_plan = NULL;
P
Philipp Reisner 已提交
1378
	union drbd_state ns, os;
1379
	enum drbd_state_rv rv;
1380
	struct net_conf *nc;
P
Philipp Reisner 已提交
1381

1382 1383 1384 1385
	retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
	if (!adm_ctx.reply_skb)
		return retcode;
	if (retcode != NO_ERROR)
1386
		goto finish;
P
Philipp Reisner 已提交
1387

1388
	mdev = adm_ctx.mdev;
1389
	conn_reconfig_start(mdev->tconn);
P
Philipp Reisner 已提交
1390 1391 1392 1393 1394 1395

	/* if you want to reconfigure, please tear down first */
	if (mdev->state.disk > D_DISKLESS) {
		retcode = ERR_DISK_CONFIGURED;
		goto fail;
	}
1396 1397 1398 1399 1400
	/* It may just now have detached because of IO error.  Make sure
	 * drbd_ldev_destroy is done already, we may end up here very fast,
	 * e.g. if someone calls attach from the on-io-error handler,
	 * to realize a "hot spare" feature (not that I'd recommend that) */
	wait_event(mdev->misc_wait, !atomic_read(&mdev->local_cnt));
P
Philipp Reisner 已提交
1401

1402
	/* make sure there is no leftover from previous force-detach attempts */
1403
	clear_bit(FORCE_DETACH, &mdev->flags);
1404 1405
	clear_bit(WAS_IO_ERROR, &mdev->flags);
	clear_bit(WAS_READ_ERROR, &mdev->flags);
1406

1407 1408 1409 1410 1411
	/* and no leftover from previously aborted resync or verify, either */
	mdev->rs_total = 0;
	mdev->rs_failed = 0;
	atomic_set(&mdev->rs_pending_cnt, 0);

1412
	/* allocation not in the IO path, drbdsetup context */
P
Philipp Reisner 已提交
1413 1414 1415 1416 1417
	nbc = kzalloc(sizeof(struct drbd_backing_dev), GFP_KERNEL);
	if (!nbc) {
		retcode = ERR_NOMEM;
		goto fail;
	}
1418 1419
	spin_lock_init(&nbc->md.uuid_lock);

P
Philipp Reisner 已提交
1420 1421 1422
	new_disk_conf = kzalloc(sizeof(struct disk_conf), GFP_KERNEL);
	if (!new_disk_conf) {
		retcode = ERR_NOMEM;
P
Philipp Reisner 已提交
1423 1424
		goto fail;
	}
P
Philipp Reisner 已提交
1425
	nbc->disk_conf = new_disk_conf;
P
Philipp Reisner 已提交
1426

P
Philipp Reisner 已提交
1427 1428
	set_disk_conf_defaults(new_disk_conf);
	err = disk_conf_from_attrs(new_disk_conf, info);
1429
	if (err) {
P
Philipp Reisner 已提交
1430
		retcode = ERR_MANDATORY_TAG;
1431
		drbd_msg_put_info(from_attrs_err_to_txt(err));
P
Philipp Reisner 已提交
1432 1433 1434
		goto fail;
	}

1435 1436
	if (new_disk_conf->c_plan_ahead > DRBD_C_PLAN_AHEAD_MAX)
		new_disk_conf->c_plan_ahead = DRBD_C_PLAN_AHEAD_MAX;
1437

1438 1439 1440 1441 1442 1443
	new_plan = fifo_alloc((new_disk_conf->c_plan_ahead * 10 * SLEEP_TIME) / HZ);
	if (!new_plan) {
		retcode = ERR_NOMEM;
		goto fail;
	}

P
Philipp Reisner 已提交
1444
	if (new_disk_conf->meta_dev_idx < DRBD_MD_INDEX_FLEX_INT) {
P
Philipp Reisner 已提交
1445 1446 1447 1448
		retcode = ERR_MD_IDX_INVALID;
		goto fail;
	}

1449 1450 1451 1452 1453 1454
	write_lock_irq(&global_state_lock);
	retcode = drbd_resync_after_valid(mdev, new_disk_conf->resync_after);
	write_unlock_irq(&global_state_lock);
	if (retcode != NO_ERROR)
		goto fail;

1455 1456 1457
	rcu_read_lock();
	nc = rcu_dereference(mdev->tconn->net_conf);
	if (nc) {
P
Philipp Reisner 已提交
1458
		if (new_disk_conf->fencing == FP_STONITH && nc->wire_protocol == DRBD_PROT_A) {
1459
			rcu_read_unlock();
1460 1461 1462 1463
			retcode = ERR_STONITH_AND_PROT_A;
			goto fail;
		}
	}
1464
	rcu_read_unlock();
1465

P
Philipp Reisner 已提交
1466
	bdev = blkdev_get_by_path(new_disk_conf->backing_dev,
1467
				  FMODE_READ | FMODE_WRITE | FMODE_EXCL, mdev);
1468
	if (IS_ERR(bdev)) {
P
Philipp Reisner 已提交
1469
		dev_err(DEV, "open(\"%s\") failed with %ld\n", new_disk_conf->backing_dev,
1470
			PTR_ERR(bdev));
P
Philipp Reisner 已提交
1471 1472 1473
		retcode = ERR_OPEN_DISK;
		goto fail;
	}
1474 1475 1476 1477 1478 1479 1480 1481 1482 1483
	nbc->backing_bdev = bdev;

	/*
	 * meta_dev_idx >= 0: external fixed size, possibly multiple
	 * drbd sharing one meta device.  TODO in that case, paranoia
	 * check that [md_bdev, meta_dev_idx] is not yet used by some
	 * other drbd minor!  (if you use drbd.conf + drbdadm, that
	 * should check it for you already; but if you don't, or
	 * someone fooled it, we need to double check here)
	 */
P
Philipp Reisner 已提交
1484
	bdev = blkdev_get_by_path(new_disk_conf->meta_dev,
1485
				  FMODE_READ | FMODE_WRITE | FMODE_EXCL,
P
Philipp Reisner 已提交
1486
				  (new_disk_conf->meta_dev_idx < 0) ?
1487
				  (void *)mdev : (void *)drbd_m_holder);
1488
	if (IS_ERR(bdev)) {
P
Philipp Reisner 已提交
1489
		dev_err(DEV, "open(\"%s\") failed with %ld\n", new_disk_conf->meta_dev,
1490
			PTR_ERR(bdev));
P
Philipp Reisner 已提交
1491 1492 1493
		retcode = ERR_OPEN_MD_DISK;
		goto fail;
	}
1494
	nbc->md_bdev = bdev;
P
Philipp Reisner 已提交
1495

1496
	if ((nbc->backing_bdev == nbc->md_bdev) !=
P
Philipp Reisner 已提交
1497 1498
	    (new_disk_conf->meta_dev_idx == DRBD_MD_INDEX_INTERNAL ||
	     new_disk_conf->meta_dev_idx == DRBD_MD_INDEX_FLEX_INT)) {
1499
		retcode = ERR_MD_IDX_INVALID;
P
Philipp Reisner 已提交
1500 1501 1502 1503
		goto fail;
	}

	resync_lru = lc_create("resync", drbd_bm_ext_cache,
1504
			1, 61, sizeof(struct bm_extent),
P
Philipp Reisner 已提交
1505 1506 1507
			offsetof(struct bm_extent, lce));
	if (!resync_lru) {
		retcode = ERR_NOMEM;
1508
		goto fail;
P
Philipp Reisner 已提交
1509 1510
	}

1511 1512 1513 1514 1515
	/* Read our meta data super block early.
	 * This also sets other on-disk offsets. */
	retcode = drbd_md_read(mdev, nbc);
	if (retcode != NO_ERROR)
		goto fail;
P
Philipp Reisner 已提交
1516

1517 1518 1519 1520 1521
	if (new_disk_conf->al_extents < DRBD_AL_EXTENTS_MIN)
		new_disk_conf->al_extents = DRBD_AL_EXTENTS_MIN;
	if (new_disk_conf->al_extents > drbd_al_extents_max(nbc))
		new_disk_conf->al_extents = drbd_al_extents_max(nbc);

P
Philipp Reisner 已提交
1522
	if (drbd_get_max_capacity(nbc) < new_disk_conf->disk_size) {
P
Philipp Reisner 已提交
1523 1524
		dev_err(DEV, "max capacity %llu smaller than disk size %llu\n",
			(unsigned long long) drbd_get_max_capacity(nbc),
P
Philipp Reisner 已提交
1525
			(unsigned long long) new_disk_conf->disk_size);
L
Lars Ellenberg 已提交
1526
		retcode = ERR_DISK_TOO_SMALL;
1527
		goto fail;
P
Philipp Reisner 已提交
1528 1529
	}

P
Philipp Reisner 已提交
1530
	if (new_disk_conf->meta_dev_idx < 0) {
P
Philipp Reisner 已提交
1531 1532 1533 1534 1535
		max_possible_sectors = DRBD_MAX_SECTORS_FLEX;
		/* at least one MB, otherwise it does not make sense */
		min_md_device_sectors = (2<<10);
	} else {
		max_possible_sectors = DRBD_MAX_SECTORS;
1536
		min_md_device_sectors = MD_128MB_SECT * (new_disk_conf->meta_dev_idx + 1);
P
Philipp Reisner 已提交
1537 1538 1539
	}

	if (drbd_get_capacity(nbc->md_bdev) < min_md_device_sectors) {
L
Lars Ellenberg 已提交
1540
		retcode = ERR_MD_DISK_TOO_SMALL;
P
Philipp Reisner 已提交
1541 1542 1543
		dev_warn(DEV, "refusing attach: md-device too small, "
		     "at least %llu sectors needed for this meta-disk type\n",
		     (unsigned long long) min_md_device_sectors);
1544
		goto fail;
P
Philipp Reisner 已提交
1545 1546 1547 1548 1549 1550
	}

	/* Make sure the new disk is big enough
	 * (we may currently be R_PRIMARY with no local disk...) */
	if (drbd_get_max_capacity(nbc) <
	    drbd_get_capacity(mdev->this_bdev)) {
L
Lars Ellenberg 已提交
1551
		retcode = ERR_DISK_TOO_SMALL;
1552
		goto fail;
P
Philipp Reisner 已提交
1553 1554 1555 1556
	}

	nbc->known_size = drbd_get_capacity(nbc->backing_bdev);

1557 1558 1559 1560
	if (nbc->known_size > max_possible_sectors) {
		dev_warn(DEV, "==> truncating very big lower level device "
			"to currently maximum possible %llu sectors <==\n",
			(unsigned long long) max_possible_sectors);
P
Philipp Reisner 已提交
1561
		if (new_disk_conf->meta_dev_idx >= 0)
1562 1563 1564 1565
			dev_warn(DEV, "==>> using internal or flexible "
				      "meta data may help <<==\n");
	}

P
Philipp Reisner 已提交
1566 1567
	drbd_suspend_io(mdev);
	/* also wait for the last barrier ack. */
1568 1569 1570 1571 1572 1573
	/* FIXME see also https://daiquiri.linbit/cgi-bin/bugzilla/show_bug.cgi?id=171
	 * We need a way to either ignore barrier acks for barriers sent before a device
	 * was attached, or a way to wait for all pending barrier acks to come in.
	 * As barriers are counted per resource,
	 * we'd need to suspend io on all devices of a resource.
	 */
1574
	wait_event(mdev->misc_wait, !atomic_read(&mdev->ap_pending_cnt) || drbd_suspended(mdev));
P
Philipp Reisner 已提交
1575 1576 1577
	/* and for any other previously queued work */
	drbd_flush_workqueue(mdev);

1578 1579
	rv = _drbd_request_state(mdev, NS(disk, D_ATTACHING), CS_VERBOSE);
	retcode = rv;  /* FIXME: Type mismatch. */
P
Philipp Reisner 已提交
1580
	drbd_resume_io(mdev);
1581
	if (rv < SS_SUCCESS)
1582
		goto fail;
P
Philipp Reisner 已提交
1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603

	if (!get_ldev_if_state(mdev, D_ATTACHING))
		goto force_diskless;

	if (!mdev->bitmap) {
		if (drbd_bm_init(mdev)) {
			retcode = ERR_NOMEM;
			goto force_diskless_dec;
		}
	}

	if (mdev->state.conn < C_CONNECTED &&
	    mdev->state.role == R_PRIMARY &&
	    (mdev->ed_uuid & ~((u64)1)) != (nbc->md.uuid[UI_CURRENT] & ~((u64)1))) {
		dev_err(DEV, "Can only attach to data with current UUID=%016llX\n",
		    (unsigned long long)mdev->ed_uuid);
		retcode = ERR_DATA_NOT_CURRENT;
		goto force_diskless_dec;
	}

	/* Since we are diskless, fix the activity log first... */
P
Philipp Reisner 已提交
1604
	if (drbd_check_al_size(mdev, new_disk_conf)) {
P
Philipp Reisner 已提交
1605 1606 1607 1608 1609 1610
		retcode = ERR_NOMEM;
		goto force_diskless_dec;
	}

	/* Prevent shrinking of consistent devices ! */
	if (drbd_md_test_flag(nbc, MDF_CONSISTENT) &&
P
Philipp Reisner 已提交
1611
	    drbd_new_dev_size(mdev, nbc, nbc->disk_conf->disk_size, 0) < nbc->md.la_size_sect) {
P
Philipp Reisner 已提交
1612
		dev_warn(DEV, "refusing to truncate a consistent device\n");
L
Lars Ellenberg 已提交
1613
		retcode = ERR_DISK_TOO_SMALL;
P
Philipp Reisner 已提交
1614 1615 1616 1617 1618
		goto force_diskless_dec;
	}

	/* Reset the "barriers don't work" bits here, then force meta data to
	 * be written, to ensure we determine if barriers are supported. */
1619
	if (new_disk_conf->md_flushes)
1620
		clear_bit(MD_NO_FUA, &mdev->flags);
P
Philipp Reisner 已提交
1621
	else
1622
		set_bit(MD_NO_FUA, &mdev->flags);
P
Philipp Reisner 已提交
1623 1624 1625 1626 1627 1628 1629 1630

	/* Point of no return reached.
	 * Devices and memory are no longer released by error cleanup below.
	 * now mdev takes over responsibility, and the state engine should
	 * clean it up somewhere.  */
	D_ASSERT(mdev->ldev == NULL);
	mdev->ldev = nbc;
	mdev->resync = resync_lru;
1631
	mdev->rs_plan_s = new_plan;
P
Philipp Reisner 已提交
1632 1633
	nbc = NULL;
	resync_lru = NULL;
P
Philipp Reisner 已提交
1634
	new_disk_conf = NULL;
1635
	new_plan = NULL;
P
Philipp Reisner 已提交
1636

1637
	drbd_bump_write_ordering(mdev->tconn, WO_bdev_flush);
P
Philipp Reisner 已提交
1638 1639 1640 1641 1642 1643

	if (drbd_md_test_flag(mdev->ldev, MDF_CRASHED_PRIMARY))
		set_bit(CRASHED_PRIMARY, &mdev->flags);
	else
		clear_bit(CRASHED_PRIMARY, &mdev->flags);

1644
	if (drbd_md_test_flag(mdev->ldev, MDF_PRIMARY_IND) &&
1645
	    !(mdev->state.role == R_PRIMARY && mdev->tconn->susp_nod))
P
Philipp Reisner 已提交
1646 1647 1648 1649 1650 1651 1652
		set_bit(CRASHED_PRIMARY, &mdev->flags);

	mdev->send_cnt = 0;
	mdev->recv_cnt = 0;
	mdev->read_cnt = 0;
	mdev->writ_cnt = 0;

1653
	drbd_reconsider_max_bio_size(mdev);
P
Philipp Reisner 已提交
1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674

	/* If I am currently not R_PRIMARY,
	 * but meta data primary indicator is set,
	 * I just now recover from a hard crash,
	 * and have been R_PRIMARY before that crash.
	 *
	 * Now, if I had no connection before that crash
	 * (have been degraded R_PRIMARY), chances are that
	 * I won't find my peer now either.
	 *
	 * In that case, and _only_ in that case,
	 * we use the degr-wfc-timeout instead of the default,
	 * so we can automatically recover from a crash of a
	 * degraded but active "cluster" after a certain timeout.
	 */
	clear_bit(USE_DEGR_WFC_T, &mdev->flags);
	if (mdev->state.role != R_PRIMARY &&
	     drbd_md_test_flag(mdev->ldev, MDF_PRIMARY_IND) &&
	    !drbd_md_test_flag(mdev->ldev, MDF_CONNECTED_IND))
		set_bit(USE_DEGR_WFC_T, &mdev->flags);

1675 1676
	dd = drbd_determine_dev_size(mdev, 0, NULL);
	if (dd <= DS_ERROR) {
P
Philipp Reisner 已提交
1677 1678
		retcode = ERR_NOMEM_BITMAP;
		goto force_diskless_dec;
1679
	} else if (dd == DS_GREW)
P
Philipp Reisner 已提交
1680 1681
		set_bit(RESYNC_AFTER_NEG, &mdev->flags);

P
Philipp Reisner 已提交
1682 1683 1684
	if (drbd_md_test_flag(mdev->ldev, MDF_FULL_SYNC) ||
	    (test_bit(CRASHED_PRIMARY, &mdev->flags) &&
	     drbd_md_test_flag(mdev->ldev, MDF_AL_DISABLED))) {
P
Philipp Reisner 已提交
1685 1686
		dev_info(DEV, "Assuming that all blocks are out of sync "
		     "(aka FullSync)\n");
1687 1688
		if (drbd_bitmap_io(mdev, &drbd_bmio_set_n_write,
			"set_n_write from attaching", BM_LOCKED_MASK)) {
P
Philipp Reisner 已提交
1689 1690 1691 1692
			retcode = ERR_IO_MD_DISK;
			goto force_diskless_dec;
		}
	} else {
1693
		if (drbd_bitmap_io(mdev, &drbd_bm_read,
1694
			"read from attaching", BM_LOCKED_MASK)) {
1695 1696 1697
			retcode = ERR_IO_MD_DISK;
			goto force_diskless_dec;
		}
P
Philipp Reisner 已提交
1698 1699
	}

1700 1701 1702
	if (_drbd_bm_total_weight(mdev) == drbd_bm_bits(mdev))
		drbd_suspend_al(mdev); /* IO is still suspended here... */

1703
	spin_lock_irq(&mdev->tconn->req_lock);
1704 1705
	os = drbd_read_state(mdev);
	ns = os;
P
Philipp Reisner 已提交
1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722
	/* If MDF_CONSISTENT is not set go into inconsistent state,
	   otherwise investigate MDF_WasUpToDate...
	   If MDF_WAS_UP_TO_DATE is not set go into D_OUTDATED disk state,
	   otherwise into D_CONSISTENT state.
	*/
	if (drbd_md_test_flag(mdev->ldev, MDF_CONSISTENT)) {
		if (drbd_md_test_flag(mdev->ldev, MDF_WAS_UP_TO_DATE))
			ns.disk = D_CONSISTENT;
		else
			ns.disk = D_OUTDATED;
	} else {
		ns.disk = D_INCONSISTENT;
	}

	if (drbd_md_test_flag(mdev->ldev, MDF_PEER_OUT_DATED))
		ns.pdsk = D_OUTDATED;

P
Philipp Reisner 已提交
1723 1724 1725
	rcu_read_lock();
	if (ns.disk == D_CONSISTENT &&
	    (ns.pdsk == D_OUTDATED || rcu_dereference(mdev->ldev->disk_conf)->fencing == FP_DONT_CARE))
P
Philipp Reisner 已提交
1726 1727 1728 1729 1730 1731 1732
		ns.disk = D_UP_TO_DATE;

	/* All tests on MDF_PRIMARY_IND, MDF_CONNECTED_IND,
	   MDF_CONSISTENT and MDF_WAS_UP_TO_DATE must happen before
	   this point, because drbd_request_state() modifies these
	   flags. */

P
Philipp Reisner 已提交
1733
	if (rcu_dereference(mdev->ldev->disk_conf)->al_updates)
1734
		mdev->ldev->md.flags &= ~MDF_AL_DISABLED;
P
Philipp Reisner 已提交
1735 1736 1737 1738 1739
	else
		mdev->ldev->md.flags |= MDF_AL_DISABLED;

	rcu_read_unlock();

P
Philipp Reisner 已提交
1740 1741 1742 1743 1744 1745
	/* In case we are C_CONNECTED postpone any decision on the new disk
	   state after the negotiation phase. */
	if (mdev->state.conn == C_CONNECTED) {
		mdev->new_state_tmp.i = ns.i;
		ns.i = os.i;
		ns.disk = D_NEGOTIATING;
1746 1747 1748 1749 1750 1751

		/* We expect to receive up-to-date UUIDs soon.
		   To avoid a race in receive_state, free p_uuid while
		   holding req_lock. I.e. atomic with the state change */
		kfree(mdev->p_uuid);
		mdev->p_uuid = NULL;
P
Philipp Reisner 已提交
1752 1753 1754
	}

	rv = _drbd_set_state(mdev, ns, CS_VERBOSE, NULL);
1755
	spin_unlock_irq(&mdev->tconn->req_lock);
P
Philipp Reisner 已提交
1756 1757 1758 1759

	if (rv < SS_SUCCESS)
		goto force_diskless_dec;

1760 1761
	mod_timer(&mdev->request_timer, jiffies + HZ);

P
Philipp Reisner 已提交
1762 1763 1764 1765 1766 1767 1768 1769 1770 1771
	if (mdev->state.role == R_PRIMARY)
		mdev->ldev->md.uuid[UI_CURRENT] |=  (u64)1;
	else
		mdev->ldev->md.uuid[UI_CURRENT] &= ~(u64)1;

	drbd_md_mark_dirty(mdev);
	drbd_md_sync(mdev);

	kobject_uevent(&disk_to_dev(mdev->vdisk)->kobj, KOBJ_CHANGE);
	put_ldev(mdev);
1772
	conn_reconfig_done(mdev->tconn);
1773
	drbd_adm_finish(info, retcode);
P
Philipp Reisner 已提交
1774 1775 1776 1777 1778
	return 0;

 force_diskless_dec:
	put_ldev(mdev);
 force_diskless:
1779
	drbd_force_state(mdev, NS(disk, D_DISKLESS));
P
Philipp Reisner 已提交
1780 1781
	drbd_md_sync(mdev);
 fail:
1782
	conn_reconfig_done(mdev->tconn);
P
Philipp Reisner 已提交
1783
	if (nbc) {
1784 1785 1786 1787 1788 1789
		if (nbc->backing_bdev)
			blkdev_put(nbc->backing_bdev,
				   FMODE_READ | FMODE_WRITE | FMODE_EXCL);
		if (nbc->md_bdev)
			blkdev_put(nbc->md_bdev,
				   FMODE_READ | FMODE_WRITE | FMODE_EXCL);
P
Philipp Reisner 已提交
1790 1791
		kfree(nbc);
	}
P
Philipp Reisner 已提交
1792
	kfree(new_disk_conf);
P
Philipp Reisner 已提交
1793
	lc_destroy(resync_lru);
1794
	kfree(new_plan);
P
Philipp Reisner 已提交
1795

1796
 finish:
1797
	drbd_adm_finish(info, retcode);
P
Philipp Reisner 已提交
1798 1799 1800
	return 0;
}

1801
static int adm_detach(struct drbd_conf *mdev, int force)
P
Philipp Reisner 已提交
1802
{
1803
	enum drbd_state_rv retcode;
L
Lars Ellenberg 已提交
1804
	int ret;
1805

1806
	if (force) {
1807
		set_bit(FORCE_DETACH, &mdev->flags);
1808
		drbd_force_state(mdev, NS(disk, D_FAILED));
1809
		retcode = SS_SUCCESS;
1810 1811 1812
		goto out;
	}

1813
	drbd_suspend_io(mdev); /* so no-one is stuck in drbd_al_begin_io */
1814
	drbd_md_get_buffer(mdev); /* make sure there is no in-flight meta-data IO */
L
Lars Ellenberg 已提交
1815
	retcode = drbd_request_state(mdev, NS(disk, D_FAILED));
1816
	drbd_md_put_buffer(mdev);
L
Lars Ellenberg 已提交
1817 1818 1819
	/* D_FAILED will transition to DISKLESS. */
	ret = wait_event_interruptible(mdev->misc_wait,
			mdev->state.disk != D_FAILED);
1820
	drbd_resume_io(mdev);
P
Philipp Reisner 已提交
1821
	if ((int)retcode == (int)SS_IS_DISKLESS)
L
Lars Ellenberg 已提交
1822 1823 1824
		retcode = SS_NOTHING_TO_DO;
	if (ret)
		retcode = ERR_INTR;
1825
out:
1826
	return retcode;
P
Philipp Reisner 已提交
1827 1828
}

1829 1830 1831 1832 1833
/* Detaching the disk is a process in multiple stages.  First we need to lock
 * out application IO, in-flight IO, IO stuck in drbd_al_begin_io.
 * Then we transition to D_DISKLESS, and wait for put_ldev() to return all
 * internal references as well.
 * Only then we have finally detached. */
1834
int drbd_adm_detach(struct sk_buff *skb, struct genl_info *info)
P
Philipp Reisner 已提交
1835
{
1836
	enum drbd_ret_code retcode;
1837 1838
	struct detach_parms parms = { };
	int err;
P
Philipp Reisner 已提交
1839

1840 1841 1842 1843 1844
	retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
	if (!adm_ctx.reply_skb)
		return retcode;
	if (retcode != NO_ERROR)
		goto out;
P
Philipp Reisner 已提交
1845

1846 1847 1848 1849 1850 1851 1852
	if (info->attrs[DRBD_NLA_DETACH_PARMS]) {
		err = detach_parms_from_attrs(&parms, info);
		if (err) {
			retcode = ERR_MANDATORY_TAG;
			drbd_msg_put_info(from_attrs_err_to_txt(err));
			goto out;
		}
P
Philipp Reisner 已提交
1853 1854
	}

1855
	retcode = adm_detach(adm_ctx.mdev, parms.force_detach);
1856 1857
out:
	drbd_adm_finish(info, retcode);
P
Philipp Reisner 已提交
1858 1859 1860
	return 0;
}

1861 1862 1863
static bool conn_resync_running(struct drbd_tconn *tconn)
{
	struct drbd_conf *mdev;
1864
	bool rv = false;
1865 1866
	int vnr;

1867
	rcu_read_lock();
1868 1869 1870 1871
	idr_for_each_entry(&tconn->volumes, mdev, vnr) {
		if (mdev->state.conn == C_SYNC_SOURCE ||
		    mdev->state.conn == C_SYNC_TARGET ||
		    mdev->state.conn == C_PAUSED_SYNC_S ||
1872 1873 1874 1875
		    mdev->state.conn == C_PAUSED_SYNC_T) {
			rv = true;
			break;
		}
P
Philipp Reisner 已提交
1876
	}
1877
	rcu_read_unlock();
P
Philipp Reisner 已提交
1878

1879
	return rv;
1880
}
1881

1882 1883 1884
static bool conn_ov_running(struct drbd_tconn *tconn)
{
	struct drbd_conf *mdev;
1885
	bool rv = false;
1886 1887
	int vnr;

1888
	rcu_read_lock();
1889 1890
	idr_for_each_entry(&tconn->volumes, mdev, vnr) {
		if (mdev->state.conn == C_VERIFY_S ||
1891 1892 1893
		    mdev->state.conn == C_VERIFY_T) {
			rv = true;
			break;
1894 1895
		}
	}
1896
	rcu_read_unlock();
P
Philipp Reisner 已提交
1897

1898
	return rv;
1899
}
1900

1901
static enum drbd_ret_code
1902
_check_net_options(struct drbd_tconn *tconn, struct net_conf *old_conf, struct net_conf *new_conf)
1903 1904 1905
{
	struct drbd_conf *mdev;
	int i;
P
Philipp Reisner 已提交
1906

1907 1908 1909
	if (old_conf && tconn->cstate == C_WF_REPORT_PARAMS && tconn->agreed_pro_version < 100) {
		if (new_conf->wire_protocol != old_conf->wire_protocol)
			return ERR_NEED_APV_100;
P
Philipp Reisner 已提交
1910

1911 1912 1913 1914 1915
		if (new_conf->two_primaries != old_conf->two_primaries)
			return ERR_NEED_APV_100;

		if (strcmp(new_conf->integrity_alg, old_conf->integrity_alg))
			return ERR_NEED_APV_100;
P
Philipp Reisner 已提交
1916 1917
	}

1918 1919 1920 1921
	if (!new_conf->two_primaries &&
	    conn_highest_role(tconn) == R_PRIMARY &&
	    conn_highest_peer(tconn) == R_PRIMARY)
		return ERR_NEED_ALLOW_TWO_PRI;
P
Philipp Reisner 已提交
1922

1923 1924 1925 1926 1927 1928
	if (new_conf->two_primaries &&
	    (new_conf->wire_protocol != DRBD_PROT_C))
		return ERR_NOT_PROTO_C;

	idr_for_each_entry(&tconn->volumes, mdev, i) {
		if (get_ldev(mdev)) {
P
Philipp Reisner 已提交
1929
			enum drbd_fencing_p fp = rcu_dereference(mdev->ldev->disk_conf)->fencing;
1930
			put_ldev(mdev);
1931
			if (new_conf->wire_protocol == DRBD_PROT_A && fp == FP_STONITH)
1932
				return ERR_STONITH_AND_PROT_A;
P
Philipp Reisner 已提交
1933
		}
1934
		if (mdev->state.role == R_PRIMARY && new_conf->discard_my_data)
1935
			return ERR_DISCARD_IMPOSSIBLE;
P
Philipp Reisner 已提交
1936 1937
	}

1938 1939
	if (new_conf->on_congestion != OC_BLOCK && new_conf->wire_protocol != DRBD_PROT_A)
		return ERR_CONG_NOT_PROTO_A;
P
Philipp Reisner 已提交
1940

1941 1942
	return NO_ERROR;
}
P
Philipp Reisner 已提交
1943

1944 1945 1946 1947 1948 1949
static enum drbd_ret_code
check_net_options(struct drbd_tconn *tconn, struct net_conf *new_conf)
{
	static enum drbd_ret_code rv;
	struct drbd_conf *mdev;
	int i;
P
Philipp Reisner 已提交
1950

1951 1952 1953
	rcu_read_lock();
	rv = _check_net_options(tconn, rcu_dereference(tconn->net_conf), new_conf);
	rcu_read_unlock();
P
Philipp Reisner 已提交
1954

1955 1956 1957 1958 1959
	/* tconn->volumes protected by genl_lock() here */
	idr_for_each_entry(&tconn->volumes, mdev, i) {
		if (!mdev->bitmap) {
			if(drbd_bm_init(mdev))
				return ERR_NOMEM;
P
Philipp Reisner 已提交
1960 1961 1962
		}
	}

1963 1964
	return rv;
}
P
Philipp Reisner 已提交
1965

1966 1967 1968 1969
struct crypto {
	struct crypto_hash *verify_tfm;
	struct crypto_hash *csums_tfm;
	struct crypto_hash *cram_hmac_tfm;
1970
	struct crypto_hash *integrity_tfm;
1971
};
P
Philipp Reisner 已提交
1972

1973
static int
1974
alloc_hash(struct crypto_hash **tfm, char *tfm_name, int err_alg)
1975 1976 1977
{
	if (!tfm_name[0])
		return NO_ERROR;
P
Philipp Reisner 已提交
1978

1979 1980 1981 1982
	*tfm = crypto_alloc_hash(tfm_name, 0, CRYPTO_ALG_ASYNC);
	if (IS_ERR(*tfm)) {
		*tfm = NULL;
		return err_alg;
P
Philipp Reisner 已提交
1983 1984
	}

1985 1986
	return NO_ERROR;
}
P
Philipp Reisner 已提交
1987

1988 1989 1990 1991 1992 1993
static enum drbd_ret_code
alloc_crypto(struct crypto *crypto, struct net_conf *new_conf)
{
	char hmac_name[CRYPTO_MAX_ALG_NAME];
	enum drbd_ret_code rv;

1994 1995
	rv = alloc_hash(&crypto->csums_tfm, new_conf->csums_alg,
		       ERR_CSUMS_ALG);
1996 1997
	if (rv != NO_ERROR)
		return rv;
1998 1999
	rv = alloc_hash(&crypto->verify_tfm, new_conf->verify_alg,
		       ERR_VERIFY_ALG);
2000 2001
	if (rv != NO_ERROR)
		return rv;
2002 2003
	rv = alloc_hash(&crypto->integrity_tfm, new_conf->integrity_alg,
		       ERR_INTEGRITY_ALG);
2004 2005 2006 2007 2008
	if (rv != NO_ERROR)
		return rv;
	if (new_conf->cram_hmac_alg[0] != 0) {
		snprintf(hmac_name, CRYPTO_MAX_ALG_NAME, "hmac(%s)",
			 new_conf->cram_hmac_alg);
P
Philipp Reisner 已提交
2009

2010 2011
		rv = alloc_hash(&crypto->cram_hmac_tfm, hmac_name,
			       ERR_AUTH_ALG);
P
Philipp Reisner 已提交
2012 2013
	}

2014 2015
	return rv;
}
P
Philipp Reisner 已提交
2016

2017 2018 2019
static void free_crypto(struct crypto *crypto)
{
	crypto_free_hash(crypto->cram_hmac_tfm);
2020
	crypto_free_hash(crypto->integrity_tfm);
2021 2022 2023
	crypto_free_hash(crypto->csums_tfm);
	crypto_free_hash(crypto->verify_tfm);
}
P
Philipp Reisner 已提交
2024

2025 2026 2027 2028
int drbd_adm_net_opts(struct sk_buff *skb, struct genl_info *info)
{
	enum drbd_ret_code retcode;
	struct drbd_tconn *tconn;
2029
	struct net_conf *old_conf, *new_conf = NULL;
2030 2031 2032
	int err;
	int ovr; /* online verify running */
	int rsr; /* re-sync running */
2033
	struct crypto crypto = { };
P
Philipp Reisner 已提交
2034

2035
	retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_CONNECTION);
2036 2037 2038 2039
	if (!adm_ctx.reply_skb)
		return retcode;
	if (retcode != NO_ERROR)
		goto out;
P
Philipp Reisner 已提交
2040

2041
	tconn = adm_ctx.tconn;
P
Philipp Reisner 已提交
2042

2043 2044 2045 2046 2047
	new_conf = kzalloc(sizeof(struct net_conf), GFP_KERNEL);
	if (!new_conf) {
		retcode = ERR_NOMEM;
		goto out;
	}
P
Philipp Reisner 已提交
2048

2049
	conn_reconfig_start(tconn);
P
Philipp Reisner 已提交
2050

2051
	mutex_lock(&tconn->data.mutex);
2052
	mutex_lock(&tconn->conf_update);
2053
	old_conf = tconn->net_conf;
2054

2055
	if (!old_conf) {
2056 2057
		drbd_msg_put_info("net conf missing, try connect");
		retcode = ERR_INVALID_REQUEST;
2058 2059 2060
		goto fail;
	}

2061
	*new_conf = *old_conf;
2062
	if (should_set_defaults(info))
2063
		set_net_conf_defaults(new_conf);
2064 2065

	err = net_conf_from_attrs_for_change(new_conf, info);
2066
	if (err && err != -ENOMSG) {
2067 2068 2069
		retcode = ERR_MANDATORY_TAG;
		drbd_msg_put_info(from_attrs_err_to_txt(err));
		goto fail;
2070
	}
P
Philipp Reisner 已提交
2071

2072 2073 2074
	retcode = check_net_options(tconn, new_conf);
	if (retcode != NO_ERROR)
		goto fail;
P
Philipp Reisner 已提交
2075

2076 2077
	/* re-sync running */
	rsr = conn_resync_running(tconn);
2078
	if (rsr && strcmp(new_conf->csums_alg, old_conf->csums_alg)) {
2079
		retcode = ERR_CSUMS_RESYNC_RUNNING;
2080
		goto fail;
P
Philipp Reisner 已提交
2081 2082
	}

2083 2084
	/* online verify running */
	ovr = conn_ov_running(tconn);
2085 2086
	if (ovr && strcmp(new_conf->verify_alg, old_conf->verify_alg)) {
		retcode = ERR_VERIFY_RUNNING;
P
Philipp Reisner 已提交
2087
		goto fail;
2088
	}
P
Philipp Reisner 已提交
2089

2090 2091
	retcode = alloc_crypto(&crypto, new_conf);
	if (retcode != NO_ERROR)
P
Philipp Reisner 已提交
2092
		goto fail;
2093

2094
	rcu_assign_pointer(tconn->net_conf, new_conf);
2095 2096 2097

	if (!rsr) {
		crypto_free_hash(tconn->csums_tfm);
2098 2099
		tconn->csums_tfm = crypto.csums_tfm;
		crypto.csums_tfm = NULL;
2100 2101 2102
	}
	if (!ovr) {
		crypto_free_hash(tconn->verify_tfm);
2103 2104
		tconn->verify_tfm = crypto.verify_tfm;
		crypto.verify_tfm = NULL;
P
Philipp Reisner 已提交
2105 2106
	}

2107 2108
	crypto_free_hash(tconn->integrity_tfm);
	tconn->integrity_tfm = crypto.integrity_tfm;
2109
	if (tconn->cstate >= C_WF_REPORT_PARAMS && tconn->agreed_pro_version >= 100)
2110
		/* Do this without trying to take tconn->data.mutex again.  */
2111
		__drbd_send_protocol(tconn, P_PROTOCOL_UPDATE);
2112 2113 2114 2115

	crypto_free_hash(tconn->cram_hmac_tfm);
	tconn->cram_hmac_tfm = crypto.cram_hmac_tfm;

2116
	mutex_unlock(&tconn->conf_update);
2117
	mutex_unlock(&tconn->data.mutex);
2118 2119 2120
	synchronize_rcu();
	kfree(old_conf);

2121 2122 2123
	if (tconn->cstate >= C_WF_REPORT_PARAMS)
		drbd_send_sync_param(minor_to_mdev(conn_lowest_minor(tconn)));

2124 2125
	goto done;

P
Philipp Reisner 已提交
2126
 fail:
2127
	mutex_unlock(&tconn->conf_update);
2128
	mutex_unlock(&tconn->data.mutex);
2129
	free_crypto(&crypto);
2130
	kfree(new_conf);
2131
 done:
2132 2133 2134
	conn_reconfig_done(tconn);
 out:
	drbd_adm_finish(info, retcode);
P
Philipp Reisner 已提交
2135 2136 2137
	return 0;
}

2138
int drbd_adm_connect(struct sk_buff *skb, struct genl_info *info)
P
Philipp Reisner 已提交
2139
{
2140
	struct drbd_conf *mdev;
2141
	struct net_conf *old_conf, *new_conf = NULL;
2142
	struct crypto crypto = { };
2143 2144 2145 2146
	struct drbd_tconn *tconn;
	enum drbd_ret_code retcode;
	int i;
	int err;
P
Philipp Reisner 已提交
2147

2148
	retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_RESOURCE);
P
Philipp Reisner 已提交
2149

2150 2151 2152 2153
	if (!adm_ctx.reply_skb)
		return retcode;
	if (retcode != NO_ERROR)
		goto out;
2154 2155 2156 2157 2158
	if (!(adm_ctx.my_addr && adm_ctx.peer_addr)) {
		drbd_msg_put_info("connection endpoint(s) missing");
		retcode = ERR_INVALID_REQUEST;
		goto out;
	}
P
Philipp Reisner 已提交
2159

2160 2161 2162 2163 2164 2165 2166 2167 2168
	/* No need for _rcu here. All reconfiguration is
	 * strictly serialized on genl_lock(). We are protected against
	 * concurrent reconfiguration/addition/deletion */
	list_for_each_entry(tconn, &drbd_tconns, all_tconn) {
		if (nla_len(adm_ctx.my_addr) == tconn->my_addr_len &&
		    !memcmp(nla_data(adm_ctx.my_addr), &tconn->my_addr, tconn->my_addr_len)) {
			retcode = ERR_LOCAL_ADDR;
			goto out;
		}
P
Philipp Reisner 已提交
2169

2170 2171 2172 2173 2174
		if (nla_len(adm_ctx.peer_addr) == tconn->peer_addr_len &&
		    !memcmp(nla_data(adm_ctx.peer_addr), &tconn->peer_addr, tconn->peer_addr_len)) {
			retcode = ERR_PEER_ADDR;
			goto out;
		}
P
Philipp Reisner 已提交
2175 2176
	}

2177
	tconn = adm_ctx.tconn;
2178
	conn_reconfig_start(tconn);
P
Philipp Reisner 已提交
2179

2180
	if (tconn->cstate > C_STANDALONE) {
P
Philipp Reisner 已提交
2181 2182 2183 2184
		retcode = ERR_NET_CONFIGURED;
		goto fail;
	}

2185
	/* allocation not in the IO path, drbdsetup / netlink process context */
2186
	new_conf = kzalloc(sizeof(*new_conf), GFP_KERNEL);
P
Philipp Reisner 已提交
2187 2188 2189 2190 2191
	if (!new_conf) {
		retcode = ERR_NOMEM;
		goto fail;
	}

2192
	set_net_conf_defaults(new_conf);
P
Philipp Reisner 已提交
2193

2194
	err = net_conf_from_attrs(new_conf, info);
2195
	if (err && err != -ENOMSG) {
P
Philipp Reisner 已提交
2196
		retcode = ERR_MANDATORY_TAG;
2197
		drbd_msg_put_info(from_attrs_err_to_txt(err));
P
Philipp Reisner 已提交
2198 2199 2200
		goto fail;
	}

2201 2202
	retcode = check_net_options(tconn, new_conf);
	if (retcode != NO_ERROR)
2203
		goto fail;
P
Philipp Reisner 已提交
2204

2205 2206 2207
	retcode = alloc_crypto(&crypto, new_conf);
	if (retcode != NO_ERROR)
		goto fail;
P
Philipp Reisner 已提交
2208 2209

	((char *)new_conf->shared_secret)[SHARED_SECRET_MAX-1] = 0;
2210

2211
	conn_flush_workqueue(tconn);
P
Philipp Reisner 已提交
2212

2213
	mutex_lock(&tconn->conf_update);
2214 2215
	old_conf = tconn->net_conf;
	if (old_conf) {
P
Philipp Reisner 已提交
2216
		retcode = ERR_NET_CONFIGURED;
2217
		mutex_unlock(&tconn->conf_update);
P
Philipp Reisner 已提交
2218 2219
		goto fail;
	}
2220
	rcu_assign_pointer(tconn->net_conf, new_conf);
P
Philipp Reisner 已提交
2221

2222
	conn_free_crypto(tconn);
2223
	tconn->cram_hmac_tfm = crypto.cram_hmac_tfm;
2224
	tconn->integrity_tfm = crypto.integrity_tfm;
2225 2226
	tconn->csums_tfm = crypto.csums_tfm;
	tconn->verify_tfm = crypto.verify_tfm;
P
Philipp Reisner 已提交
2227

2228 2229 2230 2231
	tconn->my_addr_len = nla_len(adm_ctx.my_addr);
	memcpy(&tconn->my_addr, nla_data(adm_ctx.my_addr), tconn->my_addr_len);
	tconn->peer_addr_len = nla_len(adm_ctx.peer_addr);
	memcpy(&tconn->peer_addr, nla_data(adm_ctx.peer_addr), tconn->peer_addr_len);
P
Philipp Reisner 已提交
2232

2233
	mutex_unlock(&tconn->conf_update);
P
Philipp Reisner 已提交
2234

2235
	rcu_read_lock();
2236 2237 2238
	idr_for_each_entry(&tconn->volumes, mdev, i) {
		mdev->send_cnt = 0;
		mdev->recv_cnt = 0;
P
Philipp Reisner 已提交
2239
	}
2240
	rcu_read_unlock();
P
Philipp Reisner 已提交
2241

2242
	retcode = conn_request_state(tconn, NS(conn, C_UNCONNECTED), CS_VERBOSE);
P
Philipp Reisner 已提交
2243

2244
	conn_reconfig_done(tconn);
2245
	drbd_adm_finish(info, retcode);
P
Philipp Reisner 已提交
2246 2247 2248
	return 0;

fail:
2249
	free_crypto(&crypto);
P
Philipp Reisner 已提交
2250 2251
	kfree(new_conf);

2252
	conn_reconfig_done(tconn);
2253 2254
out:
	drbd_adm_finish(info, retcode);
P
Philipp Reisner 已提交
2255 2256 2257
	return 0;
}

2258 2259 2260 2261
static enum drbd_state_rv conn_try_disconnect(struct drbd_tconn *tconn, bool force)
{
	enum drbd_state_rv rv;

2262 2263
	rv = conn_request_state(tconn, NS(conn, C_DISCONNECTING),
			force ? CS_HARD : 0);
2264 2265 2266

	switch (rv) {
	case SS_NOTHING_TO_DO:
2267
		break;
2268 2269 2270 2271
	case SS_ALREADY_STANDALONE:
		return SS_SUCCESS;
	case SS_PRIMARY_NOP:
		/* Our state checking code wants to see the peer outdated. */
2272 2273 2274 2275 2276
		rv = conn_request_state(tconn, NS2(conn, C_DISCONNECTING, pdsk, D_OUTDATED), 0);

		if (rv == SS_OUTDATE_WO_CONN) /* lost connection before graceful disconnect succeeded */
			rv = conn_request_state(tconn, NS(conn, C_DISCONNECTING), CS_VERBOSE);

2277 2278 2279 2280 2281 2282
		break;
	case SS_CW_FAILED_BY_PEER:
		/* The peer probably wants to see us outdated. */
		rv = conn_request_state(tconn, NS2(conn, C_DISCONNECTING,
							disk, D_OUTDATED), 0);
		if (rv == SS_IS_DISKLESS || rv == SS_LOWER_THAN_OUTDATED) {
2283 2284
			rv = conn_request_state(tconn, NS(conn, C_DISCONNECTING),
					CS_HARD);
P
Philipp Reisner 已提交
2285
		}
2286 2287 2288 2289 2290
		break;
	default:;
		/* no special handling necessary */
	}

2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310
	if (rv >= SS_SUCCESS) {
		enum drbd_state_rv rv2;
		/* No one else can reconfigure the network while I am here.
		 * The state handling only uses drbd_thread_stop_nowait(),
		 * we want to really wait here until the receiver is no more.
		 */
		drbd_thread_stop(&adm_ctx.tconn->receiver);

		/* Race breaker.  This additional state change request may be
		 * necessary, if this was a forced disconnect during a receiver
		 * restart.  We may have "killed" the receiver thread just
		 * after drbdd_init() returned.  Typically, we should be
		 * C_STANDALONE already, now, and this becomes a no-op.
		 */
		rv2 = conn_request_state(tconn, NS(conn, C_STANDALONE),
				CS_VERBOSE | CS_HARD);
		if (rv2 < SS_SUCCESS)
			conn_err(tconn,
				"unexpected rv2=%d in conn_try_disconnect()\n",
				rv2);
P
Philipp Reisner 已提交
2311
	}
2312 2313
	return rv;
}
P
Philipp Reisner 已提交
2314

2315
int drbd_adm_disconnect(struct sk_buff *skb, struct genl_info *info)
P
Philipp Reisner 已提交
2316
{
2317 2318
	struct disconnect_parms parms;
	struct drbd_tconn *tconn;
2319
	enum drbd_state_rv rv;
2320 2321
	enum drbd_ret_code retcode;
	int err;
2322

2323
	retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_CONNECTION);
2324 2325 2326
	if (!adm_ctx.reply_skb)
		return retcode;
	if (retcode != NO_ERROR)
2327
		goto fail;
P
Philipp Reisner 已提交
2328

2329 2330 2331
	tconn = adm_ctx.tconn;
	memset(&parms, 0, sizeof(parms));
	if (info->attrs[DRBD_NLA_DISCONNECT_PARMS]) {
2332
		err = disconnect_parms_from_attrs(&parms, info);
2333 2334 2335
		if (err) {
			retcode = ERR_MANDATORY_TAG;
			drbd_msg_put_info(from_attrs_err_to_txt(err));
P
Philipp Reisner 已提交
2336 2337 2338 2339
			goto fail;
		}
	}

2340 2341
	rv = conn_try_disconnect(tconn, parms.force_disconnect);
	if (rv < SS_SUCCESS)
2342 2343 2344
		retcode = rv;  /* FIXME: Type mismatch. */
	else
		retcode = NO_ERROR;
P
Philipp Reisner 已提交
2345
 fail:
2346
	drbd_adm_finish(info, retcode);
P
Philipp Reisner 已提交
2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357
	return 0;
}

void resync_after_online_grow(struct drbd_conf *mdev)
{
	int iass; /* I am sync source */

	dev_info(DEV, "Resync of new storage after online grow\n");
	if (mdev->state.role != mdev->state.peer)
		iass = (mdev->state.role == R_PRIMARY);
	else
2358
		iass = test_bit(RESOLVE_CONFLICTS, &mdev->tconn->flags);
P
Philipp Reisner 已提交
2359 2360 2361 2362 2363 2364 2365

	if (iass)
		drbd_start_resync(mdev, C_SYNC_SOURCE);
	else
		_drbd_request_state(mdev, NS(conn, C_WF_SYNC_UUID), CS_VERBOSE + CS_SERIALIZE);
}

2366
int drbd_adm_resize(struct sk_buff *skb, struct genl_info *info)
P
Philipp Reisner 已提交
2367
{
P
Philipp Reisner 已提交
2368
	struct disk_conf *old_disk_conf, *new_disk_conf = NULL;
2369 2370 2371
	struct resize_parms rs;
	struct drbd_conf *mdev;
	enum drbd_ret_code retcode;
P
Philipp Reisner 已提交
2372
	enum determine_dev_size dd;
2373
	bool change_al_layout = false;
2374
	enum dds_flags ddsf;
P
Philipp Reisner 已提交
2375
	sector_t u_size;
2376
	int err;
P
Philipp Reisner 已提交
2377

2378 2379 2380 2381
	retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
	if (!adm_ctx.reply_skb)
		return retcode;
	if (retcode != NO_ERROR)
P
Philipp Reisner 已提交
2382
		goto fail;
2383

2384 2385 2386 2387 2388 2389
	mdev = adm_ctx.mdev;
	if (!get_ldev(mdev)) {
		retcode = ERR_NO_DISK;
		goto fail;
	}

2390
	memset(&rs, 0, sizeof(struct resize_parms));
2391 2392
	rs.al_stripes = mdev->ldev->md.al_stripes;
	rs.al_stripe_size = mdev->ldev->md.al_stripe_size_4k * 4;
2393
	if (info->attrs[DRBD_NLA_RESIZE_PARMS]) {
2394
		err = resize_parms_from_attrs(&rs, info);
P
Philipp Reisner 已提交
2395
		if (err) {
2396 2397
			retcode = ERR_MANDATORY_TAG;
			drbd_msg_put_info(from_attrs_err_to_txt(err));
2398
			goto fail_ldev;
P
Philipp Reisner 已提交
2399 2400 2401 2402 2403
		}
	}

	if (mdev->state.conn > C_CONNECTED) {
		retcode = ERR_RESIZE_RESYNC;
2404
		goto fail_ldev;
P
Philipp Reisner 已提交
2405 2406 2407 2408 2409
	}

	if (mdev->state.role == R_SECONDARY &&
	    mdev->state.peer == R_SECONDARY) {
		retcode = ERR_NO_PRIMARY;
2410
		goto fail_ldev;
P
Philipp Reisner 已提交
2411 2412
	}

2413
	if (rs.no_resync && mdev->tconn->agreed_pro_version < 93) {
2414
		retcode = ERR_NEED_APV_93;
P
Philipp Reisner 已提交
2415
		goto fail_ldev;
2416 2417
	}

P
Philipp Reisner 已提交
2418 2419 2420 2421 2422 2423
	rcu_read_lock();
	u_size = rcu_dereference(mdev->ldev->disk_conf)->disk_size;
	rcu_read_unlock();
	if (u_size != (sector_t)rs.resize_size) {
		new_disk_conf = kmalloc(sizeof(struct disk_conf), GFP_KERNEL);
		if (!new_disk_conf) {
2424
			retcode = ERR_NOMEM;
P
Philipp Reisner 已提交
2425
			goto fail_ldev;
2426 2427 2428
		}
	}

2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450
	if (mdev->ldev->md.al_stripes != rs.al_stripes ||
	    mdev->ldev->md.al_stripe_size_4k != rs.al_stripe_size / 4) {
		u32 al_size_k = rs.al_stripes * rs.al_stripe_size;

		if (al_size_k > (16 * 1024 * 1024)) {
			retcode = ERR_MD_LAYOUT_TOO_BIG;
			goto fail_ldev;
		}

		if (al_size_k < MD_32kB_SECT/2) {
			retcode = ERR_MD_LAYOUT_TOO_SMALL;
			goto fail_ldev;
		}

		if (mdev->state.conn != C_CONNECTED) {
			retcode = ERR_MD_LAYOUT_CONNECTED;
			goto fail_ldev;
		}

		change_al_layout = true;
	}

2451
	if (mdev->ldev->known_size != drbd_get_capacity(mdev->ldev->backing_bdev))
P
Philipp Reisner 已提交
2452 2453
		mdev->ldev->known_size = drbd_get_capacity(mdev->ldev->backing_bdev);

P
Philipp Reisner 已提交
2454 2455 2456 2457 2458 2459 2460 2461 2462
	if (new_disk_conf) {
		mutex_lock(&mdev->tconn->conf_update);
		old_disk_conf = mdev->ldev->disk_conf;
		*new_disk_conf = *old_disk_conf;
		new_disk_conf->disk_size = (sector_t)rs.resize_size;
		rcu_assign_pointer(mdev->ldev->disk_conf, new_disk_conf);
		mutex_unlock(&mdev->tconn->conf_update);
		synchronize_rcu();
		kfree(old_disk_conf);
P
Philipp Reisner 已提交
2463 2464
	}

2465
	ddsf = (rs.resize_force ? DDSF_FORCED : 0) | (rs.no_resync ? DDSF_NO_RESYNC : 0);
2466
	dd = drbd_determine_dev_size(mdev, ddsf, change_al_layout ? &rs : NULL);
P
Philipp Reisner 已提交
2467 2468
	drbd_md_sync(mdev);
	put_ldev(mdev);
2469
	if (dd == DS_ERROR) {
P
Philipp Reisner 已提交
2470 2471
		retcode = ERR_NOMEM_BITMAP;
		goto fail;
2472 2473 2474 2475 2476 2477
	} else if (dd == DS_ERROR_SPACE_MD) {
		retcode = ERR_MD_LAYOUT_NO_FIT;
		goto fail;
	} else if (dd == DS_ERROR_SHRINK) {
		retcode = ERR_IMPLICIT_SHRINK;
		goto fail;
P
Philipp Reisner 已提交
2478
	}
2479

2480
	if (mdev->state.conn == C_CONNECTED) {
2481
		if (dd == DS_GREW)
P
Philipp Reisner 已提交
2482 2483 2484
			set_bit(RESIZE_PENDING, &mdev->flags);

		drbd_send_uuids(mdev);
2485
		drbd_send_sizes(mdev, 1, ddsf);
2486 2487
	}

P
Philipp Reisner 已提交
2488
 fail:
2489
	drbd_adm_finish(info, retcode);
P
Philipp Reisner 已提交
2490 2491
	return 0;

P
Philipp Reisner 已提交
2492 2493 2494
 fail_ldev:
	put_ldev(mdev);
	goto fail;
P
Philipp Reisner 已提交
2495 2496
}

2497
int drbd_adm_resource_opts(struct sk_buff *skb, struct genl_info *info)
P
Philipp Reisner 已提交
2498
{
2499
	enum drbd_ret_code retcode;
2500
	struct drbd_tconn *tconn;
2501
	struct res_opts res_opts;
2502
	int err;
P
Philipp Reisner 已提交
2503

2504
	retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_RESOURCE);
2505 2506 2507 2508
	if (!adm_ctx.reply_skb)
		return retcode;
	if (retcode != NO_ERROR)
		goto fail;
2509
	tconn = adm_ctx.tconn;
P
Philipp Reisner 已提交
2510

2511
	res_opts = tconn->res_opts;
2512
	if (should_set_defaults(info))
2513
		set_res_opts_defaults(&res_opts);
P
Philipp Reisner 已提交
2514

2515
	err = res_opts_from_attrs(&res_opts, info);
2516
	if (err && err != -ENOMSG) {
P
Philipp Reisner 已提交
2517
		retcode = ERR_MANDATORY_TAG;
2518
		drbd_msg_put_info(from_attrs_err_to_txt(err));
P
Philipp Reisner 已提交
2519 2520 2521
		goto fail;
	}

2522 2523 2524 2525 2526
	err = set_resource_options(tconn, &res_opts);
	if (err) {
		retcode = ERR_INVALID_REQUEST;
		if (err == -ENOMEM)
			retcode = ERR_NOMEM;
P
Philipp Reisner 已提交
2527 2528 2529
	}

fail:
2530
	drbd_adm_finish(info, retcode);
P
Philipp Reisner 已提交
2531 2532 2533
	return 0;
}

2534
int drbd_adm_invalidate(struct sk_buff *skb, struct genl_info *info)
P
Philipp Reisner 已提交
2535
{
2536 2537 2538 2539 2540 2541 2542 2543 2544 2545
	struct drbd_conf *mdev;
	int retcode; /* enum drbd_ret_code rsp. enum drbd_state_rv */

	retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
	if (!adm_ctx.reply_skb)
		return retcode;
	if (retcode != NO_ERROR)
		goto out;

	mdev = adm_ctx.mdev;
P
Philipp Reisner 已提交
2546

2547
	/* If there is still bitmap IO pending, probably because of a previous
2548 2549
	 * resync just being finished, wait for it before requesting a new resync.
	 * Also wait for it's after_state_ch(). */
2550
	drbd_suspend_io(mdev);
2551
	wait_event(mdev->misc_wait, !test_bit(BITMAP_IO, &mdev->flags));
2552
	drbd_flush_workqueue(mdev);
2553

2554 2555 2556
	/* If we happen to be C_STANDALONE R_SECONDARY, just change to
	 * D_INCONSISTENT, and set all bits in the bitmap.  Otherwise,
	 * try to start a resync handshake as sync target for full sync.
2557
	 */
2558 2559 2560 2561 2562 2563 2564 2565 2566
	if (mdev->state.conn == C_STANDALONE && mdev->state.role == R_SECONDARY) {
		retcode = drbd_request_state(mdev, NS(disk, D_INCONSISTENT));
		if (retcode >= SS_SUCCESS) {
			if (drbd_bitmap_io(mdev, &drbd_bmio_set_n_write,
				"set_n_write from invalidate", BM_LOCKED_MASK))
				retcode = ERR_IO_MD_DISK;
		}
	} else
		retcode = drbd_request_state(mdev, NS(conn, C_STARTING_SYNC_T));
2567
	drbd_resume_io(mdev);
P
Philipp Reisner 已提交
2568

2569 2570
out:
	drbd_adm_finish(info, retcode);
P
Philipp Reisner 已提交
2571 2572 2573
	return 0;
}

2574 2575
static int drbd_adm_simple_request_state(struct sk_buff *skb, struct genl_info *info,
		union drbd_state mask, union drbd_state val)
P
Philipp Reisner 已提交
2576
{
2577
	enum drbd_ret_code retcode;
2578

2579 2580 2581 2582 2583
	retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
	if (!adm_ctx.reply_skb)
		return retcode;
	if (retcode != NO_ERROR)
		goto out;
P
Philipp Reisner 已提交
2584

2585 2586 2587
	retcode = drbd_request_state(adm_ctx.mdev, mask, val);
out:
	drbd_adm_finish(info, retcode);
P
Philipp Reisner 已提交
2588 2589 2590
	return 0;
}

2591 2592 2593 2594 2595 2596 2597 2598 2599
static int drbd_bmio_set_susp_al(struct drbd_conf *mdev)
{
	int rv;

	rv = drbd_bmio_set_n_write(mdev);
	drbd_suspend_al(mdev);
	return rv;
}

2600
int drbd_adm_invalidate_peer(struct sk_buff *skb, struct genl_info *info)
P
Philipp Reisner 已提交
2601
{
2602 2603 2604 2605 2606 2607 2608 2609 2610 2611
	int retcode; /* drbd_ret_code, drbd_state_rv */
	struct drbd_conf *mdev;

	retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
	if (!adm_ctx.reply_skb)
		return retcode;
	if (retcode != NO_ERROR)
		goto out;

	mdev = adm_ctx.mdev;
P
Philipp Reisner 已提交
2612

2613
	/* If there is still bitmap IO pending, probably because of a previous
2614 2615
	 * resync just being finished, wait for it before requesting a new resync.
	 * Also wait for it's after_state_ch(). */
2616
	drbd_suspend_io(mdev);
2617
	wait_event(mdev->misc_wait, !test_bit(BITMAP_IO, &mdev->flags));
2618
	drbd_flush_workqueue(mdev);
2619

2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635
	/* If we happen to be C_STANDALONE R_PRIMARY, just set all bits
	 * in the bitmap.  Otherwise, try to start a resync handshake
	 * as sync source for full sync.
	 */
	if (mdev->state.conn == C_STANDALONE && mdev->state.role == R_PRIMARY) {
		/* The peer will get a resync upon connect anyways. Just make that
		   into a full resync. */
		retcode = drbd_request_state(mdev, NS(pdsk, D_INCONSISTENT));
		if (retcode >= SS_SUCCESS) {
			if (drbd_bitmap_io(mdev, &drbd_bmio_set_susp_al,
				"set_n_write from invalidate_peer",
				BM_LOCKED_SET_ALLOWED))
				retcode = ERR_IO_MD_DISK;
		}
	} else
		retcode = drbd_request_state(mdev, NS(conn, C_STARTING_SYNC_S));
2636
	drbd_resume_io(mdev);
P
Philipp Reisner 已提交
2637

2638 2639
out:
	drbd_adm_finish(info, retcode);
P
Philipp Reisner 已提交
2640 2641 2642
	return 0;
}

2643
int drbd_adm_pause_sync(struct sk_buff *skb, struct genl_info *info)
P
Philipp Reisner 已提交
2644
{
2645
	enum drbd_ret_code retcode;
P
Philipp Reisner 已提交
2646

2647 2648 2649 2650 2651
	retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
	if (!adm_ctx.reply_skb)
		return retcode;
	if (retcode != NO_ERROR)
		goto out;
P
Philipp Reisner 已提交
2652

2653 2654 2655 2656
	if (drbd_request_state(adm_ctx.mdev, NS(user_isp, 1)) == SS_NOTHING_TO_DO)
		retcode = ERR_PAUSE_IS_SET;
out:
	drbd_adm_finish(info, retcode);
P
Philipp Reisner 已提交
2657 2658 2659
	return 0;
}

2660
int drbd_adm_resume_sync(struct sk_buff *skb, struct genl_info *info)
P
Philipp Reisner 已提交
2661
{
2662
	union drbd_dev_state s;
2663 2664 2665 2666 2667 2668 2669
	enum drbd_ret_code retcode;

	retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
	if (!adm_ctx.reply_skb)
		return retcode;
	if (retcode != NO_ERROR)
		goto out;
P
Philipp Reisner 已提交
2670

2671 2672
	if (drbd_request_state(adm_ctx.mdev, NS(user_isp, 0)) == SS_NOTHING_TO_DO) {
		s = adm_ctx.mdev->state;
2673 2674 2675 2676 2677 2678 2679
		if (s.conn == C_PAUSED_SYNC_S || s.conn == C_PAUSED_SYNC_T) {
			retcode = s.aftr_isp ? ERR_PIC_AFTER_DEP :
				  s.peer_isp ? ERR_PIC_PEER_DEP : ERR_PAUSE_IS_CLEAR;
		} else {
			retcode = ERR_PAUSE_IS_CLEAR;
		}
	}
P
Philipp Reisner 已提交
2680

2681 2682
out:
	drbd_adm_finish(info, retcode);
P
Philipp Reisner 已提交
2683 2684 2685
	return 0;
}

2686
int drbd_adm_suspend_io(struct sk_buff *skb, struct genl_info *info)
P
Philipp Reisner 已提交
2687
{
2688
	return drbd_adm_simple_request_state(skb, info, NS(susp, 1));
P
Philipp Reisner 已提交
2689 2690
}

2691
int drbd_adm_resume_io(struct sk_buff *skb, struct genl_info *info)
P
Philipp Reisner 已提交
2692
{
2693 2694 2695 2696 2697 2698 2699 2700 2701 2702
	struct drbd_conf *mdev;
	int retcode; /* enum drbd_ret_code rsp. enum drbd_state_rv */

	retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
	if (!adm_ctx.reply_skb)
		return retcode;
	if (retcode != NO_ERROR)
		goto out;

	mdev = adm_ctx.mdev;
2703 2704 2705 2706
	if (test_bit(NEW_CUR_UUID, &mdev->flags)) {
		drbd_uuid_new_current(mdev);
		clear_bit(NEW_CUR_UUID, &mdev->flags);
	}
2707
	drbd_suspend_io(mdev);
2708 2709
	retcode = drbd_request_state(mdev, NS3(susp, 0, susp_nod, 0, susp_fen, 0));
	if (retcode == SS_SUCCESS) {
2710
		if (mdev->state.conn < C_CONNECTED)
2711
			tl_clear(mdev->tconn);
2712
		if (mdev->state.disk == D_DISKLESS || mdev->state.disk == D_FAILED)
2713
			tl_restart(mdev->tconn, FAIL_FROZEN_DISK_IO);
2714 2715 2716
	}
	drbd_resume_io(mdev);

2717 2718
out:
	drbd_adm_finish(info, retcode);
P
Philipp Reisner 已提交
2719 2720 2721
	return 0;
}

2722
int drbd_adm_outdate(struct sk_buff *skb, struct genl_info *info)
P
Philipp Reisner 已提交
2723
{
2724
	return drbd_adm_simple_request_state(skb, info, NS(disk, D_OUTDATED));
P
Philipp Reisner 已提交
2725 2726
}

2727
int nla_put_drbd_cfg_context(struct sk_buff *skb, struct drbd_tconn *tconn, unsigned vnr)
P
Philipp Reisner 已提交
2728
{
2729 2730 2731 2732
	struct nlattr *nla;
	nla = nla_nest_start(skb, DRBD_NLA_CFG_CONTEXT);
	if (!nla)
		goto nla_put_failure;
A
Andreas Gruenbacher 已提交
2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743
	if (vnr != VOLUME_UNSPECIFIED &&
	    nla_put_u32(skb, T_ctx_volume, vnr))
		goto nla_put_failure;
	if (nla_put_string(skb, T_ctx_resource_name, tconn->name))
		goto nla_put_failure;
	if (tconn->my_addr_len &&
	    nla_put(skb, T_ctx_my_addr, tconn->my_addr_len, &tconn->my_addr))
		goto nla_put_failure;
	if (tconn->peer_addr_len &&
	    nla_put(skb, T_ctx_peer_addr, tconn->peer_addr_len, &tconn->peer_addr))
		goto nla_put_failure;
2744 2745
	nla_nest_end(skb, nla);
	return 0;
P
Philipp Reisner 已提交
2746

2747 2748 2749 2750 2751
nla_put_failure:
	if (nla)
		nla_nest_cancel(skb, nla);
	return -EMSGSIZE;
}
P
Philipp Reisner 已提交
2752

2753 2754
int nla_put_status_info(struct sk_buff *skb, struct drbd_conf *mdev,
		const struct sib_info *sib)
P
Philipp Reisner 已提交
2755
{
2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778
	struct state_info *si = NULL; /* for sizeof(si->member); */
	struct nlattr *nla;
	int got_ldev;
	int err = 0;
	int exclude_sensitive;

	/* If sib != NULL, this is drbd_bcast_event, which anyone can listen
	 * to.  So we better exclude_sensitive information.
	 *
	 * If sib == NULL, this is drbd_adm_get_status, executed synchronously
	 * in the context of the requesting user process. Exclude sensitive
	 * information, unless current has superuser.
	 *
	 * NOTE: for drbd_adm_get_status_all(), this is a netlink dump, and
	 * relies on the current implementation of netlink_dump(), which
	 * executes the dump callback successively from netlink_recvmsg(),
	 * always in the context of the receiving process */
	exclude_sensitive = sib || !capable(CAP_SYS_ADMIN);

	got_ldev = get_ldev(mdev);

	/* We need to add connection name and volume number information still.
	 * Minor number is in drbd_genlmsghdr. */
2779
	if (nla_put_drbd_cfg_context(skb, mdev->tconn, mdev->vnr))
2780 2781
		goto nla_put_failure;

2782 2783 2784
	if (res_opts_to_skb(skb, &mdev->tconn->res_opts, exclude_sensitive))
		goto nla_put_failure;

P
Philipp Reisner 已提交
2785
	rcu_read_lock();
2786 2787
	if (got_ldev) {
		struct disk_conf *disk_conf;
2788

2789 2790 2791 2792 2793 2794 2795 2796 2797 2798
		disk_conf = rcu_dereference(mdev->ldev->disk_conf);
		err = disk_conf_to_skb(skb, disk_conf, exclude_sensitive);
	}
	if (!err) {
		struct net_conf *nc;

		nc = rcu_dereference(mdev->tconn->net_conf);
		if (nc)
			err = net_conf_to_skb(skb, nc, exclude_sensitive);
	}
2799 2800 2801
	rcu_read_unlock();
	if (err)
		goto nla_put_failure;
2802 2803 2804 2805

	nla = nla_nest_start(skb, DRBD_NLA_STATE_INFO);
	if (!nla)
		goto nla_put_failure;
A
Andreas Gruenbacher 已提交
2806 2807 2808
	if (nla_put_u32(skb, T_sib_reason, sib ? sib->sib_reason : SIB_GET_STATUS_REPLY) ||
	    nla_put_u32(skb, T_current_state, mdev->state.i) ||
	    nla_put_u64(skb, T_ed_uuid, mdev->ed_uuid) ||
2809 2810 2811 2812 2813 2814 2815 2816 2817 2818
	    nla_put_u64(skb, T_capacity, drbd_get_capacity(mdev->this_bdev)) ||
	    nla_put_u64(skb, T_send_cnt, mdev->send_cnt) ||
	    nla_put_u64(skb, T_recv_cnt, mdev->recv_cnt) ||
	    nla_put_u64(skb, T_read_cnt, mdev->read_cnt) ||
	    nla_put_u64(skb, T_writ_cnt, mdev->writ_cnt) ||
	    nla_put_u64(skb, T_al_writ_cnt, mdev->al_writ_cnt) ||
	    nla_put_u64(skb, T_bm_writ_cnt, mdev->bm_writ_cnt) ||
	    nla_put_u32(skb, T_ap_bio_cnt, atomic_read(&mdev->ap_bio_cnt)) ||
	    nla_put_u32(skb, T_ap_pending_cnt, atomic_read(&mdev->ap_pending_cnt)) ||
	    nla_put_u32(skb, T_rs_pending_cnt, atomic_read(&mdev->rs_pending_cnt)))
A
Andreas Gruenbacher 已提交
2819
		goto nla_put_failure;
2820 2821

	if (got_ldev) {
2822
		int err;
P
Philipp Reisner 已提交
2823

2824 2825 2826 2827 2828 2829 2830
		spin_lock_irq(&mdev->ldev->md.uuid_lock);
		err = nla_put(skb, T_uuids, sizeof(si->uuids), mdev->ldev->md.uuid);
		spin_unlock_irq(&mdev->ldev->md.uuid_lock);

		if (err)
			goto nla_put_failure;

A
Andreas Gruenbacher 已提交
2831 2832 2833 2834
		if (nla_put_u32(skb, T_disk_flags, mdev->ldev->md.flags) ||
		    nla_put_u64(skb, T_bits_total, drbd_bm_bits(mdev)) ||
		    nla_put_u64(skb, T_bits_oos, drbd_bm_total_weight(mdev)))
			goto nla_put_failure;
2835 2836
		if (C_SYNC_SOURCE <= mdev->state.conn &&
		    C_PAUSED_SYNC_T >= mdev->state.conn) {
A
Andreas Gruenbacher 已提交
2837 2838 2839
			if (nla_put_u64(skb, T_bits_rs_total, mdev->rs_total) ||
			    nla_put_u64(skb, T_bits_rs_failed, mdev->rs_failed))
				goto nla_put_failure;
2840
		}
P
Philipp Reisner 已提交
2841 2842
	}

2843 2844 2845 2846 2847 2848
	if (sib) {
		switch(sib->sib_reason) {
		case SIB_SYNC_PROGRESS:
		case SIB_GET_STATUS_REPLY:
			break;
		case SIB_STATE_CHANGE:
A
Andreas Gruenbacher 已提交
2849 2850 2851
			if (nla_put_u32(skb, T_prev_state, sib->os.i) ||
			    nla_put_u32(skb, T_new_state, sib->ns.i))
				goto nla_put_failure;
2852 2853
			break;
		case SIB_HELPER_POST:
A
Andreas Gruenbacher 已提交
2854 2855 2856
			if (nla_put_u32(skb, T_helper_exit_code,
					sib->helper_exit_code))
				goto nla_put_failure;
2857 2858
			/* fall through */
		case SIB_HELPER_PRE:
A
Andreas Gruenbacher 已提交
2859 2860
			if (nla_put_string(skb, T_helper, sib->helper_name))
				goto nla_put_failure;
2861 2862
			break;
		}
P
Philipp Reisner 已提交
2863
	}
2864
	nla_nest_end(skb, nla);
P
Philipp Reisner 已提交
2865

2866 2867 2868 2869 2870 2871
	if (0)
nla_put_failure:
		err = -EMSGSIZE;
	if (got_ldev)
		put_ldev(mdev);
	return err;
P
Philipp Reisner 已提交
2872 2873
}

2874
int drbd_adm_get_status(struct sk_buff *skb, struct genl_info *info)
P
Philipp Reisner 已提交
2875
{
2876 2877
	enum drbd_ret_code retcode;
	int err;
P
Philipp Reisner 已提交
2878

2879 2880 2881 2882 2883
	retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
	if (!adm_ctx.reply_skb)
		return retcode;
	if (retcode != NO_ERROR)
		goto out;
P
Philipp Reisner 已提交
2884

2885 2886 2887 2888
	err = nla_put_status_info(adm_ctx.reply_skb, adm_ctx.mdev, NULL);
	if (err) {
		nlmsg_free(adm_ctx.reply_skb);
		return err;
P
Philipp Reisner 已提交
2889
	}
2890 2891 2892
out:
	drbd_adm_finish(info, retcode);
	return 0;
P
Philipp Reisner 已提交
2893 2894
}

2895
int get_one_status(struct sk_buff *skb, struct netlink_callback *cb)
P
Philipp Reisner 已提交
2896
{
2897 2898
	struct drbd_conf *mdev;
	struct drbd_genlmsghdr *dh;
2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912
	struct drbd_tconn *pos = (struct drbd_tconn*)cb->args[0];
	struct drbd_tconn *tconn = NULL;
	struct drbd_tconn *tmp;
	unsigned volume = cb->args[1];

	/* Open coded, deferred, iteration:
	 * list_for_each_entry_safe(tconn, tmp, &drbd_tconns, all_tconn) {
	 *	idr_for_each_entry(&tconn->volumes, mdev, i) {
	 *	  ...
	 *	}
	 * }
	 * where tconn is cb->args[0];
	 * and i is cb->args[1];
	 *
2913 2914 2915
	 * cb->args[2] indicates if we shall loop over all resources,
	 * or just dump all volumes of a single resource.
	 *
2916 2917
	 * This may miss entries inserted after this dump started,
	 * or entries deleted before they are reached.
2918 2919 2920 2921 2922
	 *
	 * We need to make sure the mdev won't disappear while
	 * we are looking at it, and revalidate our iterators
	 * on each iteration.
	 */
P
Philipp Reisner 已提交
2923

2924
	/* synchronize with conn_create()/conn_destroy() */
P
Philipp Reisner 已提交
2925
	rcu_read_lock();
2926
	/* revalidate iterator position */
2927
	list_for_each_entry_rcu(tmp, &drbd_tconns, all_tconn) {
2928 2929 2930 2931 2932 2933 2934 2935 2936 2937
		if (pos == NULL) {
			/* first iteration */
			pos = tmp;
			tconn = pos;
			break;
		}
		if (tmp == pos) {
			tconn = pos;
			break;
		}
P
Philipp Reisner 已提交
2938
	}
2939
	if (tconn) {
2940
next_tconn:
2941 2942 2943 2944
		mdev = idr_get_next(&tconn->volumes, &volume);
		if (!mdev) {
			/* No more volumes to dump on this tconn.
			 * Advance tconn iterator. */
2945 2946
			pos = list_entry_rcu(tconn->all_tconn.next,
					     struct drbd_tconn, all_tconn);
2947
			/* Did we dump any volume on this tconn yet? */
2948
			if (volume != 0) {
2949 2950 2951 2952 2953
				/* If we reached the end of the list,
				 * or only a single resource dump was requested,
				 * we are done. */
				if (&pos->all_tconn == &drbd_tconns || cb->args[2])
					goto out;
2954
				volume = 0;
2955
				tconn = pos;
2956 2957 2958 2959
				goto next_tconn;
			}
		}

2960
		dh = genlmsg_put(skb, NETLINK_CB(cb->skb).portid,
2961 2962 2963
				cb->nlh->nlmsg_seq, &drbd_genl_family,
				NLM_F_MULTI, DRBD_ADM_GET_STATUS);
		if (!dh)
2964 2965 2966
			goto out;

		if (!mdev) {
2967 2968 2969 2970
			/* This is a tconn without a single volume.
			 * Suprisingly enough, it may have a network
			 * configuration. */
			struct net_conf *nc;
2971 2972
			dh->minor = -1U;
			dh->ret_code = NO_ERROR;
2973
			if (nla_put_drbd_cfg_context(skb, tconn, VOLUME_UNSPECIFIED))
2974 2975 2976 2977 2978
				goto cancel;
			nc = rcu_dereference(tconn->net_conf);
			if (nc && net_conf_to_skb(skb, nc, 1) != 0)
				goto cancel;
			goto done;
2979
		}
P
Philipp Reisner 已提交
2980

2981 2982
		D_ASSERT(mdev->vnr == volume);
		D_ASSERT(mdev->tconn == tconn);
2983

2984
		dh->minor = mdev_to_minor(mdev);
2985 2986 2987
		dh->ret_code = NO_ERROR;

		if (nla_put_status_info(skb, mdev, NULL)) {
2988
cancel:
2989
			genlmsg_cancel(skb, dh);
2990
			goto out;
2991
		}
2992
done:
2993 2994
		genlmsg_end(skb, dh);
        }
P
Philipp Reisner 已提交
2995

2996
out:
P
Philipp Reisner 已提交
2997
	rcu_read_unlock();
2998 2999 3000
	/* where to start the next iteration */
        cb->args[0] = (long)pos;
        cb->args[1] = (pos == tconn) ? volume + 1 : 0;
P
Philipp Reisner 已提交
3001

3002 3003
	/* No more tconns/volumes/minors found results in an empty skb.
	 * Which will terminate the dump. */
3004
        return skb->len;
P
Philipp Reisner 已提交
3005 3006
}

3007 3008 3009 3010 3011 3012 3013 3014 3015
/*
 * Request status of all resources, or of all volumes within a single resource.
 *
 * This is a dump, as the answer may not fit in a single reply skb otherwise.
 * Which means we cannot use the family->attrbuf or other such members, because
 * dump is NOT protected by the genl_lock().  During dump, we only have access
 * to the incoming skb, and need to opencode "parsing" of the nlattr payload.
 *
 * Once things are setup properly, we call into get_one_status().
P
Philipp Reisner 已提交
3016
 */
3017
int drbd_adm_get_status_all(struct sk_buff *skb, struct netlink_callback *cb)
P
Philipp Reisner 已提交
3018
{
3019 3020
	const unsigned hdrlen = GENL_HDRLEN + GENL_MAGIC_FAMILY_HDRSZ;
	struct nlattr *nla;
3021
	const char *resource_name;
3022
	struct drbd_tconn *tconn;
3023
	int maxtype;
3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042

	/* Is this a followup call? */
	if (cb->args[0]) {
		/* ... of a single resource dump,
		 * and the resource iterator has been advanced already? */
		if (cb->args[2] && cb->args[2] != cb->args[0])
			return 0; /* DONE. */
		goto dump;
	}

	/* First call (from netlink_dump_start).  We need to figure out
	 * which resource(s) the user wants us to dump. */
	nla = nla_find(nlmsg_attrdata(cb->nlh, hdrlen),
			nlmsg_attrlen(cb->nlh, hdrlen),
			DRBD_NLA_CFG_CONTEXT);

	/* No explicit context given.  Dump all. */
	if (!nla)
		goto dump;
3043 3044 3045 3046
	maxtype = ARRAY_SIZE(drbd_cfg_context_nl_policy) - 1;
	nla = drbd_nla_find_nested(maxtype, nla, __nla_type(T_ctx_resource_name));
	if (IS_ERR(nla))
		return PTR_ERR(nla);
3047 3048 3049
	/* context given, but no name present? */
	if (!nla)
		return -EINVAL;
3050 3051
	resource_name = nla_data(nla);
	tconn = conn_get_by_name(resource_name);
3052

3053 3054 3055
	if (!tconn)
		return -ENODEV;

3056 3057
	kref_put(&tconn->kref, &conn_destroy); /* get_one_status() (re)validates tconn by itself */

3058 3059 3060 3061 3062 3063 3064 3065 3066
	/* prime iterators, and set "filter" mode mark:
	 * only dump this tconn. */
	cb->args[0] = (long)tconn;
	/* cb->args[1] = 0; passed in this way. */
	cb->args[2] = (long)tconn;

dump:
	return get_one_status(skb, cb);
}
P
Philipp Reisner 已提交
3067

3068
int drbd_adm_get_timeout_type(struct sk_buff *skb, struct genl_info *info)
P
Philipp Reisner 已提交
3069
{
3070 3071 3072
	enum drbd_ret_code retcode;
	struct timeout_parms tp;
	int err;
P
Philipp Reisner 已提交
3073

3074 3075 3076 3077 3078
	retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
	if (!adm_ctx.reply_skb)
		return retcode;
	if (retcode != NO_ERROR)
		goto out;
P
Philipp Reisner 已提交
3079

3080 3081 3082 3083
	tp.timeout_type =
		adm_ctx.mdev->state.pdsk == D_OUTDATED ? UT_PEER_OUTDATED :
		test_bit(USE_DEGR_WFC_T, &adm_ctx.mdev->flags) ? UT_DEGRADED :
		UT_DEFAULT;
P
Philipp Reisner 已提交
3084

3085 3086 3087 3088 3089 3090 3091 3092
	err = timeout_parms_to_priv_skb(adm_ctx.reply_skb, &tp);
	if (err) {
		nlmsg_free(adm_ctx.reply_skb);
		return err;
	}
out:
	drbd_adm_finish(info, retcode);
	return 0;
P
Philipp Reisner 已提交
3093 3094
}

3095
int drbd_adm_start_ov(struct sk_buff *skb, struct genl_info *info)
P
Philipp Reisner 已提交
3096
{
3097 3098
	struct drbd_conf *mdev;
	enum drbd_ret_code retcode;
3099
	struct start_ov_parms parms;
P
Philipp Reisner 已提交
3100

3101 3102 3103 3104 3105
	retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
	if (!adm_ctx.reply_skb)
		return retcode;
	if (retcode != NO_ERROR)
		goto out;
3106

3107
	mdev = adm_ctx.mdev;
3108 3109 3110 3111

	/* resume from last known position, if possible */
	parms.ov_start_sector = mdev->ov_start_sector;
	parms.ov_stop_sector = ULLONG_MAX;
3112
	if (info->attrs[DRBD_NLA_START_OV_PARMS]) {
3113
		int err = start_ov_parms_from_attrs(&parms, info);
3114 3115 3116 3117 3118
		if (err) {
			retcode = ERR_MANDATORY_TAG;
			drbd_msg_put_info(from_attrs_err_to_txt(err));
			goto out;
		}
P
Philipp Reisner 已提交
3119
	}
3120 3121 3122
	/* w_make_ov_request expects position to be aligned */
	mdev->ov_start_sector = parms.ov_start_sector & ~(BM_SECT_PER_BIT-1);
	mdev->ov_stop_sector = parms.ov_stop_sector;
3123 3124 3125

	/* If there is still bitmap IO pending, e.g. previous resync or verify
	 * just being finished, wait for it before requesting a new resync. */
3126
	drbd_suspend_io(mdev);
3127
	wait_event(mdev->misc_wait, !test_bit(BITMAP_IO, &mdev->flags));
3128
	retcode = drbd_request_state(mdev,NS(conn,C_VERIFY_S));
3129
	drbd_resume_io(mdev);
3130 3131
out:
	drbd_adm_finish(info, retcode);
P
Philipp Reisner 已提交
3132 3133 3134 3135
	return 0;
}


3136
int drbd_adm_new_c_uuid(struct sk_buff *skb, struct genl_info *info)
P
Philipp Reisner 已提交
3137
{
3138 3139
	struct drbd_conf *mdev;
	enum drbd_ret_code retcode;
P
Philipp Reisner 已提交
3140 3141
	int skip_initial_sync = 0;
	int err;
3142
	struct new_c_uuid_parms args;
P
Philipp Reisner 已提交
3143

3144 3145 3146 3147 3148
	retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
	if (!adm_ctx.reply_skb)
		return retcode;
	if (retcode != NO_ERROR)
		goto out_nolock;
P
Philipp Reisner 已提交
3149

3150 3151 3152
	mdev = adm_ctx.mdev;
	memset(&args, 0, sizeof(args));
	if (info->attrs[DRBD_NLA_NEW_C_UUID_PARMS]) {
3153
		err = new_c_uuid_parms_from_attrs(&args, info);
3154 3155 3156 3157 3158
		if (err) {
			retcode = ERR_MANDATORY_TAG;
			drbd_msg_put_info(from_attrs_err_to_txt(err));
			goto out_nolock;
		}
P
Philipp Reisner 已提交
3159 3160
	}

3161
	mutex_lock(mdev->state_mutex); /* Protects us against serialized state changes. */
P
Philipp Reisner 已提交
3162 3163 3164 3165 3166 3167 3168

	if (!get_ldev(mdev)) {
		retcode = ERR_NO_DISK;
		goto out;
	}

	/* this is "skip initial sync", assume to be clean */
3169
	if (mdev->state.conn == C_CONNECTED && mdev->tconn->agreed_pro_version >= 90 &&
P
Philipp Reisner 已提交
3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181
	    mdev->ldev->md.uuid[UI_CURRENT] == UUID_JUST_CREATED && args.clear_bm) {
		dev_info(DEV, "Preparing to skip initial sync\n");
		skip_initial_sync = 1;
	} else if (mdev->state.conn != C_STANDALONE) {
		retcode = ERR_CONNECTED;
		goto out_dec;
	}

	drbd_uuid_set(mdev, UI_BITMAP, 0); /* Rotate UI_BITMAP to History 1, etc... */
	drbd_uuid_new_current(mdev); /* New current, previous to UI_BITMAP */

	if (args.clear_bm) {
3182 3183
		err = drbd_bitmap_io(mdev, &drbd_bmio_clear_n_write,
			"clear_n_write from new_c_uuid", BM_LOCKED_MASK);
P
Philipp Reisner 已提交
3184 3185 3186 3187 3188 3189 3190
		if (err) {
			dev_err(DEV, "Writing bitmap failed with %d\n",err);
			retcode = ERR_IO_MD_DISK;
		}
		if (skip_initial_sync) {
			drbd_send_uuids_skip_initial_sync(mdev);
			_drbd_uuid_set(mdev, UI_BITMAP, 0);
3191
			drbd_print_uuids(mdev, "cleared bitmap UUID");
3192
			spin_lock_irq(&mdev->tconn->req_lock);
P
Philipp Reisner 已提交
3193 3194
			_drbd_set_state(_NS2(mdev, disk, D_UP_TO_DATE, pdsk, D_UP_TO_DATE),
					CS_VERBOSE, NULL);
3195
			spin_unlock_irq(&mdev->tconn->req_lock);
P
Philipp Reisner 已提交
3196 3197 3198 3199 3200 3201 3202
		}
	}

	drbd_md_sync(mdev);
out_dec:
	put_ldev(mdev);
out:
3203
	mutex_unlock(mdev->state_mutex);
3204 3205
out_nolock:
	drbd_adm_finish(info, retcode);
P
Philipp Reisner 已提交
3206 3207 3208
	return 0;
}

3209
static enum drbd_ret_code
3210
drbd_check_resource_name(const char *name)
P
Philipp Reisner 已提交
3211
{
3212
	if (!name || !name[0]) {
3213
		drbd_msg_put_info("resource name missing");
3214
		return ERR_MANDATORY_TAG;
P
Philipp Reisner 已提交
3215
	}
3216 3217 3218
	/* if we want to use these in sysfs/configfs/debugfs some day,
	 * we must not allow slashes */
	if (strchr(name, '/')) {
3219
		drbd_msg_put_info("invalid resource name");
3220
		return ERR_INVALID_REQUEST;
P
Philipp Reisner 已提交
3221
	}
3222
	return NO_ERROR;
3223
}
P
Philipp Reisner 已提交
3224

3225
int drbd_adm_new_resource(struct sk_buff *skb, struct genl_info *info)
P
Philipp Reisner 已提交
3226
{
3227
	enum drbd_ret_code retcode;
3228 3229
	struct res_opts res_opts;
	int err;
P
Philipp Reisner 已提交
3230

3231 3232 3233 3234 3235
	retcode = drbd_adm_prepare(skb, info, 0);
	if (!adm_ctx.reply_skb)
		return retcode;
	if (retcode != NO_ERROR)
		goto out;
P
Philipp Reisner 已提交
3236

3237 3238 3239 3240 3241 3242
	set_res_opts_defaults(&res_opts);
	err = res_opts_from_attrs(&res_opts, info);
	if (err && err != -ENOMSG) {
		retcode = ERR_MANDATORY_TAG;
		drbd_msg_put_info(from_attrs_err_to_txt(err));
		goto out;
P
Philipp Reisner 已提交
3243 3244
	}

3245
	retcode = drbd_check_resource_name(adm_ctx.resource_name);
3246 3247
	if (retcode != NO_ERROR)
		goto out;
P
Philipp Reisner 已提交
3248

3249
	if (adm_ctx.tconn) {
3250 3251
		if (info->nlhdr->nlmsg_flags & NLM_F_EXCL) {
			retcode = ERR_INVALID_REQUEST;
3252
			drbd_msg_put_info("resource exists");
3253 3254
		}
		/* else: still NO_ERROR */
3255
		goto out;
P
Philipp Reisner 已提交
3256 3257
	}

3258
	if (!conn_create(adm_ctx.resource_name, &res_opts))
P
Philipp Reisner 已提交
3259
		retcode = ERR_NOMEM;
3260 3261 3262
out:
	drbd_adm_finish(info, retcode);
	return 0;
P
Philipp Reisner 已提交
3263 3264
}

3265
int drbd_adm_add_minor(struct sk_buff *skb, struct genl_info *info)
P
Philipp Reisner 已提交
3266
{
3267 3268
	struct drbd_genlmsghdr *dh = info->userhdr;
	enum drbd_ret_code retcode;
P
Philipp Reisner 已提交
3269

3270
	retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_RESOURCE);
3271 3272 3273 3274
	if (!adm_ctx.reply_skb)
		return retcode;
	if (retcode != NO_ERROR)
		goto out;
P
Philipp Reisner 已提交
3275

3276
	if (dh->minor > MINORMASK) {
3277 3278 3279
		drbd_msg_put_info("requested minor out of range");
		retcode = ERR_INVALID_REQUEST;
		goto out;
P
Philipp Reisner 已提交
3280
	}
3281
	if (adm_ctx.volume > DRBD_VOLUME_MAX) {
3282 3283 3284
		drbd_msg_put_info("requested volume id out of range");
		retcode = ERR_INVALID_REQUEST;
		goto out;
P
Philipp Reisner 已提交
3285 3286
	}

3287 3288 3289 3290 3291 3292 3293
	/* drbd_adm_prepare made sure already
	 * that mdev->tconn and mdev->vnr match the request. */
	if (adm_ctx.mdev) {
		if (info->nlhdr->nlmsg_flags & NLM_F_EXCL)
			retcode = ERR_MINOR_EXISTS;
		/* else: still NO_ERROR */
		goto out;
P
Philipp Reisner 已提交
3294
	}
3295

3296 3297 3298 3299
	retcode = conn_new_minor(adm_ctx.tconn, dh->minor, adm_ctx.volume);
out:
	drbd_adm_finish(info, retcode);
	return 0;
P
Philipp Reisner 已提交
3300 3301
}

3302
static enum drbd_ret_code adm_delete_minor(struct drbd_conf *mdev)
P
Philipp Reisner 已提交
3303
{
3304 3305 3306 3307 3308
	if (mdev->state.disk == D_DISKLESS &&
	    /* no need to be mdev->state.conn == C_STANDALONE &&
	     * we may want to delete a minor from a live replication group.
	     */
	    mdev->state.role == R_SECONDARY) {
3309 3310
		_drbd_request_state(mdev, NS(conn, C_WF_REPORT_PARAMS),
				    CS_VERBOSE + CS_WAIT_COMPLETE);
3311 3312
		idr_remove(&mdev->tconn->volumes, mdev->vnr);
		idr_remove(&minors, mdev_to_minor(mdev));
3313
		destroy_workqueue(mdev->submit.wq);
3314 3315 3316
		del_gendisk(mdev->vdisk);
		synchronize_rcu();
		kref_put(&mdev->kref, &drbd_minor_destroy);
3317 3318 3319
		return NO_ERROR;
	} else
		return ERR_MINOR_CONFIGURED;
P
Philipp Reisner 已提交
3320 3321
}

3322
int drbd_adm_delete_minor(struct sk_buff *skb, struct genl_info *info)
P
Philipp Reisner 已提交
3323
{
3324
	enum drbd_ret_code retcode;
P
Philipp Reisner 已提交
3325

3326 3327 3328 3329 3330
	retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_MINOR);
	if (!adm_ctx.reply_skb)
		return retcode;
	if (retcode != NO_ERROR)
		goto out;
P
Philipp Reisner 已提交
3331

3332 3333 3334 3335
	retcode = adm_delete_minor(adm_ctx.mdev);
out:
	drbd_adm_finish(info, retcode);
	return 0;
P
Philipp Reisner 已提交
3336 3337
}

3338
int drbd_adm_down(struct sk_buff *skb, struct genl_info *info)
P
Philipp Reisner 已提交
3339
{
3340
	int retcode; /* enum drbd_ret_code rsp. enum drbd_state_rv */
3341 3342
	struct drbd_conf *mdev;
	unsigned i;
P
Philipp Reisner 已提交
3343

3344 3345 3346 3347 3348
	retcode = drbd_adm_prepare(skb, info, 0);
	if (!adm_ctx.reply_skb)
		return retcode;
	if (retcode != NO_ERROR)
		goto out;
P
Philipp Reisner 已提交
3349

3350
	if (!adm_ctx.tconn) {
3351
		retcode = ERR_RES_NOT_KNOWN;
3352
		goto out;
P
Philipp Reisner 已提交
3353 3354
	}

3355 3356 3357 3358 3359
	/* demote */
	idr_for_each_entry(&adm_ctx.tconn->volumes, mdev, i) {
		retcode = drbd_set_role(mdev, R_SECONDARY, 0);
		if (retcode < SS_SUCCESS) {
			drbd_msg_put_info("failed to demote");
P
Philipp Reisner 已提交
3360
			goto out;
3361
		}
P
Philipp Reisner 已提交
3362 3363
	}

3364 3365
	retcode = conn_try_disconnect(adm_ctx.tconn, 0);
	if (retcode < SS_SUCCESS) {
3366
		drbd_msg_put_info("failed to disconnect");
3367
		goto out;
3368
	}
P
Philipp Reisner 已提交
3369

3370 3371
	/* detach */
	idr_for_each_entry(&adm_ctx.tconn->volumes, mdev, i) {
3372
		retcode = adm_detach(mdev, 0);
3373
		if (retcode < SS_SUCCESS || retcode > NO_ERROR) {
3374
			drbd_msg_put_info("failed to detach");
P
Philipp Reisner 已提交
3375
			goto out;
3376 3377
		}
	}
P
Philipp Reisner 已提交
3378

3379 3380
	/* If we reach this, all volumes (of this tconn) are Secondary,
	 * Disconnected, Diskless, aka Unconfigured. Make sure all threads have
P
Philipp Reisner 已提交
3381
	 * actually stopped, state handling only does drbd_thread_stop_nowait(). */
3382
	drbd_thread_stop(&adm_ctx.tconn->worker);
P
Philipp Reisner 已提交
3383

3384
	/* Now, nothing can fail anymore */
P
Philipp Reisner 已提交
3385

3386 3387 3388 3389 3390 3391
	/* delete volumes */
	idr_for_each_entry(&adm_ctx.tconn->volumes, mdev, i) {
		retcode = adm_delete_minor(mdev);
		if (retcode != NO_ERROR) {
			/* "can not happen" */
			drbd_msg_put_info("failed to delete volume");
3392
			goto out;
3393 3394
		}
	}
P
Philipp Reisner 已提交
3395

3396 3397
	/* delete connection */
	if (conn_lowest_minor(adm_ctx.tconn) < 0) {
3398 3399
		list_del_rcu(&adm_ctx.tconn->all_tconn);
		synchronize_rcu();
3400
		kref_put(&adm_ctx.tconn->kref, &conn_destroy);
P
Philipp Reisner 已提交
3401

3402 3403 3404
		retcode = NO_ERROR;
	} else {
		/* "can not happen" */
3405
		retcode = ERR_RES_IN_USE;
3406 3407
		drbd_msg_put_info("failed to delete connection");
	}
3408
	goto out;
3409 3410 3411
out:
	drbd_adm_finish(info, retcode);
	return 0;
P
Philipp Reisner 已提交
3412 3413
}

3414
int drbd_adm_del_resource(struct sk_buff *skb, struct genl_info *info)
P
Philipp Reisner 已提交
3415
{
3416
	enum drbd_ret_code retcode;
P
Philipp Reisner 已提交
3417

3418
	retcode = drbd_adm_prepare(skb, info, DRBD_ADM_NEED_RESOURCE);
3419 3420 3421 3422
	if (!adm_ctx.reply_skb)
		return retcode;
	if (retcode != NO_ERROR)
		goto out;
P
Philipp Reisner 已提交
3423

3424
	if (conn_lowest_minor(adm_ctx.tconn) < 0) {
3425 3426
		list_del_rcu(&adm_ctx.tconn->all_tconn);
		synchronize_rcu();
3427 3428
		kref_put(&adm_ctx.tconn->kref, &conn_destroy);

3429 3430
		retcode = NO_ERROR;
	} else {
3431
		retcode = ERR_RES_IN_USE;
P
Philipp Reisner 已提交
3432 3433
	}

L
Lars Ellenberg 已提交
3434 3435
	if (retcode == NO_ERROR)
		drbd_thread_stop(&adm_ctx.tconn->worker);
3436 3437
out:
	drbd_adm_finish(info, retcode);
P
Philipp Reisner 已提交
3438 3439 3440
	return 0;
}

3441
void drbd_bcast_event(struct drbd_conf *mdev, const struct sib_info *sib)
P
Philipp Reisner 已提交
3442
{
3443 3444 3445 3446 3447 3448
	static atomic_t drbd_genl_seq = ATOMIC_INIT(2); /* two. */
	struct sk_buff *msg;
	struct drbd_genlmsghdr *d_out;
	unsigned seq;
	int err = -ENOMEM;

3449 3450 3451 3452 3453 3454
	if (sib->sib_reason == SIB_SYNC_PROGRESS) {
		if (time_after(jiffies, mdev->rs_last_bcast + HZ))
			mdev->rs_last_bcast = jiffies;
		else
			return;
	}
P
Philipp Reisner 已提交
3455

3456 3457 3458 3459 3460 3461 3462 3463 3464 3465
	seq = atomic_inc_return(&drbd_genl_seq);
	msg = genlmsg_new(NLMSG_GOODSIZE, GFP_NOIO);
	if (!msg)
		goto failed;

	err = -EMSGSIZE;
	d_out = genlmsg_put(msg, 0, seq, &drbd_genl_family, 0, DRBD_EVENT);
	if (!d_out) /* cannot happen, but anyways. */
		goto nla_put_failure;
	d_out->minor = mdev_to_minor(mdev);
3466
	d_out->ret_code = NO_ERROR;
3467 3468 3469 3470 3471 3472 3473 3474

	if (nla_put_status_info(msg, mdev, sib))
		goto nla_put_failure;
	genlmsg_end(msg, d_out);
	err = drbd_genl_multicast_events(msg, 0);
	/* msg has been consumed or freed in netlink_broadcast() */
	if (err && err != -ESRCH)
		goto failed;
P
Philipp Reisner 已提交
3475

3476
	return;
P
Philipp Reisner 已提交
3477

3478 3479 3480 3481 3482 3483
nla_put_failure:
	nlmsg_free(msg);
failed:
	dev_err(DEV, "Error %d while broadcasting event. "
			"Event seq:%u sib_reason:%u\n",
			err, seq, sib->sib_reason);
P
Philipp Reisner 已提交
3484
}