drbd_main.c 111.8 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
/*
   drbd.c

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

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

   Thanks to Carter Burden, Bart Grantham and Gennadiy Nerubayev
   from Logicworks, Inc. for making SDP replication support possible.

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

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

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

 */

29 30
#define pr_fmt(fmt)	KBUILD_MODNAME ": " fmt

P
Philipp Reisner 已提交
31
#include <linux/module.h>
32
#include <linux/jiffies.h>
P
Philipp Reisner 已提交
33
#include <linux/drbd.h>
34
#include <linux/uaccess.h>
P
Philipp Reisner 已提交
35 36 37
#include <asm/types.h>
#include <net/sock.h>
#include <linux/ctype.h>
38
#include <linux/mutex.h>
P
Philipp Reisner 已提交
39 40 41 42 43 44 45 46 47 48 49 50
#include <linux/fs.h>
#include <linux/file.h>
#include <linux/proc_fs.h>
#include <linux/init.h>
#include <linux/mm.h>
#include <linux/memcontrol.h>
#include <linux/mm_inline.h>
#include <linux/slab.h>
#include <linux/random.h>
#include <linux/reboot.h>
#include <linux/notifier.h>
#include <linux/kthread.h>
51
#include <linux/workqueue.h>
P
Philipp Reisner 已提交
52 53 54
#define __KERNEL_SYSCALLS__
#include <linux/unistd.h>
#include <linux/vmalloc.h>
55
#include <linux/sched/signal.h>
P
Philipp Reisner 已提交
56 57 58

#include <linux/drbd_limits.h>
#include "drbd_int.h"
59
#include "drbd_protocol.h"
P
Philipp Reisner 已提交
60 61
#include "drbd_req.h" /* only for _req_mod in tl_release and tl_clear */
#include "drbd_vli.h"
62
#include "drbd_debugfs.h"
P
Philipp Reisner 已提交
63

64
static DEFINE_MUTEX(drbd_main_mutex);
P
Philipp Reisner 已提交
65
static int drbd_open(struct block_device *bdev, fmode_t mode);
66
static void drbd_release(struct gendisk *gd, fmode_t mode);
67
static void md_sync_timer_fn(struct timer_list *t);
68
static int w_bitmap_io(struct drbd_work *w, int unused);
P
Philipp Reisner 已提交
69 70 71 72 73 74

MODULE_AUTHOR("Philipp Reisner <phil@linbit.com>, "
	      "Lars Ellenberg <lars@linbit.com>");
MODULE_DESCRIPTION("drbd - Distributed Replicated Block Device v" REL_VERSION);
MODULE_VERSION(REL_VERSION);
MODULE_LICENSE("GPL");
75
MODULE_PARM_DESC(minor_count, "Approximate number of drbd devices ("
76
		 __stringify(DRBD_MINOR_COUNT_MIN) "-" __stringify(DRBD_MINOR_COUNT_MAX) ")");
P
Philipp Reisner 已提交
77 78 79 80
MODULE_ALIAS_BLOCKDEV_MAJOR(DRBD_MAJOR);

#include <linux/moduleparam.h>
/* thanks to these macros, if compiled into the kernel (not-module),
81
 * these become boot parameters (e.g., drbd.minor_count) */
P
Philipp Reisner 已提交
82 83

#ifdef CONFIG_DRBD_FAULT_INJECTION
84 85 86 87
int drbd_enable_faults;
int drbd_fault_rate;
static int drbd_fault_count;
static int drbd_fault_devs;
P
Philipp Reisner 已提交
88
/* bitmap of enabled faults */
89
module_param_named(enable_faults, drbd_enable_faults, int, 0664);
P
Philipp Reisner 已提交
90
/* fault rate % value - applies to all enabled faults */
91
module_param_named(fault_rate, drbd_fault_rate, int, 0664);
P
Philipp Reisner 已提交
92
/* count of faults inserted */
93
module_param_named(fault_count, drbd_fault_count, int, 0664);
P
Philipp Reisner 已提交
94
/* bitmap of devices to insert faults on */
95
module_param_named(fault_devs, drbd_fault_devs, int, 0644);
P
Philipp Reisner 已提交
96 97
#endif

98 99 100 101 102 103 104 105 106 107 108 109
/* module parameters we can keep static */
static bool drbd_allow_oos; /* allow_open_on_secondary */
static bool drbd_disable_sendpage;
MODULE_PARM_DESC(allow_oos, "DONT USE!");
module_param_named(allow_oos, drbd_allow_oos, bool, 0);
module_param_named(disable_sendpage, drbd_disable_sendpage, bool, 0644);

/* module parameters we share */
int drbd_proc_details; /* Detail level in proc drbd*/
module_param_named(proc_details, drbd_proc_details, int, 0644);
/* module parameters shared with defaults */
unsigned int drbd_minor_count = DRBD_MINOR_COUNT_DEF;
P
Philipp Reisner 已提交
110 111
/* Module parameter for setting the user mode helper program
 * to run. Default is /sbin/drbdadm */
112
char drbd_usermode_helper[80] = "/sbin/drbdadm";
113
module_param_named(minor_count, drbd_minor_count, uint, 0444);
114
module_param_string(usermode_helper, drbd_usermode_helper, sizeof(drbd_usermode_helper), 0644);
P
Philipp Reisner 已提交
115 116 117 118

/* in 2.6.x, our device mapping and config info contains our virtual gendisks
 * as member "struct gendisk *vdisk;"
 */
119
struct idr drbd_devices;
120
struct list_head drbd_resources;
121
struct mutex resources_mutex;
P
Philipp Reisner 已提交
122 123

struct kmem_cache *drbd_request_cache;
A
Andreas Gruenbacher 已提交
124
struct kmem_cache *drbd_ee_cache;	/* peer requests */
P
Philipp Reisner 已提交
125 126
struct kmem_cache *drbd_bm_ext_cache;	/* bitmap extents */
struct kmem_cache *drbd_al_ext_cache;	/* activity log extents */
127 128 129 130 131
mempool_t drbd_request_mempool;
mempool_t drbd_ee_mempool;
mempool_t drbd_md_io_page_pool;
struct bio_set drbd_md_io_bio_set;
struct bio_set drbd_io_bio_set;
P
Philipp Reisner 已提交
132 133 134 135 136 137 138 139 140 141 142 143 144 145

/* I do not use a standard mempool, because:
   1) I want to hand out the pre-allocated objects first.
   2) I want to be able to interrupt sleeping allocation with a signal.
   Note: This is a single linked list, the next pointer is the private
	 member of struct page.
 */
struct page *drbd_pp_pool;
spinlock_t   drbd_pp_lock;
int          drbd_pp_vacant;
wait_queue_head_t drbd_pp_wait;

DEFINE_RATELIMIT_STATE(drbd_ratelimit_state, 5 * HZ, 5);

146
static const struct block_device_operations drbd_ops = {
P
Philipp Reisner 已提交
147 148 149 150
	.owner =   THIS_MODULE,
	.open =    drbd_open,
	.release = drbd_release,
};
151

152 153 154
struct bio *bio_alloc_drbd(gfp_t gfp_mask)
{
	struct bio *bio;
155

156
	if (!bioset_initialized(&drbd_md_io_bio_set))
157
		return bio_alloc(gfp_mask, 1);
158

159
	bio = bio_alloc_bioset(gfp_mask, 1, &drbd_md_io_bio_set);
160 161 162
	if (!bio)
		return NULL;
	return bio;
163 164
}

P
Philipp Reisner 已提交
165 166 167 168
#ifdef __CHECKER__
/* When checking with sparse, and this is an inline function, sparse will
   give tons of false positives. When this is a real functions sparse works.
 */
169
int _get_ldev_if_state(struct drbd_device *device, enum drbd_disk_state mins)
P
Philipp Reisner 已提交
170 171 172
{
	int io_allowed;

173 174
	atomic_inc(&device->local_cnt);
	io_allowed = (device->state.disk >= mins);
P
Philipp Reisner 已提交
175
	if (!io_allowed) {
176 177
		if (atomic_dec_and_test(&device->local_cnt))
			wake_up(&device->misc_wait);
P
Philipp Reisner 已提交
178 179 180 181 182
	}
	return io_allowed;
}

#endif
183

P
Philipp Reisner 已提交
184
/**
185
 * tl_release() - mark as BARRIER_ACKED all requests in the corresponding transfer log epoch
186
 * @connection:	DRBD connection.
P
Philipp Reisner 已提交
187 188 189 190
 * @barrier_nr:	Expected identifier of the DRBD write barrier packet.
 * @set_size:	Expected number of requests before that barrier.
 *
 * In case the passed barrier_nr or set_size does not match the oldest
191 192
 * epoch of not yet barrier-acked requests, this function will cause a
 * termination of the connection.
P
Philipp Reisner 已提交
193
 */
194
void tl_release(struct drbd_connection *connection, unsigned int barrier_nr,
195
		unsigned int set_size)
P
Philipp Reisner 已提交
196 197
{
	struct drbd_request *r;
198 199 200
	struct drbd_request *req = NULL;
	int expect_epoch = 0;
	int expect_size = 0;
P
Philipp Reisner 已提交
201

202
	spin_lock_irq(&connection->resource->req_lock);
P
Philipp Reisner 已提交
203

204
	/* find oldest not yet barrier-acked write request,
205
	 * count writes in its epoch. */
206
	list_for_each_entry(r, &connection->transfer_log, tl_requests) {
207
		const unsigned s = r->rq_state;
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
		if (!req) {
			if (!(s & RQ_WRITE))
				continue;
			if (!(s & RQ_NET_MASK))
				continue;
			if (s & RQ_NET_DONE)
				continue;
			req = r;
			expect_epoch = req->epoch;
			expect_size ++;
		} else {
			if (r->epoch != expect_epoch)
				break;
			if (!(s & RQ_WRITE))
				continue;
			/* if (s & RQ_DONE): not expected */
			/* if (!(s & RQ_NET_MASK)): not expected */
			expect_size++;
226
		}
P
Philipp Reisner 已提交
227
	}
228

P
Philipp Reisner 已提交
229
	/* first some paranoia code */
230
	if (req == NULL) {
231
		drbd_err(connection, "BAD! BarrierAck #%u received, but no epoch in tl!?\n",
232
			 barrier_nr);
P
Philipp Reisner 已提交
233 234
		goto bail;
	}
235
	if (expect_epoch != barrier_nr) {
236
		drbd_err(connection, "BAD! BarrierAck #%u received, expected #%u!\n",
237
			 barrier_nr, expect_epoch);
P
Philipp Reisner 已提交
238
		goto bail;
239 240
	}

241
	if (expect_size != set_size) {
242
		drbd_err(connection, "BAD! BarrierAck #%u received with n_writes=%u, expected n_writes=%u!\n",
243
			 barrier_nr, set_size, expect_size);
P
Philipp Reisner 已提交
244 245 246
		goto bail;
	}

247 248 249 250
	/* Clean up list of requests processed during current epoch. */
	/* this extra list walk restart is paranoia,
	 * to catch requests being barrier-acked "unexpectedly".
	 * It usually should find the same req again, or some READ preceding it. */
251
	list_for_each_entry(req, &connection->transfer_log, tl_requests)
252 253
		if (req->epoch == expect_epoch)
			break;
254
	list_for_each_entry_safe_from(req, r, &connection->transfer_log, tl_requests) {
255 256 257
		if (req->epoch != expect_epoch)
			break;
		_req_mod(req, BARRIER_ACKED);
258
	}
259
	spin_unlock_irq(&connection->resource->req_lock);
260

P
Philipp Reisner 已提交
261 262 263
	return;

bail:
264
	spin_unlock_irq(&connection->resource->req_lock);
265
	conn_request_state(connection, NS(conn, C_PROTOCOL_ERROR), CS_HARD);
P
Philipp Reisner 已提交
266 267 268 269
}


/**
270
 * _tl_restart() - Walks the transfer log, and applies an action to all requests
271
 * @connection:	DRBD connection to operate on.
272
 * @what:       The action/event to perform with all request objects
P
Philipp Reisner 已提交
273
 *
274 275
 * @what might be one of CONNECTION_LOST_WHILE_PENDING, RESEND, FAIL_FROZEN_DISK_IO,
 * RESTART_FROZEN_DISK_IO.
P
Philipp Reisner 已提交
276
 */
277
/* must hold resource->req_lock */
278
void _tl_restart(struct drbd_connection *connection, enum drbd_req_event what)
P
Philipp Reisner 已提交
279
{
280
	struct drbd_request *req, *r;
P
Philipp Reisner 已提交
281

282
	list_for_each_entry_safe(req, r, &connection->transfer_log, tl_requests)
283 284
		_req_mod(req, what);
}
285

286
void tl_restart(struct drbd_connection *connection, enum drbd_req_event what)
287
{
288
	spin_lock_irq(&connection->resource->req_lock);
289
	_tl_restart(connection, what);
290
	spin_unlock_irq(&connection->resource->req_lock);
291
}
P
Philipp Reisner 已提交
292 293 294

/**
 * tl_clear() - Clears all requests and &struct drbd_tl_epoch objects out of the TL
295
 * @device:	DRBD device.
P
Philipp Reisner 已提交
296 297 298 299 300
 *
 * This is called after the connection to the peer was lost. The storage covered
 * by the requests on the transfer gets marked as our of sync. Called from the
 * receiver thread and the worker thread.
 */
301
void tl_clear(struct drbd_connection *connection)
P
Philipp Reisner 已提交
302
{
303
	tl_restart(connection, CONNECTION_LOST_WHILE_PENDING);
P
Philipp Reisner 已提交
304
}
305

306
/**
307 308
 * tl_abort_disk_io() - Abort disk I/O for all requests for a certain device in the TL
 * @device:	DRBD device.
309
 */
310
void tl_abort_disk_io(struct drbd_device *device)
311
{
312
	struct drbd_connection *connection = first_peer_device(device)->connection;
313
	struct drbd_request *req, *r;
314

315
	spin_lock_irq(&connection->resource->req_lock);
316
	list_for_each_entry_safe(req, r, &connection->transfer_log, tl_requests) {
317 318
		if (!(req->rq_state & RQ_LOCAL_PENDING))
			continue;
319
		if (req->device != device)
320 321
			continue;
		_req_mod(req, ABORT_DISK_IO);
P
Philipp Reisner 已提交
322
	}
323
	spin_unlock_irq(&connection->resource->req_lock);
P
Philipp Reisner 已提交
324 325 326 327 328
}

static int drbd_thread_setup(void *arg)
{
	struct drbd_thread *thi = (struct drbd_thread *) arg;
329
	struct drbd_resource *resource = thi->resource;
P
Philipp Reisner 已提交
330 331 332
	unsigned long flags;
	int retval;

333
	snprintf(current->comm, sizeof(current->comm), "drbd_%c_%s",
334
		 thi->name[0],
335
		 resource->name);
336

P
Philipp Reisner 已提交
337 338 339 340 341
restart:
	retval = thi->function(thi);

	spin_lock_irqsave(&thi->t_lock, flags);

342
	/* if the receiver has been "EXITING", the last thing it did
P
Philipp Reisner 已提交
343 344 345
	 * was set the conn state to "StandAlone",
	 * if now a re-connect request comes in, conn state goes C_UNCONNECTED,
	 * and receiver thread will be "started".
346
	 * drbd_thread_start needs to set "RESTARTING" in that case.
P
Philipp Reisner 已提交
347
	 * t_state check and assignment needs to be within the same spinlock,
348 349
	 * so either thread_start sees EXITING, and can remap to RESTARTING,
	 * or thread_start see NONE, and can proceed as normal.
P
Philipp Reisner 已提交
350 351
	 */

352
	if (thi->t_state == RESTARTING) {
353
		drbd_info(resource, "Restarting %s thread\n", thi->name);
354
		thi->t_state = RUNNING;
P
Philipp Reisner 已提交
355 356 357 358 359
		spin_unlock_irqrestore(&thi->t_lock, flags);
		goto restart;
	}

	thi->task = NULL;
360
	thi->t_state = NONE;
P
Philipp Reisner 已提交
361
	smp_mb();
L
Lars Ellenberg 已提交
362
	complete_all(&thi->stop);
P
Philipp Reisner 已提交
363 364
	spin_unlock_irqrestore(&thi->t_lock, flags);

365
	drbd_info(resource, "Terminating %s\n", current->comm);
P
Philipp Reisner 已提交
366 367

	/* Release mod reference taken when thread was started */
368

369 370 371
	if (thi->connection)
		kref_put(&thi->connection->kref, drbd_destroy_connection);
	kref_put(&resource->kref, drbd_destroy_resource);
P
Philipp Reisner 已提交
372 373 374 375
	module_put(THIS_MODULE);
	return retval;
}

376
static void drbd_thread_init(struct drbd_resource *resource, struct drbd_thread *thi,
377
			     int (*func) (struct drbd_thread *), const char *name)
P
Philipp Reisner 已提交
378 379 380
{
	spin_lock_init(&thi->t_lock);
	thi->task    = NULL;
381
	thi->t_state = NONE;
P
Philipp Reisner 已提交
382
	thi->function = func;
383 384
	thi->resource = resource;
	thi->connection = NULL;
385
	thi->name = name;
P
Philipp Reisner 已提交
386 387 388 389
}

int drbd_thread_start(struct drbd_thread *thi)
{
390
	struct drbd_resource *resource = thi->resource;
P
Philipp Reisner 已提交
391 392 393 394 395 396 397 398
	struct task_struct *nt;
	unsigned long flags;

	/* is used from state engine doing drbd_thread_stop_nowait,
	 * while holding the req lock irqsave */
	spin_lock_irqsave(&thi->t_lock, flags);

	switch (thi->t_state) {
399
	case NONE:
400
		drbd_info(resource, "Starting %s thread (from %s [%d])\n",
401
			 thi->name, current->comm, current->pid);
P
Philipp Reisner 已提交
402 403 404

		/* Get ref on module for thread - this is released when thread exits */
		if (!try_module_get(THIS_MODULE)) {
405
			drbd_err(resource, "Failed to get module reference in drbd_thread_start\n");
P
Philipp Reisner 已提交
406
			spin_unlock_irqrestore(&thi->t_lock, flags);
407
			return false;
P
Philipp Reisner 已提交
408 409
		}

410 411 412
		kref_get(&resource->kref);
		if (thi->connection)
			kref_get(&thi->connection->kref);
413

P
Philipp Reisner 已提交
414 415
		init_completion(&thi->stop);
		thi->reset_cpu_mask = 1;
416
		thi->t_state = RUNNING;
P
Philipp Reisner 已提交
417 418 419 420
		spin_unlock_irqrestore(&thi->t_lock, flags);
		flush_signals(current); /* otherw. may get -ERESTARTNOINTR */

		nt = kthread_create(drbd_thread_setup, (void *) thi,
421
				    "drbd_%c_%s", thi->name[0], thi->resource->name);
P
Philipp Reisner 已提交
422 423

		if (IS_ERR(nt)) {
424
			drbd_err(resource, "Couldn't start thread\n");
P
Philipp Reisner 已提交
425

426 427 428
			if (thi->connection)
				kref_put(&thi->connection->kref, drbd_destroy_connection);
			kref_put(&resource->kref, drbd_destroy_resource);
P
Philipp Reisner 已提交
429
			module_put(THIS_MODULE);
430
			return false;
P
Philipp Reisner 已提交
431 432 433
		}
		spin_lock_irqsave(&thi->t_lock, flags);
		thi->task = nt;
434
		thi->t_state = RUNNING;
P
Philipp Reisner 已提交
435 436 437
		spin_unlock_irqrestore(&thi->t_lock, flags);
		wake_up_process(nt);
		break;
438 439
	case EXITING:
		thi->t_state = RESTARTING;
440
		drbd_info(resource, "Restarting %s thread (from %s [%d])\n",
441
				thi->name, current->comm, current->pid);
P
Philipp Reisner 已提交
442
		/* fall through */
443 444
	case RUNNING:
	case RESTARTING:
P
Philipp Reisner 已提交
445 446 447 448 449
	default:
		spin_unlock_irqrestore(&thi->t_lock, flags);
		break;
	}

450
	return true;
P
Philipp Reisner 已提交
451 452 453 454 455 456 457
}


void _drbd_thread_stop(struct drbd_thread *thi, int restart, int wait)
{
	unsigned long flags;

458
	enum drbd_thread_state ns = restart ? RESTARTING : EXITING;
P
Philipp Reisner 已提交
459 460 461 462

	/* may be called from state engine, holding the req lock irqsave */
	spin_lock_irqsave(&thi->t_lock, flags);

463
	if (thi->t_state == NONE) {
P
Philipp Reisner 已提交
464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488
		spin_unlock_irqrestore(&thi->t_lock, flags);
		if (restart)
			drbd_thread_start(thi);
		return;
	}

	if (thi->t_state != ns) {
		if (thi->task == NULL) {
			spin_unlock_irqrestore(&thi->t_lock, flags);
			return;
		}

		thi->t_state = ns;
		smp_mb();
		init_completion(&thi->stop);
		if (thi->task != current)
			force_sig(DRBD_SIGKILL, thi->task);
	}

	spin_unlock_irqrestore(&thi->t_lock, flags);

	if (wait)
		wait_for_completion(&thi->stop);
}

489
int conn_lowest_minor(struct drbd_connection *connection)
490
{
491 492
	struct drbd_peer_device *peer_device;
	int vnr = 0, minor = -1;
493

494
	rcu_read_lock();
495 496 497
	peer_device = idr_get_next(&connection->peer_devices, &vnr);
	if (peer_device)
		minor = device_to_minor(peer_device->device);
498 499
	rcu_read_unlock();

500
	return minor;
501
}
502

P
Philipp Reisner 已提交
503 504 505 506
#ifdef CONFIG_SMP
/**
 * drbd_calc_cpu_mask() - Generate CPU masks, spread over all CPUs
 *
507
 * Forces all threads of a resource onto the same CPU. This is beneficial for
P
Philipp Reisner 已提交
508 509
 * DRBD's performance. May be overwritten by user's configuration.
 */
