drbd_worker.c 55.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 29 30 31 32 33 34 35 36 37 38
/*
   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.

 */

#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
static int w_make_ov_request(struct drbd_work *w, int cancel);
P
Philipp Reisner 已提交
43 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
	struct drbd_device *device = peer_req->w.device;
P
Philipp Reisner 已提交
104

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

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

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

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

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

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

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

151
	if (test_bit(__EE_WAS_ERROR, &peer_req->flags))
152
		__drbd_chk_io_error(device, DRBD_WRITE_ERROR);
153
	spin_unlock_irqrestore(&first_peer_device(device)->connection->req_lock, flags);
P
Philipp Reisner 已提交
154

155
	if (block_id == ID_SYNCER)
156
		drbd_rs_complete_io(device, i.sector);
P
Philipp Reisner 已提交
157 158

	if (do_wake)
159
		wake_up(&device->ee_wait);
P
Philipp Reisner 已提交
160 161

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

164
	wake_asender(first_peer_device(device)->connection);
165
	put_ldev(device);
166
}
P
Philipp Reisner 已提交
167

168 169 170
/* writes on behalf of the partner, or resync writes,
 * "submitted" by the receiver.
 */
171
void drbd_peer_request_endio(struct bio *bio, int error)
172
{
173
	struct drbd_peer_request *peer_req = bio->bi_private;
174
	struct drbd_device *device = peer_req->w.device;
175 176 177
	int uptodate = bio_flagged(bio, BIO_UPTODATE);
	int is_write = bio_data_dir(bio) == WRITE;

178
	if (error && __ratelimit(&drbd_ratelimit_state))
179 180
		dev_warn(DEV, "%s: error=%d s=%llus\n",
				is_write ? "write" : "read", error,
181
				(unsigned long long)peer_req->i.sector);
182
	if (!error && !uptodate) {
183 184 185
		if (__ratelimit(&drbd_ratelimit_state))
			dev_warn(DEV, "%s: setting error to -EIO s=%llus\n",
					is_write ? "write" : "read",
186
					(unsigned long long)peer_req->i.sector);
187 188 189 190 191 192 193
		/* 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)
194
		set_bit(__EE_WAS_ERROR, &peer_req->flags);
195 196

	bio_put(bio); /* no need for the bio anymore */
197
	if (atomic_dec_and_test(&peer_req->pending_bios)) {
198
		if (is_write)
199
			drbd_endio_write_sec_final(peer_req);
200
		else
201
			drbd_endio_read_sec_final(peer_req);
202
	}
P
Philipp Reisner 已提交
203 204 205 206
}

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

	if (!error && !uptodate) {
		dev_warn(DEV, "p %s: setting error to -EIO\n",
			 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;
	}

225 226 227 228 229 230 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))
			dev_emerg(DEV, "delayed completion of aborted local request; disk-timeout may be too aggressive\n");

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

P
Philipp Reisner 已提交
262 263 264
	/* to avoid recursion in __req_mod */
	if (unlikely(error)) {
		what = (bio_data_dir(bio) == WRITE)
265
			? WRITE_COMPLETED_WITH_ERROR
266
			: (bio_rw(bio) == READ)
267 268
			  ? READ_COMPLETED_WITH_ERROR
			  : READ_AHEAD_COMPLETED_WITH_ERROR;
P
Philipp Reisner 已提交
269
	} else
270
		what = COMPLETED_OK;
P
Philipp Reisner 已提交
271 272 273 274

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

275
	/* not req_mod(), we need irqsave here! */
276
	spin_lock_irqsave(&first_peer_device(device)->connection->req_lock, flags);
277
	__req_mod(req, what, &m);
278
	spin_unlock_irqrestore(&first_peer_device(device)->connection->req_lock, flags);
279
	put_ldev(device);
280 281

	if (m.bio)
282
		complete_master_bio(device, &m);
P
Philipp Reisner 已提交
283 284
}

285
void drbd_csum_ee(struct drbd_device *device, struct crypto_hash *tfm,
286
		  struct drbd_peer_request *peer_req, void *digest)
287 288 289
{
	struct hash_desc desc;
	struct scatterlist sg;
290
	struct page *page = peer_req->pages;
291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306
	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 */
307
	len = peer_req->i.size & (PAGE_SIZE - 1);
308 309 310 311 312
	sg_set_page(&sg, page, len ?: PAGE_SIZE, 0);
	crypto_hash_update(&desc, &sg, sg.length);
	crypto_hash_final(&desc, digest);
}

313
void drbd_csum_bio(struct drbd_device *device, struct crypto_hash *tfm, struct bio *bio, void *digest)
P
Philipp Reisner 已提交
314 315 316
{
	struct hash_desc desc;
	struct scatterlist sg;
317 318
	struct bio_vec bvec;
	struct bvec_iter iter;
P
Philipp Reisner 已提交
319 320 321 322 323 324 325

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

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

326 327
	bio_for_each_segment(bvec, bio, iter) {
		sg_set_page(&sg, bvec.bv_page, bvec.bv_len, bvec.bv_offset);
P
Philipp Reisner 已提交
328 329 330 331 332
		crypto_hash_update(&desc, &sg, sg.length);
	}
	crypto_hash_final(&desc, digest);
}

