drbd_worker.c 61.2 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
/*
   drbd_worker.c

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

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

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

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

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

24
*/
P
Philipp Reisner 已提交
25 26 27 28 29 30 31 32 33 34 35 36 37 38

#include <linux/module.h>
#include <linux/drbd.h>
#include <linux/sched.h>
#include <linux/wait.h>
#include <linux/mm.h>
#include <linux/memcontrol.h>
#include <linux/mm_inline.h>
#include <linux/slab.h>
#include <linux/random.h>
#include <linux/string.h>
#include <linux/scatterlist.h>

#include "drbd_int.h"
39
#include "drbd_protocol.h"
P
Philipp Reisner 已提交
40 41
#include "drbd_req.h"

42 43
static int make_ov_request(struct drbd_device *, int);
static int make_resync_request(struct drbd_device *, int);
P
Philipp Reisner 已提交
44

45 46
/* endio handlers:
 *   drbd_md_io_complete (defined here)
47 48
 *   drbd_request_endio (defined here)
 *   drbd_peer_request_endio (defined here)
49 50
 *   bm_async_io_complete (defined in drbd_bitmap.c)
 *
P
Philipp Reisner 已提交
51 52 53 54 55 56 57 58 59 60
 * For all these callbacks, note the following:
 * The callbacks will be called in irq context by the IDE drivers,
 * and in Softirqs/Tasklets/BH context by the SCSI drivers.
 * Try to get the locking right :)
 *
 */


/* About the global_state_lock
   Each state transition on an device holds a read lock. In case we have
61
   to evaluate the resync after dependencies, we grab a write lock, because
P
Philipp Reisner 已提交
62 63 64 65 66 67 68 69 70
   we need stable states on all devices for that.  */
rwlock_t global_state_lock;

/* used for synchronous meta data and bitmap IO
 * submitted by drbd_md_sync_page_io()
 */
void drbd_md_io_complete(struct bio *bio, int error)
{
	struct drbd_md_io *md_io;
71
	struct drbd_device *device;
P
Philipp Reisner 已提交
72 73

	md_io = (struct drbd_md_io *)bio->bi_private;
74
	device = container_of(md_io, struct drbd_device, md_io);
75

P
Philipp Reisner 已提交
76 77
	md_io->error = error;

78 79 80 81 82 83 84 85 86
	/* We grabbed an extra reference in _drbd_md_sync_page_io() to be able
	 * to timeout on the lower level device, and eventually detach from it.
	 * If this io completion runs after that timeout expired, this
	 * drbd_md_put_buffer() may allow us to finally try and re-attach.
	 * During normal operation, this only puts that extra reference
	 * down to 1 again.
	 * Make sure we first drop the reference, and only then signal
	 * completion, or we may (in drbd_al_read_log()) cycle so fast into the
	 * next drbd_md_sync_page_io(), that we trigger the
87
	 * ASSERT(atomic_read(&device->md_io_in_use) == 1) there.
88
	 */
89
	drbd_md_put_buffer(device);
90
	md_io->done = 1;
91
	wake_up(&device->misc_wait);
92
	bio_put(bio);
93 94
	if (device->ldev) /* special case: drbd_md_read() during drbd_adm_attach() */
		put_ldev(device);
P
Philipp Reisner 已提交
95 96 97 98 99
}

/* reads on behalf of the partner,
 * "submitted" by the receiver
 */
100
static void drbd_endio_read_sec_final(struct drbd_peer_request *peer_req) __releases(local)
P
Philipp Reisner 已提交
101 102
{
	unsigned long flags = 0;
103 104
	struct drbd_peer_device *peer_device = peer_req->peer_device;
	struct drbd_device *device = peer_device->device;
P
Philipp Reisner 已提交
105

106
	spin_lock_irqsave(&device->resource->req_lock, flags);
107
	device->read_cnt += peer_req->i.size >> 9;
108
	list_del(&peer_req->w.list);
109 110
	if (list_empty(&device->read_ee))
		wake_up(&device->ee_wait);
111
	if (test_bit(__EE_WAS_ERROR, &peer_req->flags))
112
		__drbd_chk_io_error(device, DRBD_READ_ERROR);
113
	spin_unlock_irqrestore(&device->resource->req_lock, flags);
P
Philipp Reisner 已提交
114

115
	drbd_queue_work(&peer_device->connection->sender_work, &peer_req->w);
116
	put_ldev(device);
P
Philipp Reisner 已提交
117 118 119
}

/* writes on behalf of the partner, or resync writes,
120
 * "submitted" by the receiver, final stage.  */
121
void drbd_endio_write_sec_final(struct drbd_peer_request *peer_req) __releases(local)
P
Philipp Reisner 已提交
122 123
{
	unsigned long flags = 0;
124 125
	struct drbd_peer_device *peer_device = peer_req->peer_device;
	struct drbd_device *device = peer_device->device;
126
	struct drbd_interval i;
P
Philipp Reisner 已提交
127
	int do_wake;
128
	u64 block_id;
P
Philipp Reisner 已提交
129 130
	int do_al_complete_io;

131
	/* after we moved peer_req to done_ee,
P
Philipp Reisner 已提交
132 133 134
	 * we may no longer access it,
	 * it may be freed/reused already!
	 * (as soon as we release the req_lock) */
135
	i = peer_req->i;
136 137
	do_al_complete_io = peer_req->flags & EE_CALL_AL_COMPLETE_IO;
	block_id = peer_req->block_id;
P
Philipp Reisner 已提交
138

139
	spin_lock_irqsave(&device->resource->req_lock, flags);
140
	device->writ_cnt += peer_req->i.size >> 9;
141
	list_move_tail(&peer_req->w.list, &device->done_ee);
P
Philipp Reisner 已提交
142

143
	/*
144
	 * Do not remove from the write_requests tree here: we did not send the
145 146
	 * Ack yet and did not wake possibly waiting conflicting requests.
	 * Removed from the tree from "drbd_process_done_ee" within the
147
	 * appropriate dw.cb (e_end_block/e_end_resync_block) or from
148 149
	 * _drbd_clear_done_ee.
	 */
P
Philipp Reisner 已提交
150

151
	do_wake = list_empty(block_id == ID_SYNCER ? &device->sync_ee : &device->active_ee);
P
Philipp Reisner 已提交
152

153 154 155
	/* FIXME do we want to detach for failed REQ_DISCARD?
	 * ((peer_req->flags & (EE_WAS_ERROR|EE_IS_TRIM)) == EE_WAS_ERROR) */
	if (peer_req->flags & EE_WAS_ERROR)
156
		__drbd_chk_io_error(device, DRBD_WRITE_ERROR);
157
	spin_unlock_irqrestore(&device->resource->req_lock, flags);
P
Philipp Reisner 已提交
158

159
	if (block_id == ID_SYNCER)
160
		drbd_rs_complete_io(device, i.sector);
P
Philipp Reisner 已提交
161 162

	if (do_wake)
163
		wake_up(&device->ee_wait);
P
Philipp Reisner 已提交
164 165

	if (do_al_complete_io)
166
		drbd_al_complete_io(device, &i);
P
Philipp Reisner 已提交
167

168
	wake_asender(peer_device->connection);
169
	put_ldev(device);
170
}
P
Philipp Reisner 已提交
171

172 173 174
/* writes on behalf of the partner, or resync writes,
 * "submitted" by the receiver.
 */
175
void drbd_peer_request_endio(struct bio *bio, int error)
176
{
177
	struct drbd_peer_request *peer_req = bio->bi_private;
178
	struct drbd_device *device = peer_req->peer_device->device;
179 180
	int uptodate = bio_flagged(bio, BIO_UPTODATE);
	int is_write = bio_data_dir(bio) == WRITE;
181
	int is_discard = !!(bio->bi_rw & REQ_DISCARD);
182

183
	if (error && __ratelimit(&drbd_ratelimit_state))
184
		drbd_warn(device, "%s: error=%d s=%llus\n",
185 186
				is_write ? (is_discard ? "discard" : "write")
					: "read", error,
187
				(unsigned long long)peer_req->i.sector);
188
	if (!error && !uptodate) {
189
		if (__ratelimit(&drbd_ratelimit_state))
190
			drbd_warn(device, "%s: setting error to -EIO s=%llus\n",
191
					is_write ? "write" : "read",
192
					(unsigned long long)peer_req->i.sector);
193 194 195 196 197 198 199
		/* strange behavior of some lower level drivers...
		 * fail the request by clearing the uptodate flag,
		 * but do not return any error?! */
		error = -EIO;
	}

	if (error)
200
		set_bit(__EE_WAS_ERROR, &peer_req->flags);
201 202

	bio_put(bio); /* no need for the bio anymore */
203
	if (atomic_dec_and_test(&peer_req->pending_bios)) {
204
		if (is_write)
205
			drbd_endio_write_sec_final(peer_req);
206
		else
207
			drbd_endio_read_sec_final(peer_req);
208
	}
P
Philipp Reisner 已提交
209 210 211 212
}

/* read, readA or write requests on R_PRIMARY coming from drbd_make_request
 */
213
void drbd_request_endio(struct bio *bio, int error)
P
Philipp Reisner 已提交
214
{
215
	unsigned long flags;
P
Philipp Reisner 已提交
216
	struct drbd_request *req = bio->bi_private;
217
	struct drbd_device *device = req->device;
218
	struct bio_and_error m;
P
Philipp Reisner 已提交
219 220 221 222
	enum drbd_req_event what;
	int uptodate = bio_flagged(bio, BIO_UPTODATE);

	if (!error && !uptodate) {
223
		drbd_warn(device, "p %s: setting error to -EIO\n",
P
Philipp Reisner 已提交
224 225 226 227 228 229 230
			 bio_data_dir(bio) == WRITE ? "write" : "read");
		/* strange behavior of some lower level drivers...
		 * fail the request by clearing the uptodate flag,
		 * but do not return any error?! */
		error = -EIO;
	}

231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261

	/* If this request was aborted locally before,
	 * but now was completed "successfully",
	 * chances are that this caused arbitrary data corruption.
	 *
	 * "aborting" requests, or force-detaching the disk, is intended for
	 * completely blocked/hung local backing devices which do no longer
	 * complete requests at all, not even do error completions.  In this
	 * situation, usually a hard-reset and failover is the only way out.
	 *
	 * By "aborting", basically faking a local error-completion,
	 * we allow for a more graceful swichover by cleanly migrating services.
	 * Still the affected node has to be rebooted "soon".
	 *
	 * By completing these requests, we allow the upper layers to re-use
	 * the associated data pages.
	 *
	 * If later the local backing device "recovers", and now DMAs some data
	 * from disk into the original request pages, in the best case it will
	 * just put random data into unused pages; but typically it will corrupt
	 * meanwhile completely unrelated data, causing all sorts of damage.
	 *
	 * Which means delayed successful completion,
	 * especially for READ requests,
	 * is a reason to panic().
	 *
	 * We assume that a delayed *error* completion is OK,
	 * though we still will complain noisily about it.
	 */
	if (unlikely(req->rq_state & RQ_LOCAL_ABORTED)) {
		if (__ratelimit(&drbd_ratelimit_state))
262
			drbd_emerg(device, "delayed completion of aborted local request; disk-timeout may be too aggressive\n");
263 264 265 266 267

		if (!error)
			panic("possible random memory corruption caused by delayed completion of aborted local request\n");
	}

P
Philipp Reisner 已提交
268 269
	/* to avoid recursion in __req_mod */
	if (unlikely(error)) {
270 271 272 273 274 275
		if (bio->bi_rw & REQ_DISCARD)
			what = (error == -EOPNOTSUPP)
				? DISCARD_COMPLETED_NOTSUPP
				: DISCARD_COMPLETED_WITH_ERROR;
		else
			what = (bio_data_dir(bio) == WRITE)
276
			? WRITE_COMPLETED_WITH_ERROR
277
			: (bio_rw(bio) == READ)
278 279
			  ? READ_COMPLETED_WITH_ERROR
			  : READ_AHEAD_COMPLETED_WITH_ERROR;
P
Philipp Reisner 已提交
280
	} else
281
		what = COMPLETED_OK;
P
Philipp Reisner 已提交
282 283 284 285

	bio_put(req->private_bio);
	req->private_bio = ERR_PTR(error);

286
	/* not req_mod(), we need irqsave here! */
287
	spin_lock_irqsave(&device->resource->req_lock, flags);
288
	__req_mod(req, what, &m);
289
	spin_unlock_irqrestore(&device->resource->req_lock, flags);
290
	put_ldev(device);
291 292

	if (m.bio)
293
		complete_master_bio(device, &m);
P
Philipp Reisner 已提交
294 295
}