510
static void drbd_calc_cpu_mask(cpumask_var_t *cpu_mask)
P
Philipp Reisner 已提交
511
{
512
	unsigned int *resources_per_cpu, min_index = ~0;
P
Philipp Reisner 已提交
513

K
Kees Cook 已提交
514 515
	resources_per_cpu = kcalloc(nr_cpu_ids, sizeof(*resources_per_cpu),
				    GFP_KERNEL);
516 517 518
	if (resources_per_cpu) {
		struct drbd_resource *resource;
		unsigned int cpu, min = ~0;
P
Philipp Reisner 已提交
519

520 521 522 523
		rcu_read_lock();
		for_each_resource_rcu(resource, &drbd_resources) {
			for_each_cpu(cpu, resource->cpu_mask)
				resources_per_cpu[cpu]++;
P
Philipp Reisner 已提交
524
		}
525 526 527 528 529 530 531 532 533 534 535 536
		rcu_read_unlock();
		for_each_online_cpu(cpu) {
			if (resources_per_cpu[cpu] < min) {
				min = resources_per_cpu[cpu];
				min_index = cpu;
			}
		}
		kfree(resources_per_cpu);
	}
	if (min_index == ~0) {
		cpumask_setall(*cpu_mask);
		return;
P
Philipp Reisner 已提交
537
	}
538
	cpumask_set_cpu(min_index, *cpu_mask);
P
Philipp Reisner 已提交
539 540 541 542
}

/**
 * drbd_thread_current_set_cpu() - modifies the cpu mask of the _current_ thread
543
 * @device:	DRBD device.
544
 * @thi:	drbd_thread object
P
Philipp Reisner 已提交
545 546 547 548
 *
 * call in the "main loop" of _all_ threads, no need for any mutex, current won't die
 * prematurely.
 */
549
void drbd_thread_current_set_cpu(struct drbd_thread *thi)
P
Philipp Reisner 已提交
550
{
551
	struct drbd_resource *resource = thi->resource;
P
Philipp Reisner 已提交
552
	struct task_struct *p = current;
553

P
Philipp Reisner 已提交
554 555 556
	if (!thi->reset_cpu_mask)
		return;
	thi->reset_cpu_mask = 0;
557
	set_cpus_allowed_ptr(p, resource->cpu_mask);
P
Philipp Reisner 已提交
558
}
559 560
#else
#define drbd_calc_cpu_mask(A) ({})
P
Philipp Reisner 已提交
561 562
#endif

563 564 565 566 567 568 569
/**
 * drbd_header_size  -  size of a packet header
 *
 * The header size is a multiple of 8, so any payload following the header is
 * word aligned on 64-bit architectures.  (The bitmap send and receive code
 * relies on this.)
 */
570
unsigned int drbd_header_size(struct drbd_connection *connection)
P
Philipp Reisner 已提交
571
{
572
	if (connection->agreed_pro_version >= 100) {
573 574 575 576 577 578 579 580
		BUILD_BUG_ON(!IS_ALIGNED(sizeof(struct p_header100), 8));
		return sizeof(struct p_header100);
	} else {
		BUILD_BUG_ON(sizeof(struct p_header80) !=
			     sizeof(struct p_header95));
		BUILD_BUG_ON(!IS_ALIGNED(sizeof(struct p_header80), 8));
		return sizeof(struct p_header80);
	}
581
}
P
Philipp Reisner 已提交
582

583
static unsigned int prepare_header80(struct p_header80 *h, enum drbd_packet cmd, int size)
P
Philipp Reisner 已提交
584 585 586 587
{
	h->magic   = cpu_to_be32(DRBD_MAGIC);
	h->command = cpu_to_be16(cmd);
	h->length  = cpu_to_be16(size);
588
	return sizeof(struct p_header80);
P
Philipp Reisner 已提交
589
}
P
Philipp Reisner 已提交
590

591
static unsigned int prepare_header95(struct p_header95 *h, enum drbd_packet cmd, int size)
P
Philipp Reisner 已提交
592 593
{
	h->magic   = cpu_to_be16(DRBD_MAGIC_BIG);
P
Philipp Reisner 已提交
594
	h->command = cpu_to_be16(cmd);
595
	h->length = cpu_to_be32(size);
596
	return sizeof(struct p_header95);
P
Philipp Reisner 已提交
597
}
P
Philipp Reisner 已提交
598

599 600 601 602 603 604 605 606 607 608
static unsigned int prepare_header100(struct p_header100 *h, enum drbd_packet cmd,
				      int size, int vnr)
{
	h->magic = cpu_to_be32(DRBD_MAGIC_100);
	h->volume = cpu_to_be16(vnr);
	h->command = cpu_to_be16(cmd);
	h->length = cpu_to_be32(size);
	h->pad = 0;
	return sizeof(struct p_header100);
}
P
Philipp Reisner 已提交
609

610
static unsigned int prepare_header(struct drbd_connection *connection, int vnr,
611
				   void *buffer, enum drbd_packet cmd, int size)
612
{
613
	if (connection->agreed_pro_version >= 100)
614
		return prepare_header100(buffer, cmd, size, vnr);
615
	else if (connection->agreed_pro_version >= 95 &&
616
		 size > DRBD_MAX_SIZE_H80_PACKET)
617
		return prepare_header95(buffer, cmd, size);
618
	else
619
		return prepare_header80(buffer, cmd, size);
P
Philipp Reisner 已提交
620 621
}

622
static void *__conn_prepare_command(struct drbd_connection *connection,
623
				    struct drbd_socket *sock)
P
Philipp Reisner 已提交
624
{
625 626
	if (!sock->socket)
		return NULL;
627
	return sock->sbuf + drbd_header_size(connection);
628
}
P
Philipp Reisner 已提交
629

630
void *conn_prepare_command(struct drbd_connection *connection, struct drbd_socket *sock)
631
{
632
	void *p;
P
Philipp Reisner 已提交
633

634
	mutex_lock(&sock->mutex);
635
	p = __conn_prepare_command(connection, sock);
636
	if (!p)
637
		mutex_unlock(&sock->mutex);
P
Philipp Reisner 已提交
638

639
	return p;
P
Philipp Reisner 已提交
640 641
}

642
void *drbd_prepare_command(struct drbd_peer_device *peer_device, struct drbd_socket *sock)
P
Philipp Reisner 已提交
643
{
644
	return conn_prepare_command(peer_device->connection, sock);
645
}
P
Philipp Reisner 已提交
646

647
static int __send_command(struct drbd_connection *connection, int vnr,
648 649 650 651 652 653
			  struct drbd_socket *sock, enum drbd_packet cmd,
			  unsigned int header_size, void *data,
			  unsigned int size)
{
	int msg_flags;
	int err;
P
Philipp Reisner 已提交
654

655 656 657 658 659 660 661 662 663
	/*
	 * Called with @data == NULL and the size of the data blocks in @size
	 * for commands that send data blocks.  For those commands, omit the
	 * MSG_MORE flag: this will increase the likelihood that data blocks
	 * which are page aligned on the sender will end up page aligned on the
	 * receiver.
	 */
	msg_flags = data ? MSG_MORE : 0;

664
	header_size += prepare_header(connection, vnr, sock->sbuf, cmd,
665
				      header_size + size);
666
	err = drbd_send_all(connection, sock->socket, sock->sbuf, header_size,
667 668
			    msg_flags);
	if (data && !err)
669
		err = drbd_send_all(connection, sock->socket, data, size, 0);
670 671 672 673 674
	/* DRBD protocol "pings" are latency critical.
	 * This is supposed to trigger tcp_push_pending_frames() */
	if (!err && (cmd == P_PING || cmd == P_PING_ACK))
		drbd_tcp_nodelay(sock->socket);

675 676 677
	return err;
}

678
static int __conn_send_command(struct drbd_connection *connection, struct drbd_socket *sock,
679 680 681
			       enum drbd_packet cmd, unsigned int header_size,
			       void *data, unsigned int size)
{
682
	return __send_command(connection, 0, sock, cmd, header_size, data, size);
683 684
}

685
int conn_send_command(struct drbd_connection *connection, struct drbd_socket *sock,
686 687 688 689
		      enum drbd_packet cmd, unsigned int header_size,
		      void *data, unsigned int size)
{
	int err;
P
Philipp Reisner 已提交
690

691
	err = __conn_send_command(connection, sock, cmd, header_size, data, size);
692 693 694 695
	mutex_unlock(&sock->mutex);
	return err;
}

696
int drbd_send_command(struct drbd_peer_device *peer_device, struct drbd_socket *sock,
697 698 699 700 701
		      enum drbd_packet cmd, unsigned int header_size,
		      void *data, unsigned int size)
{
	int err;

702 703
	err = __send_command(peer_device->connection, peer_device->device->vnr,
			     sock, cmd, header_size, data, size);
704 705 706
	mutex_unlock(&sock->mutex);
	return err;
}
P
Philipp Reisner 已提交
707

708
int drbd_send_ping(struct drbd_connection *connection)
709
{
710 711
	struct drbd_socket *sock;

712 713
	sock = &connection->meta;
	if (!conn_prepare_command(connection, sock))
714
		return -EIO;
715
	return conn_send_command(connection, sock, P_PING, 0, NULL, 0);
716
}
P
Philipp Reisner 已提交
717

718
int drbd_send_ping_ack(struct drbd_connection *connection)
719
{
720 721
	struct drbd_socket *sock;

722 723
	sock = &connection->meta;
	if (!conn_prepare_command(connection, sock))
724
		return -EIO;
725
	return conn_send_command(connection, sock, P_PING_ACK, 0, NULL, 0);
P
Philipp Reisner 已提交
726 727
}

728
int drbd_send_sync_param(struct drbd_peer_device *peer_device)
P
Philipp Reisner 已提交
729
{
730
	struct drbd_socket *sock;
731
	struct p_rs_param_95 *p;
732
	int size;
733
	const int apv = peer_device->connection->agreed_pro_version;
734
	enum drbd_packet cmd;
735
	struct net_conf *nc;
P
Philipp Reisner 已提交
736
	struct disk_conf *dc;
737

738 739
	sock = &peer_device->connection->data;
	p = drbd_prepare_command(peer_device, sock);
740 741
	if (!p)
		return -EIO;
P
Philipp Reisner 已提交
742

743
	rcu_read_lock();
744
	nc = rcu_dereference(peer_device->connection->net_conf);
P
Philipp Reisner 已提交
745 746 747

	size = apv <= 87 ? sizeof(struct p_rs_param)
		: apv == 88 ? sizeof(struct p_rs_param)
748
			+ strlen(nc->verify_alg) + 1
749 750
		: apv <= 94 ? sizeof(struct p_rs_param_89)
		: /* apv >= 95 */ sizeof(struct p_rs_param_95);
P
Philipp Reisner 已提交
751

752
	cmd = apv >= 89 ? P_SYNC_PARAM89 : P_SYNC_PARAM;
P
Philipp Reisner 已提交
753

754 755
	/* initialize verify_alg and csums_alg */
	memset(p->verify_alg, 0, 2 * SHARED_SECRET_MAX);
P
Philipp Reisner 已提交
756

757 758
	if (get_ldev(peer_device->device)) {
		dc = rcu_dereference(peer_device->device->ldev->disk_conf);
759
		p->resync_rate = cpu_to_be32(dc->resync_rate);
P
Philipp Reisner 已提交
760 761 762 763
		p->c_plan_ahead = cpu_to_be32(dc->c_plan_ahead);
		p->c_delay_target = cpu_to_be32(dc->c_delay_target);
		p->c_fill_target = cpu_to_be32(dc->c_fill_target);
		p->c_max_rate = cpu_to_be32(dc->c_max_rate);
764
		put_ldev(peer_device->device);
765
	} else {
766
		p->resync_rate = cpu_to_be32(DRBD_RESYNC_RATE_DEF);
767 768 769 770 771
		p->c_plan_ahead = cpu_to_be32(DRBD_C_PLAN_AHEAD_DEF);
		p->c_delay_target = cpu_to_be32(DRBD_C_DELAY_TARGET_DEF);
		p->c_fill_target = cpu_to_be32(DRBD_C_FILL_TARGET_DEF);
		p->c_max_rate = cpu_to_be32(DRBD_C_MAX_RATE_DEF);
	}
P
Philipp Reisner 已提交
772

773
	if (apv >= 88)
774
		strcpy(p->verify_alg, nc->verify_alg);
775
	if (apv >= 89)
776 777
		strcpy(p->csums_alg, nc->csums_alg);
	rcu_read_unlock();
P
Philipp Reisner 已提交
778

779
	return drbd_send_command(peer_device, sock, cmd, size, NULL, 0);
P
Philipp Reisner 已提交
780 781
}

782
int __drbd_send_protocol(struct drbd_connection *connection, enum drbd_packet cmd)
P
Philipp Reisner 已提交
783
{
784
	struct drbd_socket *sock;
P
Philipp Reisner 已提交
785
	struct p_protocol *p;
786
	struct net_conf *nc;
787
	int size, cf;
P
Philipp Reisner 已提交
788

789 790
	sock = &connection->data;
	p = __conn_prepare_command(connection, sock);
791 792
	if (!p)
		return -EIO;
P
Philipp Reisner 已提交
793

794
	rcu_read_lock();
795
	nc = rcu_dereference(connection->net_conf);
P
Philipp Reisner 已提交
796

797
	if (nc->tentative && connection->agreed_pro_version < 92) {
798 799
		rcu_read_unlock();
		mutex_unlock(&sock->mutex);
800
		drbd_err(connection, "--dry-run is not supported by peer");
801 802
		return -EOPNOTSUPP;
	}
P
Philipp Reisner 已提交
803

804
	size = sizeof(*p);
805
	if (connection->agreed_pro_version >= 87)
806
		size += strlen(nc->integrity_alg) + 1;
P
Philipp Reisner 已提交
807

808 809 810 811 812
	p->protocol      = cpu_to_be32(nc->wire_protocol);
	p->after_sb_0p   = cpu_to_be32(nc->after_sb_0p);
	p->after_sb_1p   = cpu_to_be32(nc->after_sb_1p);
	p->after_sb_2p   = cpu_to_be32(nc->after_sb_2p);
	p->two_primaries = cpu_to_be32(nc->two_primaries);
813
	cf = 0;
814 815
	if (nc->discard_my_data)
		cf |= CF_DISCARD_MY_DATA;
816
	if (nc->tentative)
817
		cf |= CF_DRY_RUN;
818 819
	p->conn_flags    = cpu_to_be32(cf);

820
	if (connection->agreed_pro_version >= 87)
821 822
		strcpy(p->integrity_alg, nc->integrity_alg);
	rcu_read_unlock();
P
Philipp Reisner 已提交
823

824
	return __conn_send_command(connection, sock, cmd, size, NULL, 0);
825 826
}

827
int drbd_send_protocol(struct drbd_connection *connection)
828 829 830
{
	int err;

831 832 833
	mutex_lock(&connection->data.mutex);
	err = __drbd_send_protocol(connection, P_PROTOCOL);
	mutex_unlock(&connection->data.mutex);
834 835

	return err;
P
Philipp Reisner 已提交
836 837
}

838
static int _drbd_send_uuids(struct drbd_peer_device *peer_device, u64 uuid_flags)
P
Philipp Reisner 已提交
839
{
840
	struct drbd_device *device = peer_device->device;
841 842
	struct drbd_socket *sock;
	struct p_uuids *p;
P
Philipp Reisner 已提交
843 844
	int i;

845
	if (!get_ldev_if_state(device, D_NEGOTIATING))
846
		return 0;
P
Philipp Reisner 已提交
847

848 849
	sock = &peer_device->connection->data;
	p = drbd_prepare_command(peer_device, sock);
850
	if (!p) {
851
		put_ldev(device);
852 853
		return -EIO;
	}
854
	spin_lock_irq(&device->ldev->md.uuid_lock);
P
Philipp Reisner 已提交
855
	for (i = UI_CURRENT; i < UI_SIZE; i++)
856 857
		p->uuid[i] = cpu_to_be64(device->ldev->md.uuid[i]);
	spin_unlock_irq(&device->ldev->md.uuid_lock);
P
Philipp Reisner 已提交
858

859 860
	device->comm_bm_set = drbd_bm_total_weight(device);
	p->uuid[UI_SIZE] = cpu_to_be64(device->comm_bm_set);
861
	rcu_read_lock();
862
	uuid_flags |= rcu_dereference(peer_device->connection->net_conf)->discard_my_data ? 1 : 0;
863
	rcu_read_unlock();
864 865
	uuid_flags |= test_bit(CRASHED_PRIMARY, &device->flags) ? 2 : 0;
	uuid_flags |= device->new_state_tmp.disk == D_INCONSISTENT ? 4 : 0;
866
	p->uuid[UI_FLAGS] = cpu_to_be64(uuid_flags);
P
Philipp Reisner 已提交
867

868
	put_ldev(device);
869
	return drbd_send_command(peer_device, sock, P_UUIDS, sizeof(*p), NULL, 0);
P
Philipp Reisner 已提交
870 871
}

872
int drbd_send_uuids(struct drbd_peer_device *peer_device)
P
Philipp Reisner 已提交
873
{
874
	return _drbd_send_uuids(peer_device, 0);
P
Philipp Reisner 已提交
875 876
}

877
int drbd_send_uuids_skip_initial_sync(struct drbd_peer_device *peer_device)
P
Philipp Reisner 已提交
878
{
879
	return _drbd_send_uuids(peer_device, 8);
P
Philipp Reisner 已提交
880 881
}

882
void drbd_print_uuids(struct drbd_device *device, const char *text)
883
{
884 885
	if (get_ldev_if_state(device, D_NEGOTIATING)) {
		u64 *uuid = device->ldev->md.uuid;
886
		drbd_info(device, "%s %016llX:%016llX:%016llX:%016llX\n",
887 888 889 890 891
		     text,
		     (unsigned long long)uuid[UI_CURRENT],
		     (unsigned long long)uuid[UI_BITMAP],
		     (unsigned long long)uuid[UI_HISTORY_START],
		     (unsigned long long)uuid[UI_HISTORY_END]);
892
		put_ldev(device);
893
	} else {
894
		drbd_info(device, "%s effective data uuid: %016llX\n",
895
				text,
896
				(unsigned long long)device->ed_uuid);
897 898 899
	}
}

900
void drbd_gen_and_send_sync_uuid(struct drbd_peer_device *peer_device)
P
Philipp Reisner 已提交
901
{
902
	struct drbd_device *device = peer_device->device;
903 904
	struct drbd_socket *sock;
	struct p_rs_uuid *p;
905 906
	u64 uuid;

907
	D_ASSERT(device, device->state.disk == D_UP_TO_DATE);
P
Philipp Reisner 已提交
908

909
	uuid = device->ldev->md.uuid[UI_BITMAP];
910 911 912 913
	if (uuid && uuid != UUID_JUST_CREATED)
		uuid = uuid + UUID_NEW_BM_OFFSET;
	else
		get_random_bytes(&uuid, sizeof(u64));
914 915 916
	drbd_uuid_set(device, UI_BITMAP, uuid);
	drbd_print_uuids(device, "updated sync UUID");
	drbd_md_sync(device);
P
Philipp Reisner 已提交
917

918 919
	sock = &peer_device->connection->data;
	p = drbd_prepare_command(peer_device, sock);
920 921
	if (p) {
		p->uuid = cpu_to_be64(uuid);
922
		drbd_send_command(peer_device, sock, P_SYNC_UUID, sizeof(*p), NULL, 0);
923
	}
P
Philipp Reisner 已提交
924 925
}

926
/* communicated if (agreed_features & DRBD_FF_WSAME) */
927 928 929
static void
assign_p_sizes_qlim(struct drbd_device *device, struct p_sizes *p,
					struct request_queue *q)
930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950
{
	if (q) {
		p->qlim->physical_block_size = cpu_to_be32(queue_physical_block_size(q));
		p->qlim->logical_block_size = cpu_to_be32(queue_logical_block_size(q));
		p->qlim->alignment_offset = cpu_to_be32(queue_alignment_offset(q));
		p->qlim->io_min = cpu_to_be32(queue_io_min(q));
		p->qlim->io_opt = cpu_to_be32(queue_io_opt(q));
		p->qlim->discard_enabled = blk_queue_discard(q);
		p->qlim->write_same_capable = !!q->limits.max_write_same_sectors;
	} else {
		q = device->rq_queue;
		p->qlim->physical_block_size = cpu_to_be32(queue_physical_block_size(q));
		p->qlim->logical_block_size = cpu_to_be32(queue_logical_block_size(q));
		p->qlim->alignment_offset = 0;
		p->qlim->io_min = cpu_to_be32(queue_io_min(q));
		p->qlim->io_opt = cpu_to_be32(queue_io_opt(q));
		p->qlim->discard_enabled = 0;
		p->qlim->write_same_capable = 0;
	}
}

951
int drbd_send_sizes(struct drbd_peer_device *peer_device, int trigger_reply, enum dds_flags flags)
P
Philipp Reisner 已提交
952
{
953
	struct drbd_device *device = peer_device->device;
954 955
	struct drbd_socket *sock;
	struct p_sizes *p;
P
Philipp Reisner 已提交
956
	sector_t d_size, u_size;
957 958
	int q_order_type;
	unsigned int max_bio_size;
959 960 961 962 963 964
	unsigned int packet_size;

	sock = &peer_device->connection->data;
	p = drbd_prepare_command(peer_device, sock);
	if (!p)
		return -EIO;
P
Philipp Reisner 已提交
965

966 967 968 969 970
	packet_size = sizeof(*p);
	if (peer_device->connection->agreed_features & DRBD_FF_WSAME)
		packet_size += sizeof(p->qlim[0]);

	memset(p, 0, packet_size);
971
	if (get_ldev_if_state(device, D_NEGOTIATING)) {
972
		struct request_queue *q = bdev_get_queue(device->ldev->backing_bdev);
973
		d_size = drbd_get_max_capacity(device->ldev);
P
Philipp Reisner 已提交
974
		rcu_read_lock();
975
		u_size = rcu_dereference(device->ldev->disk_conf)->disk_size;
P
Philipp Reisner 已提交
976
		rcu_read_unlock();
977
		q_order_type = drbd_queue_order_type(device);
978
		max_bio_size = queue_max_hw_sectors(q) << 9;
979
		max_bio_size = min(max_bio_size, DRBD_MAX_BIO_SIZE);
980
		assign_p_sizes_qlim(device, p, q);
981
		put_ldev(device);
P
Philipp Reisner 已提交
982 983 984 985
	} else {
		d_size = 0;
		u_size = 0;
		q_order_type = QUEUE_ORDERED_NONE;
986
		max_bio_size = DRBD_MAX_BIO_SIZE; /* ... multiple BIOs per peer_request */
987
		assign_p_sizes_qlim(device, p, NULL);
P
Philipp Reisner 已提交
988 989
	}

990
	if (peer_device->connection->agreed_pro_version <= 94)
991
		max_bio_size = min(max_bio_size, DRBD_MAX_SIZE_H80_PACKET);
992
	else if (peer_device->connection->agreed_pro_version < 100)
993
		max_bio_size = min(max_bio_size, DRBD_MAX_BIO_SIZE_P95);
P
Philipp Reisner 已提交
994

995 996
	p->d_size = cpu_to_be64(d_size);
	p->u_size = cpu_to_be64(u_size);
997
	p->c_size = cpu_to_be64(trigger_reply ? 0 : drbd_get_capacity(device->this_bdev));
998 999 1000
	p->max_bio_size = cpu_to_be32(max_bio_size);
	p->queue_order_type = cpu_to_be16(q_order_type);
	p->dds_flags = cpu_to_be16(flags);
1001 1002

	return drbd_send_command(peer_device, sock, P_SIZES, packet_size, NULL, 0);
P
Philipp Reisner 已提交
1003 1004 1005
}