333
/* MAYBE merge common code with w_e_end_ov_req */
334
static int w_e_send_csum(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
335
{
336
	struct drbd_peer_request *peer_req = container_of(w, struct drbd_peer_request, w);
337
	struct drbd_device *device = w->device;
P
Philipp Reisner 已提交
338 339
	int digest_size;
	void *digest;
340
	int err = 0;
P
Philipp Reisner 已提交
341

342 343
	if (unlikely(cancel))
		goto out;
P
Philipp Reisner 已提交
344

345
	if (unlikely((peer_req->flags & EE_WAS_ERROR) != 0))
346
		goto out;
P
Philipp Reisner 已提交
347

348
	digest_size = crypto_hash_digestsize(first_peer_device(device)->connection->csums_tfm);
349 350
	digest = kmalloc(digest_size, GFP_NOIO);
	if (digest) {
351 352
		sector_t sector = peer_req->i.sector;
		unsigned int size = peer_req->i.size;
353
		drbd_csum_ee(device, first_peer_device(device)->connection->csums_tfm, peer_req, digest);
354
		/* Free peer_req and pages before send.
355 356 357
		 * 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
358
		 * drbd_alloc_pages due to pp_in_use > max_buffers. */
359
		drbd_free_peer_req(device, peer_req);
360
		peer_req = NULL;
361 362
		inc_rs_pending(device);
		err = drbd_send_drequest_csum(device, sector, size,
363 364
					      digest, digest_size,
					      P_CSUM_RS_REQUEST);
365 366 367
		kfree(digest);
	} else {
		dev_err(DEV, "kmalloc() of digest failed.\n");
368
		err = -ENOMEM;
369
	}
P
Philipp Reisner 已提交
370

371
out:
372
	if (peer_req)
373
		drbd_free_peer_req(device, peer_req);
P
Philipp Reisner 已提交
374

375
	if (unlikely(err))
P
Philipp Reisner 已提交
376
		dev_err(DEV, "drbd_send_drequest(..., csum) failed\n");
377
	return err;
P
Philipp Reisner 已提交
378 379 380 381
}

#define GFP_TRY	(__GFP_HIGHMEM | __GFP_NOWARN)

382
static int read_for_csum(struct drbd_device *device, sector_t sector, int size)
P
Philipp Reisner 已提交
383
{
384
	struct drbd_peer_request *peer_req;
P
Philipp Reisner 已提交
385

386
	if (!get_ldev(device))
387
		return -EIO;
P
Philipp Reisner 已提交
388

389
	if (drbd_rs_should_slow_down(device, sector))
390 391
		goto defer;

P
Philipp Reisner 已提交
392 393
	/* GFP_TRY, because if there is no memory available right now, this may
	 * be rescheduled for later. It is "only" background resync, after all. */
394
	peer_req = drbd_alloc_peer_req(device, ID_SYNCER /* unused */, sector,
395
				       size, GFP_TRY);
396
	if (!peer_req)
397
		goto defer;
P
Philipp Reisner 已提交
398

399
	peer_req->w.cb = w_e_send_csum;
400
	spin_lock_irq(&first_peer_device(device)->connection->req_lock);
401
	list_add(&peer_req->w.list, &device->read_ee);
402
	spin_unlock_irq(&first_peer_device(device)->connection->req_lock);
P
Philipp Reisner 已提交
403

404 405
	atomic_add(size >> 9, &device->rs_sect_ev);
	if (drbd_submit_peer_request(device, peer_req, READ, DRBD_FAULT_RS_RD) == 0)
406
		return 0;
P
Philipp Reisner 已提交
407

408 409 410 411
	/* 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. */
412
	spin_lock_irq(&first_peer_device(device)->connection->req_lock);
413
	list_del(&peer_req->w.list);
414
	spin_unlock_irq(&first_peer_device(device)->connection->req_lock);
415

416
	drbd_free_peer_req(device, peer_req);
417
defer:
418
	put_ldev(device);
419
	return -EAGAIN;
P
Philipp Reisner 已提交
420 421
}

422
int w_resync_timer(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
423
{
424 425
	struct drbd_device *device = w->device;
	switch (device->state.conn) {
426
	case C_VERIFY_S:
427
		w_make_ov_request(w, cancel);
428 429
		break;
	case C_SYNC_TARGET:
430
		w_make_resync_request(w, cancel);
431
		break;
P
Philipp Reisner 已提交
432 433
	}

434
	return 0;
435 436 437 438
}

void resync_timer_fn(unsigned long data)
{
439
	struct drbd_device *device = (struct drbd_device *) data;
440

441
	if (list_empty(&device->resync_work.list))
442
		drbd_queue_work(&first_peer_device(device)->connection->sender_work, &device->resync_work);
P
Philipp Reisner 已提交
443 444
}

445 446 447 448 449
static void fifo_set(struct fifo_buffer *fb, int value)
{
	int i;

	for (i = 0; i < fb->size; i++)
450
		fb->values[i] = value;
451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473
}

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;
}

474 475 476 477
struct fifo_buffer *fifo_alloc(int fifo_size)
{
	struct fifo_buffer *fb;

478
	fb = kzalloc(sizeof(struct fifo_buffer) + sizeof(int) * fifo_size, GFP_NOIO);
479 480 481 482 483 484 485 486 487 488
	if (!fb)
		return NULL;

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

	return fb;
}

489
static int drbd_rs_controller(struct drbd_device *device)
490
{
P
Philipp Reisner 已提交
491
	struct disk_conf *dc;
492 493 494 495 496 497 498 499
	unsigned int sect_in;  /* Number of sectors that came in since the last turn */
	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 已提交
500
	struct fifo_buffer *plan;
501

502 503
	sect_in = atomic_xchg(&device->rs_sect_in, 0); /* Number of sectors that came in */
	device->rs_in_flight -= sect_in;
504

505 506
	dc = rcu_dereference(device->ldev->disk_conf);
	plan = rcu_dereference(device->rs_plan_s);
507

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

510
	if (device->rs_in_flight + sect_in == 0) { /* At start of resync */
P
Philipp Reisner 已提交
511
		want = ((dc->resync_rate * 2 * SLEEP_TIME) / HZ) * steps;
512
	} else { /* normal path */
P
Philipp Reisner 已提交
513 514
		want = dc->c_fill_target ? dc->c_fill_target :
			sect_in * dc->c_delay_target * HZ / (SLEEP_TIME * 10);
515 516
	}

517
	correction = want - device->rs_in_flight - plan->total;
518 519 520

	/* Plan ahead */
	cps = correction / steps;
P
Philipp Reisner 已提交
521 522
	fifo_add_val(plan, cps);
	plan->total += cps * steps;
523 524

	/* What we do in this step */
P
Philipp Reisner 已提交
525 526
	curr_corr = fifo_push(plan, 0);
	plan->total -= curr_corr;
527 528 529 530 531

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

P
Philipp Reisner 已提交
532
	max_sect = (dc->c_max_rate * 2 * SLEEP_TIME) / HZ;
533 534 535 536 537
	if (req_sect > max_sect)
		req_sect = max_sect;

	/*
	dev_warn(DEV, "si=%u if=%d wa=%u co=%d st=%d cps=%d pl=%d cc=%d rs=%d\n",
538 539
		 sect_in, device->rs_in_flight, want, correction,
		 steps, cps, device->rs_planed, curr_corr, req_sect);
540 541 542 543 544
	*/

	return req_sect;
}

545
static int drbd_rs_number_requests(struct drbd_device *device)
546 547
{
	int number;
P
Philipp Reisner 已提交
548 549

	rcu_read_lock();
550 551 552
	if (rcu_dereference(device->rs_plan_s)->size) {
		number = drbd_rs_controller(device) >> (BM_BLOCK_SHIFT - 9);
		device->c_sync_rate = number * HZ * (BM_BLOCK_SIZE / 1024) / SLEEP_TIME;
553
	} else {
554 555
		device->c_sync_rate = rcu_dereference(device->ldev->disk_conf)->resync_rate;
		number = SLEEP_TIME * device->c_sync_rate  / ((BM_BLOCK_SIZE / 1024) * HZ);
556
	}
P
Philipp Reisner 已提交
557
	rcu_read_unlock();
558 559 560 561 562 563

	/* ignore the amount of pending requests, the resync controller should
	 * throttle down to incoming reply rate soon enough anyways. */
	return number;
}

564
int w_make_resync_request(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
565
{
566
	struct drbd_device *device = w->device;
P
Philipp Reisner 已提交
567 568
	unsigned long bit;
	sector_t sector;
569
	const sector_t capacity = drbd_get_capacity(device->this_bdev);
570
	int max_bio_size;
571
	int number, rollback_i, size;
P
Philipp Reisner 已提交
572
	int align, queued, sndbuf;
573
	int i = 0;
P
Philipp Reisner 已提交
574 575

	if (unlikely(cancel))
576
		return 0;
P
Philipp Reisner 已提交
577

578
	if (device->rs_total == 0) {
579
		/* empty resync? */
580
		drbd_resync_finished(device);
581
		return 0;
582 583
	}

584 585 586
	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 已提交
587 588 589
		   to continue resync with a broken disk makes no sense at
		   all */
		dev_err(DEV, "Disk broke down during resync!\n");
590
		return 0;
P
Philipp Reisner 已提交
591 592
	}

593 594
	max_bio_size = queue_max_hw_sectors(device->rq_queue) << 9;
	number = drbd_rs_number_requests(device);
595
	if (number == 0)
596
		goto requeue;
P
Philipp Reisner 已提交
597 598 599

	for (i = 0; i < number; i++) {
		/* Stop generating RS requests, when half of the send buffer is filled */
600 601 602 603
		mutex_lock(&first_peer_device(device)->connection->data.mutex);
		if (first_peer_device(device)->connection->data.socket) {
			queued = first_peer_device(device)->connection->data.socket->sk->sk_wmem_queued;
			sndbuf = first_peer_device(device)->connection->data.socket->sk->sk_sndbuf;
P
Philipp Reisner 已提交
604 605 606 607
		} else {
			queued = 1;
			sndbuf = 0;
		}
608
		mutex_unlock(&first_peer_device(device)->connection->data.mutex);
P
Philipp Reisner 已提交
609 610 611 612 613
		if (queued > sndbuf / 2)
			goto requeue;

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

616
		if (bit == DRBD_END_OF_BITMAP) {
617 618
			device->bm_resync_fo = drbd_bm_bits(device);
			put_ldev(device);
619
			return 0;
P
Philipp Reisner 已提交
620 621 622 623
		}

		sector = BM_BIT_TO_SECT(bit);

624 625 626
		if (drbd_rs_should_slow_down(device, sector) ||
		    drbd_try_rs_begin_io(device, sector)) {
			device->bm_resync_fo = bit;
P
Philipp Reisner 已提交
627 628
			goto requeue;
		}
629
		device->bm_resync_fo = bit + 1;
P
Philipp Reisner 已提交
630

631 632
		if (unlikely(drbd_bm_test_bit(device, bit) == 0)) {
			drbd_rs_complete_io(device, sector);
P
Philipp Reisner 已提交
633 634 635
			goto next_sector;
		}

636
#if DRBD_MAX_BIO_SIZE > BM_BLOCK_SIZE
P
Philipp Reisner 已提交
637 638 639 640 641 642 643
		/* 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;
644
		rollback_i = i;
P
Philipp Reisner 已提交
645
		for (;;) {
646
			if (size + BM_BLOCK_SIZE > max_bio_size)
P
Philipp Reisner 已提交
647 648 649 650 651 652 653 654 655 656 657 658 659 660
				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 */
661
			if (drbd_bm_test_bit(device, bit+1) != 1)
P
Philipp Reisner 已提交
662 663 664 665 666 667 668 669 670 671
				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)
672
			device->bm_resync_fo = bit + 1;
P
Philipp Reisner 已提交
673 674 675 676 677
#endif

		/* adjust very last sectors, in case we are oddly sized */
		if (sector + (size>>9) > capacity)
			size = (capacity-sector)<<9;
678 679
		if (first_peer_device(device)->connection->agreed_pro_version >= 89 &&
		    first_peer_device(device)->connection->csums_tfm) {
680
			switch (read_for_csum(device, sector, size)) {
681
			case -EIO: /* Disk failure */
682
				put_ldev(device);
683
				return -EIO;
684
			case -EAGAIN: /* allocation failed, or ldev busy */
685 686
				drbd_rs_complete_io(device, sector);
				device->bm_resync_fo = BM_SECT_TO_BIT(sector);
687
				i = rollback_i;
P
Philipp Reisner 已提交
688
				goto requeue;
689 690 691 692 693
			case 0:
				/* everything ok */
				break;
			default:
				BUG();
P
Philipp Reisner 已提交
694 695
			}
		} else {
696 697
			int err;

698 699
			inc_rs_pending(device);
			err = drbd_send_drequest(device, P_RS_DATA_REQUEST,
700 701
						 sector, size, ID_SYNCER);
			if (err) {
P
Philipp Reisner 已提交
702
				dev_err(DEV, "drbd_send_drequest() failed, aborting...\n");
703 704
				dec_rs_pending(device);
				put_ldev(device);
705
				return err;
P
Philipp Reisner 已提交
706 707 708 709
			}
		}
	}

710
	if (device->bm_resync_fo >= drbd_bm_bits(device)) {
P
Philipp Reisner 已提交
711 712 713 714 715 716
		/* 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" ...
		 */
717
		put_ldev(device);
718
		return 0;
P
Philipp Reisner 已提交
719 720 721
	}

 requeue:
722 723 724
	device->rs_in_flight += (i << (BM_BLOCK_SHIFT - 9));
	mod_timer(&device->resync_timer, jiffies + SLEEP_TIME);
	put_ldev(device);
725
	return 0;
P
Philipp Reisner 已提交
726 727
}