296
void drbd_csum_ee(struct crypto_hash *tfm, struct drbd_peer_request *peer_req, void *digest)
297 298 299
{
	struct hash_desc desc;
	struct scatterlist sg;
300
	struct page *page = peer_req->pages;
301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316
	struct page *tmp;
	unsigned len;

	desc.tfm = tfm;
	desc.flags = 0;

	sg_init_table(&sg, 1);
	crypto_hash_init(&desc);

	while ((tmp = page_chain_next(page))) {
		/* all but the last page will be fully used */
		sg_set_page(&sg, page, PAGE_SIZE, 0);
		crypto_hash_update(&desc, &sg, sg.length);
		page = tmp;
	}
	/* and now the last, possibly only partially used page */
317
	len = peer_req->i.size & (PAGE_SIZE - 1);
318 319 320 321 322
	sg_set_page(&sg, page, len ?: PAGE_SIZE, 0);
	crypto_hash_update(&desc, &sg, sg.length);
	crypto_hash_final(&desc, digest);
}

323
void drbd_csum_bio(struct crypto_hash *tfm, struct bio *bio, void *digest)
P
Philipp Reisner 已提交
324 325 326
{
	struct hash_desc desc;
	struct scatterlist sg;
327 328
	struct bio_vec bvec;
	struct bvec_iter iter;
P
Philipp Reisner 已提交
329 330 331 332 333 334 335

	desc.tfm = tfm;
	desc.flags = 0;

	sg_init_table(&sg, 1);
	crypto_hash_init(&desc);

336 337
	bio_for_each_segment(bvec, bio, iter) {
		sg_set_page(&sg, bvec.bv_page, bvec.bv_len, bvec.bv_offset);
P
Philipp Reisner 已提交
338 339 340 341 342
		crypto_hash_update(&desc, &sg, sg.length);
	}
	crypto_hash_final(&desc, digest);
}