/**
1006
 * drbd_send_current_state() - Sends the drbd state to the peer
1007
 * @peer_device:	DRBD peer device.
P
Philipp Reisner 已提交
1008
 */
1009
int drbd_send_current_state(struct drbd_peer_device *peer_device)
P
Philipp Reisner 已提交
1010
{
1011
	struct drbd_socket *sock;
1012
	struct p_state *p;
P
Philipp Reisner 已提交
1013

1014 1015
	sock = &peer_device->connection->data;
	p = drbd_prepare_command(peer_device, sock);
1016 1017
	if (!p)
		return -EIO;
1018 1019
	p->state = cpu_to_be32(peer_device->device->state.i); /* Within the send mutex */
	return drbd_send_command(peer_device, sock, P_STATE, sizeof(*p), NULL, 0);
P
Philipp Reisner 已提交
1020 1021
}

1022 1023
/**
 * drbd_send_state() - After a state change, sends the new state to the peer
1024
 * @peer_device:      DRBD peer device.
1025
 * @state:     the state to send, not necessarily the current state.
1026 1027 1028 1029 1030 1031
 *
 * Each state change queues an "after_state_ch" work, which will eventually
 * send the resulting new state to the peer. If more state changes happen
 * between queuing and processing of the after_state_ch work, we still
 * want to send each intermediary state in the order it occurred.
 */
1032
int drbd_send_state(struct drbd_peer_device *peer_device, union drbd_state state)
1033
{
1034 1035
	struct drbd_socket *sock;
	struct p_state *p;
1036

1037 1038
	sock = &peer_device->connection->data;
	p = drbd_prepare_command(peer_device, sock);
1039 1040 1041
	if (!p)
		return -EIO;
	p->state = cpu_to_be32(state.i); /* Within the send mutex */
1042
	return drbd_send_command(peer_device, sock, P_STATE, sizeof(*p), NULL, 0);
1043
}
1044

1045
int drbd_send_state_req(struct drbd_peer_device *peer_device, union drbd_state mask, union drbd_state val)
1046 1047 1048
{
	struct drbd_socket *sock;
	struct p_req_state *p;
1049

1050 1051
	sock = &peer_device->connection->data;
	p = drbd_prepare_command(peer_device, sock);
1052 1053 1054 1055
	if (!p)
		return -EIO;
	p->mask = cpu_to_be32(mask.i);
	p->val = cpu_to_be32(val.i);
1056
	return drbd_send_command(peer_device, sock, P_STATE_CHG_REQ, sizeof(*p), NULL, 0);
P
Philipp Reisner 已提交
1057
}
1058

1059
int conn_send_state_req(struct drbd_connection *connection, union drbd_state mask, union drbd_state val)
P
Philipp Reisner 已提交
1060
{
1061 1062 1063
	enum drbd_packet cmd;
	struct drbd_socket *sock;
	struct p_req_state *p;
1064

1065 1066 1067
	cmd = connection->agreed_pro_version < 100 ? P_STATE_CHG_REQ : P_CONN_ST_CHG_REQ;
	sock = &connection->data;
	p = conn_prepare_command(connection, sock);
1068 1069 1070 1071
	if (!p)
		return -EIO;
	p->mask = cpu_to_be32(mask.i);
	p->val = cpu_to_be32(val.i);
1072
	return conn_send_command(connection, sock, cmd, sizeof(*p), NULL, 0);
1073 1074
}

1075
void drbd_send_sr_reply(struct drbd_peer_device *peer_device, enum drbd_state_rv retcode)
P
Philipp Reisner 已提交
1076
{
1077 1078
	struct drbd_socket *sock;
	struct p_req_state_reply *p;
P
Philipp Reisner 已提交
1079

1080 1081
	sock = &peer_device->connection->meta;
	p = drbd_prepare_command(peer_device, sock);
1082 1083
	if (p) {
		p->retcode = cpu_to_be32(retcode);
1084
		drbd_send_command(peer_device, sock, P_STATE_CHG_REPLY, sizeof(*p), NULL, 0);
1085
	}
P
Philipp Reisner 已提交
1086 1087
}

1088
void conn_send_sr_reply(struct drbd_connection *connection, enum drbd_state_rv retcode)
1089
{
1090 1091
	struct drbd_socket *sock;
	struct p_req_state_reply *p;
1092
	enum drbd_packet cmd = connection->agreed_pro_version < 100 ? P_STATE_CHG_REPLY : P_CONN_ST_CHG_REPLY;
P
Philipp Reisner 已提交
1093

1094 1095
	sock = &connection->meta;
	p = conn_prepare_command(connection, sock);
1096 1097
	if (p) {
		p->retcode = cpu_to_be32(retcode);
1098
		conn_send_command(connection, sock, cmd, sizeof(*p), NULL, 0);
1099
	}
P
Philipp Reisner 已提交
1100 1101
}

1102
static void dcbp_set_code(struct p_compressed_bm *p, enum drbd_bitmap_code code)
P
Philipp Reisner 已提交
1103
{
1104 1105 1106
	BUG_ON(code & ~0xf);
	p->encoding = (p->encoding & ~0xf) | code;
}
P
Philipp Reisner 已提交
1107

1108 1109 1110 1111
static void dcbp_set_start(struct p_compressed_bm *p, int set)
{
	p->encoding = (p->encoding & ~0x80) | (set ? 0x80 : 0);
}
P
Philipp Reisner 已提交
1112

1113 1114 1115 1116
static void dcbp_set_pad_bits(struct p_compressed_bm *p, int n)
{
	BUG_ON(n & ~0x7);
	p->encoding = (p->encoding & (~0x7 << 4)) | (n << 4);
P
Philipp Reisner 已提交
1117 1118
}

1119
static int fill_bitmap_rle_bits(struct drbd_device *device,
1120 1121 1122
			 struct p_compressed_bm *p,
			 unsigned int size,
			 struct bm_xfer_ctx *c)
P
Philipp Reisner 已提交
1123 1124 1125 1126 1127 1128 1129
{
	struct bitstream bs;
	unsigned long plain_bits;
	unsigned long tmp;
	unsigned long rl;
	unsigned len;
	unsigned toggle;
1130
	int bits, use_rle;
P
Philipp Reisner 已提交
1131 1132

	/* may we use this feature? */
1133
	rcu_read_lock();
1134
	use_rle = rcu_dereference(first_peer_device(device)->connection->net_conf)->use_rle;
1135
	rcu_read_unlock();
1136
	if (!use_rle || first_peer_device(device)->connection->agreed_pro_version < 90)
1137
		return 0;
P
Philipp Reisner 已提交
1138 1139 1140 1141 1142

	if (c->bit_offset >= c->bm_bits)
		return 0; /* nothing to do. */

	/* use at most thus many bytes */
1143 1144
	bitstream_init(&bs, p->code, size, 0);
	memset(p->code, 0, size);
P
Philipp Reisner 已提交
1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155
	/* plain bits covered in this code string */
	plain_bits = 0;

	/* p->encoding & 0x80 stores whether the first run length is set.
	 * bit offset is implicit.
	 * start with toggle == 2 to be able to tell the first iteration */
	toggle = 2;

	/* see how much plain bits we can stuff into one packet
	 * using RLE and VLI. */
	do {
1156 1157
		tmp = (toggle == 0) ? _drbd_bm_find_next_zero(device, c->bit_offset)
				    : _drbd_bm_find_next(device, c->bit_offset);
P
Philipp Reisner 已提交
1158 1159 1160 1161 1162 1163 1164 1165
		if (tmp == -1UL)
			tmp = c->bm_bits;
		rl = tmp - c->bit_offset;

		if (toggle == 2) { /* first iteration */
			if (rl == 0) {
				/* the first checked bit was set,
				 * store start value, */
1166
				dcbp_set_start(p, 1);
P
Philipp Reisner 已提交
1167 1168 1169 1170
				/* but skip encoding of zero run length */
				toggle = !toggle;
				continue;
			}
1171
			dcbp_set_start(p, 0);
P
Philipp Reisner 已提交
1172 1173 1174 1175 1176
		}

		/* paranoia: catch zero runlength.
		 * can only happen if bitmap is modified while we scan it. */
		if (rl == 0) {
1177
			drbd_err(device, "unexpected zero runlength while encoding bitmap "
P
Philipp Reisner 已提交
1178 1179 1180 1181 1182 1183 1184 1185
			    "t:%u bo:%lu\n", toggle, c->bit_offset);
			return -1;
		}

		bits = vli_encode_bits(&bs, rl);
		if (bits == -ENOBUFS) /* buffer full */
			break;
		if (bits <= 0) {
1186
			drbd_err(device, "error while encoding bitmap: %d\n", bits);
P
Philipp Reisner 已提交
1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210
			return 0;
		}

		toggle = !toggle;
		plain_bits += rl;
		c->bit_offset = tmp;
	} while (c->bit_offset < c->bm_bits);

	len = bs.cur.b - p->code + !!bs.cur.bit;

	if (plain_bits < (len << 3)) {
		/* incompressible with this method.
		 * we need to rewind both word and bit position. */
		c->bit_offset -= plain_bits;
		bm_xfer_ctx_bit_to_word_offset(c);
		c->bit_offset = c->word_offset * BITS_PER_LONG;
		return 0;
	}

	/* RLE + VLI was able to compress it just fine.
	 * update c->word_offset. */
	bm_xfer_ctx_bit_to_word_offset(c);

	/* store pad_bits */
1211
	dcbp_set_pad_bits(p, (8 - bs.cur.bit) & 0x7);
P
Philipp Reisner 已提交
1212 1213 1214 1215

	return len;
}

1216 1217 1218 1219 1220 1221 1222
/**
 * send_bitmap_rle_or_plain
 *
 * Return 0 when done, 1 when another iteration is needed, and a negative error
 * code upon failure.
 */
static int
1223
send_bitmap_rle_or_plain(struct drbd_device *device, struct bm_xfer_ctx *c)
P
Philipp Reisner 已提交
1224
{
1225 1226
	struct drbd_socket *sock = &first_peer_device(device)->connection->data;
	unsigned int header_size = drbd_header_size(first_peer_device(device)->connection);
1227
	struct p_compressed_bm *p = sock->sbuf + header_size;
1228
	int len, err;
P
Philipp Reisner 已提交
1229

1230
	len = fill_bitmap_rle_bits(device, p,
1231
			DRBD_SOCKET_BUFFER_SIZE - header_size - sizeof(*p), c);
P
Philipp Reisner 已提交
1232
	if (len < 0)
1233
		return -EIO;
P
Philipp Reisner 已提交
1234 1235

	if (len) {
1236
		dcbp_set_code(p, RLE_VLI_Bits);
1237
		err = __send_command(first_peer_device(device)->connection, device->vnr, sock,
1238 1239
				     P_COMPRESSED_BITMAP, sizeof(*p) + len,
				     NULL, 0);
P
Philipp Reisner 已提交
1240
		c->packets[0]++;
1241
		c->bytes[0] += header_size + sizeof(*p) + len;
P
Philipp Reisner 已提交
1242 1243 1244 1245 1246 1247

		if (c->bit_offset >= c->bm_bits)
			len = 0; /* DONE */
	} else {
		/* was not compressible.
		 * send a buffer full of plain text bits instead. */
1248 1249
		unsigned int data_size;
		unsigned long num_words;
1250
		unsigned long *p = sock->sbuf + header_size;
1251 1252

		data_size = DRBD_SOCKET_BUFFER_SIZE - header_size;
1253
		num_words = min_t(size_t, data_size / sizeof(*p),
1254
				  c->bm_words - c->word_offset);
1255
		len = num_words * sizeof(*p);
P
Philipp Reisner 已提交
1256
		if (len)
1257
			drbd_bm_get_lel(device, c->word_offset, num_words, p);
1258
		err = __send_command(first_peer_device(device)->connection, device->vnr, sock, P_BITMAP, len, NULL, 0);
P
Philipp Reisner 已提交
1259 1260 1261 1262
		c->word_offset += num_words;
		c->bit_offset = c->word_offset * BITS_PER_LONG;

		c->packets[1]++;
1263
		c->bytes[1] += header_size + len;
P
Philipp Reisner 已提交
1264 1265 1266 1267

		if (c->bit_offset > c->bm_bits)
			c->bit_offset = c->bm_bits;
	}
1268
	if (!err) {
1269
		if (len == 0) {
1270
			INFO_bm_xfer_stats(device, "send", c);
1271 1272 1273 1274 1275
			return 0;
		} else
			return 1;
	}
	return -EIO;
P
Philipp Reisner 已提交
1276 1277 1278
}

/* See the comment at receive_bitmap() */
1279
static int _drbd_send_bitmap(struct drbd_device *device)
P
Philipp Reisner 已提交
1280 1281
{
	struct bm_xfer_ctx c;
1282
	int err;
P
Philipp Reisner 已提交
1283

1284
	if (!expect(device->bitmap))
1285
		return false;
P
Philipp Reisner 已提交
1286

1287 1288
	if (get_ldev(device)) {
		if (drbd_md_test_flag(device->ldev, MDF_FULL_SYNC)) {
1289
			drbd_info(device, "Writing the whole bitmap, MDF_FullSync was set.\n");
1290 1291
			drbd_bm_set_all(device);
			if (drbd_bm_write(device)) {
P
Philipp Reisner 已提交
1292 1293 1294
				/* write_bm did fail! Leave full sync flag set in Meta P_DATA
				 * but otherwise process as per normal - need to tell other
				 * side that a full resync is required! */
1295
				drbd_err(device, "Failed to write bitmap to disk!\n");
P
Philipp Reisner 已提交
1296
			} else {
1297 1298
				drbd_md_clear_flag(device, MDF_FULL_SYNC);
				drbd_md_sync(device);
P
Philipp Reisner 已提交
1299 1300
			}
		}
1301
		put_ldev(device);
P
Philipp Reisner 已提交
1302 1303 1304
	}

	c = (struct bm_xfer_ctx) {
1305 1306
		.bm_bits = drbd_bm_bits(device),
		.bm_words = drbd_bm_words(device),
P
Philipp Reisner 已提交
1307 1308 1309
	};

	do {
1310
		err = send_bitmap_rle_or_plain(device, &c);
1311
	} while (err > 0);
P
Philipp Reisner 已提交
1312

1313
	return err == 0;
P
Philipp Reisner 已提交
1314 1315
}

1316
int drbd_send_bitmap(struct drbd_device *device)
P
Philipp Reisner 已提交
1317
{
1318
	struct drbd_socket *sock = &first_peer_device(device)->connection->data;
1319
	int err = -1;
P
Philipp Reisner 已提交
1320

1321 1322
	mutex_lock(&sock->mutex);
	if (sock->socket)
1323
		err = !_drbd_send_bitmap(device);
1324
	mutex_unlock(&sock->mutex);
P
Philipp Reisner 已提交
1325 1326 1327
	return err;
}

1328
void drbd_send_b_ack(struct drbd_connection *connection, u32 barrier_nr, u32 set_size)
P
Philipp Reisner 已提交
1329
{
1330 1331
	struct drbd_socket *sock;
	struct p_barrier_ack *p;
P
Philipp Reisner 已提交
1332

1333
	if (connection->cstate < C_WF_REPORT_PARAMS)
1334
		return;
P
Philipp Reisner 已提交
1335

1336 1337
	sock = &connection->meta;
	p = conn_prepare_command(connection, sock);
1338 1339 1340 1341
	if (!p)
		return;
	p->barrier = barrier_nr;
	p->set_size = cpu_to_be32(set_size);
1342
	conn_send_command(connection, sock, P_BARRIER_ACK, sizeof(*p), NULL, 0);
P
Philipp Reisner 已提交
1343 1344 1345 1346
}

/**
 * _drbd_send_ack() - Sends an ack packet
1347
 * @device:	DRBD device.
P
Philipp Reisner 已提交
1348 1349 1350 1351 1352
 * @cmd:	Packet command code.
 * @sector:	sector, needs to be in big endian byte order
 * @blksize:	size in byte, needs to be in big endian byte order
 * @block_id:	Id, big endian byte order
 */
1353
static int _drbd_send_ack(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
1354
			  u64 sector, u32 blksize, u64 block_id)
P
Philipp Reisner 已提交
1355
{
1356 1357
	struct drbd_socket *sock;
	struct p_block_ack *p;
P
Philipp Reisner 已提交
1358

1359
	if (peer_device->device->state.conn < C_CONNECTED)
1360
		return -EIO;
P
Philipp Reisner 已提交
1361

1362 1363
	sock = &peer_device->connection->meta;
	p = drbd_prepare_command(peer_device, sock);
1364
	if (!p)
1365
		return -EIO;
1366 1367 1368
	p->sector = sector;
	p->block_id = block_id;
	p->blksize = blksize;
1369 1370
	p->seq_num = cpu_to_be32(atomic_inc_return(&peer_device->device->packet_seq));
	return drbd_send_command(peer_device, sock, cmd, sizeof(*p), NULL, 0);
P
Philipp Reisner 已提交
1371 1372
}

1373 1374 1375
/* dp->sector and dp->block_id already/still in network byte order,
 * data_size is payload size according to dp->head,
 * and may need to be corrected for digest size. */
1376
void drbd_send_ack_dp(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
1377
		      struct p_data *dp, int data_size)
P
Philipp Reisner 已提交
1378
{
1379
	if (peer_device->connection->peer_integrity_tfm)
H
Herbert Xu 已提交
1380
		data_size -= crypto_ahash_digestsize(peer_device->connection->peer_integrity_tfm);
1381
	_drbd_send_ack(peer_device, cmd, dp->sector, cpu_to_be32(data_size),
1382
		       dp->block_id);
P
Philipp Reisner 已提交
1383 1384
}

1385
void drbd_send_ack_rp(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
1386
		      struct p_block_req *rp)
P
Philipp Reisner 已提交
1387
{
1388
	_drbd_send_ack(peer_device, cmd, rp->sector, rp->blksize, rp->block_id);
P
Philipp Reisner 已提交
1389 1390 1391 1392
}

/**
 * drbd_send_ack() - Sends an ack packet
1393
 * @device:	DRBD device
1394 1395
 * @cmd:	packet command code
 * @peer_req:	peer request
P
Philipp Reisner 已提交
1396
 */
1397
int drbd_send_ack(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
1398
		  struct drbd_peer_request *peer_req)
P
Philipp Reisner 已提交
1399
{
1400
	return _drbd_send_ack(peer_device, cmd,
1401 1402 1403
			      cpu_to_be64(peer_req->i.sector),
			      cpu_to_be32(peer_req->i.size),
			      peer_req->block_id);
P
Philipp Reisner 已提交
1404 1405 1406 1407
}

/* This function misuses the block_id field to signal if the blocks
 * are is sync or not. */
1408
int drbd_send_ack_ex(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
P
Philipp Reisner 已提交
1409 1410
		     sector_t sector, int blksize, u64 block_id)
{
1411
	return _drbd_send_ack(peer_device, cmd,
P
Philipp Reisner 已提交
1412 1413 1414 1415 1416
			      cpu_to_be64(sector),
			      cpu_to_be32(blksize),
			      cpu_to_be64(block_id));
}

1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432
int drbd_send_rs_deallocated(struct drbd_peer_device *peer_device,
			     struct drbd_peer_request *peer_req)
{
	struct drbd_socket *sock;
	struct p_block_desc *p;

	sock = &peer_device->connection->data;
	p = drbd_prepare_command(peer_device, sock);
	if (!p)
		return -EIO;
	p->sector = cpu_to_be64(peer_req->i.sector);
	p->blksize = cpu_to_be32(peer_req->i.size);
	p->pad = 0;
	return drbd_send_command(peer_device, sock, P_RS_DEALLOCATED, sizeof(*p), NULL, 0);
}

1433
int drbd_send_drequest(struct drbd_peer_device *peer_device, int cmd,
P
Philipp Reisner 已提交
1434 1435
		       sector_t sector, int size, u64 block_id)
{
1436 1437
	struct drbd_socket *sock;
	struct p_block_req *p;
P
Philipp Reisner 已提交
1438

1439 1440
	sock = &peer_device->connection->data;
	p = drbd_prepare_command(peer_device, sock);
1441 1442 1443 1444 1445
	if (!p)
		return -EIO;
	p->sector = cpu_to_be64(sector);
	p->block_id = block_id;
	p->blksize = cpu_to_be32(size);
1446
	return drbd_send_command(peer_device, sock, cmd, sizeof(*p), NULL, 0);
P
Philipp Reisner 已提交
1447 1448
}

1449
int drbd_send_drequest_csum(struct drbd_peer_device *peer_device, sector_t sector, int size,
1450
			    void *digest, int digest_size, enum drbd_packet cmd)
P
Philipp Reisner 已提交
1451
{
1452 1453
	struct drbd_socket *sock;
	struct p_block_req *p;
P
Philipp Reisner 已提交
1454

1455
	/* FIXME: Put the digest into the preallocated socket buffer.  */
P
Philipp Reisner 已提交
1456

1457 1458
	sock = &peer_device->connection->data;
	p = drbd_prepare_command(peer_device, sock);
1459 1460 1461 1462 1463
	if (!p)
		return -EIO;
	p->sector = cpu_to_be64(sector);
	p->block_id = ID_SYNCER /* unused */;
	p->blksize = cpu_to_be32(size);
1464
	return drbd_send_command(peer_device, sock, cmd, sizeof(*p), digest, digest_size);
P
Philipp Reisner 已提交
1465 1466
}