728
static int w_make_ov_request(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
729
{
730
	struct drbd_device *device = w->device;
P
Philipp Reisner 已提交
731 732
	int number, i, size;
	sector_t sector;
733
	const sector_t capacity = drbd_get_capacity(device->this_bdev);
734
	bool stop_sector_reached = false;
P
Philipp Reisner 已提交
735 736 737 738

	if (unlikely(cancel))
		return 1;

739
	number = drbd_rs_number_requests(device);
P
Philipp Reisner 已提交
740

741
	sector = device->ov_position;
P
Philipp Reisner 已提交
742
	for (i = 0; i < number; i++) {
743
		if (sector >= capacity)
P
Philipp Reisner 已提交
744
			return 1;
745 746 747 748 749

		/* 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
750 751
			&& verify_can_do_stop_sector(device)
			&& sector >= device->ov_stop_sector;
752 753
		if (stop_sector_reached)
			break;
P
Philipp Reisner 已提交
754 755 756

		size = BM_BLOCK_SIZE;

757 758 759
		if (drbd_rs_should_slow_down(device, sector) ||
		    drbd_try_rs_begin_io(device, sector)) {
			device->ov_position = sector;
P
Philipp Reisner 已提交
760 761 762 763 764 765
			goto requeue;
		}

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

766 767 768
		inc_rs_pending(device);
		if (drbd_send_ov_request(device, sector, size)) {
			dec_rs_pending(device);
P
Philipp Reisner 已提交
769 770 771 772
			return 0;
		}
		sector += BM_SECT_PER_BIT;
	}
773
	device->ov_position = sector;
P
Philipp Reisner 已提交
774 775

 requeue:
776
	device->rs_in_flight += (i << (BM_BLOCK_SHIFT - 9));
777
	if (i == 0 || !stop_sector_reached)
778
		mod_timer(&device->resync_timer, jiffies + SLEEP_TIME);
P
Philipp Reisner 已提交
779 780 781
	return 1;
}

782
int w_ov_finished(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
783
{
784
	struct drbd_device *device = w->device;
P
Philipp Reisner 已提交
785
	kfree(w);
786 787
	ov_out_of_sync_print(device);
	drbd_resync_finished(device);
P
Philipp Reisner 已提交
788

789
	return 0;
P
Philipp Reisner 已提交
790 791
}

792
static int w_resync_finished(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
793
{
794
	struct drbd_device *device = w->device;
P
Philipp Reisner 已提交
795 796
	kfree(w);

797
	drbd_resync_finished(device);
P
Philipp Reisner 已提交
798

799
	return 0;
P
Philipp Reisner 已提交
800 801
}

802
static void ping_peer(struct drbd_device *device)
803
{
804
	struct drbd_connection *connection = first_peer_device(device)->connection;
805

806 807 808 809
	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);
810 811
}

812
int drbd_resync_finished(struct drbd_device *device)
P
Philipp Reisner 已提交
813 814 815 816 817 818
{
	unsigned long db, dt, dbdt;
	unsigned long n_oos;
	union drbd_state os, ns;
	struct drbd_work *w;
	char *khelper_cmd = NULL;
819
	int verify_done = 0;
P
Philipp Reisner 已提交
820 821 822 823

	/* 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. */
824
	if (drbd_rs_del_all(device)) {
P
Philipp Reisner 已提交
825 826 827 828 829
		/* 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. */

830
		schedule_timeout_interruptible(HZ / 10);
P
Philipp Reisner 已提交
831 832 833
		w = kmalloc(sizeof(struct drbd_work), GFP_ATOMIC);
		if (w) {
			w->cb = w_resync_finished;
834
			w->device = device;
835
			drbd_queue_work(&first_peer_device(device)->connection->sender_work, w);
P
Philipp Reisner 已提交
836 837 838 839 840
			return 1;
		}
		dev_err(DEV, "Warn failed to drbd_rs_del_all() and to kmalloc(w).\n");
	}

841
	dt = (jiffies - device->rs_start - device->rs_paused) / HZ;
P
Philipp Reisner 已提交
842 843
	if (dt <= 0)
		dt = 1;
844
	
845
	db = device->rs_total;
846
	/* adjust for verify start and stop sectors, respective reached position */
847 848
	if (device->state.conn == C_VERIFY_S || device->state.conn == C_VERIFY_T)
		db -= device->ov_left;
849

P
Philipp Reisner 已提交
850
	dbdt = Bit2KB(db/dt);
851
	device->rs_paused /= HZ;
P
Philipp Reisner 已提交
852

853
	if (!get_ldev(device))
P
Philipp Reisner 已提交
854 855
		goto out;

856
	ping_peer(device);
857

858
	spin_lock_irq(&first_peer_device(device)->connection->req_lock);
859
	os = drbd_read_state(device);
P
Philipp Reisner 已提交
860

861 862
	verify_done = (os.conn == C_VERIFY_S || os.conn == C_VERIFY_T);

P
Philipp Reisner 已提交
863 864 865 866 867 868 869 870 871
	/* 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;

	dev_info(DEV, "%s done (total %lu sec; paused %lu sec; %lu K/sec)\n",
872
	     verify_done ? "Online verify" : "Resync",
873
	     dt + device->rs_paused, device->rs_paused, dbdt);
P
Philipp Reisner 已提交
874

875
	n_oos = drbd_bm_total_weight(device);
P
Philipp Reisner 已提交
876 877 878 879 880 881 882 883

	if (os.conn == C_VERIFY_S || os.conn == C_VERIFY_T) {
		if (n_oos) {
			dev_alert(DEV, "Online verify found %lu %dk block out of sync!\n",
			      n_oos, Bit2KB(1));
			khelper_cmd = "out-of-sync";
		}
	} else {
884
		D_ASSERT((n_oos - device->rs_failed) == 0);
P
Philipp Reisner 已提交
885 886 887 888

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

889
		if (first_peer_device(device)->connection->csums_tfm && device->rs_total) {
890 891
			const unsigned long s = device->rs_same_csum;
			const unsigned long t = device->rs_total;
P
Philipp Reisner 已提交
892 893 894
			const int ratio =
				(t == 0)     ? 0 :
			(t < 100000) ? ((s*100)/t) : (s/(t/100));
B
Bart Van Assche 已提交
895
			dev_info(DEV, "%u %% had equal checksums, eliminated: %luK; "
P
Philipp Reisner 已提交
896 897
			     "transferred %luK total %luK\n",
			     ratio,
898 899 900
			     Bit2KB(device->rs_same_csum),
			     Bit2KB(device->rs_total - device->rs_same_csum),
			     Bit2KB(device->rs_total));
P
Philipp Reisner 已提交
901 902 903
		}
	}

904 905
	if (device->rs_failed) {
		dev_info(DEV, "            %lu failed blocks\n", device->rs_failed);
P
Philipp Reisner 已提交
906 907 908 909 910 911 912 913 914 915 916 917 918

		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) {
919
			if (device->p_uuid) {
P
Philipp Reisner 已提交
920 921
				int i;
				for (i = UI_BITMAP ; i <= UI_HISTORY_END ; i++)
922 923 924
					_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 已提交
925
			} else {
926
				dev_err(DEV, "device->p_uuid is NULL! BUG\n");
P
Philipp Reisner 已提交
927 928 929
			}
		}

930 931 932
		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. */
933 934 935
			drbd_uuid_set_bm(device, 0UL);
			drbd_print_uuids(device, "updated UUIDs");
			if (device->p_uuid) {
936 937 938 939
				/* 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++)
940
					device->p_uuid[i] = device->ldev->md.uuid[i];
941
			}
P
Philipp Reisner 已提交
942 943 944
		}
	}

945
	_drbd_set_state(device, ns, CS_VERBOSE, NULL);
P
Philipp Reisner 已提交
946
out_unlock:
947
	spin_unlock_irq(&first_peer_device(device)->connection->req_lock);
948
	put_ldev(device);
P
Philipp Reisner 已提交
949
out:
950 951 952
	device->rs_total  = 0;
	device->rs_failed = 0;
	device->rs_paused = 0;
953 954

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

958
	drbd_md_sync(device);
959

P
Philipp Reisner 已提交
960
	if (khelper_cmd)
961
		drbd_khelper(device, khelper_cmd);
P
Philipp Reisner 已提交
962 963 964 965 966

	return 1;
}

/* helper */
967
static void move_to_net_ee_or_free(struct drbd_device *device, struct drbd_peer_request *peer_req)
P
Philipp Reisner 已提交
968
{
969
	if (drbd_peer_req_has_active_page(peer_req)) {
P
Philipp Reisner 已提交
970
		/* This might happen if sendpage() has not finished */
971
		int i = (peer_req->i.size + PAGE_SIZE -1) >> PAGE_SHIFT;
972 973
		atomic_add(i, &device->pp_in_use_by_net);
		atomic_sub(i, &device->pp_in_use);
974
		spin_lock_irq(&first_peer_device(device)->connection->req_lock);
975
		list_add_tail(&peer_req->w.list, &device->net_ee);
976
		spin_unlock_irq(&first_peer_device(device)->connection->req_lock);
977
		wake_up(&drbd_pp_wait);
P
Philipp Reisner 已提交
978
	} else
979
		drbd_free_peer_req(device, peer_req);
P
Philipp Reisner 已提交
980 981 982 983
}

/**
 * w_e_end_data_req() - Worker callback, to send a P_DATA_REPLY packet in response to a P_DATA_REQUEST
984
 * @device:	DRBD device.
P
Philipp Reisner 已提交
985 986 987
 * @w:		work object.
 * @cancel:	The connection will be closed anyways
 */
988
int w_e_end_data_req(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
989
{
990
	struct drbd_peer_request *peer_req = container_of(w, struct drbd_peer_request, w);
991
	struct drbd_device *device = w->device;
992
	int err;
P
Philipp Reisner 已提交
993 994

	if (unlikely(cancel)) {
995 996
		drbd_free_peer_req(device, peer_req);
		dec_unacked(device);
997
		return 0;
P
Philipp Reisner 已提交
998 999
	}

1000
	if (likely((peer_req->flags & EE_WAS_ERROR) == 0)) {
1001
		err = drbd_send_block(device, P_DATA_REPLY, peer_req);
P
Philipp Reisner 已提交
1002 1003 1004
	} else {
		if (__ratelimit(&drbd_ratelimit_state))
			dev_err(DEV, "Sending NegDReply. sector=%llus.\n",
1005
			    (unsigned long long)peer_req->i.sector);
P
Philipp Reisner 已提交
1006

1007
		err = drbd_send_ack(device, P_NEG_DREPLY, peer_req);
P
Philipp Reisner 已提交
1008 1009
	}

1010
	dec_unacked(device);
P
Philipp Reisner 已提交
1011

1012
	move_to_net_ee_or_free(device, peer_req);
P
Philipp Reisner 已提交
1013

1014
	if (unlikely(err))
P
Philipp Reisner 已提交
1015
		dev_err(DEV, "drbd_send_block() failed\n");
1016
	return err;
P
Philipp Reisner 已提交
1017 1018 1019
}

/**
1020
 * w_e_end_rsdata_req() - Worker callback to send a P_RS_DATA_REPLY packet in response to a P_RS_DATA_REQUEST
1021
 * @device:	DRBD device.
P
Philipp Reisner 已提交
1022 1023 1024
 * @w:		work object.
 * @cancel:	The connection will be closed anyways
 */
1025
int w_e_end_rsdata_req(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
1026
{
1027
	struct drbd_peer_request *peer_req = container_of(w, struct drbd_peer_request, w);
1028
	struct drbd_device *device = w->device;
1029
	int err;
P
Philipp Reisner 已提交
1030 1031

	if (unlikely(cancel)) {
1032 1033
		drbd_free_peer_req(device, peer_req);
		dec_unacked(device);
1034
		return 0;
P
Philipp Reisner 已提交
1035 1036
	}

1037 1038 1039
	if (get_ldev_if_state(device, D_FAILED)) {
		drbd_rs_complete_io(device, peer_req->i.sector);
		put_ldev(device);
P
Philipp Reisner 已提交
1040 1041
	}

1042 1043
	if (device->state.conn == C_AHEAD) {
		err = drbd_send_ack(device, P_RS_CANCEL, peer_req);
1044
	} else if (likely((peer_req->flags & EE_WAS_ERROR) == 0)) {
1045 1046 1047
		if (likely(device->state.pdsk >= D_INCONSISTENT)) {
			inc_rs_pending(device);
			err = drbd_send_block(device, P_RS_DATA_REPLY, peer_req);
P
Philipp Reisner 已提交
1048 1049 1050 1051
		} else {
			if (__ratelimit(&drbd_ratelimit_state))
				dev_err(DEV, "Not sending RSDataReply, "
				    "partner DISKLESS!\n");
1052
			err = 0;
P
Philipp Reisner 已提交
1053 1054 1055 1056
		}
	} else {
		if (__ratelimit(&drbd_ratelimit_state))
			dev_err(DEV, "Sending NegRSDReply. sector %llus.\n",
1057
			    (unsigned long long)peer_req->i.sector);
P
Philipp Reisner 已提交
1058

1059
		err = drbd_send_ack(device, P_NEG_RS_DREPLY, peer_req);
P
Philipp Reisner 已提交
1060 1061

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

1065
	dec_unacked(device);
P
Philipp Reisner 已提交
1066

1067
	move_to_net_ee_or_free(device, peer_req);
P
Philipp Reisner 已提交
1068

1069
	if (unlikely(err))
P
Philipp Reisner 已提交
1070
		dev_err(DEV, "drbd_send_block() failed\n");
1071
	return err;
P
Philipp Reisner 已提交
1072 1073
}

1074
int w_e_end_csum_rs_req(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
1075
{
1076
	struct drbd_peer_request *peer_req = container_of(w, struct drbd_peer_request, w);
1077
	struct drbd_device *device = w->device;
P
Philipp Reisner 已提交
1078 1079 1080
	struct digest_info *di;
	int digest_size;
	void *digest = NULL;
1081
	int err, eq = 0;
P
Philipp Reisner 已提交
1082 1083

	if (unlikely(cancel)) {
1084 1085
		drbd_free_peer_req(device, peer_req);
		dec_unacked(device);
1086
		return 0;
P
Philipp Reisner 已提交
1087 1088
	}

1089 1090 1091
	if (get_ldev(device)) {
		drbd_rs_complete_io(device, peer_req->i.sector);
		put_ldev(device);
1092
	}
P
Philipp Reisner 已提交
1093

1094
	di = peer_req->digest;
P
Philipp Reisner 已提交
1095

1096
	if (likely((peer_req->flags & EE_WAS_ERROR) == 0)) {
P
Philipp Reisner 已提交
1097 1098 1099
		/* quick hack to try to avoid a race against reconfiguration.
		 * a real fix would be much more involved,
		 * introducing more locking mechanisms */
1100 1101
		if (first_peer_device(device)->connection->csums_tfm) {
			digest_size = crypto_hash_digestsize(first_peer_device(device)->connection->csums_tfm);
P
Philipp Reisner 已提交
1102 1103 1104 1105
			D_ASSERT(digest_size == di->digest_size);
			digest = kmalloc(digest_size, GFP_NOIO);
		}
		if (digest) {
1106
			drbd_csum_ee(device, first_peer_device(device)->connection->csums_tfm, peer_req, digest);
P
Philipp Reisner 已提交
1107 1108 1109 1110 1111
			eq = !memcmp(digest, di->digest, digest_size);
			kfree(digest);
		}

		if (eq) {
1112
			drbd_set_in_sync(device, peer_req->i.sector, peer_req->i.size);
1113
			/* rs_same_csums unit is BM_BLOCK_SIZE */
1114 1115
			device->rs_same_csum += peer_req->i.size >> BM_BLOCK_SHIFT;
			err = drbd_send_ack(device, P_RS_IS_IN_SYNC, peer_req);
P
Philipp Reisner 已提交
1116
		} else {
1117
			inc_rs_pending(device);
1118 1119
			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 */
1120
			kfree(di);
1121
			err = drbd_send_block(device, P_RS_DATA_REPLY, peer_req);
P
Philipp Reisner 已提交
1122 1123
		}
	} else {
1124
		err = drbd_send_ack(device, P_NEG_RS_DREPLY, peer_req);
P
Philipp Reisner 已提交
1125 1126 1127 1128
		if (__ratelimit(&drbd_ratelimit_state))
			dev_err(DEV, "Sending NegDReply. I guess it gets messy.\n");
	}

1129 1130
	dec_unacked(device);
	move_to_net_ee_or_free(device, peer_req);
P
Philipp Reisner 已提交
1131

1132
	if (unlikely(err))
P
Philipp Reisner 已提交
1133
		dev_err(DEV, "drbd_send_block/ack() failed\n");
1134
	return err;
P
Philipp Reisner 已提交
1135 1136
}

1137
int w_e_end_ov_req(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
1138
{
1139
	struct drbd_peer_request *peer_req = container_of(w, struct drbd_peer_request, w);
1140
	struct drbd_device *device = w->device;
1141 1142
	sector_t sector = peer_req->i.sector;
	unsigned int size = peer_req->i.size;
P
Philipp Reisner 已提交
1143 1144
	int digest_size;
	void *digest;
1145
	int err = 0;
P
Philipp Reisner 已提交
1146 1147 1148 1149

	if (unlikely(cancel))
		goto out;

1150
	digest_size = crypto_hash_digestsize(first_peer_device(device)->connection->verify_tfm);
P
Philipp Reisner 已提交
1151
	digest = kmalloc(digest_size, GFP_NOIO);
1152
	if (!digest) {
1153
		err = 1;	/* terminate the connection in case the allocation failed */
1154
		goto out;
P
Philipp Reisner 已提交
1155 1156
	}

1157
	if (likely(!(peer_req->flags & EE_WAS_ERROR)))
1158
		drbd_csum_ee(device, first_peer_device(device)->connection->verify_tfm, peer_req, digest);
1159 1160 1161
	else
		memset(digest, 0, digest_size);

1162 1163 1164 1165
	/* 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
1166
	 * drbd_alloc_pages due to pp_in_use > max_buffers. */
1167
	drbd_free_peer_req(device, peer_req);
1168
	peer_req = NULL;
1169 1170
	inc_rs_pending(device);
	err = drbd_send_drequest_csum(device, sector, size, digest, digest_size, P_OV_REPLY);
1171
	if (err)
1172
		dec_rs_pending(device);
1173 1174
	kfree(digest);

P
Philipp Reisner 已提交
1175
out:
1176
	if (peer_req)
1177 1178
		drbd_free_peer_req(device, peer_req);
	dec_unacked(device);
1179
	return err;
P
Philipp Reisner 已提交
1180 1181
}

1182
void drbd_ov_out_of_sync_found(struct drbd_device *device, sector_t sector, int size)
P
Philipp Reisner 已提交
1183
{
1184 1185
	if (device->ov_last_oos_start + device->ov_last_oos_size == sector) {
		device->ov_last_oos_size += size>>9;
P
Philipp Reisner 已提交
1186
	} else {
1187 1188
		device->ov_last_oos_start = sector;
		device->ov_last_oos_size = size>>9;
P
Philipp Reisner 已提交
1189
	}
1190
	drbd_set_out_of_sync(device, sector, size);
P
Philipp Reisner 已提交
1191 1192
}

1193
int w_e_end_ov_reply(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
1194
{
1195
	struct drbd_peer_request *peer_req = container_of(w, struct drbd_peer_request, w);
1196
	struct drbd_device *device = w->device;
P
Philipp Reisner 已提交
1197 1198
	struct digest_info *di;
	void *digest;
1199 1200
	sector_t sector = peer_req->i.sector;
	unsigned int size = peer_req->i.size;
1201
	int digest_size;
1202
	int err, eq = 0;
1203
	bool stop_sector_reached = false;
P
Philipp Reisner 已提交
1204 1205

	if (unlikely(cancel)) {
1206 1207
		drbd_free_peer_req(device, peer_req);
		dec_unacked(device);
1208
		return 0;
P
Philipp Reisner 已提交
1209 1210 1211 1212
	}

	/* after "cancel", because after drbd_disconnect/drbd_rs_cancel_all
	 * the resync lru has been cleaned up already */
1213 1214 1215
	if (get_ldev(device)) {
		drbd_rs_complete_io(device, peer_req->i.sector);
		put_ldev(device);
1216
	}
P
Philipp Reisner 已提交
1217

1218
	di = peer_req->digest;
P
Philipp Reisner 已提交
1219

1220
	if (likely((peer_req->flags & EE_WAS_ERROR) == 0)) {
1221
		digest_size = crypto_hash_digestsize(first_peer_device(device)->connection->verify_tfm);
P
Philipp Reisner 已提交
1222 1223
		digest = kmalloc(digest_size, GFP_NOIO);
		if (digest) {
1224
			drbd_csum_ee(device, first_peer_device(device)->connection->verify_tfm, peer_req, digest);
P
Philipp Reisner 已提交
1225 1226 1227 1228 1229 1230 1231

			D_ASSERT(digest_size == di->digest_size);
			eq = !memcmp(digest, di->digest, digest_size);
			kfree(digest);
		}
	}

1232 1233 1234 1235
	/* 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
1236
	 * drbd_alloc_pages due to pp_in_use > max_buffers. */
1237
	drbd_free_peer_req(device, peer_req);
P
Philipp Reisner 已提交
1238
	if (!eq)
1239
		drbd_ov_out_of_sync_found(device, sector, size);
P
Philipp Reisner 已提交
1240
	else
1241
		ov_out_of_sync_print(device);
P
Philipp Reisner 已提交
1242

1243
	err = drbd_send_ack_ex(device, P_OV_RESULT, sector, size,
1244
			       eq ? ID_IN_SYNC : ID_OUT_OF_SYNC);
P
Philipp Reisner 已提交
1245

1246
	dec_unacked(device);
P
Philipp Reisner 已提交
1247

1248
	--device->ov_left;
1249 1250

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

1254 1255
	stop_sector_reached = verify_can_do_stop_sector(device) &&
		(sector + (size>>9)) >= device->ov_stop_sector;
1256

1257 1258 1259
	if (device->ov_left == 0 || stop_sector_reached) {
		ov_out_of_sync_print(device);
		drbd_resync_finished(device);
P
Philipp Reisner 已提交
1260 1261
	}

1262
	return err;
P
Philipp Reisner 已提交
1263 1264
}

1265
int w_prev_work_done(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
1266 1267
{
	struct drbd_wq_barrier *b = container_of(w, struct drbd_wq_barrier, w);
1268

P
Philipp Reisner 已提交
1269
	complete(&b->done);
1270
	return 0;
P
Philipp Reisner 已提交
1271 1272
}

1273 1274 1275 1276 1277
/* 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.
 */
1278
static int drbd_send_barrier(struct drbd_connection *connection)
P
Philipp Reisner 已提交
1279
{
1280
	struct p_barrier *p;
1281
	struct drbd_socket *sock;
P
Philipp Reisner 已提交
1282

1283 1284
	sock = &connection->data;
	p = conn_prepare_command(connection, sock);
1285 1286
	if (!p)
		return -EIO;
1287
	p->barrier = connection->send.current_epoch_nr;
1288
	p->pad = 0;
1289
	connection->send.current_epoch_writes = 0;
1290

1291
	return conn_send_command(connection, sock, P_BARRIER, sizeof(*p), NULL, 0);
P
Philipp Reisner 已提交
1292 1293
}

1294
int w_send_write_hint(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
1295
{
1296
	struct drbd_device *device = w->device;
1297 1298
	struct drbd_socket *sock;

P
Philipp Reisner 已提交
1299
	if (cancel)
1300
		return 0;
1301
	sock = &first_peer_device(device)->connection->data;
1302
	if (!drbd_prepare_command(device, sock))
1303
		return -EIO;
1304
	return drbd_send_command(device, sock, P_UNPLUG_REMOTE, 0, NULL, 0);
P
Philipp Reisner 已提交
1305 1306
}

1307
static void re_init_if_first_write(struct drbd_connection *connection, unsigned int epoch)
1308
{
1309 1310 1311 1312
	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;
1313 1314 1315
	}
}

1316
static void maybe_send_barrier(struct drbd_connection *connection, unsigned int epoch)
1317 1318
{
	/* re-init if first write on this connection */
1319
	if (!connection->send.seen_any_write_yet)
1320
		return;
1321 1322 1323 1324
	if (connection->send.current_epoch_nr != epoch) {
		if (connection->send.current_epoch_writes)
			drbd_send_barrier(connection);
		connection->send.current_epoch_nr = epoch;
1325 1326 1327
	}
}

1328
int w_send_out_of_sync(struct drbd_work *w, int cancel)
1329 1330
{
	struct drbd_request *req = container_of(w, struct drbd_request, w);
1331
	struct drbd_device *device = w->device;
1332
	struct drbd_connection *connection = first_peer_device(device)->connection;
1333
	int err;
1334 1335

	if (unlikely(cancel)) {
1336
		req_mod(req, SEND_CANCELED);
1337
		return 0;
1338 1339
	}

1340
	/* this time, no connection->send.current_epoch_writes++;
1341 1342 1343
	 * 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. */
1344
	maybe_send_barrier(connection, req->epoch);
1345

1346
	err = drbd_send_out_of_sync(device, req);
1347
	req_mod(req, OOS_HANDED_TO_NETWORK);
1348

1349
	return err;
1350 1351
}

P
Philipp Reisner 已提交
1352 1353
/**
 * w_send_dblock() - Worker callback to send a P_DATA packet in order to mirror a write request
1354
 * @device:	DRBD device.
P
Philipp Reisner 已提交
1355 1356 1357
 * @w:		work object.
 * @cancel:	The connection will be closed anyways
 */
1358
int w_send_dblock(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
1359 1360
{
	struct drbd_request *req = container_of(w, struct drbd_request, w);
1361
	struct drbd_device *device = w->device;
1362
	struct drbd_connection *connection = first_peer_device(device)->connection;
1363
	int err;
P
Philipp Reisner 已提交
1364 1365

	if (unlikely(cancel)) {
1366
		req_mod(req, SEND_CANCELED);
1367
		return 0;
P
Philipp Reisner 已提交
1368 1369
	}

1370 1371 1372
	re_init_if_first_write(connection, req->epoch);
	maybe_send_barrier(connection, req->epoch);
	connection->send.current_epoch_writes++;
1373

1374
	err = drbd_send_dblock(device, req);
1375
	req_mod(req, err ? SEND_FAILED : HANDED_OVER_TO_NETWORK);
P
Philipp Reisner 已提交
1376

1377
	return err;
P
Philipp Reisner 已提交
1378 1379 1380 1381
}

/**
 * w_send_read_req() - Worker callback to send a read request (P_DATA_REQUEST) packet
1382
 * @device:	DRBD device.
P
Philipp Reisner 已提交
1383 1384 1385
 * @w:		work object.
 * @cancel:	The connection will be closed anyways
 */
1386
int w_send_read_req(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
1387 1388
{
	struct drbd_request *req = container_of(w, struct drbd_request, w);
1389
	struct drbd_device *device = w->device;
1390
	struct drbd_connection *connection = first_peer_device(device)->connection;
1391
	int err;
P
Philipp Reisner 已提交
1392 1393

	if (unlikely(cancel)) {
1394
		req_mod(req, SEND_CANCELED);
1395
		return 0;
P
Philipp Reisner 已提交
1396 1397
	}

1398 1399
	/* Even read requests may close a write epoch,
	 * if there was any yet. */
1400
	maybe_send_barrier(connection, req->epoch);
1401

1402
	err = drbd_send_drequest(device, P_DATA_REQUEST, req->i.sector, req->i.size,
1403
				 (unsigned long)req);
P
Philipp Reisner 已提交
1404

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

1407
	return err;
P
Philipp Reisner 已提交
1408 1409
}

1410
int w_restart_disk_io(struct drbd_work *w, int cancel)
1411 1412
{
	struct drbd_request *req = container_of(w, struct drbd_request, w);
1413
	struct drbd_device *device = w->device;
1414

1415
	if (bio_data_dir(req->master_bio) == WRITE && req->rq_state & RQ_IN_ACT_LOG)
1416
		drbd_al_begin_io(device, &req->i, false);
1417 1418

	drbd_req_make_private_bio(req, req->master_bio);
1419
	req->private_bio->bi_bdev = device->ldev->backing_bdev;
1420 1421
	generic_make_request(req->private_bio);

1422
	return 0;
1423 1424
}

1425
static int _drbd_may_sync_now(struct drbd_device *device)
P
Philipp Reisner 已提交
1426
{
1427
	struct drbd_device *odev = device;
1428
	int resync_after;
P
Philipp Reisner 已提交
1429 1430

	while (1) {
1431
		if (!odev->ldev || odev->state.disk == D_DISKLESS)
1432
			return 1;
P
Philipp Reisner 已提交
1433
		rcu_read_lock();
1434
		resync_after = rcu_dereference(odev->ldev->disk_conf)->resync_after;
P
Philipp Reisner 已提交
1435
		rcu_read_unlock();
1436
		if (resync_after == -1)
P
Philipp Reisner 已提交
1437
			return 1;
1438
		odev = minor_to_device(resync_after);
1439
		if (!odev)
1440
			return 1;
P
Philipp Reisner 已提交
1441 1442 1443 1444 1445 1446 1447 1448 1449 1450
		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
1451
 * @device:	DRBD device.
P
Philipp Reisner 已提交
1452 1453 1454
 *
 * Called from process context only (admin command and after_state_ch).
 */
1455
static int _drbd_pause_after(struct drbd_device *device)
P
Philipp Reisner 已提交
1456
{
1457
	struct drbd_device *odev;
P
Philipp Reisner 已提交
1458 1459
	int i, rv = 0;

1460
	rcu_read_lock();
1461
	idr_for_each_entry(&drbd_devices, odev, i) {
P
Philipp Reisner 已提交
1462 1463 1464 1465 1466 1467
		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);
	}
1468
	rcu_read_unlock();
P
Philipp Reisner 已提交
1469 1470 1471 1472 1473 1474

	return rv;
}

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

1484
	rcu_read_lock();
1485
	idr_for_each_entry(&drbd_devices, odev, i) {
P
Philipp Reisner 已提交
1486 1487 1488 1489 1490 1491 1492 1493 1494
		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) ;
		}
	}
1495
	rcu_read_unlock();
P
Philipp Reisner 已提交
1496 1497 1498
	return rv;
}

1499
void resume_next_sg(struct drbd_device *device)
P
Philipp Reisner 已提交
1500 1501
{
	write_lock_irq(&global_state_lock);
1502
	_drbd_resume_next(device);
P
Philipp Reisner 已提交
1503 1504 1505
	write_unlock_irq(&global_state_lock);
}

1506
void suspend_other_sg(struct drbd_device *device)
P
Philipp Reisner 已提交
1507 1508
{
	write_lock_irq(&global_state_lock);
1509
	_drbd_pause_after(device);
P
Philipp Reisner 已提交
1510 1511 1512
	write_unlock_irq(&global_state_lock);
}

1513
/* caller must hold global_state_lock */
1514
enum drbd_ret_code drbd_resync_after_valid(struct drbd_device *device, int o_minor)
P
Philipp Reisner 已提交
1515
{
1516
	struct drbd_device *odev;
1517
	int resync_after;
P
Philipp Reisner 已提交
1518 1519 1520

	if (o_minor == -1)
		return NO_ERROR;
1521
	if (o_minor < -1 || o_minor > MINORMASK)
1522
		return ERR_RESYNC_AFTER;
P
Philipp Reisner 已提交
1523 1524

	/* check for loops */
1525
	odev = minor_to_device(o_minor);
P
Philipp Reisner 已提交
1526
	while (1) {
1527
		if (odev == device)
1528
			return ERR_RESYNC_AFTER_CYCLE;
P
Philipp Reisner 已提交
1529

1530 1531 1532 1533 1534 1535 1536 1537 1538
		/* 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 已提交
1539
		rcu_read_lock();
1540
		resync_after = rcu_dereference(odev->ldev->disk_conf)->resync_after;
P
Philipp Reisner 已提交
1541
		rcu_read_unlock();
P
Philipp Reisner 已提交
1542
		/* dependency chain ends here, no cycles. */
1543
		if (resync_after == -1)
P
Philipp Reisner 已提交
1544 1545 1546
			return NO_ERROR;

		/* follow the dependency chain */
1547
		odev = minor_to_device(resync_after);
P
Philipp Reisner 已提交
1548 1549 1550
	}
}

1551
/* caller must hold global_state_lock */
1552
void drbd_resync_after_changed(struct drbd_device *device)
P
Philipp Reisner 已提交
1553 1554 1555
{
	int changes;

1556
	do {
1557 1558
		changes  = _drbd_pause_after(device);
		changes |= _drbd_resume_next(device);
1559
	} while (changes);
P
Philipp Reisner 已提交
1560 1561
}

1562
void drbd_rs_controller_reset(struct drbd_device *device)
1563
{
P
Philipp Reisner 已提交
1564 1565
	struct fifo_buffer *plan;

1566 1567 1568
	atomic_set(&device->rs_sect_in, 0);
	atomic_set(&device->rs_sect_ev, 0);
	device->rs_in_flight = 0;
P
Philipp Reisner 已提交
1569 1570 1571 1572 1573 1574

	/* 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();
1575
	plan = rcu_dereference(device->rs_plan_s);
P
Philipp Reisner 已提交
1576 1577 1578
	plan->total = 0;
	fifo_set(plan, 0);
	rcu_read_unlock();
1579 1580
}

P
Philipp Reisner 已提交
1581 1582
void start_resync_timer_fn(unsigned long data)
{
1583
	struct drbd_device *device = (struct drbd_device *) data;
P
Philipp Reisner 已提交
1584

1585
	drbd_queue_work(&first_peer_device(device)->connection->sender_work, &device->start_resync_work);
P
Philipp Reisner 已提交
1586 1587
}

1588
int w_start_resync(struct drbd_work *w, int cancel)
P
Philipp Reisner 已提交
1589
{
1590
	struct drbd_device *device = w->device;
1591

1592
	if (atomic_read(&device->unacked_cnt) || atomic_read(&device->rs_pending_cnt)) {
P
Philipp Reisner 已提交
1593
		dev_warn(DEV, "w_start_resync later...\n");
1594 1595
		device->start_resync_timer.expires = jiffies + HZ/10;
		add_timer(&device->start_resync_timer);
1596
		return 0;
P
Philipp Reisner 已提交
1597 1598
	}

1599 1600
	drbd_start_resync(device, C_SYNC_SOURCE);
	clear_bit(AHEAD_TO_SYNC_SOURCE, &device->flags);
1601
	return 0;
P
Philipp Reisner 已提交
1602 1603
}

P
Philipp Reisner 已提交
1604 1605
/**
 * drbd_start_resync() - Start the resync process
1606
 * @device:	DRBD device.
P
Philipp Reisner 已提交
1607 1608 1609 1610 1611
 * @side:	Either C_SYNC_SOURCE or C_SYNC_TARGET
 *
 * This function might bring you directly into one of the
 * C_PAUSED_SYNC_* states.
 */
1612
void drbd_start_resync(struct drbd_device *device, enum drbd_conns side)
P
Philipp Reisner 已提交
1613 1614 1615 1616
{
	union drbd_state ns;
	int r;

1617
	if (device->state.conn >= C_SYNC_SOURCE && device->state.conn < C_AHEAD) {
P
Philipp Reisner 已提交
1618 1619 1620 1621
		dev_err(DEV, "Resync already running!\n");
		return;
	}

1622
	if (!test_bit(B_RS_H_DONE, &device->flags)) {
1623 1624 1625 1626
		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. */
1627
			r = drbd_khelper(device, "before-resync-target");
1628 1629 1630
			r = (r >> 8) & 0xff;
			if (r > 0) {
				dev_info(DEV, "before-resync-target handler returned %d, "
1631
					 "dropping connection.\n", r);
1632
				conn_request_state(first_peer_device(device)->connection, NS(conn, C_DISCONNECTING), CS_HARD);
1633 1634
				return;
			}
1635
		} else /* C_SYNC_SOURCE */ {
1636
			r = drbd_khelper(device, "before-resync-source");
1637 1638 1639 1640 1641 1642 1643 1644
			r = (r >> 8) & 0xff;
			if (r > 0) {
				if (r == 3) {
					dev_info(DEV, "before-resync-source handler returned %d, "
						 "ignoring. Old userland tools?", r);
				} else {
					dev_info(DEV, "before-resync-source handler returned %d, "
						 "dropping connection.\n", r);
1645 1646
					conn_request_state(first_peer_device(device)->connection,
							   NS(conn, C_DISCONNECTING), CS_HARD);
1647 1648 1649
					return;
				}
			}
1650
		}
P
Philipp Reisner 已提交
1651 1652
	}

1653
	if (current == first_peer_device(device)->connection->worker.task) {
1654
		/* The worker should not sleep waiting for state_mutex,
1655
		   that can take long */
1656 1657 1658 1659
		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);
1660 1661 1662
			return;
		}
	} else {
1663
		mutex_lock(device->state_mutex);
1664
	}
1665
	clear_bit(B_RS_H_DONE, &device->flags);
P
Philipp Reisner 已提交
1666

1667
	write_lock_irq(&global_state_lock);
1668
	/* Did some connection breakage or IO error race with us? */
1669 1670
	if (device->state.conn < C_CONNECTED
	|| !get_ldev_if_state(device, D_NEGOTIATING)) {
1671
		write_unlock_irq(&global_state_lock);
1672
		mutex_unlock(device->state_mutex);
P
Philipp Reisner 已提交
1673 1674 1675
		return;
	}

1676
	ns = drbd_read_state(device);
P
Philipp Reisner 已提交
1677

1678
	ns.aftr_isp = !_drbd_may_sync_now(device);
P
Philipp Reisner 已提交
1679 1680 1681 1682 1683 1684 1685 1686

	ns.conn = side;

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

1687 1688
	r = __drbd_set_state(device, ns, CS_VERBOSE, NULL);
	ns = drbd_read_state(device);
P
Philipp Reisner 已提交
1689 1690 1691 1692 1693

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

	if (r == SS_SUCCESS) {
1694
		unsigned long tw = drbd_bm_total_weight(device);
1695 1696 1697
		unsigned long now = jiffies;
		int i;

1698 1699 1700 1701 1702 1703 1704
		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;
1705
		for (i = 0; i < DRBD_SYNC_MARKS; i++) {
1706 1707
			device->rs_mark_left[i] = tw;
			device->rs_mark_time[i] = now;
1708
		}
1709
		_drbd_pause_after(device);
P
Philipp Reisner 已提交
1710 1711
	}
	write_unlock_irq(&global_state_lock);
1712

P
Philipp Reisner 已提交
1713
	if (r == SS_SUCCESS) {
1714 1715
		/* reset rs_last_bcast when a resync or verify is started,
		 * to deal with potential jiffies wrap. */
1716
		device->rs_last_bcast = jiffies - HZ;
1717

P
Philipp Reisner 已提交
1718 1719
		dev_info(DEV, "Began resync as %s (will sync %lu KB [%lu bits set]).\n",
		     drbd_conn_str(ns.conn),
1720 1721
		     (unsigned long) device->rs_total << (BM_BLOCK_SHIFT-10),
		     (unsigned long) device->rs_total);
1722
		if (side == C_SYNC_TARGET)
1723
			device->bm_resync_fo = 0;
1724 1725 1726 1727 1728 1729 1730 1731

		/* 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. */
1732 1733
		if (side == C_SYNC_SOURCE &&
		    first_peer_device(device)->connection->agreed_pro_version < 96)
1734
			drbd_gen_and_send_sync_uuid(device);
P
Philipp Reisner 已提交
1735

1736 1737
		if (first_peer_device(device)->connection->agreed_pro_version < 95 &&
		    device->rs_total == 0) {
1738 1739 1740 1741 1742 1743 1744 1745 1746 1747
			/* 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. */
1748 1749 1750 1751 1752
			if (side == C_SYNC_SOURCE) {
				struct net_conf *nc;
				int timeo;

				rcu_read_lock();
1753
				nc = rcu_dereference(first_peer_device(device)->connection->net_conf);
1754 1755 1756 1757
				timeo = nc->ping_int * HZ + nc->ping_timeo * HZ / 9;
				rcu_read_unlock();
				schedule_timeout_interruptible(timeo);
			}
1758
			drbd_resync_finished(device);
P
Philipp Reisner 已提交
1759 1760
		}

1761 1762
		drbd_rs_controller_reset(device);
		/* ns.conn may already be != device->state.conn,
P
Philipp Reisner 已提交
1763 1764 1765 1766
		 * 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)
1767
			mod_timer(&device->resync_timer, jiffies);
P
Philipp Reisner 已提交
1768

1769
		drbd_md_sync(device);
P
Philipp Reisner 已提交
1770
	}
1771 1772
	put_ldev(device);
	mutex_unlock(device->state_mutex);
P
Philipp Reisner 已提交
1773 1774
}

1775 1776 1777 1778
/* If the resource already closed the current epoch, but we did not
 * (because we have not yet seen new requests), we should send the
 * corresponding barrier now.  Must be checked within the same spinlock
 * that is used to check for new requests. */
1779
static bool need_to_send_barrier(struct drbd_connection *connection)
1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802
{
	if (!connection->send.seen_any_write_yet)
		return false;

	/* Skip barriers that do not contain any writes.
	 * This may happen during AHEAD mode. */
	if (!connection->send.current_epoch_writes)
		return false;

	/* ->req_lock is held when requests are queued on
	 * connection->sender_work, and put into ->transfer_log.
	 * It is also held when ->current_tle_nr is increased.
	 * So either there are already new requests queued,
	 * and corresponding barriers will be send there.
	 * Or nothing new is queued yet, so the difference will be 1.
	 */
	if (atomic_read(&connection->current_tle_nr) !=
	    connection->send.current_epoch_nr + 1)
		return false;

	return true;
}

1803
static bool dequeue_work_batch(struct drbd_work_queue *queue, struct list_head *work_list)
1804 1805 1806 1807 1808 1809 1810
{
	spin_lock_irq(&queue->q_lock);
	list_splice_init(&queue->q, work_list);
	spin_unlock_irq(&queue->q_lock);
	return !list_empty(work_list);
}

1811
static bool dequeue_work_item(struct drbd_work_queue *queue, struct list_head *work_list)
1812 1813 1814 1815 1816 1817 1818 1819
{
	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);
}

1820
static void wait_for_work(struct drbd_connection *connection, struct list_head *work_list)
1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851
{
	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);
		spin_lock_irq(&connection->req_lock);
		spin_lock(&connection->sender_work.q_lock);	/* FIXME get rid of this one? */
1852 1853 1854 1855
		/* dequeue single item only,
		 * we still use drbd_queue_work_front() in some places */
		if (!list_empty(&connection->sender_work.q))
			list_move(connection->sender_work.q.next, work_list);
1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888
		spin_unlock(&connection->sender_work.q_lock);	/* FIXME get rid of this one? */
		if (!list_empty(work_list) || signal_pending(current)) {
			spin_unlock_irq(&connection->req_lock);
			break;
		}
		send_barrier = need_to_send_barrier(connection);
		spin_unlock_irq(&connection->req_lock);
		if (send_barrier) {
			drbd_send_barrier(connection);
			connection->send.current_epoch_nr++;
		}
		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 已提交
1889 1890
int drbd_worker(struct drbd_thread *thi)
{
1891
	struct drbd_connection *connection = thi->connection;
P
Philipp Reisner 已提交
1892
	struct drbd_work *w = NULL;
1893
	struct drbd_device *device;
P
Philipp Reisner 已提交
1894
	LIST_HEAD(work_list);
1895
	int vnr;
P
Philipp Reisner 已提交
1896

1897
	while (get_t_state(thi) == RUNNING) {
1898
		drbd_thread_current_set_cpu(thi);
P
Philipp Reisner 已提交
1899

1900 1901 1902
		/* as long as we use drbd_queue_work_front(),
		 * we may only dequeue single work items here, not batches. */
		if (list_empty(&work_list))
1903
			wait_for_work(connection, &work_list);
P
Philipp Reisner 已提交
1904

1905
		if (signal_pending(current)) {
P
Philipp Reisner 已提交
1906
			flush_signals(current);
1907
			if (get_t_state(thi) == RUNNING) {
1908
				conn_warn(connection, "Worker got an unexpected signal\n");
P
Philipp Reisner 已提交
1909
				continue;
1910
			}
P
Philipp Reisner 已提交
1911 1912 1913
			break;
		}

1914
		if (get_t_state(thi) != RUNNING)
P
Philipp Reisner 已提交
1915 1916
			break;

1917 1918 1919
		while (!list_empty(&work_list)) {
			w = list_first_entry(&work_list, struct drbd_work, list);
			list_del_init(&w->list);
1920
			if (w->cb(w, connection->cstate < C_WF_REPORT_PARAMS) == 0)
1921
				continue;
1922 1923
			if (connection->cstate >= C_WF_REPORT_PARAMS)
				conn_request_state(connection, NS(conn, C_NETWORK_FAILURE), CS_HARD);
P
Philipp Reisner 已提交
1924 1925 1926
		}
	}

1927
	do {
P
Philipp Reisner 已提交
1928
		while (!list_empty(&work_list)) {
1929
			w = list_first_entry(&work_list, struct drbd_work, list);
P
Philipp Reisner 已提交
1930
			list_del_init(&w->list);
1931
			w->cb(w, 1);
P
Philipp Reisner 已提交
1932
		}
1933
		dequeue_work_batch(&connection->sender_work, &work_list);
1934
	} while (!list_empty(&work_list));
P
Philipp Reisner 已提交
1935

P
Philipp Reisner 已提交
1936
	rcu_read_lock();
1937
	idr_for_each_entry(&connection->volumes, device, vnr) {
1938 1939
		D_ASSERT(device->state.disk == D_DISKLESS && device->state.conn == C_STANDALONE);
		kref_get(&device->kref);
P
Philipp Reisner 已提交
1940
		rcu_read_unlock();
1941
		drbd_device_cleanup(device);
1942
		kref_put(&device->kref, drbd_destroy_device);
P
Philipp Reisner 已提交
1943
		rcu_read_lock();
1944
	}
P
Philipp Reisner 已提交
1945
	rcu_read_unlock();
P
Philipp Reisner 已提交
1946 1947 1948

	return 0;
}