343
/* MAYBE merge common code with w_e_end_ov_req */
344
static int w_e_send_csum(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
345
{
346
	struct drbd_peer_request *peer_req = container_of(w, struct drbd_peer_request, w);
347 348
	struct drbd_peer_device *peer_device = peer_req->peer_device;
	struct drbd_device *device = peer_device->device;
P
Philipp Reisner 已提交
349 350
	int digest_size;
	void *digest;
351
	int err = 0;
P
Philipp Reisner 已提交
352

353 354
	if (unlikely(cancel))
		goto out;
P
Philipp Reisner 已提交
355

356
	if (unlikely((peer_req->flags & EE_WAS_ERROR) != 0))
357
		goto out;
P
Philipp Reisner 已提交
358

359
	digest_size = crypto_hash_digestsize(peer_device->connection->csums_tfm);
360 361
	digest = kmalloc(digest_size, GFP_NOIO);
	if (digest) {
362 363
		sector_t sector = peer_req->i.sector;
		unsigned int size = peer_req->i.size;
364
		drbd_csum_ee(peer_device->connection->csums_tfm, peer_req, digest);
365
		/* Free peer_req and pages before send.
366 367 368
		 * In case we block on congestion, we could otherwise run into
		 * some distributed deadlock, if the other side blocks on
		 * congestion as well, because our receiver blocks in
369
		 * drbd_alloc_pages due to pp_in_use > max_buffers. */
370
		drbd_free_peer_req(device, peer_req);
371
		peer_req = NULL;
372
		inc_rs_pending(device);
373
		err = drbd_send_drequest_csum(peer_device, sector, size,
374 375
					      digest, digest_size,
					      P_CSUM_RS_REQUEST);
376 377
		kfree(digest);
	} else {
378
		drbd_err(device, "kmalloc() of digest failed.\n");
379
		err = -ENOMEM;
380
	}
P
Philipp Reisner 已提交
381

382
out:
383
	if (peer_req)
384
		drbd_free_peer_req(device, peer_req);
P
Philipp Reisner 已提交
385

386
	if (unlikely(err))
387
		drbd_err(device, "drbd_send_drequest(..., csum) failed\n");
388
	return err;
P
Philipp Reisner 已提交
389 390 391 392
}

#define GFP_TRY	(__GFP_HIGHMEM | __GFP_NOWARN)

393
static int read_for_csum(struct drbd_peer_device *peer_device, sector_t sector, int size)
P
Philipp Reisner 已提交
394
{
395
	struct drbd_device *device = peer_device->device;
396
	struct drbd_peer_request *peer_req;
P
Philipp Reisner 已提交
397

398
	if (!get_ldev(device))
399
		return -EIO;
P
Philipp Reisner 已提交
400

401
	if (drbd_rs_should_slow_down(device, sector))
402 403
		goto defer;

P
Philipp Reisner 已提交
404 405
	/* GFP_TRY, because if there is no memory available right now, this may
	 * be rescheduled for later. It is "only" background resync, after all. */
406
	peer_req = drbd_alloc_peer_req(peer_device, ID_SYNCER /* unused */, sector,
407
				       size, true /* has real payload */, GFP_TRY);
408
	if (!peer_req)
409
		goto defer;
P
Philipp Reisner 已提交
410

411
	peer_req->w.cb = w_e_send_csum;
412
	spin_lock_irq(&device->resource->req_lock);
413
	list_add(&peer_req->w.list, &device->read_ee);
414
	spin_unlock_irq(&device->resource->req_lock);
P
Philipp Reisner 已提交
415

416 417
	atomic_add(size >> 9, &device->rs_sect_ev);
	if (drbd_submit_peer_request(device, peer_req, READ, DRBD_FAULT_RS_RD) == 0)
418
		return 0;
P
Philipp Reisner 已提交
419

420 421 422 423
	/* If it failed because of ENOMEM, retry should help.  If it failed
	 * because bio_add_page failed (probably broken lower level driver),
	 * retry may or may not help.
	 * If it does not, you may need to force disconnect. */
424
	spin_lock_irq(&device->resource->req_lock);
425
	list_del(&peer_req->w.list);
426
	spin_unlock_irq(&device->resource->req_lock);
427

428
	drbd_free_peer_req(device, peer_req);
429
defer:
430
	put_ldev(device);
431
	return -EAGAIN;
P
Philipp Reisner 已提交
432 433
}

434
int w_resync_timer(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
435
{
436 437 438
	struct drbd_device *device =
		container_of(w, struct drbd_device, resync_work);

439
	switch (device->state.conn) {
440
	case C_VERIFY_S:
441
		make_ov_request(device, cancel);
442 443
		break;
	case C_SYNC_TARGET:
444
		make_resync_request(device, cancel);
445
		break;
P
Philipp Reisner 已提交
446 447
	}

448
	return 0;
449 450 451 452
}

void resync_timer_fn(unsigned long data)
{
453
	struct drbd_device *device = (struct drbd_device *) data;
454

455
	if (list_empty(&device->resync_work.list))
456 457
		drbd_queue_work(&first_peer_device(device)->connection->sender_work,
				&device->resync_work);
P
Philipp Reisner 已提交
458 459
}

460 461 462 463 464
static void fifo_set(struct fifo_buffer *fb, int value)
{
	int i;

	for (i = 0; i < fb->size; i++)
465
		fb->values[i] = value;
466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488
}

static int fifo_push(struct fifo_buffer *fb, int value)
{
	int ov;

	ov = fb->values[fb->head_index];
	fb->values[fb->head_index++] = value;

	if (fb->head_index >= fb->size)
		fb->head_index = 0;

	return ov;
}

static void fifo_add_val(struct fifo_buffer *fb, int value)
{
	int i;

	for (i = 0; i < fb->size; i++)
		fb->values[i] += value;
}

489 490 491 492
struct fifo_buffer *fifo_alloc(int fifo_size)
{
	struct fifo_buffer *fb;

493
	fb = kzalloc(sizeof(struct fifo_buffer) + sizeof(int) * fifo_size, GFP_NOIO);
494 495 496 497 498 499 500 501 502 503
	if (!fb)
		return NULL;

	fb->head_index = 0;
	fb->size = fifo_size;
	fb->total = 0;

	return fb;
}

504
static int drbd_rs_controller(struct drbd_device *device, unsigned int sect_in)
505
{
P
Philipp Reisner 已提交
506
	struct disk_conf *dc;
507 508 509 510 511 512 513
	unsigned int want;     /* The number of sectors we want in the proxy */
	int req_sect; /* Number of sectors to request in this turn */
	int correction; /* Number of sectors more we need in the proxy*/
	int cps; /* correction per invocation of drbd_rs_controller() */
	int steps; /* Number of time steps to plan ahead */
	int curr_corr;
	int max_sect;
P
Philipp Reisner 已提交
514
	struct fifo_buffer *plan;
515

516 517
	dc = rcu_dereference(device->ldev->disk_conf);
	plan = rcu_dereference(device->rs_plan_s);
518

P
Philipp Reisner 已提交
519
	steps = plan->size; /* (dc->c_plan_ahead * 10 * SLEEP_TIME) / HZ; */
520

521
	if (device->rs_in_flight + sect_in == 0) { /* At start of resync */
P
Philipp Reisner 已提交
522
		want = ((dc->resync_rate * 2 * SLEEP_TIME) / HZ) * steps;
523
	} else { /* normal path */
P
Philipp Reisner 已提交
524 525
		want = dc->c_fill_target ? dc->c_fill_target :
			sect_in * dc->c_delay_target * HZ / (SLEEP_TIME * 10);
526 527
	}

528
	correction = want - device->rs_in_flight - plan->total;
529 530 531

	/* Plan ahead */
	cps = correction / steps;
P
Philipp Reisner 已提交
532 533
	fifo_add_val(plan, cps);
	plan->total += cps * steps;
534 535

	/* What we do in this step */
P
Philipp Reisner 已提交
536 537
	curr_corr = fifo_push(plan, 0);
	plan->total -= curr_corr;
538 539 540 541 542

	req_sect = sect_in + curr_corr;
	if (req_sect < 0)
		req_sect = 0;

P
Philipp Reisner 已提交
543
	max_sect = (dc->c_max_rate * 2 * SLEEP_TIME) / HZ;
544 545 546 547
	if (req_sect > max_sect)
		req_sect = max_sect;

	/*
548
	drbd_warn(device, "si=%u if=%d wa=%u co=%d st=%d cps=%d pl=%d cc=%d rs=%d\n",
549 550
		 sect_in, device->rs_in_flight, want, correction,
		 steps, cps, device->rs_planed, curr_corr, req_sect);
551 552 553 554 555
	*/

	return req_sect;
}

556
static int drbd_rs_number_requests(struct drbd_device *device)
557
{
558 559 560 561 562
	unsigned int sect_in;  /* Number of sectors that came in since the last turn */
	int number, mxb;

	sect_in = atomic_xchg(&device->rs_sect_in, 0);
	device->rs_in_flight -= sect_in;
P
Philipp Reisner 已提交
563 564

	rcu_read_lock();
565
	mxb = drbd_get_max_buffers(device) / 2;
566
	if (rcu_dereference(device->rs_plan_s)->size) {
567
		number = drbd_rs_controller(device, sect_in) >> (BM_BLOCK_SHIFT - 9);
568
		device->c_sync_rate = number * HZ * (BM_BLOCK_SIZE / 1024) / SLEEP_TIME;
569
	} else {
570 571
		device->c_sync_rate = rcu_dereference(device->ldev->disk_conf)->resync_rate;
		number = SLEEP_TIME * device->c_sync_rate  / ((BM_BLOCK_SIZE / 1024) * HZ);
572
	}
P
Philipp Reisner 已提交
573
	rcu_read_unlock();
574

575 576 577 578 579 580 581 582
	/* Don't have more than "max-buffers"/2 in-flight.
	 * Otherwise we may cause the remote site to stall on drbd_alloc_pages(),
	 * potentially causing a distributed deadlock on congestion during
	 * online-verify or (checksum-based) resync, if max-buffers,
	 * socket buffer sizes and resync rate settings are mis-configured. */
	if (mxb - device->rs_in_flight < number)
		number = mxb - device->rs_in_flight;

583 584 585
	return number;
}

586
static int make_resync_request(struct drbd_device *const device, int cancel)
P
Philipp Reisner 已提交
587
{
588 589
	struct drbd_peer_device *const peer_device = first_peer_device(device);
	struct drbd_connection *const connection = peer_device ? peer_device->connection : NULL;
P
Philipp Reisner 已提交
590 591
	unsigned long bit;
	sector_t sector;
592
	const sector_t capacity = drbd_get_capacity(device->this_bdev);
593
	int max_bio_size;
594
	int number, rollback_i, size;
P
Philipp Reisner 已提交
595
	int align, queued, sndbuf;
596
	int i = 0;
P
Philipp Reisner 已提交
597 598

	if (unlikely(cancel))
599
		return 0;
P
Philipp Reisner 已提交
600

601
	if (device->rs_total == 0) {
602
		/* empty resync? */
603
		drbd_resync_finished(device);
604
		return 0;
605 606
	}

607 608 609
	if (!get_ldev(device)) {
		/* Since we only need to access device->rsync a
		   get_ldev_if_state(device,D_FAILED) would be sufficient, but
P
Philipp Reisner 已提交
610 611
		   to continue resync with a broken disk makes no sense at
		   all */
612
		drbd_err(device, "Disk broke down during resync!\n");
613
		return 0;
P
Philipp Reisner 已提交
614 615
	}

616 617
	max_bio_size = queue_max_hw_sectors(device->rq_queue) << 9;
	number = drbd_rs_number_requests(device);
618
	if (number <= 0)
619
		goto requeue;
P
Philipp Reisner 已提交
620 621 622

	for (i = 0; i < number; i++) {
		/* Stop generating RS requests, when half of the send buffer is filled */
623 624 625 626
		mutex_lock(&connection->data.mutex);
		if (connection->data.socket) {
			queued = connection->data.socket->sk->sk_wmem_queued;
			sndbuf = connection->data.socket->sk->sk_sndbuf;
P
Philipp Reisner 已提交
627 628 629 630
		} else {
			queued = 1;
			sndbuf = 0;
		}
631
		mutex_unlock(&connection->data.mutex);
P
Philipp Reisner 已提交
632 633 634 635 636
		if (queued > sndbuf / 2)
			goto requeue;

next_sector:
		size = BM_BLOCK_SIZE;
637
		bit  = drbd_bm_find_next(device, device->bm_resync_fo);
P
Philipp Reisner 已提交
638

639
		if (bit == DRBD_END_OF_BITMAP) {
640 641
			device->bm_resync_fo = drbd_bm_bits(device);
			put_ldev(device);
642
			return 0;
P
Philipp Reisner 已提交
643 644 645 646
		}

		sector = BM_BIT_TO_SECT(bit);

647 648 649
		if (drbd_rs_should_slow_down(device, sector) ||
		    drbd_try_rs_begin_io(device, sector)) {
			device->bm_resync_fo = bit;
P
Philipp Reisner 已提交
650 651
			goto requeue;
		}
652
		device->bm_resync_fo = bit + 1;
P
Philipp Reisner 已提交
653

654 655
		if (unlikely(drbd_bm_test_bit(device, bit) == 0)) {
			drbd_rs_complete_io(device, sector);
P
Philipp Reisner 已提交
656 657 658
			goto next_sector;
		}

659
#if DRBD_MAX_BIO_SIZE > BM_BLOCK_SIZE
P
Philipp Reisner 已提交
660 661 662 663 664 665 666
		/* try to find some adjacent bits.
		 * we stop if we have already the maximum req size.
		 *
		 * Additionally always align bigger requests, in order to
		 * be prepared for all stripe sizes of software RAIDs.
		 */
		align = 1;
667
		rollback_i = i;
668
		while (i < number) {
669
			if (size + BM_BLOCK_SIZE > max_bio_size)
P
Philipp Reisner 已提交
670 671 672 673 674 675 676 677 678 679 680 681 682 683
				break;

			/* Be always aligned */
			if (sector & ((1<<(align+3))-1))
				break;

			/* do not cross extent boundaries */
			if (((bit+1) & BM_BLOCKS_PER_BM_EXT_MASK) == 0)
				break;
			/* now, is it actually dirty, after all?
			 * caution, drbd_bm_test_bit is tri-state for some
			 * obscure reason; ( b == 0 ) would get the out-of-band
			 * only accidentally right because of the "oddly sized"
			 * adjustment below */
684
			if (drbd_bm_test_bit(device, bit+1) != 1)
P
Philipp Reisner 已提交
685 686 687 688 689 690 691 692 693 694
				break;
			bit++;
			size += BM_BLOCK_SIZE;
			if ((BM_BLOCK_SIZE << align) <= size)
				align++;
			i++;
		}
		/* if we merged some,
		 * reset the offset to start the next drbd_bm_find_next from */
		if (size > BM_BLOCK_SIZE)
695
			device->bm_resync_fo = bit + 1;
P
Philipp Reisner 已提交
696 697 698 699 700
#endif

		/* adjust very last sectors, in case we are oddly sized */
		if (sector + (size>>9) > capacity)
			size = (capacity-sector)<<9;
701 702 703
		if (connection->agreed_pro_version >= 89 &&
		    connection->csums_tfm) {
			switch (read_for_csum(peer_device, sector, size)) {
704
			case -EIO: /* Disk failure */
705
				put_ldev(device);
706
				return -EIO;
707
			case -EAGAIN: /* allocation failed, or ldev busy */
708 709
				drbd_rs_complete_io(device, sector);
				device->bm_resync_fo = BM_SECT_TO_BIT(sector);
710
				i = rollback_i;
P
Philipp Reisner 已提交
711
				goto requeue;
712 713 714 715 716
			case 0:
				/* everything ok */
				break;
			default:
				BUG();
P
Philipp Reisner 已提交
717 718
			}
		} else {
719 720
			int err;

721
			inc_rs_pending(device);
722
			err = drbd_send_drequest(peer_device, P_RS_DATA_REQUEST,
723 724
						 sector, size, ID_SYNCER);
			if (err) {
725
				drbd_err(device, "drbd_send_drequest() failed, aborting...\n");
726 727
				dec_rs_pending(device);
				put_ldev(device);
728
				return err;
P
Philipp Reisner 已提交
729 730 731 732
			}
		}
	}

733
	if (device->bm_resync_fo >= drbd_bm_bits(device)) {
P
Philipp Reisner 已提交
734 735 736 737 738 739
		/* last syncer _request_ was sent,
		 * but the P_RS_DATA_REPLY not yet received.  sync will end (and
		 * next sync group will resume), as soon as we receive the last
		 * resync data block, and the last bit is cleared.
		 * until then resync "work" is "inactive" ...
		 */
740
		put_ldev(device);
741
		return 0;
P
Philipp Reisner 已提交
742 743 744
	}

 requeue:
745 746 747
	device->rs_in_flight += (i << (BM_BLOCK_SHIFT - 9));
	mod_timer(&device->resync_timer, jiffies + SLEEP_TIME);
	put_ldev(device);
748
	return 0;
P
Philipp Reisner 已提交
749 750
}

751
static int make_ov_request(struct drbd_device *device, int cancel)
P
Philipp Reisner 已提交
752 753 754
{
	int number, i, size;
	sector_t sector;
755
	const sector_t capacity = drbd_get_capacity(device->this_bdev);
756
	bool stop_sector_reached = false;
P
Philipp Reisner 已提交
757 758 759 760

	if (unlikely(cancel))
		return 1;

761
	number = drbd_rs_number_requests(device);
P
Philipp Reisner 已提交
762

763
	sector = device->ov_position;
P
Philipp Reisner 已提交
764
	for (i = 0; i < number; i++) {
765
		if (sector >= capacity)
P
Philipp Reisner 已提交
766
			return 1;
767 768 769 770 771

		/* We check for "finished" only in the reply path:
		 * w_e_end_ov_reply().
		 * We need to send at least one request out. */
		stop_sector_reached = i > 0
772 773
			&& verify_can_do_stop_sector(device)
			&& sector >= device->ov_stop_sector;
774 775
		if (stop_sector_reached)
			break;
P
Philipp Reisner 已提交
776 777 778

		size = BM_BLOCK_SIZE;

779 780 781
		if (drbd_rs_should_slow_down(device, sector) ||
		    drbd_try_rs_begin_io(device, sector)) {
			device->ov_position = sector;
P
Philipp Reisner 已提交
782 783 784 785 786 787
			goto requeue;
		}

		if (sector + (size>>9) > capacity)
			size = (capacity-sector)<<9;

788
		inc_rs_pending(device);
789
		if (drbd_send_ov_request(first_peer_device(device), sector, size)) {
790
			dec_rs_pending(device);
P
Philipp Reisner 已提交
791 792 793 794
			return 0;
		}
		sector += BM_SECT_PER_BIT;
	}
795
	device->ov_position = sector;
P
Philipp Reisner 已提交
796 797

 requeue:
798
	device->rs_in_flight += (i << (BM_BLOCK_SHIFT - 9));
799
	if (i == 0 || !stop_sector_reached)
800
		mod_timer(&device->resync_timer, jiffies + SLEEP_TIME);
P
Philipp Reisner 已提交
801 802 803
	return 1;
}

804
int w_ov_finished(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
805
{
806 807 808 809
	struct drbd_device_work *dw =
		container_of(w, struct drbd_device_work, w);
	struct drbd_device *device = dw->device;
	kfree(dw);
810 811
	ov_out_of_sync_print(device);
	drbd_resync_finished(device);
P
Philipp Reisner 已提交
812

813
	return 0;
P
Philipp Reisner 已提交
814 815
}

816
static int w_resync_finished(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
817
{
818 819 820 821
	struct drbd_device_work *dw =
		container_of(w, struct drbd_device_work, w);
	struct drbd_device *device = dw->device;
	kfree(dw);
P
Philipp Reisner 已提交
822

823
	drbd_resync_finished(device);
P
Philipp Reisner 已提交
824

825
	return 0;
P
Philipp Reisner 已提交
826 827
}

828
static void ping_peer(struct drbd_device *device)
829
{
830
	struct drbd_connection *connection = first_peer_device(device)->connection;
831

832 833 834 835
	clear_bit(GOT_PING_ACK, &connection->flags);
	request_ping(connection);
	wait_event(connection->ping_wait,
		   test_bit(GOT_PING_ACK, &connection->flags) || device->state.conn < C_CONNECTED);
836 837
}

838
int drbd_resync_finished(struct drbd_device *device)
P
Philipp Reisner 已提交
839 840 841 842
{
	unsigned long db, dt, dbdt;
	unsigned long n_oos;
	union drbd_state os, ns;
843
	struct drbd_device_work *dw;
P
Philipp Reisner 已提交
844
	char *khelper_cmd = NULL;
845
	int verify_done = 0;
P
Philipp Reisner 已提交
846 847 848 849

	/* Remove all elements from the resync LRU. Since future actions
	 * might set bits in the (main) bitmap, then the entries in the
	 * resync LRU would be wrong. */
850
	if (drbd_rs_del_all(device)) {
P
Philipp Reisner 已提交
851 852 853 854 855
		/* In case this is not possible now, most probably because
		 * there are P_RS_DATA_REPLY Packets lingering on the worker's
		 * queue (or even the read operations for those packets
		 * is not finished by now).   Retry in 100ms. */

856
		schedule_timeout_interruptible(HZ / 10);
857 858 859 860 861 862
		dw = kmalloc(sizeof(struct drbd_device_work), GFP_ATOMIC);
		if (dw) {
			dw->w.cb = w_resync_finished;
			dw->device = device;
			drbd_queue_work(&first_peer_device(device)->connection->sender_work,
					&dw->w);
P
Philipp Reisner 已提交
863 864
			return 1;
		}
865
		drbd_err(device, "Warn failed to drbd_rs_del_all() and to kmalloc(dw).\n");
P
Philipp Reisner 已提交
866 867
	}

868
	dt = (jiffies - device->rs_start - device->rs_paused) / HZ;
P
Philipp Reisner 已提交
869 870
	if (dt <= 0)
		dt = 1;
871

872
	db = device->rs_total;
873
	/* adjust for verify start and stop sectors, respective reached position */
874 875
	if (device->state.conn == C_VERIFY_S || device->state.conn == C_VERIFY_T)
		db -= device->ov_left;
876

P
Philipp Reisner 已提交
877
	dbdt = Bit2KB(db/dt);
878
	device->rs_paused /= HZ;
P
Philipp Reisner 已提交
879

880
	if (!get_ldev(device))
P
Philipp Reisner 已提交
881 882
		goto out;

883
	ping_peer(device);
884

885
	spin_lock_irq(&device->resource->req_lock);
886
	os = drbd_read_state(device);
P
Philipp Reisner 已提交
887

888 889
	verify_done = (os.conn == C_VERIFY_S || os.conn == C_VERIFY_T);

P
Philipp Reisner 已提交
890 891 892 893 894 895 896 897
	/* This protects us against multiple calls (that can happen in the presence
	   of application IO), and against connectivity loss just before we arrive here. */
	if (os.conn <= C_CONNECTED)
		goto out_unlock;

	ns = os;
	ns.conn = C_CONNECTED;

898
	drbd_info(device, "%s done (total %lu sec; paused %lu sec; %lu K/sec)\n",
899
	     verify_done ? "Online verify" : "Resync",
900
	     dt + device->rs_paused, device->rs_paused, dbdt);
P
Philipp Reisner 已提交
901

902
	n_oos = drbd_bm_total_weight(device);
P
Philipp Reisner 已提交
903 904 905

	if (os.conn == C_VERIFY_S || os.conn == C_VERIFY_T) {
		if (n_oos) {
906
			drbd_alert(device, "Online verify found %lu %dk block out of sync!\n",
P
Philipp Reisner 已提交
907 908 909 910
			      n_oos, Bit2KB(1));
			khelper_cmd = "out-of-sync";
		}
	} else {
911
		D_ASSERT(device, (n_oos - device->rs_failed) == 0);
P
Philipp Reisner 已提交
912 913 914 915

		if (os.conn == C_SYNC_TARGET || os.conn == C_PAUSED_SYNC_T)
			khelper_cmd = "after-resync-target";

916
		if (first_peer_device(device)->connection->csums_tfm && device->rs_total) {
917 918
			const unsigned long s = device->rs_same_csum;
			const unsigned long t = device->rs_total;
P
Philipp Reisner 已提交
919 920 921
			const int ratio =
				(t == 0)     ? 0 :
			(t < 100000) ? ((s*100)/t) : (s/(t/100));
922
			drbd_info(device, "%u %% had equal checksums, eliminated: %luK; "
P
Philipp Reisner 已提交
923 924
			     "transferred %luK total %luK\n",
			     ratio,
925 926 927
			     Bit2KB(device->rs_same_csum),
			     Bit2KB(device->rs_total - device->rs_same_csum),
			     Bit2KB(device->rs_total));
P
Philipp Reisner 已提交
928 929 930
		}
	}

931
	if (device->rs_failed) {
932
		drbd_info(device, "            %lu failed blocks\n", device->rs_failed);
P
Philipp Reisner 已提交
933 934 935 936 937 938 939 940 941 942 943 944 945

		if (os.conn == C_SYNC_TARGET || os.conn == C_PAUSED_SYNC_T) {
			ns.disk = D_INCONSISTENT;
			ns.pdsk = D_UP_TO_DATE;
		} else {
			ns.disk = D_UP_TO_DATE;
			ns.pdsk = D_INCONSISTENT;
		}
	} else {
		ns.disk = D_UP_TO_DATE;
		ns.pdsk = D_UP_TO_DATE;

		if (os.conn == C_SYNC_TARGET || os.conn == C_PAUSED_SYNC_T) {
946
			if (device->p_uuid) {
P
Philipp Reisner 已提交
947 948
				int i;
				for (i = UI_BITMAP ; i <= UI_HISTORY_END ; i++)
949 950 951
					_drbd_uuid_set(device, i, device->p_uuid[i]);
				drbd_uuid_set(device, UI_BITMAP, device->ldev->md.uuid[UI_CURRENT]);
				_drbd_uuid_set(device, UI_CURRENT, device->p_uuid[UI_CURRENT]);
P
Philipp Reisner 已提交
952
			} else {
953
				drbd_err(device, "device->p_uuid is NULL! BUG\n");
P
Philipp Reisner 已提交
954 955 956
			}
		}

957 958 959
		if (!(os.conn == C_VERIFY_S || os.conn == C_VERIFY_T)) {
			/* for verify runs, we don't update uuids here,
			 * so there would be nothing to report. */
960 961 962
			drbd_uuid_set_bm(device, 0UL);
			drbd_print_uuids(device, "updated UUIDs");
			if (device->p_uuid) {
963 964 965 966
				/* Now the two UUID sets are equal, update what we
				 * know of the peer. */
				int i;
				for (i = UI_CURRENT ; i <= UI_HISTORY_END ; i++)
967
					device->p_uuid[i] = device->ldev->md.uuid[i];
968
			}
P
Philipp Reisner 已提交
969 970 971
		}
	}

972
	_drbd_set_state(device, ns, CS_VERBOSE, NULL);
P
Philipp Reisner 已提交
973
out_unlock:
974
	spin_unlock_irq(&device->resource->req_lock);
975
	put_ldev(device);
P
Philipp Reisner 已提交
976
out:
977 978 979
	device->rs_total  = 0;
	device->rs_failed = 0;
	device->rs_paused = 0;
980 981

	/* reset start sector, if we reached end of device */
982 983
	if (verify_done && device->ov_left == 0)
		device->ov_start_sector = 0;
P
Philipp Reisner 已提交
984

985
	drbd_md_sync(device);
986

P
Philipp Reisner 已提交
987
	if (khelper_cmd)
988
		drbd_khelper(device, khelper_cmd);
P
Philipp Reisner 已提交
989 990 991 992 993

	return 1;
}

/* helper */
994
static void move_to_net_ee_or_free(struct drbd_device *device, struct drbd_peer_request *peer_req)
P
Philipp Reisner 已提交
995
{
996
	if (drbd_peer_req_has_active_page(peer_req)) {
P
Philipp Reisner 已提交
997
		/* This might happen if sendpage() has not finished */
998
		int i = (peer_req->i.size + PAGE_SIZE -1) >> PAGE_SHIFT;
999 1000
		atomic_add(i, &device->pp_in_use_by_net);
		atomic_sub(i, &device->pp_in_use);
1001
		spin_lock_irq(&device->resource->req_lock);
1002
		list_add_tail(&peer_req->w.list, &device->net_ee);
1003
		spin_unlock_irq(&device->resource->req_lock);
1004
		wake_up(&drbd_pp_wait);
P
Philipp Reisner 已提交
1005
	} else
1006
		drbd_free_peer_req(device, peer_req);
P
Philipp Reisner 已提交
1007 1008 1009 1010
}

/**
 * w_e_end_data_req() - Worker callback, to send a P_DATA_REPLY packet in response to a P_DATA_REQUEST
1011
 * @device:	DRBD device.
P
Philipp Reisner 已提交
1012 1013 1014
 * @w:		work object.
 * @cancel:	The connection will be closed anyways
 */
1015
int w_e_end_data_req(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
1016
{
1017
	struct drbd_peer_request *peer_req = container_of(w, struct drbd_peer_request, w);
1018 1019
	struct drbd_peer_device *peer_device = peer_req->peer_device;
	struct drbd_device *device = peer_device->device;
1020
	int err;
P
Philipp Reisner 已提交
1021 1022

	if (unlikely(cancel)) {
1023 1024
		drbd_free_peer_req(device, peer_req);
		dec_unacked(device);
1025
		return 0;
P
Philipp Reisner 已提交
1026 1027
	}

1028
	if (likely((peer_req->flags & EE_WAS_ERROR) == 0)) {
1029
		err = drbd_send_block(peer_device, P_DATA_REPLY, peer_req);
P
Philipp Reisner 已提交
1030 1031
	} else {
		if (__ratelimit(&drbd_ratelimit_state))
1032
			drbd_err(device, "Sending NegDReply. sector=%llus.\n",
1033
			    (unsigned long long)peer_req->i.sector);
P
Philipp Reisner 已提交
1034

1035
		err = drbd_send_ack(peer_device, P_NEG_DREPLY, peer_req);
P
Philipp Reisner 已提交
1036 1037
	}

1038
	dec_unacked(device);
P
Philipp Reisner 已提交
1039

1040
	move_to_net_ee_or_free(device, peer_req);
P
Philipp Reisner 已提交
1041

1042
	if (unlikely(err))
1043
		drbd_err(device, "drbd_send_block() failed\n");
1044
	return err;
P
Philipp Reisner 已提交
1045 1046 1047
}

/**
1048
 * w_e_end_rsdata_req() - Worker callback to send a P_RS_DATA_REPLY packet in response to a P_RS_DATA_REQUEST
P
Philipp Reisner 已提交
1049 1050 1051
 * @w:		work object.
 * @cancel:	The connection will be closed anyways
 */
1052
int w_e_end_rsdata_req(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
1053
{
1054
	struct drbd_peer_request *peer_req = container_of(w, struct drbd_peer_request, w);
1055 1056
	struct drbd_peer_device *peer_device = peer_req->peer_device;
	struct drbd_device *device = peer_device->device;
1057
	int err;
P
Philipp Reisner 已提交
1058 1059

	if (unlikely(cancel)) {
1060 1061
		drbd_free_peer_req(device, peer_req);
		dec_unacked(device);
1062
		return 0;
P
Philipp Reisner 已提交
1063 1064
	}

1065 1066 1067
	if (get_ldev_if_state(device, D_FAILED)) {
		drbd_rs_complete_io(device, peer_req->i.sector);
		put_ldev(device);
P
Philipp Reisner 已提交
1068 1069
	}

1070
	if (device->state.conn == C_AHEAD) {
1071
		err = drbd_send_ack(peer_device, P_RS_CANCEL, peer_req);
1072
	} else if (likely((peer_req->flags & EE_WAS_ERROR) == 0)) {
1073 1074
		if (likely(device->state.pdsk >= D_INCONSISTENT)) {
			inc_rs_pending(device);
1075
			err = drbd_send_block(peer_device, P_RS_DATA_REPLY, peer_req);
P
Philipp Reisner 已提交
1076 1077
		} else {
			if (__ratelimit(&drbd_ratelimit_state))
1078
				drbd_err(device, "Not sending RSDataReply, "
P
Philipp Reisner 已提交
1079
				    "partner DISKLESS!\n");
1080
			err = 0;
P
Philipp Reisner 已提交
1081 1082 1083
		}
	} else {
		if (__ratelimit(&drbd_ratelimit_state))
1084
			drbd_err(device, "Sending NegRSDReply. sector %llus.\n",
1085
			    (unsigned long long)peer_req->i.sector);
P
Philipp Reisner 已提交
1086

1087
		err = drbd_send_ack(peer_device, P_NEG_RS_DREPLY, peer_req);
P
Philipp Reisner 已提交
1088 1089

		/* update resync data with failure */
1090
		drbd_rs_failed_io(device, peer_req->i.sector, peer_req->i.size);
P
Philipp Reisner 已提交
1091 1092
	}

1093
	dec_unacked(device);
P
Philipp Reisner 已提交
1094

1095
	move_to_net_ee_or_free(device, peer_req);
P
Philipp Reisner 已提交
1096

1097
	if (unlikely(err))
1098
		drbd_err(device, "drbd_send_block() failed\n");
1099
	return err;
P
Philipp Reisner 已提交
1100 1101
}

1102
int w_e_end_csum_rs_req(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
1103
{
1104
	struct drbd_peer_request *peer_req = container_of(w, struct drbd_peer_request, w);
1105 1106
	struct drbd_peer_device *peer_device = peer_req->peer_device;
	struct drbd_device *device = peer_device->device;
P
Philipp Reisner 已提交
1107 1108 1109
	struct digest_info *di;
	int digest_size;
	void *digest = NULL;
1110
	int err, eq = 0;
P
Philipp Reisner 已提交
1111 1112

	if (unlikely(cancel)) {
1113 1114
		drbd_free_peer_req(device, peer_req);
		dec_unacked(device);
1115
		return 0;
P
Philipp Reisner 已提交
1116 1117
	}

1118 1119 1120
	if (get_ldev(device)) {
		drbd_rs_complete_io(device, peer_req->i.sector);
		put_ldev(device);
1121
	}
P
Philipp Reisner 已提交
1122

1123
	di = peer_req->digest;
P
Philipp Reisner 已提交
1124

1125
	if (likely((peer_req->flags & EE_WAS_ERROR) == 0)) {
P
Philipp Reisner 已提交
1126 1127 1128
		/* quick hack to try to avoid a race against reconfiguration.
		 * a real fix would be much more involved,
		 * introducing more locking mechanisms */
1129 1130
		if (peer_device->connection->csums_tfm) {
			digest_size = crypto_hash_digestsize(peer_device->connection->csums_tfm);
1131
			D_ASSERT(device, digest_size == di->digest_size);
P
Philipp Reisner 已提交
1132 1133 1134
			digest = kmalloc(digest_size, GFP_NOIO);
		}
		if (digest) {
1135
			drbd_csum_ee(peer_device->connection->csums_tfm, peer_req, digest);
P
Philipp Reisner 已提交
1136 1137 1138 1139 1140
			eq = !memcmp(digest, di->digest, digest_size);
			kfree(digest);
		}

		if (eq) {
1141
			drbd_set_in_sync(device, peer_req->i.sector, peer_req->i.size);
1142
			/* rs_same_csums unit is BM_BLOCK_SIZE */
1143
			device->rs_same_csum += peer_req->i.size >> BM_BLOCK_SHIFT;
1144
			err = drbd_send_ack(peer_device, P_RS_IS_IN_SYNC, peer_req);
P
Philipp Reisner 已提交
1145
		} else {
1146
			inc_rs_pending(device);
1147 1148
			peer_req->block_id = ID_SYNCER; /* By setting block_id, digest pointer becomes invalid! */
			peer_req->flags &= ~EE_HAS_DIGEST; /* This peer request no longer has a digest pointer */
1149
			kfree(di);
1150
			err = drbd_send_block(peer_device, P_RS_DATA_REPLY, peer_req);
P
Philipp Reisner 已提交
1151 1152
		}
	} else {
1153
		err = drbd_send_ack(peer_device, P_NEG_RS_DREPLY, peer_req);
P
Philipp Reisner 已提交
1154
		if (__ratelimit(&drbd_ratelimit_state))
1155
			drbd_err(device, "Sending NegDReply. I guess it gets messy.\n");
P
Philipp Reisner 已提交
1156 1157
	}

1158 1159
	dec_unacked(device);
	move_to_net_ee_or_free(device, peer_req);
P
Philipp Reisner 已提交
1160

1161
	if (unlikely(err))
1162
		drbd_err(device, "drbd_send_block/ack() failed\n");
1163
	return err;
P
Philipp Reisner 已提交
1164 1165
}

1166
int w_e_end_ov_req(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
1167
{
1168
	struct drbd_peer_request *peer_req = container_of(w, struct drbd_peer_request, w);
1169 1170
	struct drbd_peer_device *peer_device = peer_req->peer_device;
	struct drbd_device *device = peer_device->device;
1171 1172
	sector_t sector = peer_req->i.sector;
	unsigned int size = peer_req->i.size;
P
Philipp Reisner 已提交
1173 1174
	int digest_size;
	void *digest;
1175
	int err = 0;
P
Philipp Reisner 已提交
1176 1177 1178 1179

	if (unlikely(cancel))
		goto out;

1180
	digest_size = crypto_hash_digestsize(peer_device->connection->verify_tfm);
P
Philipp Reisner 已提交
1181
	digest = kmalloc(digest_size, GFP_NOIO);
1182
	if (!digest) {
1183
		err = 1;	/* terminate the connection in case the allocation failed */
1184
		goto out;
P
Philipp Reisner 已提交
1185 1186
	}

1187
	if (likely(!(peer_req->flags & EE_WAS_ERROR)))
1188
		drbd_csum_ee(peer_device->connection->verify_tfm, peer_req, digest);
1189 1190 1191
	else
		memset(digest, 0, digest_size);

1192 1193 1194 1195
	/* Free e and pages before send.
	 * In case we block on congestion, we could otherwise run into
	 * some distributed deadlock, if the other side blocks on
	 * congestion as well, because our receiver blocks in
1196
	 * drbd_alloc_pages due to pp_in_use > max_buffers. */
1197
	drbd_free_peer_req(device, peer_req);
1198
	peer_req = NULL;
1199
	inc_rs_pending(device);
1200
	err = drbd_send_drequest_csum(peer_device, sector, size, digest, digest_size, P_OV_REPLY);
1201
	if (err)
1202
		dec_rs_pending(device);
1203 1204
	kfree(digest);

P
Philipp Reisner 已提交
1205
out:
1206
	if (peer_req)
1207 1208
		drbd_free_peer_req(device, peer_req);
	dec_unacked(device);
1209
	return err;
P
Philipp Reisner 已提交
1210 1211
}

1212
void drbd_ov_out_of_sync_found(struct drbd_device *device, sector_t sector, int size)
P
Philipp Reisner 已提交
1213
{
1214 1215
	if (device->ov_last_oos_start + device->ov_last_oos_size == sector) {
		device->ov_last_oos_size += size>>9;
P
Philipp Reisner 已提交
1216
	} else {
1217 1218
		device->ov_last_oos_start = sector;
		device->ov_last_oos_size = size>>9;
P
Philipp Reisner 已提交
1219
	}
1220
	drbd_set_out_of_sync(device, sector, size);
P
Philipp Reisner 已提交
1221 1222
}

1223
int w_e_end_ov_reply(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
1224
{
1225
	struct drbd_peer_request *peer_req = container_of(w, struct drbd_peer_request, w);
1226 1227
	struct drbd_peer_device *peer_device = peer_req->peer_device;
	struct drbd_device *device = peer_device->device;
P
Philipp Reisner 已提交
1228 1229
	struct digest_info *di;
	void *digest;
1230 1231
	sector_t sector = peer_req->i.sector;
	unsigned int size = peer_req->i.size;
1232
	int digest_size;
1233
	int err, eq = 0;
1234
	bool stop_sector_reached = false;
P
Philipp Reisner 已提交
1235 1236

	if (unlikely(cancel)) {
1237 1238
		drbd_free_peer_req(device, peer_req);
		dec_unacked(device);
1239
		return 0;
P
Philipp Reisner 已提交
1240 1241 1242 1243
	}

	/* after "cancel", because after drbd_disconnect/drbd_rs_cancel_all
	 * the resync lru has been cleaned up already */
1244 1245 1246
	if (get_ldev(device)) {
		drbd_rs_complete_io(device, peer_req->i.sector);
		put_ldev(device);
1247
	}
P
Philipp Reisner 已提交
1248

1249
	di = peer_req->digest;
P
Philipp Reisner 已提交
1250

1251
	if (likely((peer_req->flags & EE_WAS_ERROR) == 0)) {
1252
		digest_size = crypto_hash_digestsize(peer_device->connection->verify_tfm);
P
Philipp Reisner 已提交
1253 1254
		digest = kmalloc(digest_size, GFP_NOIO);
		if (digest) {
1255
			drbd_csum_ee(peer_device->connection->verify_tfm, peer_req, digest);
P
Philipp Reisner 已提交
1256

1257
			D_ASSERT(device, digest_size == di->digest_size);
P
Philipp Reisner 已提交
1258 1259 1260 1261 1262
			eq = !memcmp(digest, di->digest, digest_size);
			kfree(digest);
		}
	}

1263 1264 1265 1266
	/* Free peer_req and pages before send.
	 * In case we block on congestion, we could otherwise run into
	 * some distributed deadlock, if the other side blocks on
	 * congestion as well, because our receiver blocks in
1267
	 * drbd_alloc_pages due to pp_in_use > max_buffers. */
1268
	drbd_free_peer_req(device, peer_req);
P
Philipp Reisner 已提交
1269
	if (!eq)
1270
		drbd_ov_out_of_sync_found(device, sector, size);
P
Philipp Reisner 已提交
1271
	else
1272
		ov_out_of_sync_print(device);
P
Philipp Reisner 已提交
1273

1274
	err = drbd_send_ack_ex(peer_device, P_OV_RESULT, sector, size,
1275
			       eq ? ID_IN_SYNC : ID_OUT_OF_SYNC);
P
Philipp Reisner 已提交
1276

1277
	dec_unacked(device);
P
Philipp Reisner 已提交
1278

1279
	--device->ov_left;
1280 1281

	/* let's advance progress step marks only for every other megabyte */
1282 1283
	if ((device->ov_left & 0x200) == 0x200)
		drbd_advance_rs_marks(device, device->ov_left);
1284

1285 1286
	stop_sector_reached = verify_can_do_stop_sector(device) &&
		(sector + (size>>9)) >= device->ov_stop_sector;
1287

1288 1289 1290
	if (device->ov_left == 0 || stop_sector_reached) {
		ov_out_of_sync_print(device);
		drbd_resync_finished(device);
P
Philipp Reisner 已提交
1291 1292
	}

1293
	return err;
P
Philipp Reisner 已提交
1294 1295
}

1296 1297 1298 1299 1300
/* FIXME
 * We need to track the number of pending barrier acks,
 * and to be able to wait for them.
 * See also comment in drbd_adm_attach before drbd_suspend_io.
 */
1301
static int drbd_send_barrier(struct drbd_connection *connection)
P
Philipp Reisner 已提交
1302
{
1303
	struct p_barrier *p;
1304
	struct drbd_socket *sock;
P
Philipp Reisner 已提交
1305

1306 1307
	sock = &connection->data;
	p = conn_prepare_command(connection, sock);
1308 1309
	if (!p)
		return -EIO;
1310
	p->barrier = connection->send.current_epoch_nr;
1311
	p->pad = 0;
1312
	connection->send.current_epoch_writes = 0;
1313

1314
	return conn_send_command(connection, sock, P_BARRIER, sizeof(*p), NULL, 0);
P
Philipp Reisner 已提交
1315 1316
}

1317
int w_send_write_hint(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
1318
{
1319 1320
	struct drbd_device *device =
		container_of(w, struct drbd_device, unplug_work);
1321 1322
	struct drbd_socket *sock;

P
Philipp Reisner 已提交
1323
	if (cancel)
1324
		return 0;
1325
	sock = &first_peer_device(device)->connection->data;
1326
	if (!drbd_prepare_command(first_peer_device(device), sock))
1327
		return -EIO;
1328
	return drbd_send_command(first_peer_device(device), sock, P_UNPLUG_REMOTE, 0, NULL, 0);
P
Philipp Reisner 已提交
1329 1330
}

1331
static void re_init_if_first_write(struct drbd_connection *connection, unsigned int epoch)
1332
{
1333 1334 1335 1336
	if (!connection->send.seen_any_write_yet) {
		connection->send.seen_any_write_yet = true;
		connection->send.current_epoch_nr = epoch;
		connection->send.current_epoch_writes = 0;
1337 1338 1339
	}
}

1340
static void maybe_send_barrier(struct drbd_connection *connection, unsigned int epoch)
1341 1342
{
	/* re-init if first write on this connection */
1343
	if (!connection->send.seen_any_write_yet)
1344
		return;
1345 1346 1347 1348
	if (connection->send.current_epoch_nr != epoch) {
		if (connection->send.current_epoch_writes)
			drbd_send_barrier(connection);
		connection->send.current_epoch_nr = epoch;
1349 1350 1351
	}
}

1352
int w_send_out_of_sync(struct drbd_work *w, int cancel)
1353 1354
{
	struct drbd_request *req = container_of(w, struct drbd_request, w);
1355
	struct drbd_device *device = req->device;
1356 1357
	struct drbd_peer_device *const peer_device = first_peer_device(device);
	struct drbd_connection *const connection = peer_device->connection;
1358
	int err;
1359 1360

	if (unlikely(cancel)) {
1361
		req_mod(req, SEND_CANCELED);
1362
		return 0;
1363 1364
	}

1365
	/* this time, no connection->send.current_epoch_writes++;
1366 1367 1368
	 * If it was sent, it was the closing barrier for the last
	 * replicated epoch, before we went into AHEAD mode.
	 * No more barriers will be sent, until we leave AHEAD mode again. */
1369
	maybe_send_barrier(connection, req->epoch);
1370

1371
	err = drbd_send_out_of_sync(peer_device, req);
1372
	req_mod(req, OOS_HANDED_TO_NETWORK);
1373

1374
	return err;
1375 1376
}

P
Philipp Reisner 已提交
1377 1378 1379 1380 1381
/**
 * w_send_dblock() - Worker callback to send a P_DATA packet in order to mirror a write request
 * @w:		work object.
 * @cancel:	The connection will be closed anyways
 */
1382
int w_send_dblock(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
1383 1384
{
	struct drbd_request *req = container_of(w, struct drbd_request, w);
1385
	struct drbd_device *device = req->device;
1386 1387
	struct drbd_peer_device *const peer_device = first_peer_device(device);
	struct drbd_connection *connection = peer_device->connection;
1388
	int err;
P
Philipp Reisner 已提交
1389 1390

	if (unlikely(cancel)) {
1391
		req_mod(req, SEND_CANCELED);
1392
		return 0;
P
Philipp Reisner 已提交
1393 1394
	}

1395 1396 1397
	re_init_if_first_write(connection, req->epoch);
	maybe_send_barrier(connection, req->epoch);
	connection->send.current_epoch_writes++;
1398

1399
	err = drbd_send_dblock(peer_device, req);
1400
	req_mod(req, err ? SEND_FAILED : HANDED_OVER_TO_NETWORK);
P
Philipp Reisner 已提交
1401

1402
	return err;
P
Philipp Reisner 已提交
1403 1404 1405 1406 1407 1408 1409
}

/**
 * w_send_read_req() - Worker callback to send a read request (P_DATA_REQUEST) packet
 * @w:		work object.
 * @cancel:	The connection will be closed anyways
 */
1410
int w_send_read_req(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
1411 1412
{
	struct drbd_request *req = container_of(w, struct drbd_request, w);
1413
	struct drbd_device *device = req->device;
1414 1415
	struct drbd_peer_device *const peer_device = first_peer_device(device);
	struct drbd_connection *connection = peer_device->connection;
1416
	int err;
P
Philipp Reisner 已提交
1417 1418

	if (unlikely(cancel)) {
1419
		req_mod(req, SEND_CANCELED);
1420
		return 0;
P
Philipp Reisner 已提交
1421 1422
	}

1423 1424
	/* Even read requests may close a write epoch,
	 * if there was any yet. */
1425
	maybe_send_barrier(connection, req->epoch);
1426

1427
	err = drbd_send_drequest(peer_device, P_DATA_REQUEST, req->i.sector, req->i.size,
1428
				 (unsigned long)req);
P
Philipp Reisner 已提交
1429

1430
	req_mod(req, err ? SEND_FAILED : HANDED_OVER_TO_NETWORK);
P
Philipp Reisner 已提交
1431

1432
	return err;
P
Philipp Reisner 已提交
1433 1434
}

1435
int w_restart_disk_io(struct drbd_work *w, int cancel)
1436 1437
{
	struct drbd_request *req = container_of(w, struct drbd_request, w);
1438
	struct drbd_device *device = req->device;
1439

1440
	if (bio_data_dir(req->master_bio) == WRITE && req->rq_state & RQ_IN_ACT_LOG)
1441
		drbd_al_begin_io(device, &req->i);
1442 1443

	drbd_req_make_private_bio(req, req->master_bio);
1444
	req->private_bio->bi_bdev = device->ldev->backing_bdev;
1445 1446
	generic_make_request(req->private_bio);

1447
	return 0;
1448 1449
}

1450
static int _drbd_may_sync_now(struct drbd_device *device)
P
Philipp Reisner 已提交
1451
{
1452
	struct drbd_device *odev = device;
1453
	int resync_after;
P
Philipp Reisner 已提交
1454 1455

	while (1) {
1456
		if (!odev->ldev || odev->state.disk == D_DISKLESS)
1457
			return 1;
P
Philipp Reisner 已提交
1458
		rcu_read_lock();
1459
		resync_after = rcu_dereference(odev->ldev->disk_conf)->resync_after;
P
Philipp Reisner 已提交
1460
		rcu_read_unlock();
1461
		if (resync_after == -1)
P
Philipp Reisner 已提交
1462
			return 1;
1463
		odev = minor_to_device(resync_after);
1464
		if (!odev)
1465
			return 1;
P
Philipp Reisner 已提交
1466 1467 1468 1469 1470 1471 1472 1473 1474 1475
		if ((odev->state.conn >= C_SYNC_SOURCE &&
		     odev->state.conn <= C_PAUSED_SYNC_T) ||
		    odev->state.aftr_isp || odev->state.peer_isp ||
		    odev->state.user_isp)
			return 0;
	}
}

/**
 * _drbd_pause_after() - Pause resync on all devices that may not resync now
1476
 * @device:	DRBD device.
P
Philipp Reisner 已提交
1477 1478 1479
 *
 * Called from process context only (admin command and after_state_ch).
 */
1480
static int _drbd_pause_after(struct drbd_device *device)
P
Philipp Reisner 已提交
1481
{
1482
	struct drbd_device *odev;
P
Philipp Reisner 已提交
1483 1484
	int i, rv = 0;

1485
	rcu_read_lock();
1486
	idr_for_each_entry(&drbd_devices, odev, i) {
P
Philipp Reisner 已提交
1487 1488 1489 1490 1491 1492
		if (odev->state.conn == C_STANDALONE && odev->state.disk == D_DISKLESS)
			continue;
		if (!_drbd_may_sync_now(odev))
			rv |= (__drbd_set_state(_NS(odev, aftr_isp, 1), CS_HARD, NULL)
			       != SS_NOTHING_TO_DO);
	}
1493
	rcu_read_unlock();
P
Philipp Reisner 已提交
1494 1495 1496 1497 1498 1499

	return rv;
}

/**
 * _drbd_resume_next() - Resume resync on all devices that may resync now
1500
 * @device:	DRBD device.
P
Philipp Reisner 已提交
1501 1502 1503
 *
 * Called from process context only (admin command and worker).
 */
1504
static int _drbd_resume_next(struct drbd_device *device)
P
Philipp Reisner 已提交
1505
{
1506
	struct drbd_device *odev;
P
Philipp Reisner 已提交
1507 1508
	int i, rv = 0;

1509
	rcu_read_lock();
1510
	idr_for_each_entry(&drbd_devices, odev, i) {
P
Philipp Reisner 已提交
1511 1512 1513 1514 1515 1516 1517 1518 1519
		if (odev->state.conn == C_STANDALONE && odev->state.disk == D_DISKLESS)
			continue;
		if (odev->state.aftr_isp) {
			if (_drbd_may_sync_now(odev))
				rv |= (__drbd_set_state(_NS(odev, aftr_isp, 0),
							CS_HARD, NULL)
				       != SS_NOTHING_TO_DO) ;
		}
	}
1520
	rcu_read_unlock();
P
Philipp Reisner 已提交
1521 1522 1523
	return rv;
}

1524
void resume_next_sg(struct drbd_device *device)
P
Philipp Reisner 已提交
1525 1526
{
	write_lock_irq(&global_state_lock);
1527
	_drbd_resume_next(device);
P
Philipp Reisner 已提交
1528 1529 1530
	write_unlock_irq(&global_state_lock);
}

1531
void suspend_other_sg(struct drbd_device *device)
P
Philipp Reisner 已提交
1532 1533
{
	write_lock_irq(&global_state_lock);
1534
	_drbd_pause_after(device);
P
Philipp Reisner 已提交
1535 1536 1537
	write_unlock_irq(&global_state_lock);
}

1538
/* caller must hold global_state_lock */
1539
enum drbd_ret_code drbd_resync_after_valid(struct drbd_device *device, int o_minor)
P
Philipp Reisner 已提交
1540
{
1541
	struct drbd_device *odev;
1542
	int resync_after;
P
Philipp Reisner 已提交
1543 1544 1545

	if (o_minor == -1)
		return NO_ERROR;
1546
	if (o_minor < -1 || o_minor > MINORMASK)
1547
		return ERR_RESYNC_AFTER;
P
Philipp Reisner 已提交
1548 1549

	/* check for loops */
1550
	odev = minor_to_device(o_minor);
P
Philipp Reisner 已提交
1551
	while (1) {
1552
		if (odev == device)
1553
			return ERR_RESYNC_AFTER_CYCLE;
P
Philipp Reisner 已提交
1554

1555 1556 1557 1558 1559 1560 1561 1562 1563
		/* You are free to depend on diskless, non-existing,
		 * or not yet/no longer existing minors.
		 * We only reject dependency loops.
		 * We cannot follow the dependency chain beyond a detached or
		 * missing minor.
		 */
		if (!odev || !odev->ldev || odev->state.disk == D_DISKLESS)
			return NO_ERROR;

P
Philipp Reisner 已提交
1564
		rcu_read_lock();
1565
		resync_after = rcu_dereference(odev->ldev->disk_conf)->resync_after;
P
Philipp Reisner 已提交
1566
		rcu_read_unlock();
P
Philipp Reisner 已提交
1567
		/* dependency chain ends here, no cycles. */
1568
		if (resync_after == -1)
P
Philipp Reisner 已提交
1569 1570 1571
			return NO_ERROR;

		/* follow the dependency chain */
1572
		odev = minor_to_device(resync_after);
P
Philipp Reisner 已提交
1573 1574 1575
	}
}

1576
/* caller must hold global_state_lock */
1577
void drbd_resync_after_changed(struct drbd_device *device)
P
Philipp Reisner 已提交
1578 1579 1580
{
	int changes;

1581
	do {
1582 1583
		changes  = _drbd_pause_after(device);
		changes |= _drbd_resume_next(device);
1584
	} while (changes);
P
Philipp Reisner 已提交
1585 1586
}

1587
void drbd_rs_controller_reset(struct drbd_device *device)
1588
{
P
Philipp Reisner 已提交
1589 1590
	struct fifo_buffer *plan;

1591 1592 1593
	atomic_set(&device->rs_sect_in, 0);
	atomic_set(&device->rs_sect_ev, 0);
	device->rs_in_flight = 0;
P
Philipp Reisner 已提交
1594 1595 1596 1597 1598 1599

	/* Updating the RCU protected object in place is necessary since
	   this function gets called from atomic context.
	   It is valid since all other updates also lead to an completely
	   empty fifo */
	rcu_read_lock();
1600
	plan = rcu_dereference(device->rs_plan_s);
P
Philipp Reisner 已提交
1601 1602 1603
	plan->total = 0;
	fifo_set(plan, 0);
	rcu_read_unlock();
1604 1605
}

P
Philipp Reisner 已提交
1606 1607
void start_resync_timer_fn(unsigned long data)
{
1608
	struct drbd_device *device = (struct drbd_device *) data;
1609
	drbd_device_post_work(device, RS_START);
P
Philipp Reisner 已提交
1610 1611
}

1612
static void do_start_resync(struct drbd_device *device)
P
Philipp Reisner 已提交
1613
{
1614
	if (atomic_read(&device->unacked_cnt) || atomic_read(&device->rs_pending_cnt)) {
1615
		drbd_warn(device, "postponing start_resync ...\n");
1616 1617
		device->start_resync_timer.expires = jiffies + HZ/10;
		add_timer(&device->start_resync_timer);
1618
		return;
P
Philipp Reisner 已提交
1619 1620
	}

1621 1622
	drbd_start_resync(device, C_SYNC_SOURCE);
	clear_bit(AHEAD_TO_SYNC_SOURCE, &device->flags);
P
Philipp Reisner 已提交
1623 1624
}

P
Philipp Reisner 已提交
1625 1626
/**
 * drbd_start_resync() - Start the resync process
1627
 * @device:	DRBD device.
P
Philipp Reisner 已提交
1628 1629 1630 1631 1632
 * @side:	Either C_SYNC_SOURCE or C_SYNC_TARGET
 *
 * This function might bring you directly into one of the
 * C_PAUSED_SYNC_* states.
 */
1633
void drbd_start_resync(struct drbd_device *device, enum drbd_conns side)
P
Philipp Reisner 已提交
1634
{
1635 1636
	struct drbd_peer_device *peer_device = first_peer_device(device);
	struct drbd_connection *connection = peer_device ? peer_device->connection : NULL;
P
Philipp Reisner 已提交
1637 1638 1639
	union drbd_state ns;
	int r;

1640
	if (device->state.conn >= C_SYNC_SOURCE && device->state.conn < C_AHEAD) {
1641
		drbd_err(device, "Resync already running!\n");
P
Philipp Reisner 已提交
1642 1643 1644
		return;
	}

1645
	if (!test_bit(B_RS_H_DONE, &device->flags)) {
1646 1647 1648 1649
		if (side == C_SYNC_TARGET) {
			/* Since application IO was locked out during C_WF_BITMAP_T and
			   C_WF_SYNC_UUID we are still unmodified. Before going to C_SYNC_TARGET
			   we check that we might make the data inconsistent. */
1650
			r = drbd_khelper(device, "before-resync-target");
1651 1652
			r = (r >> 8) & 0xff;
			if (r > 0) {
1653
				drbd_info(device, "before-resync-target handler returned %d, "
1654
					 "dropping connection.\n", r);
1655
				conn_request_state(connection, NS(conn, C_DISCONNECTING), CS_HARD);
1656 1657
				return;
			}
1658
		} else /* C_SYNC_SOURCE */ {
1659
			r = drbd_khelper(device, "before-resync-source");
1660 1661 1662
			r = (r >> 8) & 0xff;
			if (r > 0) {
				if (r == 3) {
1663
					drbd_info(device, "before-resync-source handler returned %d, "
1664 1665
						 "ignoring. Old userland tools?", r);
				} else {
1666
					drbd_info(device, "before-resync-source handler returned %d, "
1667
						 "dropping connection.\n", r);
1668
					conn_request_state(connection,
1669
							   NS(conn, C_DISCONNECTING), CS_HARD);
1670 1671 1672
					return;
				}
			}
1673
		}
P
Philipp Reisner 已提交
1674 1675
	}

1676
	if (current == connection->worker.task) {
1677
		/* The worker should not sleep waiting for state_mutex,
1678
		   that can take long */
1679 1680 1681 1682
		if (!mutex_trylock(device->state_mutex)) {
			set_bit(B_RS_H_DONE, &device->flags);
			device->start_resync_timer.expires = jiffies + HZ/5;
			add_timer(&device->start_resync_timer);
1683 1684 1685
			return;
		}
	} else {
1686
		mutex_lock(device->state_mutex);
1687
	}
1688
	clear_bit(B_RS_H_DONE, &device->flags);
P
Philipp Reisner 已提交
1689

1690 1691 1692 1693
	/* req_lock: serialize with drbd_send_and_submit() and others
	 * global_state_lock: for stable sync-after dependencies */
	spin_lock_irq(&device->resource->req_lock);
	write_lock(&global_state_lock);
1694
	/* Did some connection breakage or IO error race with us? */
1695 1696
	if (device->state.conn < C_CONNECTED
	|| !get_ldev_if_state(device, D_NEGOTIATING)) {
1697 1698
		write_unlock(&global_state_lock);
		spin_unlock_irq(&device->resource->req_lock);
1699
		mutex_unlock(device->state_mutex);
P
Philipp Reisner 已提交
1700 1701 1702
		return;
	}

1703
	ns = drbd_read_state(device);
P
Philipp Reisner 已提交
1704

1705
	ns.aftr_isp = !_drbd_may_sync_now(device);
P
Philipp Reisner 已提交
1706 1707 1708 1709 1710 1711 1712 1713

	ns.conn = side;

	if (side == C_SYNC_TARGET)
		ns.disk = D_INCONSISTENT;
	else /* side == C_SYNC_SOURCE */
		ns.pdsk = D_INCONSISTENT;

1714 1715
	r = __drbd_set_state(device, ns, CS_VERBOSE, NULL);
	ns = drbd_read_state(device);
P
Philipp Reisner 已提交
1716 1717 1718 1719 1720

	if (ns.conn < C_CONNECTED)
		r = SS_UNKNOWN_ERROR;

	if (r == SS_SUCCESS) {
1721
		unsigned long tw = drbd_bm_total_weight(device);
1722 1723 1724
		unsigned long now = jiffies;
		int i;

1725 1726 1727 1728 1729 1730 1731
		device->rs_failed    = 0;
		device->rs_paused    = 0;
		device->rs_same_csum = 0;
		device->rs_last_events = 0;
		device->rs_last_sect_ev = 0;
		device->rs_total     = tw;
		device->rs_start     = now;
1732
		for (i = 0; i < DRBD_SYNC_MARKS; i++) {
1733 1734
			device->rs_mark_left[i] = tw;
			device->rs_mark_time[i] = now;
1735
		}
1736
		_drbd_pause_after(device);
1737 1738 1739 1740 1741 1742 1743 1744
		/* Forget potentially stale cached per resync extent bit-counts.
		 * Open coded drbd_rs_cancel_all(device), we already have IRQs
		 * disabled, and know the disk state is ok. */
		spin_lock(&device->al_lock);
		lc_reset(device->resync);
		device->resync_locked = 0;
		device->resync_wenr = LC_FREE;
		spin_unlock(&device->al_lock);
P
Philipp Reisner 已提交
1745
	}
1746 1747
	write_unlock(&global_state_lock);
	spin_unlock_irq(&device->resource->req_lock);
1748

P
Philipp Reisner 已提交
1749
	if (r == SS_SUCCESS) {
1750
		wake_up(&device->al_wait); /* for lc_reset() above */
1751 1752
		/* reset rs_last_bcast when a resync or verify is started,
		 * to deal with potential jiffies wrap. */
1753
		device->rs_last_bcast = jiffies - HZ;
1754

1755
		drbd_info(device, "Began resync as %s (will sync %lu KB [%lu bits set]).\n",
P
Philipp Reisner 已提交
1756
		     drbd_conn_str(ns.conn),
1757 1758
		     (unsigned long) device->rs_total << (BM_BLOCK_SHIFT-10),
		     (unsigned long) device->rs_total);
1759
		if (side == C_SYNC_TARGET)
1760
			device->bm_resync_fo = 0;
1761 1762 1763 1764 1765 1766 1767 1768

		/* Since protocol 96, we must serialize drbd_gen_and_send_sync_uuid
		 * with w_send_oos, or the sync target will get confused as to
		 * how much bits to resync.  We cannot do that always, because for an
		 * empty resync and protocol < 95, we need to do it here, as we call
		 * drbd_resync_finished from here in that case.
		 * We drbd_gen_and_send_sync_uuid here for protocol < 96,
		 * and from after_state_ch otherwise. */
1769 1770
		if (side == C_SYNC_SOURCE && connection->agreed_pro_version < 96)
			drbd_gen_and_send_sync_uuid(peer_device);
P
Philipp Reisner 已提交
1771

1772
		if (connection->agreed_pro_version < 95 && device->rs_total == 0) {
1773 1774 1775 1776 1777 1778 1779 1780 1781 1782
			/* This still has a race (about when exactly the peers
			 * detect connection loss) that can lead to a full sync
			 * on next handshake. In 8.3.9 we fixed this with explicit
			 * resync-finished notifications, but the fix
			 * introduces a protocol change.  Sleeping for some
			 * time longer than the ping interval + timeout on the
			 * SyncSource, to give the SyncTarget the chance to
			 * detect connection loss, then waiting for a ping
			 * response (implicit in drbd_resync_finished) reduces
			 * the race considerably, but does not solve it. */
1783 1784 1785 1786 1787
			if (side == C_SYNC_SOURCE) {
				struct net_conf *nc;
				int timeo;

				rcu_read_lock();
1788
				nc = rcu_dereference(connection->net_conf);
1789 1790 1791 1792
				timeo = nc->ping_int * HZ + nc->ping_timeo * HZ / 9;
				rcu_read_unlock();
				schedule_timeout_interruptible(timeo);
			}
1793
			drbd_resync_finished(device);
P
Philipp Reisner 已提交
1794 1795
		}

1796 1797
		drbd_rs_controller_reset(device);
		/* ns.conn may already be != device->state.conn,
P
Philipp Reisner 已提交
1798 1799 1800 1801
		 * we may have been paused in between, or become paused until
		 * the timer triggers.
		 * No matter, that is handled in resync_timer_fn() */
		if (ns.conn == C_SYNC_TARGET)
1802
			mod_timer(&device->resync_timer, jiffies);
P
Philipp Reisner 已提交
1803

1804
		drbd_md_sync(device);
P
Philipp Reisner 已提交
1805
	}
1806 1807
	put_ldev(device);
	mutex_unlock(device->state_mutex);
P
Philipp Reisner 已提交
1808 1809
}

1810
static void update_on_disk_bitmap(struct drbd_device *device, bool resync_done)
1811 1812 1813 1814 1815 1816 1817 1818
{
	struct sib_info sib = { .sib_reason = SIB_SYNC_PROGRESS, };
	device->rs_last_bcast = jiffies;

	if (!get_ldev(device))
		return;

	drbd_bm_write_lazy(device, 0);
1819
	if (resync_done && is_sync_state(device->state.conn))
1820
		drbd_resync_finished(device);
1821

1822 1823 1824 1825 1826 1827
	drbd_bcast_event(device, &sib);
	/* update timestamp, in case it took a while to write out stuff */
	device->rs_last_bcast = jiffies;
	put_ldev(device);
}

1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878
static void drbd_ldev_destroy(struct drbd_device *device)
{
	lc_destroy(device->resync);
	device->resync = NULL;
	lc_destroy(device->act_log);
	device->act_log = NULL;
	__no_warn(local,
		drbd_free_ldev(device->ldev);
		device->ldev = NULL;);
	clear_bit(GOING_DISKLESS, &device->flags);
	wake_up(&device->misc_wait);
}

static void go_diskless(struct drbd_device *device)
{
	D_ASSERT(device, device->state.disk == D_FAILED);
	/* we cannot assert local_cnt == 0 here, as get_ldev_if_state will
	 * inc/dec it frequently. Once we are D_DISKLESS, no one will touch
	 * the protected members anymore, though, so once put_ldev reaches zero
	 * again, it will be safe to free them. */

	/* Try to write changed bitmap pages, read errors may have just
	 * set some bits outside the area covered by the activity log.
	 *
	 * If we have an IO error during the bitmap writeout,
	 * we will want a full sync next time, just in case.
	 * (Do we want a specific meta data flag for this?)
	 *
	 * If that does not make it to stable storage either,
	 * we cannot do anything about that anymore.
	 *
	 * We still need to check if both bitmap and ldev are present, we may
	 * end up here after a failed attach, before ldev was even assigned.
	 */
	if (device->bitmap && device->ldev) {
		/* An interrupted resync or similar is allowed to recounts bits
		 * while we detach.
		 * Any modifications would not be expected anymore, though.
		 */
		if (drbd_bitmap_io_from_worker(device, drbd_bm_write,
					"detach", BM_LOCKED_TEST_ALLOWED)) {
			if (test_bit(WAS_READ_ERROR, &device->flags)) {
				drbd_md_set_flag(device, MDF_FULL_SYNC);
				drbd_md_sync(device);
			}
		}
	}

	drbd_force_state(device, NS(disk, D_DISKLESS));
}

1879 1880 1881 1882 1883 1884 1885
static int do_md_sync(struct drbd_device *device)
{
	drbd_warn(device, "md_sync_timer expired! Worker calls drbd_md_sync().\n");
	drbd_md_sync(device);
	return 0;
}

1886 1887 1888
#define WORK_PENDING(work_bit, todo)	(todo & (1UL << work_bit))
static void do_device_work(struct drbd_device *device, const unsigned long todo)
{
1889 1890
	if (WORK_PENDING(MD_SYNC, todo))
		do_md_sync(device);
1891 1892 1893 1894 1895 1896 1897
	if (WORK_PENDING(RS_DONE, todo) ||
	    WORK_PENDING(RS_PROGRESS, todo))
		update_on_disk_bitmap(device, WORK_PENDING(RS_DONE, todo));
	if (WORK_PENDING(GO_DISKLESS, todo))
		go_diskless(device);
	if (WORK_PENDING(DESTROY_DISK, todo))
		drbd_ldev_destroy(device);
1898 1899
	if (WORK_PENDING(RS_START, todo))
		do_start_resync(device);
1900 1901 1902 1903 1904
}

#define DRBD_DEVICE_WORK_MASK	\
	((1UL << GO_DISKLESS)	\
	|(1UL << DESTROY_DISK)	\
1905 1906
	|(1UL << MD_SYNC)	\
	|(1UL << RS_START)	\
1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921
	|(1UL << RS_PROGRESS)	\
	|(1UL << RS_DONE)	\
	)

static unsigned long get_work_bits(unsigned long *flags)
{
	unsigned long old, new;
	do {
		old = *flags;
		new = old & ~DRBD_DEVICE_WORK_MASK;
	} while (cmpxchg(flags, old, new) != old);
	return old & DRBD_DEVICE_WORK_MASK;
}

static void do_unqueued_work(struct drbd_connection *connection)
1922 1923 1924 1925 1926 1927 1928
{
	struct drbd_peer_device *peer_device;
	int vnr;

	rcu_read_lock();
	idr_for_each_entry(&connection->peer_devices, peer_device, vnr) {
		struct drbd_device *device = peer_device->device;
1929 1930
		unsigned long todo = get_work_bits(&device->flags);
		if (!todo)
1931
			continue;
1932

1933 1934
		kref_get(&device->kref);
		rcu_read_unlock();
1935
		do_device_work(device, todo);
1936 1937 1938 1939 1940 1941
		kref_put(&device->kref, drbd_destroy_device);
		rcu_read_lock();
	}
	rcu_read_unlock();
}

1942
static bool dequeue_work_batch(struct drbd_work_queue *queue, struct list_head *work_list)
1943 1944 1945 1946 1947 1948 1949
{
	spin_lock_irq(&queue->q_lock);
	list_splice_init(&queue->q, work_list);
	spin_unlock_irq(&queue->q_lock);
	return !list_empty(work_list);
}

1950
static bool dequeue_work_item(struct drbd_work_queue *queue, struct list_head *work_list)
1951 1952 1953 1954 1955 1956 1957 1958
{
	spin_lock_irq(&queue->q_lock);
	if (!list_empty(&queue->q))
		list_move(queue->q.next, work_list);
	spin_unlock_irq(&queue->q_lock);
	return !list_empty(work_list);
}

1959
static void wait_for_work(struct drbd_connection *connection, struct list_head *work_list)
1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988
{
	DEFINE_WAIT(wait);
	struct net_conf *nc;
	int uncork, cork;

	dequeue_work_item(&connection->sender_work, work_list);
	if (!list_empty(work_list))
		return;

	/* Still nothing to do?
	 * Maybe we still need to close the current epoch,
	 * even if no new requests are queued yet.
	 *
	 * Also, poke TCP, just in case.
	 * Then wait for new work (or signal). */
	rcu_read_lock();
	nc = rcu_dereference(connection->net_conf);
	uncork = nc ? nc->tcp_cork : 0;
	rcu_read_unlock();
	if (uncork) {
		mutex_lock(&connection->data.mutex);
		if (connection->data.socket)
			drbd_tcp_uncork(connection->data.socket);
		mutex_unlock(&connection->data.mutex);
	}

	for (;;) {
		int send_barrier;
		prepare_to_wait(&connection->sender_work.q_wait, &wait, TASK_INTERRUPTIBLE);
1989
		spin_lock_irq(&connection->resource->req_lock);
1990
		spin_lock(&connection->sender_work.q_lock);	/* FIXME get rid of this one? */
1991 1992 1993
		/* dequeue single item only,
		 * we still use drbd_queue_work_front() in some places */
		if (!list_empty(&connection->sender_work.q))
1994
			list_splice_tail_init(&connection->sender_work.q, work_list);
1995 1996
		spin_unlock(&connection->sender_work.q_lock);	/* FIXME get rid of this one? */
		if (!list_empty(work_list) || signal_pending(current)) {
1997
			spin_unlock_irq(&connection->resource->req_lock);
1998 1999
			break;
		}
2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010

		/* We found nothing new to do, no to-be-communicated request,
		 * no other work item.  We may still need to close the last
		 * epoch.  Next incoming request epoch will be connection ->
		 * current transfer log epoch number.  If that is different
		 * from the epoch of the last request we communicated, it is
		 * safe to send the epoch separating barrier now.
		 */
		send_barrier =
			atomic_read(&connection->current_tle_nr) !=
			connection->send.current_epoch_nr;
2011
		spin_unlock_irq(&connection->resource->req_lock);
2012 2013 2014 2015

		if (send_barrier)
			maybe_send_barrier(connection,
					connection->send.current_epoch_nr + 1);
2016

2017
		if (test_bit(DEVICE_WORK_PENDING, &connection->flags))
2018 2019
			break;

2020 2021 2022
		/* drbd_send() may have called flush_signals() */
		if (get_t_state(&connection->worker) != RUNNING)
			break;
2023

2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045
		schedule();
		/* may be woken up for other things but new work, too,
		 * e.g. if the current epoch got closed.
		 * In which case we send the barrier above. */
	}
	finish_wait(&connection->sender_work.q_wait, &wait);

	/* someone may have changed the config while we have been waiting above. */
	rcu_read_lock();
	nc = rcu_dereference(connection->net_conf);
	cork = nc ? nc->tcp_cork : 0;
	rcu_read_unlock();
	mutex_lock(&connection->data.mutex);
	if (connection->data.socket) {
		if (cork)
			drbd_tcp_cork(connection->data.socket);
		else if (!uncork)
			drbd_tcp_uncork(connection->data.socket);
	}
	mutex_unlock(&connection->data.mutex);
}

P
Philipp Reisner 已提交
2046 2047
int drbd_worker(struct drbd_thread *thi)
{
2048
	struct drbd_connection *connection = thi->connection;
2049
	struct drbd_work *w = NULL;
2050
	struct drbd_peer_device *peer_device;
P
Philipp Reisner 已提交
2051
	LIST_HEAD(work_list);
2052
	int vnr;
P
Philipp Reisner 已提交
2053

2054
	while (get_t_state(thi) == RUNNING) {
2055
		drbd_thread_current_set_cpu(thi);
P
Philipp Reisner 已提交
2056

2057
		if (list_empty(&work_list))
2058
			wait_for_work(connection, &work_list);
P
Philipp Reisner 已提交
2059

2060 2061
		if (test_and_clear_bit(DEVICE_WORK_PENDING, &connection->flags))
			do_unqueued_work(connection);
2062

2063
		if (signal_pending(current)) {
P
Philipp Reisner 已提交
2064
			flush_signals(current);
2065
			if (get_t_state(thi) == RUNNING) {
2066
				drbd_warn(connection, "Worker got an unexpected signal\n");
P
Philipp Reisner 已提交
2067
				continue;
2068
			}
P
Philipp Reisner 已提交
2069 2070 2071
			break;
		}

2072
		if (get_t_state(thi) != RUNNING)
P
Philipp Reisner 已提交
2073 2074
			break;

2075
		while (!list_empty(&work_list)) {
2076 2077 2078
			w = list_first_entry(&work_list, struct drbd_work, list);
			list_del_init(&w->list);
			if (w->cb(w, connection->cstate < C_WF_REPORT_PARAMS) == 0)
2079
				continue;
2080 2081
			if (connection->cstate >= C_WF_REPORT_PARAMS)
				conn_request_state(connection, NS(conn, C_NETWORK_FAILURE), CS_HARD);
P
Philipp Reisner 已提交
2082 2083 2084
		}
	}

2085
	do {
2086 2087
		if (test_and_clear_bit(DEVICE_WORK_PENDING, &connection->flags))
			do_unqueued_work(connection);
P
Philipp Reisner 已提交
2088
		while (!list_empty(&work_list)) {
2089 2090 2091
			w = list_first_entry(&work_list, struct drbd_work, list);
			list_del_init(&w->list);
			w->cb(w, 1);
P
Philipp Reisner 已提交
2092
		}
2093
		dequeue_work_batch(&connection->sender_work, &work_list);
2094
	} while (!list_empty(&work_list) || test_bit(DEVICE_WORK_PENDING, &connection->flags));
P
Philipp Reisner 已提交
2095

P
Philipp Reisner 已提交
2096
	rcu_read_lock();
2097 2098
	idr_for_each_entry(&connection->peer_devices, peer_device, vnr) {
		struct drbd_device *device = peer_device->device;
2099
		D_ASSERT(device, device->state.disk == D_DISKLESS && device->state.conn == C_STANDALONE);
2100
		kref_get(&device->kref);
P
Philipp Reisner 已提交
2101
		rcu_read_unlock();
2102
		drbd_device_cleanup(device);
2103
		kref_put(&device->kref, drbd_destroy_device);
P
Philipp Reisner 已提交
2104
		rcu_read_lock();
2105
	}
P
Philipp Reisner 已提交
2106
	rcu_read_unlock();
P
Philipp Reisner 已提交
2107 2108 2109

	return 0;
}