1467
int drbd_send_ov_request(struct drbd_peer_device *peer_device, sector_t sector, int size)
P
Philipp Reisner 已提交
1468
{
1469 1470
	struct drbd_socket *sock;
	struct p_block_req *p;
P
Philipp Reisner 已提交
1471

1472 1473
	sock = &peer_device->connection->data;
	p = drbd_prepare_command(peer_device, sock);
1474 1475 1476 1477 1478
	if (!p)
		return -EIO;
	p->sector = cpu_to_be64(sector);
	p->block_id = ID_SYNCER /* unused */;
	p->blksize = cpu_to_be32(size);
1479
	return drbd_send_command(peer_device, sock, P_OV_REQUEST, sizeof(*p), NULL, 0);
P
Philipp Reisner 已提交
1480 1481 1482
}

/* called on sndtimeo
1483 1484
 * returns false if we should retry,
 * true if we think connection is dead
P
Philipp Reisner 已提交
1485
 */
1486
static int we_should_drop_the_connection(struct drbd_connection *connection, struct socket *sock)
P
Philipp Reisner 已提交
1487 1488
{
	int drop_it;
1489
	/* long elapsed = (long)(jiffies - device->last_received); */
P
Philipp Reisner 已提交
1490

1491
	drop_it =   connection->meta.socket == sock
1492 1493
		|| !connection->ack_receiver.task
		|| get_t_state(&connection->ack_receiver) != RUNNING
1494
		|| connection->cstate < C_WF_REPORT_PARAMS;
P
Philipp Reisner 已提交
1495 1496

	if (drop_it)
1497
		return true;
P
Philipp Reisner 已提交
1498

1499
	drop_it = !--connection->ko_count;
P
Philipp Reisner 已提交
1500
	if (!drop_it) {
1501
		drbd_err(connection, "[%s/%d] sock_sendmsg time expired, ko = %u\n",
1502 1503
			 current->comm, current->pid, connection->ko_count);
		request_ping(connection);
P
Philipp Reisner 已提交
1504 1505
	}

1506
	return drop_it; /* && (device->state == R_PRIMARY) */;
P
Philipp Reisner 已提交
1507 1508
}

1509
static void drbd_update_congested(struct drbd_connection *connection)
1510
{
1511
	struct sock *sk = connection->data.socket->sk;
1512
	if (sk->sk_wmem_queued > sk->sk_sndbuf * 4 / 5)
1513
		set_bit(NET_CONGESTED, &connection->flags);
1514 1515
}

P
Philipp Reisner 已提交
1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536
/* The idea of sendpage seems to be to put some kind of reference
 * to the page into the skb, and to hand it over to the NIC. In
 * this process get_page() gets called.
 *
 * As soon as the page was really sent over the network put_page()
 * gets called by some part of the network layer. [ NIC driver? ]
 *
 * [ get_page() / put_page() increment/decrement the count. If count
 *   reaches 0 the page will be freed. ]
 *
 * This works nicely with pages from FSs.
 * But this means that in protocol A we might signal IO completion too early!
 *
 * In order not to corrupt data during a resync we must make sure
 * that we do not reuse our own buffer pages (EEs) to early, therefore
 * we have the net_ee list.
 *
 * XFS seems to have problems, still, it submits pages with page_count == 0!
 * As a workaround, we disable sendpage on pages
 * with page_count == 0 or PageSlab.
 */
1537
static int _drbd_no_send_page(struct drbd_peer_device *peer_device, struct page *page,
1538
			      int offset, size_t size, unsigned msg_flags)
P
Philipp Reisner 已提交
1539
{
1540 1541 1542 1543
	struct socket *socket;
	void *addr;
	int err;

1544
	socket = peer_device->connection->data.socket;
1545
	addr = kmap(page) + offset;
1546
	err = drbd_send_all(peer_device->connection, socket, addr, size, msg_flags);
P
Philipp Reisner 已提交
1547
	kunmap(page);
1548
	if (!err)
1549
		peer_device->device->send_cnt += size >> 9;
1550
	return err;
P
Philipp Reisner 已提交
1551 1552
}

1553
static int _drbd_send_page(struct drbd_peer_device *peer_device, struct page *page,
L
Lars Ellenberg 已提交
1554
		    int offset, size_t size, unsigned msg_flags)
P
Philipp Reisner 已提交
1555
{
1556
	struct socket *socket = peer_device->connection->data.socket;
P
Philipp Reisner 已提交
1557
	int len = size;
1558
	int err = -EIO;
P
Philipp Reisner 已提交
1559 1560 1561 1562 1563 1564 1565

	/* e.g. XFS meta- & log-data is in slab pages, which have a
	 * page_count of 0 and/or have PageSlab() set.
	 * we cannot use send_page for those, as that does get_page();
	 * put_page(); and would cause either a VM_BUG directly, or
	 * __page_cache_release a page that would actually still be referenced
	 * by someone, leading to some obscure delayed Oops somewhere else. */
1566
	if (drbd_disable_sendpage || (page_count(page) < 1) || PageSlab(page))
1567
		return _drbd_no_send_page(peer_device, page, offset, size, msg_flags);
P
Philipp Reisner 已提交
1568

L
Lars Ellenberg 已提交
1569
	msg_flags |= MSG_NOSIGNAL;
1570
	drbd_update_congested(peer_device->connection);
P
Philipp Reisner 已提交
1571
	do {
1572 1573 1574
		int sent;

		sent = socket->ops->sendpage(socket, page, offset, len, msg_flags);
P
Philipp Reisner 已提交
1575
		if (sent <= 0) {
1576
			if (sent == -EAGAIN) {
1577
				if (we_should_drop_the_connection(peer_device->connection, socket))
1578 1579 1580
					break;
				continue;
			}
1581
			drbd_warn(peer_device->device, "%s: size=%d len=%d sent=%d\n",
P
Philipp Reisner 已提交
1582
			     __func__, (int)size, len, sent);
1583 1584
			if (sent < 0)
				err = sent;
P
Philipp Reisner 已提交
1585 1586 1587 1588
			break;
		}
		len    -= sent;
		offset += sent;
1589
	} while (len > 0 /* THINK && device->cstate >= C_CONNECTED*/);
1590
	clear_bit(NET_CONGESTED, &peer_device->connection->flags);
P
Philipp Reisner 已提交
1591

1592 1593
	if (len == 0) {
		err = 0;
1594
		peer_device->device->send_cnt += size >> 9;
1595 1596
	}
	return err;
P
Philipp Reisner 已提交
1597 1598
}

1599
static int _drbd_send_bio(struct drbd_peer_device *peer_device, struct bio *bio)
P
Philipp Reisner 已提交
1600
{
1601 1602 1603
	struct bio_vec bvec;
	struct bvec_iter iter;

L
Lars Ellenberg 已提交
1604
	/* hint all but last page with MSG_MORE */
1605
	bio_for_each_segment(bvec, bio, iter) {
1606 1607
		int err;

1608
		err = _drbd_no_send_page(peer_device, bvec.bv_page,
1609
					 bvec.bv_offset, bvec.bv_len,
K
Kent Overstreet 已提交
1610
					 bio_iter_last(bvec, iter)
1611
					 ? 0 : MSG_MORE);
1612 1613
		if (err)
			return err;
1614 1615 1616
		/* REQ_OP_WRITE_SAME has only one segment */
		if (bio_op(bio) == REQ_OP_WRITE_SAME)
			break;
P
Philipp Reisner 已提交
1617
	}
1618
	return 0;
P
Philipp Reisner 已提交
1619 1620
}

1621
static int _drbd_send_zc_bio(struct drbd_peer_device *peer_device, struct bio *bio)
P
Philipp Reisner 已提交
1622
{
1623 1624 1625
	struct bio_vec bvec;
	struct bvec_iter iter;

L
Lars Ellenberg 已提交
1626
	/* hint all but last page with MSG_MORE */
1627
	bio_for_each_segment(bvec, bio, iter) {
1628 1629
		int err;

1630
		err = _drbd_send_page(peer_device, bvec.bv_page,
1631
				      bvec.bv_offset, bvec.bv_len,
K
Kent Overstreet 已提交
1632
				      bio_iter_last(bvec, iter) ? 0 : MSG_MORE);
1633 1634
		if (err)
			return err;
1635 1636 1637
		/* REQ_OP_WRITE_SAME has only one segment */
		if (bio_op(bio) == REQ_OP_WRITE_SAME)
			break;
P
Philipp Reisner 已提交
1638
	}
1639
	return 0;
P
Philipp Reisner 已提交
1640 1641
}

1642
static int _drbd_send_zc_ee(struct drbd_peer_device *peer_device,
1643
			    struct drbd_peer_request *peer_req)
1644
{
1645 1646
	struct page *page = peer_req->pages;
	unsigned len = peer_req->i.size;
1647
	int err;
1648

L
Lars Ellenberg 已提交
1649
	/* hint all but last page with MSG_MORE */
1650 1651
	page_chain_for_each(page) {
		unsigned l = min_t(unsigned, len, PAGE_SIZE);
1652

1653
		err = _drbd_send_page(peer_device, page, 0, l,
1654 1655 1656
				      page_chain_next(page) ? MSG_MORE : 0);
		if (err)
			return err;
1657 1658
		len -= l;
	}
1659
	return 0;
1660 1661
}

M
Mike Christie 已提交
1662 1663
static u32 bio_flags_to_wire(struct drbd_connection *connection,
			     struct bio *bio)
1664
{
1665
	if (connection->agreed_pro_version >= 95)
J
Jens Axboe 已提交
1666 1667 1668
		return  (bio->bi_opf & REQ_SYNC ? DP_RW_SYNC : 0) |
			(bio->bi_opf & REQ_FUA ? DP_FUA : 0) |
			(bio->bi_opf & REQ_PREFLUSH ? DP_FLUSH : 0) |
1669
			(bio_op(bio) == REQ_OP_WRITE_SAME ? DP_WSAME : 0) |
1670 1671
			(bio_op(bio) == REQ_OP_DISCARD ? DP_DISCARD : 0) |
			(bio_op(bio) == REQ_OP_WRITE_ZEROES ? DP_DISCARD : 0);
1672
	else
J
Jens Axboe 已提交
1673
		return bio->bi_opf & REQ_SYNC ? DP_RW_SYNC : 0;
1674 1675
}

1676 1677
/* Used to send write or TRIM aka REQ_DISCARD requests
 * R_PRIMARY -> Peer	(P_DATA, P_TRIM)
P
Philipp Reisner 已提交
1678
 */
1679
int drbd_send_dblock(struct drbd_peer_device *peer_device, struct drbd_request *req)
P
Philipp Reisner 已提交
1680
{
1681
	struct drbd_device *device = peer_device->device;
1682 1683
	struct drbd_socket *sock;
	struct p_data *p;
1684 1685
	struct p_wsame *wsame = NULL;
	void *digest_out;
P
Philipp Reisner 已提交
1686
	unsigned int dp_flags = 0;
1687
	int digest_size;
1688
	int err;
P
Philipp Reisner 已提交
1689

1690 1691
	sock = &peer_device->connection->data;
	p = drbd_prepare_command(peer_device, sock);
1692
	digest_size = peer_device->connection->integrity_tfm ?
H
Herbert Xu 已提交
1693
		      crypto_ahash_digestsize(peer_device->connection->integrity_tfm) : 0;
P
Philipp Reisner 已提交
1694

1695 1696 1697 1698
	if (!p)
		return -EIO;
	p->sector = cpu_to_be64(req->i.sector);
	p->block_id = (unsigned long)req;
1699
	p->seq_num = cpu_to_be32(atomic_inc_return(&device->packet_seq));
M
Mike Christie 已提交
1700
	dp_flags = bio_flags_to_wire(peer_device->connection, req->master_bio);
1701 1702
	if (device->state.conn >= C_SYNC_SOURCE &&
	    device->state.conn <= C_PAUSED_SYNC_T)
P
Philipp Reisner 已提交
1703
		dp_flags |= DP_MAY_SET_IN_SYNC;
1704
	if (peer_device->connection->agreed_pro_version >= 100) {
1705 1706
		if (req->rq_state & RQ_EXP_RECEIVE_ACK)
			dp_flags |= DP_SEND_RECEIVE_ACK;
1707 1708 1709 1710
		/* During resync, request an explicit write ack,
		 * even in protocol != C */
		if (req->rq_state & RQ_EXP_WRITE_ACK
		|| (dp_flags & DP_MAY_SET_IN_SYNC))
1711 1712
			dp_flags |= DP_SEND_WRITE_ACK;
	}
1713
	p->dp_flags = cpu_to_be32(dp_flags);
1714 1715 1716 1717 1718 1719 1720

	if (dp_flags & DP_DISCARD) {
		struct p_trim *t = (struct p_trim*)p;
		t->size = cpu_to_be32(req->i.size);
		err = __send_command(peer_device->connection, device->vnr, sock, P_TRIM, sizeof(*t), NULL, 0);
		goto out;
	}
1721 1722 1723 1724 1725 1726 1727 1728 1729
	if (dp_flags & DP_WSAME) {
		/* this will only work if DRBD_FF_WSAME is set AND the
		 * handshake agreed that all nodes and backend devices are
		 * WRITE_SAME capable and agree on logical_block_size */
		wsame = (struct p_wsame*)p;
		digest_out = wsame + 1;
		wsame->size = cpu_to_be32(req->i.size);
	} else
		digest_out = p + 1;
1730 1731 1732

	/* our digest is still only over the payload.
	 * TRIM does not carry any payload. */
1733
	if (digest_size)
1734 1735 1736 1737 1738 1739 1740 1741 1742 1743
		drbd_csum_bio(peer_device->connection->integrity_tfm, req->master_bio, digest_out);
	if (wsame) {
		err =
		    __send_command(peer_device->connection, device->vnr, sock, P_WSAME,
				   sizeof(*wsame) + digest_size, NULL,
				   bio_iovec(req->master_bio).bv_len);
	} else
		err =
		    __send_command(peer_device->connection, device->vnr, sock, P_DATA,
				   sizeof(*p) + digest_size, NULL, req->i.size);
1744
	if (!err) {
1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755
		/* For protocol A, we have to memcpy the payload into
		 * socket buffers, as we may complete right away
		 * as soon as we handed it over to tcp, at which point the data
		 * pages may become invalid.
		 *
		 * For data-integrity enabled, we copy it as well, so we can be
		 * sure that even if the bio pages may still be modified, it
		 * won't change the data on the wire, thus if the digest checks
		 * out ok after sending on this side, but does not fit on the
		 * receiving side, we sure have detected corruption elsewhere.
		 */
1756
		if (!(req->rq_state & (RQ_EXP_RECEIVE_ACK | RQ_EXP_WRITE_ACK)) || digest_size)
1757
			err = _drbd_send_bio(peer_device, req->master_bio);
P
Philipp Reisner 已提交
1758
		else
1759
			err = _drbd_send_zc_bio(peer_device, req->master_bio);
1760 1761

		/* double check digest, sometimes buffers have been modified in flight. */
1762
		if (digest_size > 0 && digest_size <= 64) {
B
Bart Van Assche 已提交
1763
			/* 64 byte, 512 bit, is the largest digest size
1764 1765
			 * currently supported in kernel crypto. */
			unsigned char digest[64];
1766
			drbd_csum_bio(peer_device->connection->integrity_tfm, req->master_bio, digest);
1767
			if (memcmp(p + 1, digest, digest_size)) {
1768
				drbd_warn(device,
1769
					"Digest mismatch, buffer modified by upper layers during write: %llus +%u\n",
1770
					(unsigned long long)req->i.sector, req->i.size);
1771
			}
1772
		} /* else if (digest_size > 64) {
1773 1774
		     ... Be noisy about digest too large ...
		} */
P
Philipp Reisner 已提交
1775
	}
1776
out:
1777
	mutex_unlock(&sock->mutex);  /* locked by drbd_prepare_command() */
P
Philipp Reisner 已提交
1778

1779
	return err;
P
Philipp Reisner 已提交
1780 1781 1782 1783 1784 1785
}

/* answer packet, used to send data back for read requests:
 *  Peer       -> (diskless) R_PRIMARY   (P_DATA_REPLY)
 *  C_SYNC_SOURCE -> C_SYNC_TARGET         (P_RS_DATA_REPLY)
 */
1786
int drbd_send_block(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
1787
		    struct drbd_peer_request *peer_req)
P
Philipp Reisner 已提交
1788
{
1789
	struct drbd_device *device = peer_device->device;
1790 1791
	struct drbd_socket *sock;
	struct p_data *p;
1792
	int err;
1793
	int digest_size;
P
Philipp Reisner 已提交
1794

1795 1796
	sock = &peer_device->connection->data;
	p = drbd_prepare_command(peer_device, sock);
P
Philipp Reisner 已提交
1797

1798
	digest_size = peer_device->connection->integrity_tfm ?
H
Herbert Xu 已提交
1799
		      crypto_ahash_digestsize(peer_device->connection->integrity_tfm) : 0;
P
Philipp Reisner 已提交
1800

1801 1802 1803 1804 1805
	if (!p)
		return -EIO;
	p->sector = cpu_to_be64(peer_req->i.sector);
	p->block_id = peer_req->block_id;
	p->seq_num = 0;  /* unused */
1806
	p->dp_flags = 0;
1807
	if (digest_size)
1808
		drbd_csum_ee(peer_device->connection->integrity_tfm, peer_req, p + 1);
1809
	err = __send_command(peer_device->connection, device->vnr, sock, cmd, sizeof(*p) + digest_size, NULL, peer_req->i.size);
1810
	if (!err)
1811
		err = _drbd_send_zc_ee(peer_device, peer_req);
1812
	mutex_unlock(&sock->mutex);  /* locked by drbd_prepare_command() */
1813

1814
	return err;
P
Philipp Reisner 已提交
1815 1816
}

1817
int drbd_send_out_of_sync(struct drbd_peer_device *peer_device, struct drbd_request *req)
1818
{
1819 1820
	struct drbd_socket *sock;
	struct p_block_desc *p;
1821

1822 1823
	sock = &peer_device->connection->data;
	p = drbd_prepare_command(peer_device, sock);
1824 1825 1826 1827
	if (!p)
		return -EIO;
	p->sector = cpu_to_be64(req->i.sector);
	p->blksize = cpu_to_be32(req->i.size);
1828
	return drbd_send_command(peer_device, sock, P_OUT_OF_SYNC, sizeof(*p), NULL, 0);
1829 1830
}

P
Philipp Reisner 已提交
1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846
/*
  drbd_send distinguishes two cases:

  Packets sent via the data socket "sock"
  and packets sent via the meta data socket "msock"

		    sock                      msock
  -----------------+-------------------------+------------------------------
  timeout           conf.timeout / 2          conf.timeout / 2
  timeout action    send a ping via msock     Abort communication
					      and close all sockets
*/

/*
 * you must have down()ed the appropriate [m]sock_mutex elsewhere!
 */
1847
int drbd_send(struct drbd_connection *connection, struct socket *sock,
P
Philipp Reisner 已提交
1848 1849
	      void *buf, size_t size, unsigned msg_flags)
{
A
Al Viro 已提交
1850
	struct kvec iov = {.iov_base = buf, .iov_len = size};
A
Al Viro 已提交
1851
	struct msghdr msg = {.msg_flags = msg_flags | MSG_NOSIGNAL};
P
Philipp Reisner 已提交
1852 1853 1854
	int rv, sent = 0;

	if (!sock)
1855
		return -EBADR;
P
Philipp Reisner 已提交
1856 1857 1858

	/* THINK  if (signal_pending) return ... ? */

A
Al Viro 已提交
1859 1860
	iov_iter_kvec(&msg.msg_iter, WRITE | ITER_KVEC, &iov, 1, size);

1861
	if (sock == connection->data.socket) {
1862
		rcu_read_lock();
1863
		connection->ko_count = rcu_dereference(connection->net_conf)->ko_count;
1864
		rcu_read_unlock();
1865
		drbd_update_congested(connection);
P
Philipp Reisner 已提交
1866 1867
	}
	do {
A
Al Viro 已提交
1868
		rv = sock_sendmsg(sock, &msg);
P
Philipp Reisner 已提交
1869
		if (rv == -EAGAIN) {
1870
			if (we_should_drop_the_connection(connection, sock))
P
Philipp Reisner 已提交
1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883
				break;
			else
				continue;
		}
		if (rv == -EINTR) {
			flush_signals(current);
			rv = 0;
		}
		if (rv < 0)
			break;
		sent += rv;
	} while (sent < size);

1884 1885
	if (sock == connection->data.socket)
		clear_bit(NET_CONGESTED, &connection->flags);
P
Philipp Reisner 已提交
1886 1887 1888

	if (rv <= 0) {
		if (rv != -EAGAIN) {
1889
			drbd_err(connection, "%s_sendmsg returned %d\n",
1890
				 sock == connection->meta.socket ? "msock" : "sock",
1891
				 rv);
1892
			conn_request_state(connection, NS(conn, C_BROKEN_PIPE), CS_HARD);
P
Philipp Reisner 已提交
1893
		} else
1894
			conn_request_state(connection, NS(conn, C_TIMEOUT), CS_HARD);
P
Philipp Reisner 已提交
1895 1896 1897 1898 1899
	}

	return sent;
}

1900 1901 1902 1903 1904
/**
 * drbd_send_all  -  Send an entire buffer
 *
 * Returns 0 upon success and a negative error value otherwise.
 */
1905
int drbd_send_all(struct drbd_connection *connection, struct socket *sock, void *buffer,
1906 1907 1908 1909
		  size_t size, unsigned msg_flags)
{
	int err;

1910
	err = drbd_send(connection, sock, buffer, size, msg_flags);
1911 1912 1913 1914 1915 1916 1917
	if (err < 0)
		return err;
	if (err != size)
		return -EIO;
	return 0;
}

P
Philipp Reisner 已提交
1918 1919
static int drbd_open(struct block_device *bdev, fmode_t mode)
{
1920
	struct drbd_device *device = bdev->bd_disk->private_data;
P
Philipp Reisner 已提交
1921 1922 1923
	unsigned long flags;
	int rv = 0;

1924
	mutex_lock(&drbd_main_mutex);
1925
	spin_lock_irqsave(&device->resource->req_lock, flags);
1926
	/* to have a stable device->state.role
P
Philipp Reisner 已提交
1927 1928
	 * and no race with updating open_cnt */

1929
	if (device->state.role != R_PRIMARY) {
P
Philipp Reisner 已提交
1930 1931
		if (mode & FMODE_WRITE)
			rv = -EROFS;
1932
		else if (!drbd_allow_oos)
P
Philipp Reisner 已提交
1933 1934 1935 1936
			rv = -EMEDIUMTYPE;
	}

	if (!rv)
1937
		device->open_cnt++;
1938
	spin_unlock_irqrestore(&device->resource->req_lock, flags);
1939
	mutex_unlock(&drbd_main_mutex);
P
Philipp Reisner 已提交
1940 1941 1942 1943

	return rv;
}

1944
static void drbd_release(struct gendisk *gd, fmode_t mode)
P
Philipp Reisner 已提交
1945
{
1946
	struct drbd_device *device = gd->private_data;
1947
	mutex_lock(&drbd_main_mutex);
1948
	device->open_cnt--;
1949
	mutex_unlock(&drbd_main_mutex);
P
Philipp Reisner 已提交
1950 1951
}

1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964
/* need to hold resource->req_lock */
void drbd_queue_unplug(struct drbd_device *device)
{
	if (device->state.pdsk >= D_INCONSISTENT && device->state.conn >= C_CONNECTED) {
		D_ASSERT(device, device->state.role == R_PRIMARY);
		if (test_and_clear_bit(UNPLUG_REMOTE, &device->flags)) {
			drbd_queue_work_if_unqueued(
				&first_peer_device(device)->connection->sender_work,
				&device->unplug_work);
		}
	}
}

1965
static void drbd_set_defaults(struct drbd_device *device)
P
Philipp Reisner 已提交
1966
{
1967 1968
	/* Beware! The actual layout differs
	 * between big endian and little endian */
1969
	device->state = (union drbd_dev_state) {
P
Philipp Reisner 已提交
1970 1971 1972 1973 1974 1975 1976 1977
		{ .role = R_SECONDARY,
		  .peer = R_UNKNOWN,
		  .conn = C_STANDALONE,
		  .disk = D_DISKLESS,
		  .pdsk = D_UNKNOWN,
		} };
}

1978
void drbd_init_set_defaults(struct drbd_device *device)
P
Philipp Reisner 已提交
1979 1980 1981 1982
{
	/* the memset(,0,) did most of this.
	 * note: only assignments, no allocation in here */

1983 1984 1985
	drbd_set_defaults(device);

	atomic_set(&device->ap_bio_cnt, 0);
1986
	atomic_set(&device->ap_actlog_cnt, 0);
1987 1988 1989 1990 1991 1992 1993 1994
	atomic_set(&device->ap_pending_cnt, 0);
	atomic_set(&device->rs_pending_cnt, 0);
	atomic_set(&device->unacked_cnt, 0);
	atomic_set(&device->local_cnt, 0);
	atomic_set(&device->pp_in_use_by_net, 0);
	atomic_set(&device->rs_sect_in, 0);
	atomic_set(&device->rs_sect_ev, 0);
	atomic_set(&device->ap_in_flight, 0);
1995
	atomic_set(&device->md_io.in_use, 0);
1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011

	mutex_init(&device->own_state_mutex);
	device->state_mutex = &device->own_state_mutex;

	spin_lock_init(&device->al_lock);
	spin_lock_init(&device->peer_seq_lock);

	INIT_LIST_HEAD(&device->active_ee);
	INIT_LIST_HEAD(&device->sync_ee);
	INIT_LIST_HEAD(&device->done_ee);
	INIT_LIST_HEAD(&device->read_ee);
	INIT_LIST_HEAD(&device->net_ee);
	INIT_LIST_HEAD(&device->resync_reads);
	INIT_LIST_HEAD(&device->resync_work.list);
	INIT_LIST_HEAD(&device->unplug_work.list);
	INIT_LIST_HEAD(&device->bm_io_work.w.list);
2012 2013 2014 2015
	INIT_LIST_HEAD(&device->pending_master_completion[0]);
	INIT_LIST_HEAD(&device->pending_master_completion[1]);
	INIT_LIST_HEAD(&device->pending_completion[0]);
	INIT_LIST_HEAD(&device->pending_completion[1]);
2016 2017 2018 2019 2020

	device->resync_work.cb  = w_resync_timer;
	device->unplug_work.cb  = w_send_write_hint;
	device->bm_io_work.w.cb = w_bitmap_io;

2021 2022 2023 2024
	timer_setup(&device->resync_timer, resync_timer_fn, 0);
	timer_setup(&device->md_sync_timer, md_sync_timer_fn, 0);
	timer_setup(&device->start_resync_timer, start_resync_timer_fn, 0);
	timer_setup(&device->request_timer, request_timer_fn, 0);
2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037

	init_waitqueue_head(&device->misc_wait);
	init_waitqueue_head(&device->state_wait);
	init_waitqueue_head(&device->ee_wait);
	init_waitqueue_head(&device->al_wait);
	init_waitqueue_head(&device->seq_wait);

	device->resync_wenr = LC_FREE;
	device->peer_max_bio_size = DRBD_MAX_BIO_SIZE_SAFE;
	device->local_max_bio_size = DRBD_MAX_BIO_SIZE_SAFE;
}

void drbd_device_cleanup(struct drbd_device *device)
P
Philipp Reisner 已提交
2038
{
2039
	int i;
2040
	if (first_peer_device(device)->connection->receiver.t_state != NONE)
2041
		drbd_err(device, "ASSERT FAILED: receiver t_state == %d expected 0.\n",
2042
				first_peer_device(device)->connection->receiver.t_state);
2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055

	device->al_writ_cnt  =
	device->bm_writ_cnt  =
	device->read_cnt     =
	device->recv_cnt     =
	device->send_cnt     =
	device->writ_cnt     =
	device->p_size       =
	device->rs_start     =
	device->rs_total     =
	device->rs_failed    = 0;
	device->rs_last_events = 0;
	device->rs_last_sect_ev = 0;
2056
	for (i = 0; i < DRBD_SYNC_MARKS; i++) {
2057 2058
		device->rs_mark_left[i] = 0;
		device->rs_mark_time[i] = 0;
2059
	}
2060
	D_ASSERT(device, first_peer_device(device)->connection->net_conf == NULL);
P
Philipp Reisner 已提交
2061

2062 2063
	drbd_set_my_capacity(device, 0);
	if (device->bitmap) {
P
Philipp Reisner 已提交
2064
		/* maybe never allocated. */
2065 2066
		drbd_bm_resize(device, 0, 1);
		drbd_bm_cleanup(device);
P
Philipp Reisner 已提交
2067 2068
	}

2069
	drbd_backing_dev_free(device, device->ldev);
2070
	device->ldev = NULL;
2071

2072
	clear_bit(AL_SUSPENDED, &device->flags);
P
Philipp Reisner 已提交
2073

2074 2075 2076 2077 2078 2079 2080 2081 2082
	D_ASSERT(device, list_empty(&device->active_ee));
	D_ASSERT(device, list_empty(&device->sync_ee));
	D_ASSERT(device, list_empty(&device->done_ee));
	D_ASSERT(device, list_empty(&device->read_ee));
	D_ASSERT(device, list_empty(&device->net_ee));
	D_ASSERT(device, list_empty(&device->resync_reads));
	D_ASSERT(device, list_empty(&first_peer_device(device)->connection->sender_work.q));
	D_ASSERT(device, list_empty(&device->resync_work.list));
	D_ASSERT(device, list_empty(&device->unplug_work.list));
2083

2084
	drbd_set_defaults(device);
P
Philipp Reisner 已提交
2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098
}


static void drbd_destroy_mempools(void)
{
	struct page *page;

	while (drbd_pp_pool) {
		page = drbd_pp_pool;
		drbd_pp_pool = (struct page *)page_private(page);
		__free_page(page);
		drbd_pp_vacant--;
	}

2099
	/* D_ASSERT(device, atomic_read(&drbd_pp_vacant)==0); */
P
Philipp Reisner 已提交
2100

2101 2102 2103 2104 2105
	bioset_exit(&drbd_io_bio_set);
	bioset_exit(&drbd_md_io_bio_set);
	mempool_exit(&drbd_md_io_page_pool);
	mempool_exit(&drbd_ee_mempool);
	mempool_exit(&drbd_request_mempool);
2106 2107 2108 2109
	kmem_cache_destroy(drbd_ee_cache);
	kmem_cache_destroy(drbd_request_cache);
	kmem_cache_destroy(drbd_bm_ext_cache);
	kmem_cache_destroy(drbd_al_ext_cache);
P
Philipp Reisner 已提交
2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121

	drbd_ee_cache        = NULL;
	drbd_request_cache   = NULL;
	drbd_bm_ext_cache    = NULL;
	drbd_al_ext_cache    = NULL;

	return;
}

static int drbd_create_mempools(void)
{
	struct page *page;
2122
	const int number = (DRBD_MAX_BIO_SIZE/PAGE_SIZE) * drbd_minor_count;
2123
	int i, ret;
P
Philipp Reisner 已提交
2124 2125 2126 2127 2128 2129 2130 2131

	/* caches */
	drbd_request_cache = kmem_cache_create(
		"drbd_req", sizeof(struct drbd_request), 0, 0, NULL);
	if (drbd_request_cache == NULL)
		goto Enomem;

	drbd_ee_cache = kmem_cache_create(
2132
		"drbd_ee", sizeof(struct drbd_peer_request), 0, 0, NULL);
P
Philipp Reisner 已提交
2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146
	if (drbd_ee_cache == NULL)
		goto Enomem;

	drbd_bm_ext_cache = kmem_cache_create(
		"drbd_bm", sizeof(struct bm_extent), 0, 0, NULL);
	if (drbd_bm_ext_cache == NULL)
		goto Enomem;

	drbd_al_ext_cache = kmem_cache_create(
		"drbd_al", sizeof(struct lc_element), 0, 0, NULL);
	if (drbd_al_ext_cache == NULL)
		goto Enomem;

	/* mempools */
2147 2148
	ret = bioset_init(&drbd_io_bio_set, BIO_POOL_SIZE, 0, 0);
	if (ret)
2149 2150
		goto Enomem;

2151 2152 2153
	ret = bioset_init(&drbd_md_io_bio_set, DRBD_MIN_POOL_PAGES, 0,
			  BIOSET_NEED_BVECS);
	if (ret)
2154 2155
		goto Enomem;

2156 2157
	ret = mempool_init_page_pool(&drbd_md_io_page_pool, DRBD_MIN_POOL_PAGES, 0);
	if (ret)
2158 2159
		goto Enomem;

2160 2161 2162
	ret = mempool_init_slab_pool(&drbd_request_mempool, number,
				     drbd_request_cache);
	if (ret)
P
Philipp Reisner 已提交
2163 2164
		goto Enomem;

2165 2166
	ret = mempool_init_slab_pool(&drbd_ee_mempool, number, drbd_ee_cache);
	if (ret)
P
Philipp Reisner 已提交
2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187
		goto Enomem;

	/* drbd's page pool */
	spin_lock_init(&drbd_pp_lock);

	for (i = 0; i < number; i++) {
		page = alloc_page(GFP_HIGHUSER);
		if (!page)
			goto Enomem;
		set_page_private(page, (unsigned long)drbd_pp_pool);
		drbd_pp_pool = page;
	}
	drbd_pp_vacant = number;

	return 0;

Enomem:
	drbd_destroy_mempools(); /* in case we allocated some */
	return -ENOMEM;
}

2188
static void drbd_release_all_peer_reqs(struct drbd_device *device)
P
Philipp Reisner 已提交
2189 2190 2191
{
	int rr;

2192
	rr = drbd_free_peer_reqs(device, &device->active_ee);
P
Philipp Reisner 已提交
2193
	if (rr)
2194
		drbd_err(device, "%d EEs in active list found!\n", rr);
P
Philipp Reisner 已提交
2195

2196
	rr = drbd_free_peer_reqs(device, &device->sync_ee);
P
Philipp Reisner 已提交
2197
	if (rr)
2198
		drbd_err(device, "%d EEs in sync list found!\n", rr);
P
Philipp Reisner 已提交
2199

2200
	rr = drbd_free_peer_reqs(device, &device->read_ee);
P
Philipp Reisner 已提交
2201
	if (rr)
2202
		drbd_err(device, "%d EEs in read list found!\n", rr);
P
Philipp Reisner 已提交
2203

2204
	rr = drbd_free_peer_reqs(device, &device->done_ee);
P
Philipp Reisner 已提交
2205
	if (rr)
2206
		drbd_err(device, "%d EEs in done list found!\n", rr);
P
Philipp Reisner 已提交
2207

2208
	rr = drbd_free_peer_reqs(device, &device->net_ee);
P
Philipp Reisner 已提交
2209
	if (rr)
2210
		drbd_err(device, "%d EEs in net list found!\n", rr);
P
Philipp Reisner 已提交
2211 2212
}

2213
/* caution. no locking. */
2214
void drbd_destroy_device(struct kref *kref)
P
Philipp Reisner 已提交
2215
{
2216
	struct drbd_device *device = container_of(kref, struct drbd_device, kref);
2217
	struct drbd_resource *resource = device->resource;
2218
	struct drbd_peer_device *peer_device, *tmp_peer_device;
P
Philipp Reisner 已提交
2219

2220
	del_timer_sync(&device->request_timer);
2221

P
Philipp Reisner 已提交
2222
	/* paranoia asserts */
2223
	D_ASSERT(device, device->open_cnt == 0);
P
Philipp Reisner 已提交
2224 2225 2226 2227 2228
	/* end paranoia asserts */

	/* cleanup stuff that may have been allocated during
	 * device (re-)configuration or state changes */

2229 2230
	if (device->this_bdev)
		bdput(device->this_bdev);
P
Philipp Reisner 已提交
2231

2232
	drbd_backing_dev_free(device, device->ldev);
2233
	device->ldev = NULL;
P
Philipp Reisner 已提交
2234

2235
	drbd_release_all_peer_reqs(device);
P
Philipp Reisner 已提交
2236

2237 2238
	lc_destroy(device->act_log);
	lc_destroy(device->resync);
P
Philipp Reisner 已提交
2239

2240 2241
	kfree(device->p_uuid);
	/* device->p_uuid = NULL; */
P
Philipp Reisner 已提交
2242

2243 2244
	if (device->bitmap) /* should no longer be there. */
		drbd_bm_cleanup(device);
2245
	__free_page(device->md_io.page);
2246 2247 2248
	put_disk(device->vdisk);
	blk_cleanup_queue(device->rq_queue);
	kfree(device->rs_plan_s);
2249 2250 2251 2252 2253 2254 2255 2256

	/* not for_each_connection(connection, resource):
	 * those may have been cleaned up and disassociated already.
	 */
	for_each_peer_device_safe(peer_device, tmp_peer_device, device) {
		kref_put(&peer_device->connection->kref, drbd_destroy_connection);
		kfree(peer_device);
	}
2257
	memset(device, 0xfd, sizeof(*device));
2258
	kfree(device);
2259
	kref_put(&resource->kref, drbd_destroy_resource);
P
Philipp Reisner 已提交
2260 2261
}

2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283
/* One global retry thread, if we need to push back some bio and have it
 * reinserted through our make request function.
 */
static struct retry_worker {
	struct workqueue_struct *wq;
	struct work_struct worker;

	spinlock_t lock;
	struct list_head writes;
} retry;

static void do_retry(struct work_struct *ws)
{
	struct retry_worker *retry = container_of(ws, struct retry_worker, worker);
	LIST_HEAD(writes);
	struct drbd_request *req, *tmp;

	spin_lock_irq(&retry->lock);
	list_splice_init(&retry->writes, &writes);
	spin_unlock_irq(&retry->lock);

	list_for_each_entry_safe(req, tmp, &writes, tl_requests) {
2284
		struct drbd_device *device = req->device;
2285
		struct bio *bio = req->master_bio;
2286
		unsigned long start_jif = req->start_jif;
2287 2288
		bool expected;

2289
		expected =
2290 2291 2292 2293 2294 2295
			expect(atomic_read(&req->completion_ref) == 0) &&
			expect(req->rq_state & RQ_POSTPONED) &&
			expect((req->rq_state & RQ_LOCAL_PENDING) == 0 ||
				(req->rq_state & RQ_LOCAL_ABORTED) != 0);

		if (!expected)
2296
			drbd_err(device, "req=%p completion_ref=%d rq_state=%x\n",
2297 2298 2299 2300 2301 2302 2303
				req, atomic_read(&req->completion_ref),
				req->rq_state);

		/* We still need to put one kref associated with the
		 * "completion_ref" going zero in the code path that queued it
		 * here.  The request object may still be referenced by a
		 * frozen local req->private_bio, in case we force-detached.
2304
		 */
2305
		kref_put(&req->kref, drbd_req_destroy);
2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319

		/* A single suspended or otherwise blocking device may stall
		 * all others as well.  Fortunately, this code path is to
		 * recover from a situation that "should not happen":
		 * concurrent writes in multi-primary setup.
		 * In a "normal" lifecycle, this workqueue is supposed to be
		 * destroyed without ever doing anything.
		 * If it turns out to be an issue anyways, we can do per
		 * resource (replication group) or per device (minor) retry
		 * workqueues instead.
		 */

		/* We are not just doing generic_make_request(),
		 * as we want to keep the start_time information. */
2320
		inc_ap_bio(device);
2321
		__drbd_make_request(device, bio, start_jif);
2322 2323 2324
	}
}

2325 2326
/* called via drbd_req_put_completion_ref(),
 * holds resource->req_lock */
2327
void drbd_restart_request(struct drbd_request *req)
2328 2329 2330 2331 2332 2333 2334 2335 2336
{
	unsigned long flags;
	spin_lock_irqsave(&retry.lock, flags);
	list_move_tail(&req->tl_requests, &retry.writes);
	spin_unlock_irqrestore(&retry.lock, flags);

	/* Drop the extra reference that would otherwise
	 * have been dropped by complete_master_bio.
	 * do_retry() needs to grab a new one. */
2337
	dec_ap_bio(req->device);
P
Philipp Reisner 已提交
2338

2339
	queue_work(retry.wq, &retry.worker);
P
Philipp Reisner 已提交
2340 2341
}

2342 2343 2344 2345 2346
void drbd_destroy_resource(struct kref *kref)
{
	struct drbd_resource *resource =
		container_of(kref, struct drbd_resource, kref);

2347
	idr_destroy(&resource->devices);
2348
	free_cpumask_var(resource->cpu_mask);
2349
	kfree(resource->name);
2350
	memset(resource, 0xf2, sizeof(*resource));
2351 2352 2353 2354 2355 2356 2357 2358 2359
	kfree(resource);
}

void drbd_free_resource(struct drbd_resource *resource)
{
	struct drbd_connection *connection, *tmp;

	for_each_connection_safe(connection, tmp, resource) {
		list_del(&connection->connections);
2360
		drbd_debugfs_connection_cleanup(connection);
2361 2362
		kref_put(&connection->kref, drbd_destroy_connection);
	}
2363
	drbd_debugfs_resource_cleanup(resource);
2364 2365
	kref_put(&resource->kref, drbd_destroy_resource);
}
2366

P
Philipp Reisner 已提交
2367 2368 2369
static void drbd_cleanup(void)
{
	unsigned int i;
2370
	struct drbd_device *device;
2371
	struct drbd_resource *resource, *tmp;
P
Philipp Reisner 已提交
2372

2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383
	/* first remove proc,
	 * drbdsetup uses it's presence to detect
	 * whether DRBD is loaded.
	 * If we would get stuck in proc removal,
	 * but have netlink already deregistered,
	 * some drbdsetup commands may wait forever
	 * for an answer.
	 */
	if (drbd_proc)
		remove_proc_entry("drbd", NULL);

2384 2385
	if (retry.wq)
		destroy_workqueue(retry.wq);
P
Philipp Reisner 已提交
2386

2387
	drbd_genl_unregister();
P
Philipp Reisner 已提交
2388

2389
	idr_for_each_entry(&drbd_devices, device, i)
2390
		drbd_delete_device(device);
P
Philipp Reisner 已提交
2391

P
Philipp Reisner 已提交
2392
	/* not _rcu since, no other updater anymore. Genl already unregistered */
2393 2394 2395
	for_each_resource_safe(resource, tmp, &drbd_resources) {
		list_del(&resource->resources);
		drbd_free_resource(resource);
2396
	}
P
Philipp Reisner 已提交
2397

2398 2399
	drbd_debugfs_cleanup();

2400
	drbd_destroy_mempools();
P
Philipp Reisner 已提交
2401 2402
	unregister_blkdev(DRBD_MAJOR, "drbd");

2403
	idr_destroy(&drbd_devices);
2404

2405
	pr_info("module cleanup done.\n");
P
Philipp Reisner 已提交
2406 2407 2408
}

/**
2409
 * drbd_congested() - Callback for the flusher thread
P
Philipp Reisner 已提交
2410
 * @congested_data:	User data
2411
 * @bdi_bits:		Bits the BDI flusher thread is currently interested in
P
Philipp Reisner 已提交
2412
 *
2413
 * Returns 1<<WB_async_congested and/or 1<<WB_sync_congested if we are congested.
P
Philipp Reisner 已提交
2414 2415 2416
 */
static int drbd_congested(void *congested_data, int bdi_bits)
{
2417
	struct drbd_device *device = congested_data;
P
Philipp Reisner 已提交
2418 2419 2420 2421
	struct request_queue *q;
	char reason = '-';
	int r = 0;

2422
	if (!may_inc_ap_bio(device)) {
P
Philipp Reisner 已提交
2423 2424 2425 2426 2427 2428
		/* DRBD has frozen IO */
		r = bdi_bits;
		reason = 'd';
		goto out;
	}

2429
	if (test_bit(CALLBACK_PENDING, &first_peer_device(device)->connection->flags)) {
2430
		r |= (1 << WB_async_congested);
2431 2432 2433 2434 2435
		/* Without good local data, we would need to read from remote,
		 * and that would need the worker thread as well, which is
		 * currently blocked waiting for that usermode helper to
		 * finish.
		 */
2436
		if (!get_ldev_if_state(device, D_UP_TO_DATE))
2437
			r |= (1 << WB_sync_congested);
2438
		else
2439
			put_ldev(device);
2440 2441 2442 2443 2444
		r &= bdi_bits;
		reason = 'c';
		goto out;
	}

2445 2446
	if (get_ldev(device)) {
		q = bdev_get_queue(device->ldev->backing_bdev);
2447
		r = bdi_congested(q->backing_dev_info, bdi_bits);
2448
		put_ldev(device);
P
Philipp Reisner 已提交
2449 2450 2451 2452
		if (r)
			reason = 'b';
	}

2453
	if (bdi_bits & (1 << WB_async_congested) &&
2454
	    test_bit(NET_CONGESTED, &first_peer_device(device)->connection->flags)) {
2455
		r |= (1 << WB_async_congested);
P
Philipp Reisner 已提交
2456 2457 2458 2459
		reason = reason == 'b' ? 'a' : 'n';
	}

out:
2460
	device->congestion_reason = reason;
P
Philipp Reisner 已提交
2461 2462 2463
	return r;
}

2464 2465 2466 2467
static void drbd_init_workqueue(struct drbd_work_queue* wq)
{
	spin_lock_init(&wq->q_lock);
	INIT_LIST_HEAD(&wq->q);
2468
	init_waitqueue_head(&wq->q_wait);
2469 2470
}

2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494
struct completion_work {
	struct drbd_work w;
	struct completion done;
};

static int w_complete(struct drbd_work *w, int cancel)
{
	struct completion_work *completion_work =
		container_of(w, struct completion_work, w);

	complete(&completion_work->done);
	return 0;
}

void drbd_flush_workqueue(struct drbd_work_queue *work_queue)
{
	struct completion_work completion_work;

	completion_work.w.cb = w_complete;
	init_completion(&completion_work.done);
	drbd_queue_work(work_queue, &completion_work.w);
	wait_for_completion(&completion_work.done);
}

2495
struct drbd_resource *drbd_find_resource(const char *name)
2496
{
2497
	struct drbd_resource *resource;
2498

2499 2500 2501
	if (!name || !name[0])
		return NULL;

P
Philipp Reisner 已提交
2502
	rcu_read_lock();
2503 2504
	for_each_resource_rcu(resource, &drbd_resources) {
		if (!strcmp(resource->name, name)) {
2505
			kref_get(&resource->kref);
2506
			goto found;
2507
		}
2508
	}
2509
	resource = NULL;
2510
found:
P
Philipp Reisner 已提交
2511
	rcu_read_unlock();
2512
	return resource;
2513 2514
}

2515
struct drbd_connection *conn_get_by_addrs(void *my_addr, int my_addr_len,
2516 2517
				     void *peer_addr, int peer_addr_len)
{
2518
	struct drbd_resource *resource;
2519
	struct drbd_connection *connection;
2520 2521

	rcu_read_lock();
2522 2523 2524 2525 2526 2527 2528 2529 2530
	for_each_resource_rcu(resource, &drbd_resources) {
		for_each_connection_rcu(connection, resource) {
			if (connection->my_addr_len == my_addr_len &&
			    connection->peer_addr_len == peer_addr_len &&
			    !memcmp(&connection->my_addr, my_addr, my_addr_len) &&
			    !memcmp(&connection->peer_addr, peer_addr, peer_addr_len)) {
				kref_get(&connection->kref);
				goto found;
			}
2531 2532
		}
	}
2533
	connection = NULL;
2534 2535
found:
	rcu_read_unlock();
2536
	return connection;
2537 2538
}

2539 2540 2541 2542 2543
static int drbd_alloc_socket(struct drbd_socket *socket)
{
	socket->rbuf = (void *) __get_free_page(GFP_KERNEL);
	if (!socket->rbuf)
		return -ENOMEM;
2544 2545 2546
	socket->sbuf = (void *) __get_free_page(GFP_KERNEL);
	if (!socket->sbuf)
		return -ENOMEM;
2547 2548 2549 2550 2551
	return 0;
}

static void drbd_free_socket(struct drbd_socket *socket)
{
2552
	free_page((unsigned long) socket->sbuf);
2553 2554 2555
	free_page((unsigned long) socket->rbuf);
}

2556
void conn_free_crypto(struct drbd_connection *connection)
2557
{
2558
	drbd_free_sock(connection);
2559

H
Herbert Xu 已提交
2560 2561 2562 2563 2564
	crypto_free_ahash(connection->csums_tfm);
	crypto_free_ahash(connection->verify_tfm);
	crypto_free_shash(connection->cram_hmac_tfm);
	crypto_free_ahash(connection->integrity_tfm);
	crypto_free_ahash(connection->peer_integrity_tfm);
2565 2566
	kfree(connection->int_dig_in);
	kfree(connection->int_dig_vv);
2567

2568 2569 2570 2571 2572 2573 2574
	connection->csums_tfm = NULL;
	connection->verify_tfm = NULL;
	connection->cram_hmac_tfm = NULL;
	connection->integrity_tfm = NULL;
	connection->peer_integrity_tfm = NULL;
	connection->int_dig_in = NULL;
	connection->int_dig_vv = NULL;
2575 2576
}

2577
int set_resource_options(struct drbd_resource *resource, struct res_opts *res_opts)
2578
{
2579
	struct drbd_connection *connection;
2580 2581 2582 2583 2584 2585 2586 2587
	cpumask_var_t new_cpu_mask;
	int err;

	if (!zalloc_cpumask_var(&new_cpu_mask, GFP_KERNEL))
		return -ENOMEM;

	/* silently ignore cpu mask on UP kernel */
	if (nr_cpu_ids > 1 && res_opts->cpu_mask[0] != 0) {
2588
		err = bitmap_parse(res_opts->cpu_mask, DRBD_CPU_MASK_SIZE,
2589
				   cpumask_bits(new_cpu_mask), nr_cpu_ids);
2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603
		if (err == -EOVERFLOW) {
			/* So what. mask it out. */
			cpumask_var_t tmp_cpu_mask;
			if (zalloc_cpumask_var(&tmp_cpu_mask, GFP_KERNEL)) {
				cpumask_setall(tmp_cpu_mask);
				cpumask_and(new_cpu_mask, new_cpu_mask, tmp_cpu_mask);
				drbd_warn(resource, "Overflow in bitmap_parse(%.12s%s), truncating to %u bits\n",
					res_opts->cpu_mask,
					strlen(res_opts->cpu_mask) > 12 ? "..." : "",
					nr_cpu_ids);
				free_cpumask_var(tmp_cpu_mask);
				err = 0;
			}
		}
2604
		if (err) {
2605
			drbd_warn(resource, "bitmap_parse() failed with %d\n", err);
2606 2607 2608 2609
			/* retcode = ERR_CPU_MASK_PARSE; */
			goto fail;
		}
	}
2610
	resource->res_opts = *res_opts;
2611 2612 2613 2614 2615
	if (cpumask_empty(new_cpu_mask))
		drbd_calc_cpu_mask(&new_cpu_mask);
	if (!cpumask_equal(resource->cpu_mask, new_cpu_mask)) {
		cpumask_copy(resource->cpu_mask, new_cpu_mask);
		for_each_connection_rcu(connection, resource) {
2616
			connection->receiver.reset_cpu_mask = 1;
2617
			connection->ack_receiver.reset_cpu_mask = 1;
2618 2619
			connection->worker.reset_cpu_mask = 1;
		}
2620 2621 2622 2623 2624 2625 2626 2627 2628
	}
	err = 0;

fail:
	free_cpumask_var(new_cpu_mask);
	return err;

}

2629 2630 2631 2632
struct drbd_resource *drbd_create_resource(const char *name)
{
	struct drbd_resource *resource;

2633
	resource = kzalloc(sizeof(struct drbd_resource), GFP_KERNEL);
2634
	if (!resource)
2635
		goto fail;
2636
	resource->name = kstrdup(name, GFP_KERNEL);
2637 2638 2639 2640
	if (!resource->name)
		goto fail_free_resource;
	if (!zalloc_cpumask_var(&resource->cpu_mask, GFP_KERNEL))
		goto fail_free_name;
2641
	kref_init(&resource->kref);
2642
	idr_init(&resource->devices);
2643
	INIT_LIST_HEAD(&resource->connections);
2644
	resource->write_ordering = WO_BDEV_FLUSH;
2645
	list_add_tail_rcu(&resource->resources, &drbd_resources);
2646
	mutex_init(&resource->conf_update);
2647
	mutex_init(&resource->adm_mutex);
2648
	spin_lock_init(&resource->req_lock);
2649
	drbd_debugfs_resource_add(resource);
2650
	return resource;
2651 2652 2653 2654 2655 2656 2657

fail_free_name:
	kfree(resource->name);
fail_free_resource:
	kfree(resource);
fail:
	return NULL;
2658 2659
}

2660
/* caller must be under adm_mutex */
2661
struct drbd_connection *conn_create(const char *name, struct res_opts *res_opts)
2662
{
2663
	struct drbd_resource *resource;
2664
	struct drbd_connection *connection;
2665

2666 2667
	connection = kzalloc(sizeof(struct drbd_connection), GFP_KERNEL);
	if (!connection)
2668 2669
		return NULL;

2670
	if (drbd_alloc_socket(&connection->data))
2671
		goto fail;
2672
	if (drbd_alloc_socket(&connection->meta))
2673 2674
		goto fail;

2675 2676
	connection->current_epoch = kzalloc(sizeof(struct drbd_epoch), GFP_KERNEL);
	if (!connection->current_epoch)
2677
		goto fail;
2678

2679
	INIT_LIST_HEAD(&connection->transfer_log);
2680

2681 2682 2683
	INIT_LIST_HEAD(&connection->current_epoch->list);
	connection->epochs = 1;
	spin_lock_init(&connection->epoch_lock);
2684

2685 2686 2687
	connection->send.seen_any_write_yet = false;
	connection->send.current_epoch_nr = 0;
	connection->send.current_epoch_writes = 0;
2688

2689 2690 2691 2692
	resource = drbd_create_resource(name);
	if (!resource)
		goto fail;

2693 2694 2695
	connection->cstate = C_STANDALONE;
	mutex_init(&connection->cstate_mutex);
	init_waitqueue_head(&connection->ping_wait);
2696
	idr_init(&connection->peer_devices);
2697

2698 2699 2700
	drbd_init_workqueue(&connection->sender_work);
	mutex_init(&connection->data.mutex);
	mutex_init(&connection->meta.mutex);
2701

2702 2703 2704 2705
	drbd_thread_init(resource, &connection->receiver, drbd_receiver, "receiver");
	connection->receiver.connection = connection;
	drbd_thread_init(resource, &connection->worker, drbd_worker, "worker");
	connection->worker.connection = connection;
2706 2707
	drbd_thread_init(resource, &connection->ack_receiver, drbd_ack_receiver, "ack_recv");
	connection->ack_receiver.connection = connection;
2708

2709
	kref_init(&connection->kref);
2710 2711

	connection->resource = resource;
2712

2713 2714 2715 2716 2717
	if (set_resource_options(resource, res_opts))
		goto fail_resource;

	kref_get(&resource->kref);
	list_add_tail_rcu(&connection->connections, &resource->connections);
2718
	drbd_debugfs_connection_add(connection);
2719
	return connection;
2720

2721 2722 2723
fail_resource:
	list_del(&resource->resources);
	drbd_free_resource(resource);
2724
fail:
2725 2726 2727 2728
	kfree(connection->current_epoch);
	drbd_free_socket(&connection->meta);
	drbd_free_socket(&connection->data);
	kfree(connection);
2729 2730 2731
	return NULL;
}

2732
void drbd_destroy_connection(struct kref *kref)
2733
{
2734
	struct drbd_connection *connection = container_of(kref, struct drbd_connection, kref);
2735
	struct drbd_resource *resource = connection->resource;
2736

2737
	if (atomic_read(&connection->current_epoch->epoch_size) !=  0)
2738
		drbd_err(connection, "epoch_size:%d\n", atomic_read(&connection->current_epoch->epoch_size));
2739
	kfree(connection->current_epoch);
2740

2741
	idr_destroy(&connection->peer_devices);
2742

2743 2744 2745 2746
	drbd_free_socket(&connection->meta);
	drbd_free_socket(&connection->data);
	kfree(connection->int_dig_in);
	kfree(connection->int_dig_vv);
2747
	memset(connection, 0xfc, sizeof(*connection));
2748
	kfree(connection);
2749
	kref_put(&resource->kref, drbd_destroy_resource);
2750 2751
}

2752
static int init_submitter(struct drbd_device *device)
2753 2754 2755
{
	/* opencoded create_singlethread_workqueue(),
	 * to be able to say "drbd%d", ..., minor */
2756 2757
	device->submit.wq =
		alloc_ordered_workqueue("drbd%u_submit", WQ_MEM_RECLAIM, device->minor);
2758
	if (!device->submit.wq)
2759 2760
		return -ENOMEM;

2761 2762
	INIT_WORK(&device->submit.worker, do_submit);
	INIT_LIST_HEAD(&device->submit.writes);
2763 2764 2765
	return 0;
}

2766
enum drbd_ret_code drbd_create_device(struct drbd_config_context *adm_ctx, unsigned int minor)
P
Philipp Reisner 已提交
2767
{
2768
	struct drbd_resource *resource = adm_ctx->resource;
2769
	struct drbd_connection *connection;
2770
	struct drbd_device *device;
2771
	struct drbd_peer_device *peer_device, *tmp_peer_device;
P
Philipp Reisner 已提交
2772 2773
	struct gendisk *disk;
	struct request_queue *q;
2774
	int id;
2775
	int vnr = adm_ctx->volume;
2776
	enum drbd_ret_code err = ERR_NOMEM;
2777

2778 2779
	device = minor_to_device(minor);
	if (device)
A
Andreas Gruenbacher 已提交
2780
		return ERR_MINOR_OR_VOLUME_EXISTS;
P
Philipp Reisner 已提交
2781 2782

	/* GFP_KERNEL, we are outside of all write-out paths */
2783 2784
	device = kzalloc(sizeof(struct drbd_device), GFP_KERNEL);
	if (!device)
2785
		return ERR_NOMEM;
2786 2787 2788 2789
	kref_init(&device->kref);

	kref_get(&resource->kref);
	device->resource = resource;
2790 2791
	device->minor = minor;
	device->vnr = vnr;
P
Philipp Reisner 已提交
2792

2793
	drbd_init_set_defaults(device);
P
Philipp Reisner 已提交
2794

2795
	q = blk_alloc_queue_node(GFP_KERNEL, NUMA_NO_NODE, &resource->req_lock);
P
Philipp Reisner 已提交
2796 2797
	if (!q)
		goto out_no_q;
2798 2799
	device->rq_queue = q;
	q->queuedata   = device;
P
Philipp Reisner 已提交
2800 2801 2802 2803

	disk = alloc_disk(1);
	if (!disk)
		goto out_no_disk;
2804
	device->vdisk = disk;
P
Philipp Reisner 已提交
2805

2806
	set_disk_ro(disk, true);
P
Philipp Reisner 已提交
2807 2808 2809 2810 2811 2812

	disk->queue = q;
	disk->major = DRBD_MAJOR;
	disk->first_minor = minor;
	disk->fops = &drbd_ops;
	sprintf(disk->disk_name, "drbd%d", minor);
2813
	disk->private_data = device;
P
Philipp Reisner 已提交
2814

2815
	device->this_bdev = bdget(MKDEV(DRBD_MAJOR, minor));
P
Philipp Reisner 已提交
2816
	/* we have no partitions. we contain only ourselves. */
2817
	device->this_bdev->bd_contains = device->this_bdev;
P
Philipp Reisner 已提交
2818

2819 2820
	q->backing_dev_info->congested_fn = drbd_congested;
	q->backing_dev_info->congested_data = device;
P
Philipp Reisner 已提交
2821

2822
	blk_queue_make_request(q, drbd_make_request);
2823
	blk_queue_write_cache(q, true, true);
2824 2825 2826
	/* Setting the max_hw_sectors to an odd value of 8kibyte here
	   This triggers a max_bio_size message upon first attach or connect */
	blk_queue_max_hw_sectors(q, DRBD_MAX_BIO_SIZE_SAFE >> 8);
P
Philipp Reisner 已提交
2827

2828 2829
	device->md_io.page = alloc_page(GFP_KERNEL);
	if (!device->md_io.page)
P
Philipp Reisner 已提交
2830 2831
		goto out_no_io_page;

2832
	if (drbd_bm_init(device))
P
Philipp Reisner 已提交
2833
		goto out_no_bitmap;
2834 2835
	device->read_requests = RB_ROOT;
	device->write_requests = RB_ROOT;
P
Philipp Reisner 已提交
2836

2837 2838
	id = idr_alloc(&drbd_devices, device, minor, minor + 1, GFP_KERNEL);
	if (id < 0) {
2839
		if (id == -ENOSPC)
A
Andreas Gruenbacher 已提交
2840
			err = ERR_MINOR_OR_VOLUME_EXISTS;
2841
		goto out_no_minor_idr;
2842
	}
2843 2844 2845 2846
	kref_get(&device->kref);

	id = idr_alloc(&resource->devices, device, vnr, vnr + 1, GFP_KERNEL);
	if (id < 0) {
2847
		if (id == -ENOSPC)
A
Andreas Gruenbacher 已提交
2848
			err = ERR_MINOR_OR_VOLUME_EXISTS;
2849 2850 2851
		goto out_idr_remove_minor;
	}
	kref_get(&device->kref);
2852

2853
	INIT_LIST_HEAD(&device->peer_devices);
2854
	INIT_LIST_HEAD(&device->pending_bitmap_io);
2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866
	for_each_connection(connection, resource) {
		peer_device = kzalloc(sizeof(struct drbd_peer_device), GFP_KERNEL);
		if (!peer_device)
			goto out_idr_remove_from_resource;
		peer_device->connection = connection;
		peer_device->device = device;

		list_add(&peer_device->peer_devices, &device->peer_devices);
		kref_get(&device->kref);

		id = idr_alloc(&connection->peer_devices, peer_device, vnr, vnr + 1, GFP_KERNEL);
		if (id < 0) {
2867
			if (id == -ENOSPC)
2868 2869
				err = ERR_INVALID_REQUEST;
			goto out_idr_remove_from_resource;
T
Tejun Heo 已提交
2870
		}
2871
		kref_get(&connection->kref);
2872
		INIT_WORK(&peer_device->send_acks_work, drbd_send_acks_wf);
2873
	}
T
Tejun Heo 已提交
2874

2875
	if (init_submitter(device)) {
2876 2877 2878 2879
		err = ERR_NOMEM;
		goto out_idr_remove_vol;
	}

2880 2881
	add_disk(disk);

2882
	/* inherit the connection state */
2883
	device->state.conn = first_connection(resource)->cstate;
2884 2885 2886 2887
	if (device->state.conn == C_WF_REPORT_PARAMS) {
		for_each_peer_device(peer_device, device)
			drbd_connected(peer_device);
	}
2888 2889 2890 2891
	/* move to create_peer_device() */
	for_each_peer_device(peer_device, device)
		drbd_debugfs_peer_device_add(peer_device);
	drbd_debugfs_device_add(device);
2892
	return NO_ERROR;
P
Philipp Reisner 已提交
2893

2894
out_idr_remove_vol:
2895
	idr_remove(&connection->peer_devices, vnr);
2896
out_idr_remove_from_resource:
2897
	for_each_connection(connection, resource) {
2898 2899
		peer_device = idr_remove(&connection->peer_devices, vnr);
		if (peer_device)
2900 2901 2902 2903 2904 2905
			kref_put(&connection->kref, drbd_destroy_connection);
	}
	for_each_peer_device_safe(peer_device, tmp_peer_device, device) {
		list_del(&peer_device->peer_devices);
		kfree(peer_device);
	}
2906
	idr_remove(&resource->devices, vnr);
2907
out_idr_remove_minor:
2908
	idr_remove(&drbd_devices, minor);
2909
	synchronize_rcu();
2910
out_no_minor_idr:
2911
	drbd_bm_cleanup(device);
P
Philipp Reisner 已提交
2912
out_no_bitmap:
2913
	__free_page(device->md_io.page);
P
Philipp Reisner 已提交
2914 2915 2916 2917 2918
out_no_io_page:
	put_disk(disk);
out_no_disk:
	blk_cleanup_queue(q);
out_no_q:
2919
	kref_put(&resource->kref, drbd_destroy_resource);
2920
	kfree(device);
2921
	return err;
P
Philipp Reisner 已提交
2922 2923
}

2924
void drbd_delete_device(struct drbd_device *device)
2925 2926 2927
{
	struct drbd_resource *resource = device->resource;
	struct drbd_connection *connection;
2928
	struct drbd_peer_device *peer_device;
2929

2930 2931 2932 2933
	/* move to free_peer_device() */
	for_each_peer_device(peer_device, device)
		drbd_debugfs_peer_device_cleanup(peer_device);
	drbd_debugfs_device_cleanup(device);
2934
	for_each_connection(connection, resource) {
2935
		idr_remove(&connection->peer_devices, device->vnr);
2936
		kref_put(&device->kref, drbd_destroy_device);
2937 2938
	}
	idr_remove(&resource->devices, device->vnr);
2939
	kref_put(&device->kref, drbd_destroy_device);
2940
	idr_remove(&drbd_devices, device_to_minor(device));
2941
	kref_put(&device->kref, drbd_destroy_device);
2942 2943
	del_gendisk(device->vdisk);
	synchronize_rcu();
2944
	kref_put(&device->kref, drbd_destroy_device);
2945 2946
}

2947
static int __init drbd_init(void)
P
Philipp Reisner 已提交
2948 2949 2950
{
	int err;

2951 2952
	if (drbd_minor_count < DRBD_MINOR_COUNT_MIN || drbd_minor_count > DRBD_MINOR_COUNT_MAX) {
		pr_err("invalid minor_count (%d)\n", drbd_minor_count);
P
Philipp Reisner 已提交
2953 2954 2955
#ifdef MODULE
		return -EINVAL;
#else
2956
		drbd_minor_count = DRBD_MINOR_COUNT_DEF;
P
Philipp Reisner 已提交
2957 2958 2959 2960 2961
#endif
	}

	err = register_blkdev(DRBD_MAJOR, "drbd");
	if (err) {
2962
		pr_err("unable to register block device major %d\n",
P
Philipp Reisner 已提交
2963 2964 2965 2966 2967 2968 2969 2970 2971 2972
		       DRBD_MAJOR);
		return err;
	}

	/*
	 * allocate all necessary structs
	 */
	init_waitqueue_head(&drbd_pp_wait);

	drbd_proc = NULL; /* play safe for drbd_cleanup */
2973
	idr_init(&drbd_devices);
P
Philipp Reisner 已提交
2974

2975
	mutex_init(&resources_mutex);
2976
	INIT_LIST_HEAD(&drbd_resources);
2977 2978 2979

	err = drbd_genl_register();
	if (err) {
2980
		pr_err("unable to register generic netlink family\n");
2981 2982 2983
		goto fail;
	}

P
Philipp Reisner 已提交
2984 2985
	err = drbd_create_mempools();
	if (err)
2986
		goto fail;
P
Philipp Reisner 已提交
2987

2988
	err = -ENOMEM;
2989
	drbd_proc = proc_create_single("drbd", S_IFREG | 0444 , NULL, drbd_seq_show);
P
Philipp Reisner 已提交
2990
	if (!drbd_proc)	{
2991
		pr_err("unable to register proc file\n");
2992
		goto fail;
P
Philipp Reisner 已提交
2993 2994
	}

2995 2996
	retry.wq = create_singlethread_workqueue("drbd-reissue");
	if (!retry.wq) {
2997
		pr_err("unable to create retry workqueue\n");
2998 2999 3000 3001 3002
		goto fail;
	}
	INIT_WORK(&retry.worker, do_retry);
	spin_lock_init(&retry.lock);
	INIT_LIST_HEAD(&retry.writes);
P
Philipp Reisner 已提交
3003

3004 3005 3006
	if (drbd_debugfs_init())
		pr_notice("failed to initialize debugfs -- will not be available\n");

3007
	pr_info("initialized. "
P
Philipp Reisner 已提交
3008 3009
	       "Version: " REL_VERSION " (api:%d/proto:%d-%d)\n",
	       API_VERSION, PRO_VERSION_MIN, PRO_VERSION_MAX);
3010 3011
	pr_info("%s\n", drbd_buildtag());
	pr_info("registered as block device major %d\n", DRBD_MAJOR);
P
Philipp Reisner 已提交
3012 3013
	return 0; /* Success! */

3014
fail:
P
Philipp Reisner 已提交
3015 3016
	drbd_cleanup();
	if (err == -ENOMEM)
3017
		pr_err("ran out of memory\n");
P
Philipp Reisner 已提交
3018
	else
3019
		pr_err("initialization failure\n");
P
Philipp Reisner 已提交
3020 3021 3022
	return err;
}

3023
static void drbd_free_one_sock(struct drbd_socket *ds)
P
Philipp Reisner 已提交
3024
{
3025 3026 3027 3028 3029 3030 3031 3032 3033 3034
	struct socket *s;
	mutex_lock(&ds->mutex);
	s = ds->socket;
	ds->socket = NULL;
	mutex_unlock(&ds->mutex);
	if (s) {
		/* so debugfs does not need to mutex_lock() */
		synchronize_rcu();
		kernel_sock_shutdown(s, SHUT_RDWR);
		sock_release(s);
P
Philipp Reisner 已提交
3035 3036 3037
	}
}

3038 3039 3040 3041 3042 3043 3044 3045
void drbd_free_sock(struct drbd_connection *connection)
{
	if (connection->data.socket)
		drbd_free_one_sock(&connection->data);
	if (connection->meta.socket)
		drbd_free_one_sock(&connection->meta);
}

P
Philipp Reisner 已提交
3046 3047
/* meta data management */

3048
void conn_md_sync(struct drbd_connection *connection)
P
Philipp Reisner 已提交
3049
{
3050
	struct drbd_peer_device *peer_device;
3051
	int vnr;
P
Philipp Reisner 已提交
3052

3053
	rcu_read_lock();
3054 3055 3056
	idr_for_each_entry(&connection->peer_devices, peer_device, vnr) {
		struct drbd_device *device = peer_device->device;

3057
		kref_get(&device->kref);
3058
		rcu_read_unlock();
3059
		drbd_md_sync(device);
3060
		kref_put(&device->kref, drbd_destroy_device);
3061 3062 3063
		rcu_read_lock();
	}
	rcu_read_unlock();
P
Philipp Reisner 已提交
3064 3065
}

3066
/* aligned 4kByte */
P
Philipp Reisner 已提交
3067
struct meta_data_on_disk {
3068
	u64 la_size_sect;      /* last agreed size. */
P
Philipp Reisner 已提交
3069 3070 3071 3072 3073 3074 3075
	u64 uuid[UI_SIZE];   /* UUIDs. */
	u64 device_uuid;
	u64 reserved_u64_1;
	u32 flags;             /* MDF */
	u32 magic;
	u32 md_size_sect;
	u32 al_offset;         /* offset to this block */
3076
	u32 al_nr_extents;     /* important for restoring the AL (userspace) */
3077
	      /* `-- act_log->nr_elements <-- ldev->dc.al_extents */
P
Philipp Reisner 已提交
3078 3079
	u32 bm_offset;         /* offset to the bitmap, from here */
	u32 bm_bytes_per_bit;  /* BM_BLOCK_SIZE */
3080
	u32 la_peer_max_bio_size;   /* last peer max_bio_size */
P
Philipp Reisner 已提交
3081

3082 3083 3084 3085 3086
	/* see al_tr_number_to_on_disk_sector() */
	u32 al_stripes;
	u32 al_stripe_size_4k;

	u8 reserved_u8[4096 - (7*8 + 10*4)];
P
Philipp Reisner 已提交
3087 3088
} __packed;

3089 3090


3091
void drbd_md_write(struct drbd_device *device, void *b)
P
Philipp Reisner 已提交
3092
{
3093
	struct meta_data_on_disk *buffer = b;
P
Philipp Reisner 已提交
3094 3095 3096
	sector_t sector;
	int i;

3097
	memset(buffer, 0, sizeof(*buffer));
P
Philipp Reisner 已提交
3098

3099
	buffer->la_size_sect = cpu_to_be64(drbd_get_capacity(device->this_bdev));
P
Philipp Reisner 已提交
3100
	for (i = UI_CURRENT; i < UI_SIZE; i++)
3101 3102
		buffer->uuid[i] = cpu_to_be64(device->ldev->md.uuid[i]);
	buffer->flags = cpu_to_be32(device->ldev->md.flags);
3103
	buffer->magic = cpu_to_be32(DRBD_MD_MAGIC_84_UNCLEAN);
P
Philipp Reisner 已提交
3104

3105 3106 3107
	buffer->md_size_sect  = cpu_to_be32(device->ldev->md.md_size_sect);
	buffer->al_offset     = cpu_to_be32(device->ldev->md.al_offset);
	buffer->al_nr_extents = cpu_to_be32(device->act_log->nr_elements);
P
Philipp Reisner 已提交
3108
	buffer->bm_bytes_per_bit = cpu_to_be32(BM_BLOCK_SIZE);
3109
	buffer->device_uuid = cpu_to_be64(device->ldev->md.device_uuid);
P
Philipp Reisner 已提交
3110

3111 3112
	buffer->bm_offset = cpu_to_be32(device->ldev->md.bm_offset);
	buffer->la_peer_max_bio_size = cpu_to_be32(device->peer_max_bio_size);
P
Philipp Reisner 已提交
3113

3114 3115
	buffer->al_stripes = cpu_to_be32(device->ldev->md.al_stripes);
	buffer->al_stripe_size_4k = cpu_to_be32(device->ldev->md.al_stripe_size_4k);
3116

3117
	D_ASSERT(device, drbd_md_ss(device->ldev) == device->ldev->md.md_offset);
3118
	sector = device->ldev->md.md_offset;
P
Philipp Reisner 已提交
3119

M
Mike Christie 已提交
3120
	if (drbd_md_sync_page_io(device, device->ldev, sector, REQ_OP_WRITE)) {
P
Philipp Reisner 已提交
3121
		/* this was a try anyways ... */
3122
		drbd_err(device, "meta data update failed!\n");
3123
		drbd_chk_io_error(device, 1, DRBD_META_IO_ERROR);
P
Philipp Reisner 已提交
3124
	}
3125 3126 3127 3128
}

/**
 * drbd_md_sync() - Writes the meta data super block if the MD_DIRTY flag bit is set
3129
 * @device:	DRBD device.
3130
 */
3131
void drbd_md_sync(struct drbd_device *device)
3132 3133 3134 3135 3136 3137 3138
{
	struct meta_data_on_disk *buffer;

	/* Don't accidentally change the DRBD meta data layout. */
	BUILD_BUG_ON(UI_SIZE != 4);
	BUILD_BUG_ON(sizeof(struct meta_data_on_disk) != 4096);

3139
	del_timer(&device->md_sync_timer);
3140
	/* timer may be rearmed by drbd_md_mark_dirty() now. */
3141
	if (!test_and_clear_bit(MD_DIRTY, &device->flags))
3142 3143 3144 3145
		return;

	/* We use here D_FAILED and not D_ATTACHING because we try to write
	 * metadata even if we detach due to a disk failure! */
3146
	if (!get_ldev_if_state(device, D_FAILED))
3147 3148
		return;

3149
	buffer = drbd_md_get_buffer(device, __func__);
3150 3151 3152
	if (!buffer)
		goto out;

3153
	drbd_md_write(device, buffer);
P
Philipp Reisner 已提交
3154

3155
	/* Update device->ldev->md.la_size_sect,
P
Philipp Reisner 已提交
3156
	 * since we updated it on metadata. */
3157
	device->ldev->md.la_size_sect = drbd_get_capacity(device->this_bdev);
P
Philipp Reisner 已提交
3158

3159
	drbd_md_put_buffer(device);
3160
out:
3161
	put_ldev(device);
P
Philipp Reisner 已提交
3162 3163
}

3164
static int check_activity_log_stripe_size(struct drbd_device *device,
3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203
		struct meta_data_on_disk *on_disk,
		struct drbd_md *in_core)
{
	u32 al_stripes = be32_to_cpu(on_disk->al_stripes);
	u32 al_stripe_size_4k = be32_to_cpu(on_disk->al_stripe_size_4k);
	u64 al_size_4k;

	/* both not set: default to old fixed size activity log */
	if (al_stripes == 0 && al_stripe_size_4k == 0) {
		al_stripes = 1;
		al_stripe_size_4k = MD_32kB_SECT/8;
	}

	/* some paranoia plausibility checks */

	/* we need both values to be set */
	if (al_stripes == 0 || al_stripe_size_4k == 0)
		goto err;

	al_size_4k = (u64)al_stripes * al_stripe_size_4k;

	/* Upper limit of activity log area, to avoid potential overflow
	 * problems in al_tr_number_to_on_disk_sector(). As right now, more
	 * than 72 * 4k blocks total only increases the amount of history,
	 * limiting this arbitrarily to 16 GB is not a real limitation ;-)  */
	if (al_size_4k > (16 * 1024 * 1024/4))
		goto err;

	/* Lower limit: we need at least 8 transaction slots (32kB)
	 * to not break existing setups */
	if (al_size_4k < MD_32kB_SECT/8)
		goto err;

	in_core->al_stripe_size_4k = al_stripe_size_4k;
	in_core->al_stripes = al_stripes;
	in_core->al_size_4k = al_size_4k;

	return 0;
err:
3204
	drbd_err(device, "invalid activity log striping: al_stripes=%u, al_stripe_size_4k=%u\n",
3205 3206 3207 3208
			al_stripes, al_stripe_size_4k);
	return -EINVAL;
}

3209
static int check_offsets_and_sizes(struct drbd_device *device, struct drbd_backing_dev *bdev)
3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275
{
	sector_t capacity = drbd_get_capacity(bdev->md_bdev);
	struct drbd_md *in_core = &bdev->md;
	s32 on_disk_al_sect;
	s32 on_disk_bm_sect;

	/* The on-disk size of the activity log, calculated from offsets, and
	 * the size of the activity log calculated from the stripe settings,
	 * should match.
	 * Though we could relax this a bit: it is ok, if the striped activity log
	 * fits in the available on-disk activity log size.
	 * Right now, that would break how resize is implemented.
	 * TODO: make drbd_determine_dev_size() (and the drbdmeta tool) aware
	 * of possible unused padding space in the on disk layout. */
	if (in_core->al_offset < 0) {
		if (in_core->bm_offset > in_core->al_offset)
			goto err;
		on_disk_al_sect = -in_core->al_offset;
		on_disk_bm_sect = in_core->al_offset - in_core->bm_offset;
	} else {
		if (in_core->al_offset != MD_4kB_SECT)
			goto err;
		if (in_core->bm_offset < in_core->al_offset + in_core->al_size_4k * MD_4kB_SECT)
			goto err;

		on_disk_al_sect = in_core->bm_offset - MD_4kB_SECT;
		on_disk_bm_sect = in_core->md_size_sect - in_core->bm_offset;
	}

	/* old fixed size meta data is exactly that: fixed. */
	if (in_core->meta_dev_idx >= 0) {
		if (in_core->md_size_sect != MD_128MB_SECT
		||  in_core->al_offset != MD_4kB_SECT
		||  in_core->bm_offset != MD_4kB_SECT + MD_32kB_SECT
		||  in_core->al_stripes != 1
		||  in_core->al_stripe_size_4k != MD_32kB_SECT/8)
			goto err;
	}

	if (capacity < in_core->md_size_sect)
		goto err;
	if (capacity - in_core->md_size_sect < drbd_md_first_sector(bdev))
		goto err;

	/* should be aligned, and at least 32k */
	if ((on_disk_al_sect & 7) || (on_disk_al_sect < MD_32kB_SECT))
		goto err;

	/* should fit (for now: exactly) into the available on-disk space;
	 * overflow prevention is in check_activity_log_stripe_size() above. */
	if (on_disk_al_sect != in_core->al_size_4k * MD_4kB_SECT)
		goto err;

	/* again, should be aligned */
	if (in_core->bm_offset & 7)
		goto err;

	/* FIXME check for device grow with flex external meta data? */

	/* can the available bitmap space cover the last agreed device size? */
	if (on_disk_bm_sect < (in_core->la_size_sect+7)/MD_4kB_SECT/8/512)
		goto err;

	return 0;

err:
3276
	drbd_err(device, "meta data offsets don't make sense: idx=%d "
3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288
			"al_s=%u, al_sz4k=%u, al_offset=%d, bm_offset=%d, "
			"md_size_sect=%u, la_size=%llu, md_capacity=%llu\n",
			in_core->meta_dev_idx,
			in_core->al_stripes, in_core->al_stripe_size_4k,
			in_core->al_offset, in_core->bm_offset, in_core->md_size_sect,
			(unsigned long long)in_core->la_size_sect,
			(unsigned long long)capacity);

	return -EINVAL;
}


P
Philipp Reisner 已提交
3289 3290
/**
 * drbd_md_read() - Reads in the meta data super block
3291
 * @device:	DRBD device.
P
Philipp Reisner 已提交
3292 3293
 * @bdev:	Device from which the meta data should be read in.
 *
3294
 * Return NO_ERROR on success, and an enum drbd_ret_code in case
3295
 * something goes wrong.
3296
 *
3297
 * Called exactly once during drbd_adm_attach(), while still being D_DISKLESS,
3298
 * even before @bdev is assigned to @device->ldev.
P
Philipp Reisner 已提交
3299
 */
3300
int drbd_md_read(struct drbd_device *device, struct drbd_backing_dev *bdev)
P
Philipp Reisner 已提交
3301 3302
{
	struct meta_data_on_disk *buffer;
3303
	u32 magic, flags;
P
Philipp Reisner 已提交
3304 3305
	int i, rv = NO_ERROR;

3306
	if (device->state.disk != D_DISKLESS)
3307
		return ERR_DISK_CONFIGURED;
P
Philipp Reisner 已提交
3308

3309
	buffer = drbd_md_get_buffer(device, __func__);
3310
	if (!buffer)
3311
		return ERR_NOMEM;
P
Philipp Reisner 已提交
3312

3313 3314
	/* First, figure out where our meta data superblock is located,
	 * and read it. */
3315 3316
	bdev->md.meta_dev_idx = bdev->disk_conf->meta_dev_idx;
	bdev->md.md_offset = drbd_md_ss(bdev);
3317 3318 3319 3320
	/* Even for (flexible or indexed) external meta data,
	 * initially restrict us to the 4k superblock for now.
	 * Affects the paranoia out-of-range access check in drbd_md_sync_page_io(). */
	bdev->md.md_size_sect = 8;
P
Philipp Reisner 已提交
3321

M
Mike Christie 已提交
3322 3323
	if (drbd_md_sync_page_io(device, bdev, bdev->md.md_offset,
				 REQ_OP_READ)) {
L
Lucas De Marchi 已提交
3324
		/* NOTE: can't do normal error processing here as this is
P
Philipp Reisner 已提交
3325
		   called BEFORE disk is attached */
3326
		drbd_err(device, "Error while reading metadata.\n");
P
Philipp Reisner 已提交
3327 3328 3329 3330
		rv = ERR_IO_MD_DISK;
		goto err;
	}

3331 3332 3333 3334 3335
	magic = be32_to_cpu(buffer->magic);
	flags = be32_to_cpu(buffer->flags);
	if (magic == DRBD_MD_MAGIC_84_UNCLEAN ||
	    (magic == DRBD_MD_MAGIC_08 && !(flags & MDF_AL_CLEAN))) {
			/* btw: that's Activity Log clean, not "all" clean. */
3336
		drbd_err(device, "Found unclean meta data. Did you \"drbdadm apply-al\"?\n");
3337 3338 3339
		rv = ERR_MD_UNCLEAN;
		goto err;
	}
3340 3341

	rv = ERR_MD_INVALID;
3342
	if (magic != DRBD_MD_MAGIC_08) {
3343
		if (magic == DRBD_MD_MAGIC_07)
3344
			drbd_err(device, "Found old (0.7) meta data magic. Did you \"drbdadm create-md\"?\n");
3345
		else
3346
			drbd_err(device, "Meta data magic not found. Did you \"drbdadm create-md\"?\n");
P
Philipp Reisner 已提交
3347 3348
		goto err;
	}
3349

3350
	if (be32_to_cpu(buffer->bm_bytes_per_bit) != BM_BLOCK_SIZE) {
3351
		drbd_err(device, "unexpected bm_bytes_per_bit: %u (expected %u)\n",
3352
		    be32_to_cpu(buffer->bm_bytes_per_bit), BM_BLOCK_SIZE);
P
Philipp Reisner 已提交
3353 3354
		goto err;
	}
3355

3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367

	/* convert to in_core endian */
	bdev->md.la_size_sect = be64_to_cpu(buffer->la_size_sect);
	for (i = UI_CURRENT; i < UI_SIZE; i++)
		bdev->md.uuid[i] = be64_to_cpu(buffer->uuid[i]);
	bdev->md.flags = be32_to_cpu(buffer->flags);
	bdev->md.device_uuid = be64_to_cpu(buffer->device_uuid);

	bdev->md.md_size_sect = be32_to_cpu(buffer->md_size_sect);
	bdev->md.al_offset = be32_to_cpu(buffer->al_offset);
	bdev->md.bm_offset = be32_to_cpu(buffer->bm_offset);

3368
	if (check_activity_log_stripe_size(device, buffer, &bdev->md))
P
Philipp Reisner 已提交
3369
		goto err;
3370
	if (check_offsets_and_sizes(device, bdev))
3371 3372
		goto err;

P
Philipp Reisner 已提交
3373
	if (be32_to_cpu(buffer->bm_offset) != bdev->md.bm_offset) {
3374
		drbd_err(device, "unexpected bm_offset: %d (expected %d)\n",
P
Philipp Reisner 已提交
3375 3376 3377 3378
		    be32_to_cpu(buffer->bm_offset), bdev->md.bm_offset);
		goto err;
	}
	if (be32_to_cpu(buffer->md_size_sect) != bdev->md.md_size_sect) {
3379
		drbd_err(device, "unexpected md_size: %u (expected %u)\n",
P
Philipp Reisner 已提交
3380 3381 3382 3383
		    be32_to_cpu(buffer->md_size_sect), bdev->md.md_size_sect);
		goto err;
	}

3384
	rv = NO_ERROR;
P
Philipp Reisner 已提交
3385

3386
	spin_lock_irq(&device->resource->req_lock);
3387
	if (device->state.conn < C_CONNECTED) {
3388
		unsigned int peer;
3389
		peer = be32_to_cpu(buffer->la_peer_max_bio_size);
3390
		peer = max(peer, DRBD_MAX_BIO_SIZE_SAFE);
3391
		device->peer_max_bio_size = peer;
3392
	}
3393
	spin_unlock_irq(&device->resource->req_lock);
P
Philipp Reisner 已提交
3394 3395

 err:
3396
	drbd_md_put_buffer(device);
P
Philipp Reisner 已提交
3397 3398 3399 3400 3401 3402

	return rv;
}

/**
 * drbd_md_mark_dirty() - Mark meta data super block as dirty
3403
 * @device:	DRBD device.
P
Philipp Reisner 已提交
3404 3405 3406 3407 3408
 *
 * Call this function if you change anything that should be written to
 * the meta-data super block. This function sets MD_DIRTY, and starts a
 * timer that ensures that within five seconds you have to call drbd_md_sync().
 */
3409
#ifdef DEBUG
3410
void drbd_md_mark_dirty_(struct drbd_device *device, unsigned int line, const char *func)
3411
{
3412 3413 3414 3415
	if (!test_and_set_bit(MD_DIRTY, &device->flags)) {
		mod_timer(&device->md_sync_timer, jiffies + HZ);
		device->last_md_mark_dirty.line = line;
		device->last_md_mark_dirty.func = func;
3416 3417 3418
	}
}
#else
3419
void drbd_md_mark_dirty(struct drbd_device *device)
P
Philipp Reisner 已提交
3420
{
3421 3422
	if (!test_and_set_bit(MD_DIRTY, &device->flags))
		mod_timer(&device->md_sync_timer, jiffies + 5*HZ);
P
Philipp Reisner 已提交
3423
}
3424
#endif
P
Philipp Reisner 已提交
3425

3426
void drbd_uuid_move_history(struct drbd_device *device) __must_hold(local)
P
Philipp Reisner 已提交
3427 3428 3429
{
	int i;

3430
	for (i = UI_HISTORY_START; i < UI_HISTORY_END; i++)
3431
		device->ldev->md.uuid[i+1] = device->ldev->md.uuid[i];
P
Philipp Reisner 已提交
3432 3433
}

3434
void __drbd_uuid_set(struct drbd_device *device, int idx, u64 val) __must_hold(local)
P
Philipp Reisner 已提交
3435 3436
{
	if (idx == UI_CURRENT) {
3437
		if (device->state.role == R_PRIMARY)
P
Philipp Reisner 已提交
3438 3439 3440 3441
			val |= 1;
		else
			val &= ~((u64)1);

3442
		drbd_set_ed_uuid(device, val);
P
Philipp Reisner 已提交
3443 3444
	}

3445 3446
	device->ldev->md.uuid[idx] = val;
	drbd_md_mark_dirty(device);
P
Philipp Reisner 已提交
3447 3448
}

3449
void _drbd_uuid_set(struct drbd_device *device, int idx, u64 val) __must_hold(local)
3450 3451
{
	unsigned long flags;
3452 3453 3454
	spin_lock_irqsave(&device->ldev->md.uuid_lock, flags);
	__drbd_uuid_set(device, idx, val);
	spin_unlock_irqrestore(&device->ldev->md.uuid_lock, flags);
3455
}
P
Philipp Reisner 已提交
3456

3457
void drbd_uuid_set(struct drbd_device *device, int idx, u64 val) __must_hold(local)
P
Philipp Reisner 已提交
3458
{
3459
	unsigned long flags;
3460 3461 3462 3463
	spin_lock_irqsave(&device->ldev->md.uuid_lock, flags);
	if (device->ldev->md.uuid[idx]) {
		drbd_uuid_move_history(device);
		device->ldev->md.uuid[UI_HISTORY_START] = device->ldev->md.uuid[idx];
P
Philipp Reisner 已提交
3464
	}
3465 3466
	__drbd_uuid_set(device, idx, val);
	spin_unlock_irqrestore(&device->ldev->md.uuid_lock, flags);
P
Philipp Reisner 已提交
3467 3468 3469 3470
}

/**
 * drbd_uuid_new_current() - Creates a new current UUID
3471
 * @device:	DRBD device.
P
Philipp Reisner 已提交
3472 3473 3474 3475
 *
 * Creates a new current UUID, and rotates the old current UUID into
 * the bitmap slot. Causes an incremental resync upon next connect.
 */
3476
void drbd_uuid_new_current(struct drbd_device *device) __must_hold(local)
P
Philipp Reisner 已提交
3477 3478
{
	u64 val;
3479 3480 3481 3482
	unsigned long long bm_uuid;

	get_random_bytes(&val, sizeof(u64));

3483 3484
	spin_lock_irq(&device->ldev->md.uuid_lock);
	bm_uuid = device->ldev->md.uuid[UI_BITMAP];
3485 3486

	if (bm_uuid)
3487
		drbd_warn(device, "bm UUID was already set: %llX\n", bm_uuid);
P
Philipp Reisner 已提交
3488

3489 3490 3491
	device->ldev->md.uuid[UI_BITMAP] = device->ldev->md.uuid[UI_CURRENT];
	__drbd_uuid_set(device, UI_CURRENT, val);
	spin_unlock_irq(&device->ldev->md.uuid_lock);
P
Philipp Reisner 已提交
3492

3493
	drbd_print_uuids(device, "new current UUID");
3494
	/* get it to stable storage _now_ */
3495
	drbd_md_sync(device);
P
Philipp Reisner 已提交
3496 3497
}

3498
void drbd_uuid_set_bm(struct drbd_device *device, u64 val) __must_hold(local)
P
Philipp Reisner 已提交
3499
{
3500
	unsigned long flags;
3501
	if (device->ldev->md.uuid[UI_BITMAP] == 0 && val == 0)
P
Philipp Reisner 已提交
3502 3503
		return;

3504
	spin_lock_irqsave(&device->ldev->md.uuid_lock, flags);
P
Philipp Reisner 已提交
3505
	if (val == 0) {
3506 3507 3508
		drbd_uuid_move_history(device);
		device->ldev->md.uuid[UI_HISTORY_START] = device->ldev->md.uuid[UI_BITMAP];
		device->ldev->md.uuid[UI_BITMAP] = 0;
P
Philipp Reisner 已提交
3509
	} else {
3510
		unsigned long long bm_uuid = device->ldev->md.uuid[UI_BITMAP];
3511
		if (bm_uuid)
3512
			drbd_warn(device, "bm UUID was already set: %llX\n", bm_uuid);
P
Philipp Reisner 已提交
3513

3514
		device->ldev->md.uuid[UI_BITMAP] = val & ~((u64)1);
P
Philipp Reisner 已提交
3515
	}
3516
	spin_unlock_irqrestore(&device->ldev->md.uuid_lock, flags);
3517

3518
	drbd_md_mark_dirty(device);
P
Philipp Reisner 已提交
3519 3520 3521 3522
}

/**
 * drbd_bmio_set_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
3523
 * @device:	DRBD device.
P
Philipp Reisner 已提交
3524 3525 3526
 *
 * Sets all bits in the bitmap and writes the whole bitmap to stable storage.
 */
3527
int drbd_bmio_set_n_write(struct drbd_device *device) __must_hold(local)
P
Philipp Reisner 已提交
3528 3529 3530
{
	int rv = -EIO;

3531 3532 3533
	drbd_md_set_flag(device, MDF_FULL_SYNC);
	drbd_md_sync(device);
	drbd_bm_set_all(device);
P
Philipp Reisner 已提交
3534

3535
	rv = drbd_bm_write(device);
P
Philipp Reisner 已提交
3536

3537 3538 3539
	if (!rv) {
		drbd_md_clear_flag(device, MDF_FULL_SYNC);
		drbd_md_sync(device);
P
Philipp Reisner 已提交
3540 3541 3542 3543 3544 3545 3546
	}

	return rv;
}

/**
 * drbd_bmio_clear_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
3547
 * @device:	DRBD device.
P
Philipp Reisner 已提交
3548 3549 3550
 *
 * Clears all bits in the bitmap and writes the whole bitmap to stable storage.
 */
3551
int drbd_bmio_clear_n_write(struct drbd_device *device) __must_hold(local)
P
Philipp Reisner 已提交
3552
{
3553
	drbd_resume_al(device);
3554 3555
	drbd_bm_clear_all(device);
	return drbd_bm_write(device);
P
Philipp Reisner 已提交
3556 3557
}

3558
static int w_bitmap_io(struct drbd_work *w, int unused)
P
Philipp Reisner 已提交
3559
{
3560 3561 3562
	struct drbd_device *device =
		container_of(w, struct drbd_device, bm_io_work.w);
	struct bm_io_work *work = &device->bm_io_work;
3563
	int rv = -EIO;
P
Philipp Reisner 已提交
3564

3565 3566 3567 3568 3569 3570
	if (work->flags != BM_LOCKED_CHANGE_ALLOWED) {
		int cnt = atomic_read(&device->ap_bio_cnt);
		if (cnt)
			drbd_err(device, "FIXME: ap_bio_cnt %d, expected 0; queued for '%s'\n",
					cnt, work->why);
	}
P
Philipp Reisner 已提交
3571

3572 3573 3574 3575 3576
	if (get_ldev(device)) {
		drbd_bm_lock(device, work->why, work->flags);
		rv = work->io_fn(device);
		drbd_bm_unlock(device);
		put_ldev(device);
3577
	}
P
Philipp Reisner 已提交
3578

3579 3580
	clear_bit_unlock(BITMAP_IO, &device->flags);
	wake_up(&device->misc_wait);
P
Philipp Reisner 已提交
3581 3582

	if (work->done)
3583
		work->done(device, rv);
P
Philipp Reisner 已提交
3584

3585
	clear_bit(BITMAP_IO_QUEUED, &device->flags);
P
Philipp Reisner 已提交
3586
	work->why = NULL;
3587
	work->flags = 0;
P
Philipp Reisner 已提交
3588

3589
	return 0;
P
Philipp Reisner 已提交
3590 3591 3592 3593
}

/**
 * drbd_queue_bitmap_io() - Queues an IO operation on the whole bitmap
3594
 * @device:	DRBD device.
P
Philipp Reisner 已提交
3595 3596 3597 3598 3599 3600 3601 3602
 * @io_fn:	IO callback to be called when bitmap IO is possible
 * @done:	callback to be called after the bitmap IO was performed
 * @why:	Descriptive text of the reason for doing the IO
 *
 * While IO on the bitmap happens we freeze application IO thus we ensure
 * that drbd_set_out_of_sync() can not be called. This function MAY ONLY be
 * called from worker context. It MUST NOT be used while a previous such
 * work is still pending!
3603 3604 3605
 *
 * Its worker function encloses the call of io_fn() by get_ldev() and
 * put_ldev().
P
Philipp Reisner 已提交
3606
 */
3607
void drbd_queue_bitmap_io(struct drbd_device *device,
3608 3609
			  int (*io_fn)(struct drbd_device *),
			  void (*done)(struct drbd_device *, int),
3610
			  char *why, enum bm_flag flags)
P
Philipp Reisner 已提交
3611
{
3612
	D_ASSERT(device, current == first_peer_device(device)->connection->worker.task);
P
Philipp Reisner 已提交
3613

3614 3615 3616
	D_ASSERT(device, !test_bit(BITMAP_IO_QUEUED, &device->flags));
	D_ASSERT(device, !test_bit(BITMAP_IO, &device->flags));
	D_ASSERT(device, list_empty(&device->bm_io_work.w.list));
3617
	if (device->bm_io_work.why)
3618
		drbd_err(device, "FIXME going to queue '%s' but '%s' still pending?\n",
3619
			why, device->bm_io_work.why);
P
Philipp Reisner 已提交
3620

3621 3622 3623 3624
	device->bm_io_work.io_fn = io_fn;
	device->bm_io_work.done = done;
	device->bm_io_work.why = why;
	device->bm_io_work.flags = flags;
P
Philipp Reisner 已提交
3625

3626
	spin_lock_irq(&device->resource->req_lock);
3627
	set_bit(BITMAP_IO, &device->flags);
3628 3629 3630
	/* don't wait for pending application IO if the caller indicates that
	 * application IO does not conflict anyways. */
	if (flags == BM_LOCKED_CHANGE_ALLOWED || atomic_read(&device->ap_bio_cnt) == 0) {
3631
		if (!test_and_set_bit(BITMAP_IO_QUEUED, &device->flags))
3632 3633
			drbd_queue_work(&first_peer_device(device)->connection->sender_work,
					&device->bm_io_work.w);
P
Philipp Reisner 已提交
3634
	}
3635
	spin_unlock_irq(&device->resource->req_lock);
P
Philipp Reisner 已提交
3636 3637 3638 3639
}

/**
 * drbd_bitmap_io() -  Does an IO operation on the whole bitmap
3640
 * @device:	DRBD device.
P
Philipp Reisner 已提交
3641 3642 3643 3644 3645 3646
 * @io_fn:	IO callback to be called when bitmap IO is possible
 * @why:	Descriptive text of the reason for doing the IO
 *
 * freezes application IO while that the actual IO operations runs. This
 * functions MAY NOT be called from worker context.
 */
3647
int drbd_bitmap_io(struct drbd_device *device, int (*io_fn)(struct drbd_device *),
3648
		char *why, enum bm_flag flags)
P
Philipp Reisner 已提交
3649
{
3650 3651
	/* Only suspend io, if some operation is supposed to be locked out */
	const bool do_suspend_io = flags & (BM_DONT_CLEAR|BM_DONT_SET|BM_DONT_TEST);
P
Philipp Reisner 已提交
3652 3653
	int rv;

3654
	D_ASSERT(device, current != first_peer_device(device)->connection->worker.task);
P
Philipp Reisner 已提交
3655

3656
	if (do_suspend_io)
3657
		drbd_suspend_io(device);
P
Philipp Reisner 已提交
3658

3659 3660 3661
	drbd_bm_lock(device, why, flags);
	rv = io_fn(device);
	drbd_bm_unlock(device);
P
Philipp Reisner 已提交
3662

3663
	if (do_suspend_io)
3664
		drbd_resume_io(device);
P
Philipp Reisner 已提交
3665 3666 3667 3668

	return rv;
}

3669
void drbd_md_set_flag(struct drbd_device *device, int flag) __must_hold(local)
P
Philipp Reisner 已提交
3670
{
3671 3672 3673
	if ((device->ldev->md.flags & flag) != flag) {
		drbd_md_mark_dirty(device);
		device->ldev->md.flags |= flag;
P
Philipp Reisner 已提交
3674 3675 3676
	}
}

3677
void drbd_md_clear_flag(struct drbd_device *device, int flag) __must_hold(local)
P
Philipp Reisner 已提交
3678
{
3679 3680 3681
	if ((device->ldev->md.flags & flag) != 0) {
		drbd_md_mark_dirty(device);
		device->ldev->md.flags &= ~flag;
P
Philipp Reisner 已提交
3682 3683 3684 3685 3686 3687 3688
	}
}
int drbd_md_test_flag(struct drbd_backing_dev *bdev, int flag)
{
	return (bdev->md.flags & flag) != 0;
}

3689
static void md_sync_timer_fn(struct timer_list *t)
P
Philipp Reisner 已提交
3690
{
3691
	struct drbd_device *device = from_timer(device, t, md_sync_timer);
3692
	drbd_device_post_work(device, MD_SYNC);
P
Philipp Reisner 已提交
3693 3694
}

3695
const char *cmdname(enum drbd_packet cmd)
3696 3697 3698 3699 3700 3701
{
	/* THINK may need to become several global tables
	 * when we want to support more than
	 * one PRO_VERSION */
	static const char *cmdnames[] = {
		[P_DATA]	        = "Data",
3702 3703
		[P_WSAME]	        = "WriteSame",
		[P_TRIM]	        = "Trim",
3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726
		[P_DATA_REPLY]	        = "DataReply",
		[P_RS_DATA_REPLY]	= "RSDataReply",
		[P_BARRIER]	        = "Barrier",
		[P_BITMAP]	        = "ReportBitMap",
		[P_BECOME_SYNC_TARGET]  = "BecomeSyncTarget",
		[P_BECOME_SYNC_SOURCE]  = "BecomeSyncSource",
		[P_UNPLUG_REMOTE]	= "UnplugRemote",
		[P_DATA_REQUEST]	= "DataRequest",
		[P_RS_DATA_REQUEST]     = "RSDataRequest",
		[P_SYNC_PARAM]	        = "SyncParam",
		[P_SYNC_PARAM89]	= "SyncParam89",
		[P_PROTOCOL]            = "ReportProtocol",
		[P_UUIDS]	        = "ReportUUIDs",
		[P_SIZES]	        = "ReportSizes",
		[P_STATE]	        = "ReportState",
		[P_SYNC_UUID]           = "ReportSyncUUID",
		[P_AUTH_CHALLENGE]      = "AuthChallenge",
		[P_AUTH_RESPONSE]	= "AuthResponse",
		[P_PING]		= "Ping",
		[P_PING_ACK]	        = "PingAck",
		[P_RECV_ACK]	        = "RecvAck",
		[P_WRITE_ACK]	        = "WriteAck",
		[P_RS_WRITE_ACK]	= "RSWriteAck",
3727
		[P_SUPERSEDED]          = "Superseded",
3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741
		[P_NEG_ACK]	        = "NegAck",
		[P_NEG_DREPLY]	        = "NegDReply",
		[P_NEG_RS_DREPLY]	= "NegRSDReply",
		[P_BARRIER_ACK]	        = "BarrierAck",
		[P_STATE_CHG_REQ]       = "StateChgRequest",
		[P_STATE_CHG_REPLY]     = "StateChgReply",
		[P_OV_REQUEST]          = "OVRequest",
		[P_OV_REPLY]            = "OVReply",
		[P_OV_RESULT]           = "OVResult",
		[P_CSUM_RS_REQUEST]     = "CsumRSRequest",
		[P_RS_IS_IN_SYNC]	= "CsumRSIsInSync",
		[P_COMPRESSED_BITMAP]   = "CBitmap",
		[P_DELAY_PROBE]         = "DelayProbe",
		[P_OUT_OF_SYNC]		= "OutOfSync",
3742
		[P_RETRY_WRITE]		= "RetryWrite",
3743 3744 3745
		[P_RS_CANCEL]		= "RSCancel",
		[P_CONN_ST_CHG_REQ]	= "conn_st_chg_req",
		[P_CONN_ST_CHG_REPLY]	= "conn_st_chg_reply",
3746 3747
		[P_RETRY_WRITE]		= "retry_write",
		[P_PROTOCOL_UPDATE]	= "protocol_update",
3748 3749
		[P_RS_THIN_REQ]         = "rs_thin_req",
		[P_RS_DEALLOCATED]      = "rs_deallocated",
3750 3751 3752 3753 3754

		/* enum drbd_packet, but not commands - obsoleted flags:
		 *	P_MAY_IGNORE
		 *	P_MAX_OPT_CMD
		 */
3755 3756
	};

3757
	/* too big for the array: 0xfffX */
3758 3759 3760 3761
	if (cmd == P_INITIAL_META)
		return "InitialMeta";
	if (cmd == P_INITIAL_DATA)
		return "InitialData";
3762 3763
	if (cmd == P_CONNECTION_FEATURES)
		return "ConnectionFeatures";
A
Andreas Gruenbacher 已提交
3764
	if (cmd >= ARRAY_SIZE(cmdnames))
3765 3766 3767 3768
		return "Unknown";
	return cmdnames[cmd];
}

3769 3770
/**
 * drbd_wait_misc  -  wait for a request to make progress
3771
 * @device:	device associated with the request
3772 3773 3774
 * @i:		the struct drbd_interval embedded in struct drbd_request or
 *		struct drbd_peer_request
 */
3775
int drbd_wait_misc(struct drbd_device *device, struct drbd_interval *i)
3776
{
3777
	struct net_conf *nc;
3778 3779 3780
	DEFINE_WAIT(wait);
	long timeout;

3781
	rcu_read_lock();
3782
	nc = rcu_dereference(first_peer_device(device)->connection->net_conf);
3783 3784
	if (!nc) {
		rcu_read_unlock();
3785
		return -ETIMEDOUT;
3786 3787 3788
	}
	timeout = nc->ko_count ? nc->timeout * HZ / 10 * nc->ko_count : MAX_SCHEDULE_TIMEOUT;
	rcu_read_unlock();
3789

3790
	/* Indicate to wake up device->misc_wait on progress.  */
3791
	i->waiting = true;
3792
	prepare_to_wait(&device->misc_wait, &wait, TASK_INTERRUPTIBLE);
3793
	spin_unlock_irq(&device->resource->req_lock);
3794
	timeout = schedule_timeout(timeout);
3795
	finish_wait(&device->misc_wait, &wait);
3796
	spin_lock_irq(&device->resource->req_lock);
3797
	if (!timeout || device->state.conn < C_CONNECTED)
3798 3799 3800 3801
		return -ETIMEDOUT;
	if (signal_pending(current))
		return -ERESTARTSYS;
	return 0;
P
Philipp Reisner 已提交
3802 3803
}

3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824
void lock_all_resources(void)
{
	struct drbd_resource *resource;
	int __maybe_unused i = 0;

	mutex_lock(&resources_mutex);
	local_irq_disable();
	for_each_resource(resource, &drbd_resources)
		spin_lock_nested(&resource->req_lock, i++);
}

void unlock_all_resources(void)
{
	struct drbd_resource *resource;

	for_each_resource(resource, &drbd_resources)
		spin_unlock(&resource->req_lock);
	local_irq_enable();
	mutex_unlock(&resources_mutex);
}

P
Philipp Reisner 已提交
3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845
#ifdef CONFIG_DRBD_FAULT_INJECTION
/* Fault insertion support including random number generator shamelessly
 * stolen from kernel/rcutorture.c */
struct fault_random_state {
	unsigned long state;
	unsigned long count;
};

#define FAULT_RANDOM_MULT 39916801  /* prime */
#define FAULT_RANDOM_ADD	479001701 /* prime */
#define FAULT_RANDOM_REFRESH 10000

/*
 * Crude but fast random-number generator.  Uses a linear congruential
 * generator, with occasional help from get_random_bytes().
 */
static unsigned long
_drbd_fault_random(struct fault_random_state *rsp)
{
	long refresh;

3846
	if (!rsp->count--) {
P
Philipp Reisner 已提交
3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865
		get_random_bytes(&refresh, sizeof(refresh));
		rsp->state += refresh;
		rsp->count = FAULT_RANDOM_REFRESH;
	}
	rsp->state = rsp->state * FAULT_RANDOM_MULT + FAULT_RANDOM_ADD;
	return swahw32(rsp->state);
}

static char *
_drbd_fault_str(unsigned int type) {
	static char *_faults[] = {
		[DRBD_FAULT_MD_WR] = "Meta-data write",
		[DRBD_FAULT_MD_RD] = "Meta-data read",
		[DRBD_FAULT_RS_WR] = "Resync write",
		[DRBD_FAULT_RS_RD] = "Resync read",
		[DRBD_FAULT_DT_WR] = "Data write",
		[DRBD_FAULT_DT_RD] = "Data read",
		[DRBD_FAULT_DT_RA] = "Data read ahead",
		[DRBD_FAULT_BM_ALLOC] = "BM allocation",
3866 3867
		[DRBD_FAULT_AL_EE] = "EE allocation",
		[DRBD_FAULT_RECEIVE] = "receive data corruption",
P
Philipp Reisner 已提交
3868 3869 3870 3871 3872 3873
	};

	return (type < DRBD_FAULT_MAX) ? _faults[type] : "**Unknown**";
}

unsigned int
3874
_drbd_insert_fault(struct drbd_device *device, unsigned int type)
P
Philipp Reisner 已提交
3875 3876 3877 3878
{
	static struct fault_random_state rrs = {0, 0};

	unsigned int ret = (
3879 3880 3881
		(drbd_fault_devs == 0 ||
			((1 << device_to_minor(device)) & drbd_fault_devs) != 0) &&
		(((_drbd_fault_random(&rrs) % 100) + 1) <= drbd_fault_rate));
P
Philipp Reisner 已提交
3882 3883

	if (ret) {
3884
		drbd_fault_count++;
P
Philipp Reisner 已提交
3885

3886
		if (__ratelimit(&drbd_ratelimit_state))
3887
			drbd_warn(device, "***Simulating %s failure\n",
P
Philipp Reisner 已提交
3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902
				_drbd_fault_str(type));
	}

	return ret;
}
#endif

const char *drbd_buildtag(void)
{
	/* DRBD built from external sources has here a reference to the
	   git hash of the source code. */

	static char buildtag[38] = "\0uilt-in";

	if (buildtag[0] == 0) {
C
Cong Wang 已提交
3903 3904 3905 3906
#ifdef MODULE
		sprintf(buildtag, "srcversion: %-24s", THIS_MODULE->srcversion);
#else
		buildtag[0] = 'b';
P
Philipp Reisner 已提交
3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919
#endif
	}

	return buildtag;
}

module_init(drbd_init)
module_exit(drbd_cleanup)

EXPORT_SYMBOL(drbd_conn_str);
EXPORT_SYMBOL(drbd_role_str);
EXPORT_SYMBOL(drbd_disk_str);
EXPORT_SYMBOL(drbd_set_st_err_str);