blob: 6bb1a2f2a38d622fca9e4d715b3f1a11b5fca6ea [file] [log] [blame]
Philipp Reisnerb411b362009-09-25 16:07:19 -07001/*
2 drbd_receiver.c
3
4 This file is part of DRBD by Philipp Reisner and Lars Ellenberg.
5
6 Copyright (C) 2001-2008, LINBIT Information Technologies GmbH.
7 Copyright (C) 1999-2008, Philipp Reisner <philipp.reisner@linbit.com>.
8 Copyright (C) 2002-2008, Lars Ellenberg <lars.ellenberg@linbit.com>.
9
10 drbd is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2, or (at your option)
13 any later version.
14
15 drbd is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with drbd; see the file COPYING. If not, write to
22 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
23 */
24
25
Philipp Reisnerb411b362009-09-25 16:07:19 -070026#include <linux/module.h>
27
28#include <asm/uaccess.h>
29#include <net/sock.h>
30
Philipp Reisnerb411b362009-09-25 16:07:19 -070031#include <linux/drbd.h>
32#include <linux/fs.h>
33#include <linux/file.h>
34#include <linux/in.h>
35#include <linux/mm.h>
36#include <linux/memcontrol.h>
37#include <linux/mm_inline.h>
38#include <linux/slab.h>
Philipp Reisnerb411b362009-09-25 16:07:19 -070039#include <linux/pkt_sched.h>
40#define __KERNEL_SYSCALLS__
41#include <linux/unistd.h>
42#include <linux/vmalloc.h>
43#include <linux/random.h>
Philipp Reisnerb411b362009-09-25 16:07:19 -070044#include <linux/string.h>
45#include <linux/scatterlist.h>
46#include "drbd_int.h"
Philipp Reisnerb411b362009-09-25 16:07:19 -070047#include "drbd_req.h"
48
49#include "drbd_vli.h"
50
Philipp Reisnerb411b362009-09-25 16:07:19 -070051enum finish_epoch {
52 FE_STILL_LIVE,
53 FE_DESTROYED,
54 FE_RECYCLED,
55};
56
57static int drbd_do_handshake(struct drbd_conf *mdev);
58static int drbd_do_auth(struct drbd_conf *mdev);
59
60static enum finish_epoch drbd_may_finish_epoch(struct drbd_conf *, struct drbd_epoch *, enum epoch_event);
61static int e_end_block(struct drbd_conf *, struct drbd_work *, int);
62
Philipp Reisnerb411b362009-09-25 16:07:19 -070063
64#define GFP_TRY (__GFP_HIGHMEM | __GFP_NOWARN)
65
Lars Ellenberg45bb9122010-05-14 17:10:48 +020066/*
67 * some helper functions to deal with single linked page lists,
68 * page->private being our "next" pointer.
69 */
70
71/* If at least n pages are linked at head, get n pages off.
72 * Otherwise, don't modify head, and return NULL.
73 * Locking is the responsibility of the caller.
74 */
75static struct page *page_chain_del(struct page **head, int n)
76{
77 struct page *page;
78 struct page *tmp;
79
80 BUG_ON(!n);
81 BUG_ON(!head);
82
83 page = *head;
Philipp Reisner23ce4222010-05-20 13:35:31 +020084
85 if (!page)
86 return NULL;
87
Lars Ellenberg45bb9122010-05-14 17:10:48 +020088 while (page) {
89 tmp = page_chain_next(page);
90 if (--n == 0)
91 break; /* found sufficient pages */
92 if (tmp == NULL)
93 /* insufficient pages, don't use any of them. */
94 return NULL;
95 page = tmp;
96 }
97
98 /* add end of list marker for the returned list */
99 set_page_private(page, 0);
100 /* actual return value, and adjustment of head */
101 page = *head;
102 *head = tmp;
103 return page;
104}
105
106/* may be used outside of locks to find the tail of a (usually short)
107 * "private" page chain, before adding it back to a global chain head
108 * with page_chain_add() under a spinlock. */
109static struct page *page_chain_tail(struct page *page, int *len)
110{
111 struct page *tmp;
112 int i = 1;
113 while ((tmp = page_chain_next(page)))
114 ++i, page = tmp;
115 if (len)
116 *len = i;
117 return page;
118}
119
120static int page_chain_free(struct page *page)
121{
122 struct page *tmp;
123 int i = 0;
124 page_chain_for_each_safe(page, tmp) {
125 put_page(page);
126 ++i;
127 }
128 return i;
129}
130
131static void page_chain_add(struct page **head,
132 struct page *chain_first, struct page *chain_last)
133{
134#if 1
135 struct page *tmp;
136 tmp = page_chain_tail(chain_first, NULL);
137 BUG_ON(tmp != chain_last);
138#endif
139
140 /* add chain to head */
141 set_page_private(chain_last, (unsigned long)*head);
142 *head = chain_first;
143}
144
145static struct page *drbd_pp_first_pages_or_try_alloc(struct drbd_conf *mdev, int number)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700146{
147 struct page *page = NULL;
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200148 struct page *tmp = NULL;
149 int i = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700150
151 /* Yes, testing drbd_pp_vacant outside the lock is racy.
152 * So what. It saves a spin_lock. */
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200153 if (drbd_pp_vacant >= number) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700154 spin_lock(&drbd_pp_lock);
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200155 page = page_chain_del(&drbd_pp_pool, number);
156 if (page)
157 drbd_pp_vacant -= number;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700158 spin_unlock(&drbd_pp_lock);
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200159 if (page)
160 return page;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700161 }
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200162
Philipp Reisnerb411b362009-09-25 16:07:19 -0700163 /* GFP_TRY, because we must not cause arbitrary write-out: in a DRBD
164 * "criss-cross" setup, that might cause write-out on some other DRBD,
165 * which in turn might block on the other node at this very place. */
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200166 for (i = 0; i < number; i++) {
167 tmp = alloc_page(GFP_TRY);
168 if (!tmp)
169 break;
170 set_page_private(tmp, (unsigned long)page);
171 page = tmp;
172 }
173
174 if (i == number)
175 return page;
176
177 /* Not enough pages immediately available this time.
178 * No need to jump around here, drbd_pp_alloc will retry this
179 * function "soon". */
180 if (page) {
181 tmp = page_chain_tail(page, NULL);
182 spin_lock(&drbd_pp_lock);
183 page_chain_add(&drbd_pp_pool, page, tmp);
184 drbd_pp_vacant += i;
185 spin_unlock(&drbd_pp_lock);
186 }
187 return NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700188}
189
Philipp Reisnerb411b362009-09-25 16:07:19 -0700190static void reclaim_net_ee(struct drbd_conf *mdev, struct list_head *to_be_freed)
191{
192 struct drbd_epoch_entry *e;
193 struct list_head *le, *tle;
194
195 /* The EEs are always appended to the end of the list. Since
196 they are sent in order over the wire, they have to finish
197 in order. As soon as we see the first not finished we can
198 stop to examine the list... */
199
200 list_for_each_safe(le, tle, &mdev->net_ee) {
201 e = list_entry(le, struct drbd_epoch_entry, w.list);
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200202 if (drbd_ee_has_active_page(e))
Philipp Reisnerb411b362009-09-25 16:07:19 -0700203 break;
204 list_move(le, to_be_freed);
205 }
206}
207
208static void drbd_kick_lo_and_reclaim_net(struct drbd_conf *mdev)
209{
210 LIST_HEAD(reclaimed);
211 struct drbd_epoch_entry *e, *t;
212
Philipp Reisnerb411b362009-09-25 16:07:19 -0700213 spin_lock_irq(&mdev->req_lock);
214 reclaim_net_ee(mdev, &reclaimed);
215 spin_unlock_irq(&mdev->req_lock);
216
217 list_for_each_entry_safe(e, t, &reclaimed, w.list)
Lars Ellenberg435f0742010-09-06 12:30:25 +0200218 drbd_free_net_ee(mdev, e);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700219}
220
221/**
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200222 * drbd_pp_alloc() - Returns @number pages, retries forever (or until signalled)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700223 * @mdev: DRBD device.
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200224 * @number: number of pages requested
225 * @retry: whether to retry, if not enough pages are available right now
Philipp Reisnerb411b362009-09-25 16:07:19 -0700226 *
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200227 * Tries to allocate number pages, first from our own page pool, then from
228 * the kernel, unless this allocation would exceed the max_buffers setting.
229 * Possibly retry until DRBD frees sufficient pages somewhere else.
230 *
231 * Returns a page chain linked via page->private.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700232 */
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200233static struct page *drbd_pp_alloc(struct drbd_conf *mdev, unsigned number, bool retry)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700234{
235 struct page *page = NULL;
236 DEFINE_WAIT(wait);
237
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200238 /* Yes, we may run up to @number over max_buffers. If we
239 * follow it strictly, the admin will get it wrong anyways. */
240 if (atomic_read(&mdev->pp_in_use) < mdev->net_conf->max_buffers)
241 page = drbd_pp_first_pages_or_try_alloc(mdev, number);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700242
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200243 while (page == NULL) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700244 prepare_to_wait(&drbd_pp_wait, &wait, TASK_INTERRUPTIBLE);
245
246 drbd_kick_lo_and_reclaim_net(mdev);
247
248 if (atomic_read(&mdev->pp_in_use) < mdev->net_conf->max_buffers) {
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200249 page = drbd_pp_first_pages_or_try_alloc(mdev, number);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700250 if (page)
251 break;
252 }
253
254 if (!retry)
255 break;
256
257 if (signal_pending(current)) {
258 dev_warn(DEV, "drbd_pp_alloc interrupted!\n");
259 break;
260 }
261
262 schedule();
263 }
264 finish_wait(&drbd_pp_wait, &wait);
265
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200266 if (page)
267 atomic_add(number, &mdev->pp_in_use);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700268 return page;
269}
270
271/* Must not be used from irq, as that may deadlock: see drbd_pp_alloc.
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200272 * Is also used from inside an other spin_lock_irq(&mdev->req_lock);
273 * Either links the page chain back to the global pool,
274 * or returns all pages to the system. */
Lars Ellenberg435f0742010-09-06 12:30:25 +0200275static void drbd_pp_free(struct drbd_conf *mdev, struct page *page, int is_net)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700276{
Lars Ellenberg435f0742010-09-06 12:30:25 +0200277 atomic_t *a = is_net ? &mdev->pp_in_use_by_net : &mdev->pp_in_use;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700278 int i;
Lars Ellenberg435f0742010-09-06 12:30:25 +0200279
Lars Ellenberg1816a2b2010-11-11 15:19:07 +0100280 if (drbd_pp_vacant > (DRBD_MAX_BIO_SIZE/PAGE_SIZE)*minor_count)
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200281 i = page_chain_free(page);
282 else {
283 struct page *tmp;
284 tmp = page_chain_tail(page, &i);
285 spin_lock(&drbd_pp_lock);
286 page_chain_add(&drbd_pp_pool, page, tmp);
287 drbd_pp_vacant += i;
288 spin_unlock(&drbd_pp_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700289 }
Lars Ellenberg435f0742010-09-06 12:30:25 +0200290 i = atomic_sub_return(i, a);
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200291 if (i < 0)
Lars Ellenberg435f0742010-09-06 12:30:25 +0200292 dev_warn(DEV, "ASSERTION FAILED: %s: %d < 0\n",
293 is_net ? "pp_in_use_by_net" : "pp_in_use", i);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700294 wake_up(&drbd_pp_wait);
295}
296
297/*
298You need to hold the req_lock:
299 _drbd_wait_ee_list_empty()
300
301You must not have the req_lock:
302 drbd_free_ee()
303 drbd_alloc_ee()
304 drbd_init_ee()
305 drbd_release_ee()
306 drbd_ee_fix_bhs()
307 drbd_process_done_ee()
308 drbd_clear_done_ee()
309 drbd_wait_ee_list_empty()
310*/
311
312struct drbd_epoch_entry *drbd_alloc_ee(struct drbd_conf *mdev,
313 u64 id,
314 sector_t sector,
315 unsigned int data_size,
316 gfp_t gfp_mask) __must_hold(local)
317{
Philipp Reisnerb411b362009-09-25 16:07:19 -0700318 struct drbd_epoch_entry *e;
319 struct page *page;
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200320 unsigned nr_pages = (data_size + PAGE_SIZE -1) >> PAGE_SHIFT;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700321
Andreas Gruenbacher0cf9d272010-12-07 10:43:29 +0100322 if (drbd_insert_fault(mdev, DRBD_FAULT_AL_EE))
Philipp Reisnerb411b362009-09-25 16:07:19 -0700323 return NULL;
324
325 e = mempool_alloc(drbd_ee_mempool, gfp_mask & ~__GFP_HIGHMEM);
326 if (!e) {
327 if (!(gfp_mask & __GFP_NOWARN))
328 dev_err(DEV, "alloc_ee: Allocation of an EE failed\n");
329 return NULL;
330 }
331
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200332 page = drbd_pp_alloc(mdev, nr_pages, (gfp_mask & __GFP_WAIT));
333 if (!page)
334 goto fail;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700335
Bart Van Assche24c48302011-05-21 18:32:29 +0200336 INIT_HLIST_NODE(&e->collision);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700337 e->epoch = NULL;
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200338 e->mdev = mdev;
339 e->pages = page;
340 atomic_set(&e->pending_bios, 0);
341 e->size = data_size;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700342 e->flags = 0;
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200343 e->sector = sector;
Andreas Gruenbacher9a8e7752011-01-11 14:04:09 +0100344 /*
345 * The block_id is opaque to the receiver. It is not endianness
346 * converted, and sent back to the sender unchanged.
347 */
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200348 e->block_id = id;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700349
Philipp Reisnerb411b362009-09-25 16:07:19 -0700350 return e;
351
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200352 fail:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700353 mempool_free(e, drbd_ee_mempool);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700354 return NULL;
355}
356
Lars Ellenberg435f0742010-09-06 12:30:25 +0200357void drbd_free_some_ee(struct drbd_conf *mdev, struct drbd_epoch_entry *e, int is_net)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700358{
Lars Ellenbergc36c3ce2010-08-11 20:42:55 +0200359 if (e->flags & EE_HAS_DIGEST)
360 kfree(e->digest);
Lars Ellenberg435f0742010-09-06 12:30:25 +0200361 drbd_pp_free(mdev, e->pages, is_net);
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200362 D_ASSERT(atomic_read(&e->pending_bios) == 0);
Bart Van Assche24c48302011-05-21 18:32:29 +0200363 D_ASSERT(hlist_unhashed(&e->collision));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700364 mempool_free(e, drbd_ee_mempool);
365}
366
367int drbd_release_ee(struct drbd_conf *mdev, struct list_head *list)
368{
369 LIST_HEAD(work_list);
370 struct drbd_epoch_entry *e, *t;
371 int count = 0;
Lars Ellenberg435f0742010-09-06 12:30:25 +0200372 int is_net = list == &mdev->net_ee;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700373
374 spin_lock_irq(&mdev->req_lock);
375 list_splice_init(list, &work_list);
376 spin_unlock_irq(&mdev->req_lock);
377
378 list_for_each_entry_safe(e, t, &work_list, w.list) {
Lars Ellenberg435f0742010-09-06 12:30:25 +0200379 drbd_free_some_ee(mdev, e, is_net);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700380 count++;
381 }
382 return count;
383}
384
385
386/*
387 * This function is called from _asender only_
388 * but see also comments in _req_mod(,barrier_acked)
389 * and receive_Barrier.
390 *
391 * Move entries from net_ee to done_ee, if ready.
392 * Grab done_ee, call all callbacks, free the entries.
393 * The callbacks typically send out ACKs.
394 */
395static int drbd_process_done_ee(struct drbd_conf *mdev)
396{
397 LIST_HEAD(work_list);
398 LIST_HEAD(reclaimed);
399 struct drbd_epoch_entry *e, *t;
400 int ok = (mdev->state.conn >= C_WF_REPORT_PARAMS);
401
402 spin_lock_irq(&mdev->req_lock);
403 reclaim_net_ee(mdev, &reclaimed);
404 list_splice_init(&mdev->done_ee, &work_list);
405 spin_unlock_irq(&mdev->req_lock);
406
407 list_for_each_entry_safe(e, t, &reclaimed, w.list)
Lars Ellenberg435f0742010-09-06 12:30:25 +0200408 drbd_free_net_ee(mdev, e);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700409
410 /* possible callbacks here:
411 * e_end_block, and e_end_resync_block, e_send_discard_ack.
412 * all ignore the last argument.
413 */
414 list_for_each_entry_safe(e, t, &work_list, w.list) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700415 /* list_del not necessary, next/prev members not touched */
416 ok = e->w.cb(mdev, &e->w, !ok) && ok;
417 drbd_free_ee(mdev, e);
418 }
419 wake_up(&mdev->ee_wait);
420
421 return ok;
422}
423
424void _drbd_wait_ee_list_empty(struct drbd_conf *mdev, struct list_head *head)
425{
426 DEFINE_WAIT(wait);
427
428 /* avoids spin_lock/unlock
429 * and calling prepare_to_wait in the fast path */
430 while (!list_empty(head)) {
431 prepare_to_wait(&mdev->ee_wait, &wait, TASK_UNINTERRUPTIBLE);
432 spin_unlock_irq(&mdev->req_lock);
Jens Axboe7eaceac2011-03-10 08:52:07 +0100433 io_schedule();
Philipp Reisnerb411b362009-09-25 16:07:19 -0700434 finish_wait(&mdev->ee_wait, &wait);
435 spin_lock_irq(&mdev->req_lock);
436 }
437}
438
439void drbd_wait_ee_list_empty(struct drbd_conf *mdev, struct list_head *head)
440{
441 spin_lock_irq(&mdev->req_lock);
442 _drbd_wait_ee_list_empty(mdev, head);
443 spin_unlock_irq(&mdev->req_lock);
444}
445
446/* see also kernel_accept; which is only present since 2.6.18.
447 * also we want to log which part of it failed, exactly */
448static int drbd_accept(struct drbd_conf *mdev, const char **what,
449 struct socket *sock, struct socket **newsock)
450{
451 struct sock *sk = sock->sk;
452 int err = 0;
453
454 *what = "listen";
455 err = sock->ops->listen(sock, 5);
456 if (err < 0)
457 goto out;
458
459 *what = "sock_create_lite";
460 err = sock_create_lite(sk->sk_family, sk->sk_type, sk->sk_protocol,
461 newsock);
462 if (err < 0)
463 goto out;
464
465 *what = "accept";
466 err = sock->ops->accept(sock, *newsock, 0);
467 if (err < 0) {
468 sock_release(*newsock);
469 *newsock = NULL;
470 goto out;
471 }
472 (*newsock)->ops = sock->ops;
473
474out:
475 return err;
476}
477
478static int drbd_recv_short(struct drbd_conf *mdev, struct socket *sock,
479 void *buf, size_t size, int flags)
480{
481 mm_segment_t oldfs;
482 struct kvec iov = {
483 .iov_base = buf,
484 .iov_len = size,
485 };
486 struct msghdr msg = {
487 .msg_iovlen = 1,
488 .msg_iov = (struct iovec *)&iov,
489 .msg_flags = (flags ? flags : MSG_WAITALL | MSG_NOSIGNAL)
490 };
491 int rv;
492
493 oldfs = get_fs();
494 set_fs(KERNEL_DS);
495 rv = sock_recvmsg(sock, &msg, size, msg.msg_flags);
496 set_fs(oldfs);
497
498 return rv;
499}
500
501static int drbd_recv(struct drbd_conf *mdev, void *buf, size_t size)
502{
503 mm_segment_t oldfs;
504 struct kvec iov = {
505 .iov_base = buf,
506 .iov_len = size,
507 };
508 struct msghdr msg = {
509 .msg_iovlen = 1,
510 .msg_iov = (struct iovec *)&iov,
511 .msg_flags = MSG_WAITALL | MSG_NOSIGNAL
512 };
513 int rv;
514
515 oldfs = get_fs();
516 set_fs(KERNEL_DS);
517
518 for (;;) {
519 rv = sock_recvmsg(mdev->data.socket, &msg, size, msg.msg_flags);
520 if (rv == size)
521 break;
522
523 /* Note:
524 * ECONNRESET other side closed the connection
525 * ERESTARTSYS (on sock) we got a signal
526 */
527
528 if (rv < 0) {
529 if (rv == -ECONNRESET)
530 dev_info(DEV, "sock was reset by peer\n");
531 else if (rv != -ERESTARTSYS)
532 dev_err(DEV, "sock_recvmsg returned %d\n", rv);
533 break;
534 } else if (rv == 0) {
535 dev_info(DEV, "sock was shut down by peer\n");
536 break;
537 } else {
538 /* signal came in, or peer/link went down,
539 * after we read a partial message
540 */
541 /* D_ASSERT(signal_pending(current)); */
542 break;
543 }
544 };
545
546 set_fs(oldfs);
547
548 if (rv != size)
549 drbd_force_state(mdev, NS(conn, C_BROKEN_PIPE));
550
551 return rv;
552}
553
Lars Ellenberg5dbf1672010-05-25 16:18:01 +0200554/* quoting tcp(7):
555 * On individual connections, the socket buffer size must be set prior to the
556 * listen(2) or connect(2) calls in order to have it take effect.
557 * This is our wrapper to do so.
558 */
559static void drbd_setbufsize(struct socket *sock, unsigned int snd,
560 unsigned int rcv)
561{
562 /* open coded SO_SNDBUF, SO_RCVBUF */
563 if (snd) {
564 sock->sk->sk_sndbuf = snd;
565 sock->sk->sk_userlocks |= SOCK_SNDBUF_LOCK;
566 }
567 if (rcv) {
568 sock->sk->sk_rcvbuf = rcv;
569 sock->sk->sk_userlocks |= SOCK_RCVBUF_LOCK;
570 }
571}
572
Philipp Reisnerb411b362009-09-25 16:07:19 -0700573static struct socket *drbd_try_connect(struct drbd_conf *mdev)
574{
575 const char *what;
576 struct socket *sock;
577 struct sockaddr_in6 src_in6;
578 int err;
579 int disconnect_on_error = 1;
580
581 if (!get_net_conf(mdev))
582 return NULL;
583
584 what = "sock_create_kern";
585 err = sock_create_kern(((struct sockaddr *)mdev->net_conf->my_addr)->sa_family,
586 SOCK_STREAM, IPPROTO_TCP, &sock);
587 if (err < 0) {
588 sock = NULL;
589 goto out;
590 }
591
592 sock->sk->sk_rcvtimeo =
593 sock->sk->sk_sndtimeo = mdev->net_conf->try_connect_int*HZ;
Lars Ellenberg5dbf1672010-05-25 16:18:01 +0200594 drbd_setbufsize(sock, mdev->net_conf->sndbuf_size,
595 mdev->net_conf->rcvbuf_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700596
597 /* explicitly bind to the configured IP as source IP
598 * for the outgoing connections.
599 * This is needed for multihomed hosts and to be
600 * able to use lo: interfaces for drbd.
601 * Make sure to use 0 as port number, so linux selects
602 * a free one dynamically.
603 */
604 memcpy(&src_in6, mdev->net_conf->my_addr,
605 min_t(int, mdev->net_conf->my_addr_len, sizeof(src_in6)));
606 if (((struct sockaddr *)mdev->net_conf->my_addr)->sa_family == AF_INET6)
607 src_in6.sin6_port = 0;
608 else
609 ((struct sockaddr_in *)&src_in6)->sin_port = 0; /* AF_INET & AF_SCI */
610
611 what = "bind before connect";
612 err = sock->ops->bind(sock,
613 (struct sockaddr *) &src_in6,
614 mdev->net_conf->my_addr_len);
615 if (err < 0)
616 goto out;
617
618 /* connect may fail, peer not yet available.
619 * stay C_WF_CONNECTION, don't go Disconnecting! */
620 disconnect_on_error = 0;
621 what = "connect";
622 err = sock->ops->connect(sock,
623 (struct sockaddr *)mdev->net_conf->peer_addr,
624 mdev->net_conf->peer_addr_len, 0);
625
626out:
627 if (err < 0) {
628 if (sock) {
629 sock_release(sock);
630 sock = NULL;
631 }
632 switch (-err) {
633 /* timeout, busy, signal pending */
634 case ETIMEDOUT: case EAGAIN: case EINPROGRESS:
635 case EINTR: case ERESTARTSYS:
636 /* peer not (yet) available, network problem */
637 case ECONNREFUSED: case ENETUNREACH:
638 case EHOSTDOWN: case EHOSTUNREACH:
639 disconnect_on_error = 0;
640 break;
641 default:
642 dev_err(DEV, "%s failed, err = %d\n", what, err);
643 }
644 if (disconnect_on_error)
645 drbd_force_state(mdev, NS(conn, C_DISCONNECTING));
646 }
647 put_net_conf(mdev);
648 return sock;
649}
650
651static struct socket *drbd_wait_for_connect(struct drbd_conf *mdev)
652{
653 int timeo, err;
654 struct socket *s_estab = NULL, *s_listen;
655 const char *what;
656
657 if (!get_net_conf(mdev))
658 return NULL;
659
660 what = "sock_create_kern";
661 err = sock_create_kern(((struct sockaddr *)mdev->net_conf->my_addr)->sa_family,
662 SOCK_STREAM, IPPROTO_TCP, &s_listen);
663 if (err) {
664 s_listen = NULL;
665 goto out;
666 }
667
668 timeo = mdev->net_conf->try_connect_int * HZ;
669 timeo += (random32() & 1) ? timeo / 7 : -timeo / 7; /* 28.5% random jitter */
670
671 s_listen->sk->sk_reuse = 1; /* SO_REUSEADDR */
672 s_listen->sk->sk_rcvtimeo = timeo;
673 s_listen->sk->sk_sndtimeo = timeo;
Lars Ellenberg5dbf1672010-05-25 16:18:01 +0200674 drbd_setbufsize(s_listen, mdev->net_conf->sndbuf_size,
675 mdev->net_conf->rcvbuf_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700676
677 what = "bind before listen";
678 err = s_listen->ops->bind(s_listen,
679 (struct sockaddr *) mdev->net_conf->my_addr,
680 mdev->net_conf->my_addr_len);
681 if (err < 0)
682 goto out;
683
684 err = drbd_accept(mdev, &what, s_listen, &s_estab);
685
686out:
687 if (s_listen)
688 sock_release(s_listen);
689 if (err < 0) {
690 if (err != -EAGAIN && err != -EINTR && err != -ERESTARTSYS) {
691 dev_err(DEV, "%s failed, err = %d\n", what, err);
692 drbd_force_state(mdev, NS(conn, C_DISCONNECTING));
693 }
694 }
695 put_net_conf(mdev);
696
697 return s_estab;
698}
699
700static int drbd_send_fp(struct drbd_conf *mdev,
701 struct socket *sock, enum drbd_packets cmd)
702{
Philipp Reisner02918be2010-08-20 14:35:10 +0200703 struct p_header80 *h = &mdev->data.sbuf.header.h80;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700704
705 return _drbd_send_cmd(mdev, sock, cmd, h, sizeof(*h), 0);
706}
707
708static enum drbd_packets drbd_recv_fp(struct drbd_conf *mdev, struct socket *sock)
709{
Philipp Reisner02918be2010-08-20 14:35:10 +0200710 struct p_header80 *h = &mdev->data.rbuf.header.h80;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700711 int rr;
712
713 rr = drbd_recv_short(mdev, sock, h, sizeof(*h), 0);
714
Andreas Gruenbacherca9bc122011-01-11 13:47:24 +0100715 if (rr == sizeof(*h) && h->magic == cpu_to_be32(DRBD_MAGIC))
Philipp Reisnerb411b362009-09-25 16:07:19 -0700716 return be16_to_cpu(h->command);
717
718 return 0xffff;
719}
720
721/**
722 * drbd_socket_okay() - Free the socket if its connection is not okay
723 * @mdev: DRBD device.
724 * @sock: pointer to the pointer to the socket.
725 */
726static int drbd_socket_okay(struct drbd_conf *mdev, struct socket **sock)
727{
728 int rr;
729 char tb[4];
730
731 if (!*sock)
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100732 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700733
734 rr = drbd_recv_short(mdev, *sock, tb, 4, MSG_DONTWAIT | MSG_PEEK);
735
736 if (rr > 0 || rr == -EAGAIN) {
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100737 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700738 } else {
739 sock_release(*sock);
740 *sock = NULL;
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100741 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700742 }
743}
744
745/*
746 * return values:
747 * 1 yes, we have a valid connection
748 * 0 oops, did not work out, please try again
749 * -1 peer talks different language,
750 * no point in trying again, please go standalone.
751 * -2 We do not have a network config...
752 */
753static int drbd_connect(struct drbd_conf *mdev)
754{
755 struct socket *s, *sock, *msock;
756 int try, h, ok;
757
758 D_ASSERT(!mdev->data.socket);
759
Philipp Reisnerb411b362009-09-25 16:07:19 -0700760 if (drbd_request_state(mdev, NS(conn, C_WF_CONNECTION)) < SS_SUCCESS)
761 return -2;
762
763 clear_bit(DISCARD_CONCURRENT, &mdev->flags);
764
765 sock = NULL;
766 msock = NULL;
767
768 do {
769 for (try = 0;;) {
770 /* 3 tries, this should take less than a second! */
771 s = drbd_try_connect(mdev);
772 if (s || ++try >= 3)
773 break;
774 /* give the other side time to call bind() & listen() */
Philipp Reisner20ee6392011-01-18 15:28:59 +0100775 schedule_timeout_interruptible(HZ / 10);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700776 }
777
778 if (s) {
779 if (!sock) {
780 drbd_send_fp(mdev, s, P_HAND_SHAKE_S);
781 sock = s;
782 s = NULL;
783 } else if (!msock) {
784 drbd_send_fp(mdev, s, P_HAND_SHAKE_M);
785 msock = s;
786 s = NULL;
787 } else {
788 dev_err(DEV, "Logic error in drbd_connect()\n");
789 goto out_release_sockets;
790 }
791 }
792
793 if (sock && msock) {
Philipp Reisnera8e40792011-05-13 12:03:55 +0200794 schedule_timeout_interruptible(mdev->net_conf->ping_timeo*HZ/10);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700795 ok = drbd_socket_okay(mdev, &sock);
796 ok = drbd_socket_okay(mdev, &msock) && ok;
797 if (ok)
798 break;
799 }
800
801retry:
802 s = drbd_wait_for_connect(mdev);
803 if (s) {
804 try = drbd_recv_fp(mdev, s);
805 drbd_socket_okay(mdev, &sock);
806 drbd_socket_okay(mdev, &msock);
807 switch (try) {
808 case P_HAND_SHAKE_S:
809 if (sock) {
810 dev_warn(DEV, "initial packet S crossed\n");
811 sock_release(sock);
812 }
813 sock = s;
814 break;
815 case P_HAND_SHAKE_M:
816 if (msock) {
817 dev_warn(DEV, "initial packet M crossed\n");
818 sock_release(msock);
819 }
820 msock = s;
821 set_bit(DISCARD_CONCURRENT, &mdev->flags);
822 break;
823 default:
824 dev_warn(DEV, "Error receiving initial packet\n");
825 sock_release(s);
826 if (random32() & 1)
827 goto retry;
828 }
829 }
830
831 if (mdev->state.conn <= C_DISCONNECTING)
832 goto out_release_sockets;
833 if (signal_pending(current)) {
834 flush_signals(current);
835 smp_rmb();
836 if (get_t_state(&mdev->receiver) == Exiting)
837 goto out_release_sockets;
838 }
839
840 if (sock && msock) {
841 ok = drbd_socket_okay(mdev, &sock);
842 ok = drbd_socket_okay(mdev, &msock) && ok;
843 if (ok)
844 break;
845 }
846 } while (1);
847
848 msock->sk->sk_reuse = 1; /* SO_REUSEADDR */
849 sock->sk->sk_reuse = 1; /* SO_REUSEADDR */
850
851 sock->sk->sk_allocation = GFP_NOIO;
852 msock->sk->sk_allocation = GFP_NOIO;
853
854 sock->sk->sk_priority = TC_PRIO_INTERACTIVE_BULK;
855 msock->sk->sk_priority = TC_PRIO_INTERACTIVE;
856
Philipp Reisnerb411b362009-09-25 16:07:19 -0700857 /* NOT YET ...
858 * sock->sk->sk_sndtimeo = mdev->net_conf->timeout*HZ/10;
859 * sock->sk->sk_rcvtimeo = MAX_SCHEDULE_TIMEOUT;
860 * first set it to the P_HAND_SHAKE timeout,
861 * which we set to 4x the configured ping_timeout. */
862 sock->sk->sk_sndtimeo =
863 sock->sk->sk_rcvtimeo = mdev->net_conf->ping_timeo*4*HZ/10;
864
865 msock->sk->sk_sndtimeo = mdev->net_conf->timeout*HZ/10;
866 msock->sk->sk_rcvtimeo = mdev->net_conf->ping_int*HZ;
867
868 /* we don't want delays.
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300869 * we use TCP_CORK where appropriate, though */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700870 drbd_tcp_nodelay(sock);
871 drbd_tcp_nodelay(msock);
872
873 mdev->data.socket = sock;
874 mdev->meta.socket = msock;
875 mdev->last_received = jiffies;
876
877 D_ASSERT(mdev->asender.task == NULL);
878
879 h = drbd_do_handshake(mdev);
880 if (h <= 0)
881 return h;
882
883 if (mdev->cram_hmac_tfm) {
884 /* drbd_request_state(mdev, NS(conn, WFAuth)); */
Johannes Thomab10d96c2010-01-07 16:02:50 +0100885 switch (drbd_do_auth(mdev)) {
886 case -1:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700887 dev_err(DEV, "Authentication of peer failed\n");
888 return -1;
Johannes Thomab10d96c2010-01-07 16:02:50 +0100889 case 0:
890 dev_err(DEV, "Authentication of peer failed, trying again.\n");
891 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700892 }
893 }
894
895 if (drbd_request_state(mdev, NS(conn, C_WF_REPORT_PARAMS)) < SS_SUCCESS)
896 return 0;
897
898 sock->sk->sk_sndtimeo = mdev->net_conf->timeout*HZ/10;
899 sock->sk->sk_rcvtimeo = MAX_SCHEDULE_TIMEOUT;
900
901 atomic_set(&mdev->packet_seq, 0);
902 mdev->peer_seq = 0;
903
904 drbd_thread_start(&mdev->asender);
905
Philipp Reisner148efa12011-01-15 00:21:15 +0100906 if (drbd_send_protocol(mdev) == -1)
Philipp Reisner7e2455c2010-04-22 14:50:23 +0200907 return -1;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700908 drbd_send_sync_param(mdev, &mdev->sync_conf);
Philipp Reisnere89b5912010-03-24 17:11:33 +0100909 drbd_send_sizes(mdev, 0, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700910 drbd_send_uuids(mdev);
911 drbd_send_state(mdev);
912 clear_bit(USE_DEGR_WFC_T, &mdev->flags);
913 clear_bit(RESIZE_PENDING, &mdev->flags);
Philipp Reisner7fde2be2011-03-01 11:08:28 +0100914 mod_timer(&mdev->request_timer, jiffies + HZ); /* just start it here. */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700915
916 return 1;
917
918out_release_sockets:
919 if (sock)
920 sock_release(sock);
921 if (msock)
922 sock_release(msock);
923 return -1;
924}
925
Philipp Reisner02918be2010-08-20 14:35:10 +0200926static int drbd_recv_header(struct drbd_conf *mdev, enum drbd_packets *cmd, unsigned int *packet_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700927{
Philipp Reisner02918be2010-08-20 14:35:10 +0200928 union p_header *h = &mdev->data.rbuf.header;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700929 int r;
930
931 r = drbd_recv(mdev, h, sizeof(*h));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700932 if (unlikely(r != sizeof(*h))) {
Lars Ellenberg0ddc5542011-01-21 12:35:15 +0100933 if (!signal_pending(current))
934 dev_warn(DEV, "short read expecting header on sock: r=%d\n", r);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100935 return false;
Philipp Reisner02918be2010-08-20 14:35:10 +0200936 }
937
Andreas Gruenbacherca9bc122011-01-11 13:47:24 +0100938 if (likely(h->h80.magic == cpu_to_be32(DRBD_MAGIC))) {
Philipp Reisner02918be2010-08-20 14:35:10 +0200939 *cmd = be16_to_cpu(h->h80.command);
940 *packet_size = be16_to_cpu(h->h80.length);
Andreas Gruenbacherca9bc122011-01-11 13:47:24 +0100941 } else if (h->h95.magic == cpu_to_be16(DRBD_MAGIC_BIG)) {
Philipp Reisner02918be2010-08-20 14:35:10 +0200942 *cmd = be16_to_cpu(h->h95.command);
943 *packet_size = be32_to_cpu(h->h95.length);
944 } else {
Lars Ellenberg004352f2010-10-05 20:13:58 +0200945 dev_err(DEV, "magic?? on data m: 0x%08x c: %d l: %d\n",
946 be32_to_cpu(h->h80.magic),
947 be16_to_cpu(h->h80.command),
948 be16_to_cpu(h->h80.length));
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100949 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700950 }
951 mdev->last_received = jiffies;
952
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100953 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700954}
955
Philipp Reisner2451fc32010-08-24 13:43:11 +0200956static void drbd_flush(struct drbd_conf *mdev)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700957{
958 int rv;
959
960 if (mdev->write_ordering >= WO_bdev_flush && get_ldev(mdev)) {
Dmitry Monakhovfbd9b092010-04-28 17:55:06 +0400961 rv = blkdev_issue_flush(mdev->ldev->backing_bdev, GFP_KERNEL,
Christoph Hellwigdd3932e2010-09-16 20:51:46 +0200962 NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700963 if (rv) {
964 dev_err(DEV, "local disk flush failed with status %d\n", rv);
965 /* would rather check on EOPNOTSUPP, but that is not reliable.
966 * don't try again for ANY return value != 0
967 * if (rv == -EOPNOTSUPP) */
968 drbd_bump_write_ordering(mdev, WO_drain_io);
969 }
970 put_ldev(mdev);
971 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700972}
973
974/**
975 * drbd_may_finish_epoch() - Applies an epoch_event to the epoch's state, eventually finishes it.
976 * @mdev: DRBD device.
977 * @epoch: Epoch object.
978 * @ev: Epoch event.
979 */
980static enum finish_epoch drbd_may_finish_epoch(struct drbd_conf *mdev,
981 struct drbd_epoch *epoch,
982 enum epoch_event ev)
983{
Philipp Reisner2451fc32010-08-24 13:43:11 +0200984 int epoch_size;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700985 struct drbd_epoch *next_epoch;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700986 enum finish_epoch rv = FE_STILL_LIVE;
987
988 spin_lock(&mdev->epoch_lock);
989 do {
990 next_epoch = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700991
992 epoch_size = atomic_read(&epoch->epoch_size);
993
994 switch (ev & ~EV_CLEANUP) {
995 case EV_PUT:
996 atomic_dec(&epoch->active);
997 break;
998 case EV_GOT_BARRIER_NR:
999 set_bit(DE_HAVE_BARRIER_NUMBER, &epoch->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001000 break;
1001 case EV_BECAME_LAST:
1002 /* nothing to do*/
1003 break;
1004 }
1005
Philipp Reisnerb411b362009-09-25 16:07:19 -07001006 if (epoch_size != 0 &&
1007 atomic_read(&epoch->active) == 0 &&
Philipp Reisner2451fc32010-08-24 13:43:11 +02001008 test_bit(DE_HAVE_BARRIER_NUMBER, &epoch->flags)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001009 if (!(ev & EV_CLEANUP)) {
1010 spin_unlock(&mdev->epoch_lock);
1011 drbd_send_b_ack(mdev, epoch->barrier_nr, epoch_size);
1012 spin_lock(&mdev->epoch_lock);
1013 }
1014 dec_unacked(mdev);
1015
1016 if (mdev->current_epoch != epoch) {
1017 next_epoch = list_entry(epoch->list.next, struct drbd_epoch, list);
1018 list_del(&epoch->list);
1019 ev = EV_BECAME_LAST | (ev & EV_CLEANUP);
1020 mdev->epochs--;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001021 kfree(epoch);
1022
1023 if (rv == FE_STILL_LIVE)
1024 rv = FE_DESTROYED;
1025 } else {
1026 epoch->flags = 0;
1027 atomic_set(&epoch->epoch_size, 0);
Uwe Kleine-König698f9312010-07-02 20:41:51 +02001028 /* atomic_set(&epoch->active, 0); is already zero */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001029 if (rv == FE_STILL_LIVE)
1030 rv = FE_RECYCLED;
Philipp Reisner2451fc32010-08-24 13:43:11 +02001031 wake_up(&mdev->ee_wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001032 }
1033 }
1034
1035 if (!next_epoch)
1036 break;
1037
1038 epoch = next_epoch;
1039 } while (1);
1040
1041 spin_unlock(&mdev->epoch_lock);
1042
Philipp Reisnerb411b362009-09-25 16:07:19 -07001043 return rv;
1044}
1045
1046/**
1047 * drbd_bump_write_ordering() - Fall back to an other write ordering method
1048 * @mdev: DRBD device.
1049 * @wo: Write ordering method to try.
1050 */
1051void drbd_bump_write_ordering(struct drbd_conf *mdev, enum write_ordering_e wo) __must_hold(local)
1052{
1053 enum write_ordering_e pwo;
1054 static char *write_ordering_str[] = {
1055 [WO_none] = "none",
1056 [WO_drain_io] = "drain",
1057 [WO_bdev_flush] = "flush",
Philipp Reisnerb411b362009-09-25 16:07:19 -07001058 };
1059
1060 pwo = mdev->write_ordering;
1061 wo = min(pwo, wo);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001062 if (wo == WO_bdev_flush && mdev->ldev->dc.no_disk_flush)
1063 wo = WO_drain_io;
1064 if (wo == WO_drain_io && mdev->ldev->dc.no_disk_drain)
1065 wo = WO_none;
1066 mdev->write_ordering = wo;
Philipp Reisner2451fc32010-08-24 13:43:11 +02001067 if (pwo != mdev->write_ordering || wo == WO_bdev_flush)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001068 dev_info(DEV, "Method to ensure write ordering: %s\n", write_ordering_str[mdev->write_ordering]);
1069}
1070
1071/**
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001072 * drbd_submit_ee()
1073 * @mdev: DRBD device.
1074 * @e: epoch entry
1075 * @rw: flag field, see bio->bi_rw
Lars Ellenberg10f6d9922011-01-24 14:47:09 +01001076 *
1077 * May spread the pages to multiple bios,
1078 * depending on bio_add_page restrictions.
1079 *
1080 * Returns 0 if all bios have been submitted,
1081 * -ENOMEM if we could not allocate enough bios,
1082 * -ENOSPC (any better suggestion?) if we have not been able to bio_add_page a
1083 * single page to an empty bio (which should never happen and likely indicates
1084 * that the lower level IO stack is in some way broken). This has been observed
1085 * on certain Xen deployments.
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001086 */
1087/* TODO allocate from our own bio_set. */
1088int drbd_submit_ee(struct drbd_conf *mdev, struct drbd_epoch_entry *e,
1089 const unsigned rw, const int fault_type)
1090{
1091 struct bio *bios = NULL;
1092 struct bio *bio;
1093 struct page *page = e->pages;
1094 sector_t sector = e->sector;
1095 unsigned ds = e->size;
1096 unsigned n_bios = 0;
1097 unsigned nr_pages = (ds + PAGE_SIZE -1) >> PAGE_SHIFT;
Lars Ellenberg10f6d9922011-01-24 14:47:09 +01001098 int err = -ENOMEM;
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001099
1100 /* In most cases, we will only need one bio. But in case the lower
1101 * level restrictions happen to be different at this offset on this
1102 * side than those of the sending peer, we may need to submit the
1103 * request in more than one bio. */
1104next_bio:
1105 bio = bio_alloc(GFP_NOIO, nr_pages);
1106 if (!bio) {
1107 dev_err(DEV, "submit_ee: Allocation of a bio failed\n");
1108 goto fail;
1109 }
1110 /* > e->sector, unless this is the first bio */
1111 bio->bi_sector = sector;
1112 bio->bi_bdev = mdev->ldev->backing_bdev;
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001113 bio->bi_rw = rw;
1114 bio->bi_private = e;
1115 bio->bi_end_io = drbd_endio_sec;
1116
1117 bio->bi_next = bios;
1118 bios = bio;
1119 ++n_bios;
1120
1121 page_chain_for_each(page) {
1122 unsigned len = min_t(unsigned, ds, PAGE_SIZE);
1123 if (!bio_add_page(bio, page, len, 0)) {
Lars Ellenberg10f6d9922011-01-24 14:47:09 +01001124 /* A single page must always be possible!
1125 * But in case it fails anyways,
1126 * we deal with it, and complain (below). */
1127 if (bio->bi_vcnt == 0) {
1128 dev_err(DEV,
1129 "bio_add_page failed for len=%u, "
1130 "bi_vcnt=0 (bi_sector=%llu)\n",
1131 len, (unsigned long long)bio->bi_sector);
1132 err = -ENOSPC;
1133 goto fail;
1134 }
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001135 goto next_bio;
1136 }
1137 ds -= len;
1138 sector += len >> 9;
1139 --nr_pages;
1140 }
1141 D_ASSERT(page == NULL);
1142 D_ASSERT(ds == 0);
1143
1144 atomic_set(&e->pending_bios, n_bios);
1145 do {
1146 bio = bios;
1147 bios = bios->bi_next;
1148 bio->bi_next = NULL;
1149
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001150 drbd_generic_make_request(mdev, fault_type, bio);
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001151 } while (bios);
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001152 return 0;
1153
1154fail:
1155 while (bios) {
1156 bio = bios;
1157 bios = bios->bi_next;
1158 bio_put(bio);
1159 }
Lars Ellenberg10f6d9922011-01-24 14:47:09 +01001160 return err;
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001161}
1162
Philipp Reisner02918be2010-08-20 14:35:10 +02001163static int receive_Barrier(struct drbd_conf *mdev, enum drbd_packets cmd, unsigned int data_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001164{
Philipp Reisner2451fc32010-08-24 13:43:11 +02001165 int rv;
Philipp Reisner02918be2010-08-20 14:35:10 +02001166 struct p_barrier *p = &mdev->data.rbuf.barrier;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001167 struct drbd_epoch *epoch;
1168
Philipp Reisnerb411b362009-09-25 16:07:19 -07001169 inc_unacked(mdev);
1170
Philipp Reisnerb411b362009-09-25 16:07:19 -07001171 mdev->current_epoch->barrier_nr = p->barrier;
1172 rv = drbd_may_finish_epoch(mdev, mdev->current_epoch, EV_GOT_BARRIER_NR);
1173
1174 /* P_BARRIER_ACK may imply that the corresponding extent is dropped from
1175 * the activity log, which means it would not be resynced in case the
1176 * R_PRIMARY crashes now.
1177 * Therefore we must send the barrier_ack after the barrier request was
1178 * completed. */
1179 switch (mdev->write_ordering) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001180 case WO_none:
1181 if (rv == FE_RECYCLED)
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001182 return true;
Philipp Reisner2451fc32010-08-24 13:43:11 +02001183
1184 /* receiver context, in the writeout path of the other node.
1185 * avoid potential distributed deadlock */
1186 epoch = kmalloc(sizeof(struct drbd_epoch), GFP_NOIO);
1187 if (epoch)
1188 break;
1189 else
1190 dev_warn(DEV, "Allocation of an epoch failed, slowing down\n");
1191 /* Fall through */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001192
1193 case WO_bdev_flush:
1194 case WO_drain_io:
Philipp Reisnerb411b362009-09-25 16:07:19 -07001195 drbd_wait_ee_list_empty(mdev, &mdev->active_ee);
Philipp Reisner2451fc32010-08-24 13:43:11 +02001196 drbd_flush(mdev);
1197
1198 if (atomic_read(&mdev->current_epoch->epoch_size)) {
1199 epoch = kmalloc(sizeof(struct drbd_epoch), GFP_NOIO);
1200 if (epoch)
1201 break;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001202 }
1203
Philipp Reisner2451fc32010-08-24 13:43:11 +02001204 epoch = mdev->current_epoch;
1205 wait_event(mdev->ee_wait, atomic_read(&epoch->epoch_size) == 0);
1206
1207 D_ASSERT(atomic_read(&epoch->active) == 0);
1208 D_ASSERT(epoch->flags == 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001209
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001210 return true;
Philipp Reisner2451fc32010-08-24 13:43:11 +02001211 default:
1212 dev_err(DEV, "Strangeness in mdev->write_ordering %d\n", mdev->write_ordering);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001213 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001214 }
1215
1216 epoch->flags = 0;
1217 atomic_set(&epoch->epoch_size, 0);
1218 atomic_set(&epoch->active, 0);
1219
1220 spin_lock(&mdev->epoch_lock);
1221 if (atomic_read(&mdev->current_epoch->epoch_size)) {
1222 list_add(&epoch->list, &mdev->current_epoch->list);
1223 mdev->current_epoch = epoch;
1224 mdev->epochs++;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001225 } else {
1226 /* The current_epoch got recycled while we allocated this one... */
1227 kfree(epoch);
1228 }
1229 spin_unlock(&mdev->epoch_lock);
1230
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001231 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001232}
1233
1234/* used from receive_RSDataReply (recv_resync_read)
1235 * and from receive_Data */
1236static struct drbd_epoch_entry *
1237read_in_block(struct drbd_conf *mdev, u64 id, sector_t sector, int data_size) __must_hold(local)
1238{
Lars Ellenberg66660322010-04-06 12:15:04 +02001239 const sector_t capacity = drbd_get_capacity(mdev->this_bdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001240 struct drbd_epoch_entry *e;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001241 struct page *page;
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001242 int dgs, ds, rr;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001243 void *dig_in = mdev->int_dig_in;
1244 void *dig_vv = mdev->int_dig_vv;
Philipp Reisner6b4388a2010-04-26 14:11:45 +02001245 unsigned long *data;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001246
1247 dgs = (mdev->agreed_pro_version >= 87 && mdev->integrity_r_tfm) ?
1248 crypto_hash_digestsize(mdev->integrity_r_tfm) : 0;
1249
1250 if (dgs) {
1251 rr = drbd_recv(mdev, dig_in, dgs);
1252 if (rr != dgs) {
Lars Ellenberg0ddc5542011-01-21 12:35:15 +01001253 if (!signal_pending(current))
1254 dev_warn(DEV,
1255 "short read receiving data digest: read %d expected %d\n",
1256 rr, dgs);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001257 return NULL;
1258 }
1259 }
1260
1261 data_size -= dgs;
1262
Philipp Reisnerd07c9c12011-01-20 16:49:33 +01001263 ERR_IF(data_size == 0) return NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001264 ERR_IF(data_size & 0x1ff) return NULL;
Lars Ellenberg1816a2b2010-11-11 15:19:07 +01001265 ERR_IF(data_size > DRBD_MAX_BIO_SIZE) return NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001266
Lars Ellenberg66660322010-04-06 12:15:04 +02001267 /* even though we trust out peer,
1268 * we sometimes have to double check. */
1269 if (sector + (data_size>>9) > capacity) {
Lars Ellenbergfdda6542011-01-24 15:11:01 +01001270 dev_err(DEV, "request from peer beyond end of local disk: "
1271 "capacity: %llus < sector: %llus + size: %u\n",
Lars Ellenberg66660322010-04-06 12:15:04 +02001272 (unsigned long long)capacity,
1273 (unsigned long long)sector, data_size);
1274 return NULL;
1275 }
1276
Philipp Reisnerb411b362009-09-25 16:07:19 -07001277 /* GFP_NOIO, because we must not cause arbitrary write-out: in a DRBD
1278 * "criss-cross" setup, that might cause write-out on some other DRBD,
1279 * which in turn might block on the other node at this very place. */
1280 e = drbd_alloc_ee(mdev, id, sector, data_size, GFP_NOIO);
1281 if (!e)
1282 return NULL;
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001283
Philipp Reisnerb411b362009-09-25 16:07:19 -07001284 ds = data_size;
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001285 page = e->pages;
1286 page_chain_for_each(page) {
1287 unsigned len = min_t(int, ds, PAGE_SIZE);
Philipp Reisner6b4388a2010-04-26 14:11:45 +02001288 data = kmap(page);
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001289 rr = drbd_recv(mdev, data, len);
Andreas Gruenbacher0cf9d272010-12-07 10:43:29 +01001290 if (drbd_insert_fault(mdev, DRBD_FAULT_RECEIVE)) {
Philipp Reisner6b4388a2010-04-26 14:11:45 +02001291 dev_err(DEV, "Fault injection: Corrupting data on receive\n");
1292 data[0] = data[0] ^ (unsigned long)-1;
1293 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001294 kunmap(page);
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001295 if (rr != len) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001296 drbd_free_ee(mdev, e);
Lars Ellenberg0ddc5542011-01-21 12:35:15 +01001297 if (!signal_pending(current))
1298 dev_warn(DEV, "short read receiving data: read %d expected %d\n",
1299 rr, len);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001300 return NULL;
1301 }
1302 ds -= rr;
1303 }
1304
1305 if (dgs) {
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001306 drbd_csum_ee(mdev, mdev->integrity_r_tfm, e, dig_vv);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001307 if (memcmp(dig_in, dig_vv, dgs)) {
Lars Ellenberg470be442010-11-10 10:36:52 +01001308 dev_err(DEV, "Digest integrity check FAILED: %llus +%u\n",
1309 (unsigned long long)sector, data_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001310 drbd_bcast_ee(mdev, "digest failed",
1311 dgs, dig_in, dig_vv, e);
1312 drbd_free_ee(mdev, e);
1313 return NULL;
1314 }
1315 }
1316 mdev->recv_cnt += data_size>>9;
1317 return e;
1318}
1319
1320/* drbd_drain_block() just takes a data block
1321 * out of the socket input buffer, and discards it.
1322 */
1323static int drbd_drain_block(struct drbd_conf *mdev, int data_size)
1324{
1325 struct page *page;
1326 int rr, rv = 1;
1327 void *data;
1328
Lars Ellenbergc3470cd2010-04-01 16:57:19 +02001329 if (!data_size)
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001330 return true;
Lars Ellenbergc3470cd2010-04-01 16:57:19 +02001331
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001332 page = drbd_pp_alloc(mdev, 1, 1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001333
1334 data = kmap(page);
1335 while (data_size) {
1336 rr = drbd_recv(mdev, data, min_t(int, data_size, PAGE_SIZE));
1337 if (rr != min_t(int, data_size, PAGE_SIZE)) {
1338 rv = 0;
Lars Ellenberg0ddc5542011-01-21 12:35:15 +01001339 if (!signal_pending(current))
1340 dev_warn(DEV,
1341 "short read receiving data: read %d expected %d\n",
1342 rr, min_t(int, data_size, PAGE_SIZE));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001343 break;
1344 }
1345 data_size -= rr;
1346 }
1347 kunmap(page);
Lars Ellenberg435f0742010-09-06 12:30:25 +02001348 drbd_pp_free(mdev, page, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001349 return rv;
1350}
1351
1352static int recv_dless_read(struct drbd_conf *mdev, struct drbd_request *req,
1353 sector_t sector, int data_size)
1354{
1355 struct bio_vec *bvec;
1356 struct bio *bio;
1357 int dgs, rr, i, expect;
1358 void *dig_in = mdev->int_dig_in;
1359 void *dig_vv = mdev->int_dig_vv;
1360
1361 dgs = (mdev->agreed_pro_version >= 87 && mdev->integrity_r_tfm) ?
1362 crypto_hash_digestsize(mdev->integrity_r_tfm) : 0;
1363
1364 if (dgs) {
1365 rr = drbd_recv(mdev, dig_in, dgs);
1366 if (rr != dgs) {
Lars Ellenberg0ddc5542011-01-21 12:35:15 +01001367 if (!signal_pending(current))
1368 dev_warn(DEV,
1369 "short read receiving data reply digest: read %d expected %d\n",
1370 rr, dgs);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001371 return 0;
1372 }
1373 }
1374
1375 data_size -= dgs;
1376
1377 /* optimistically update recv_cnt. if receiving fails below,
1378 * we disconnect anyways, and counters will be reset. */
1379 mdev->recv_cnt += data_size>>9;
1380
1381 bio = req->master_bio;
1382 D_ASSERT(sector == bio->bi_sector);
1383
1384 bio_for_each_segment(bvec, bio, i) {
1385 expect = min_t(int, data_size, bvec->bv_len);
1386 rr = drbd_recv(mdev,
1387 kmap(bvec->bv_page)+bvec->bv_offset,
1388 expect);
1389 kunmap(bvec->bv_page);
1390 if (rr != expect) {
Lars Ellenberg0ddc5542011-01-21 12:35:15 +01001391 if (!signal_pending(current))
1392 dev_warn(DEV, "short read receiving data reply: "
1393 "read %d expected %d\n",
1394 rr, expect);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001395 return 0;
1396 }
1397 data_size -= rr;
1398 }
1399
1400 if (dgs) {
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001401 drbd_csum_bio(mdev, mdev->integrity_r_tfm, bio, dig_vv);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001402 if (memcmp(dig_in, dig_vv, dgs)) {
1403 dev_err(DEV, "Digest integrity check FAILED. Broken NICs?\n");
1404 return 0;
1405 }
1406 }
1407
1408 D_ASSERT(data_size == 0);
1409 return 1;
1410}
1411
1412/* e_end_resync_block() is called via
1413 * drbd_process_done_ee() by asender only */
1414static int e_end_resync_block(struct drbd_conf *mdev, struct drbd_work *w, int unused)
1415{
1416 struct drbd_epoch_entry *e = (struct drbd_epoch_entry *)w;
1417 sector_t sector = e->sector;
1418 int ok;
1419
Bart Van Assche24c48302011-05-21 18:32:29 +02001420 D_ASSERT(hlist_unhashed(&e->collision));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001421
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001422 if (likely((e->flags & EE_WAS_ERROR) == 0)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001423 drbd_set_in_sync(mdev, sector, e->size);
1424 ok = drbd_send_ack(mdev, P_RS_WRITE_ACK, e);
1425 } else {
1426 /* Record failure to sync */
1427 drbd_rs_failed_io(mdev, sector, e->size);
1428
1429 ok = drbd_send_ack(mdev, P_NEG_ACK, e);
1430 }
1431 dec_unacked(mdev);
1432
1433 return ok;
1434}
1435
1436static int recv_resync_read(struct drbd_conf *mdev, sector_t sector, int data_size) __releases(local)
1437{
1438 struct drbd_epoch_entry *e;
1439
1440 e = read_in_block(mdev, ID_SYNCER, sector, data_size);
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001441 if (!e)
1442 goto fail;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001443
1444 dec_rs_pending(mdev);
1445
Philipp Reisnerb411b362009-09-25 16:07:19 -07001446 inc_unacked(mdev);
1447 /* corresponding dec_unacked() in e_end_resync_block()
1448 * respective _drbd_clear_done_ee */
1449
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001450 e->w.cb = e_end_resync_block;
1451
Philipp Reisnerb411b362009-09-25 16:07:19 -07001452 spin_lock_irq(&mdev->req_lock);
1453 list_add(&e->w.list, &mdev->sync_ee);
1454 spin_unlock_irq(&mdev->req_lock);
1455
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02001456 atomic_add(data_size >> 9, &mdev->rs_sect_ev);
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001457 if (drbd_submit_ee(mdev, e, WRITE, DRBD_FAULT_RS_WR) == 0)
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001458 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001459
Lars Ellenberg10f6d9922011-01-24 14:47:09 +01001460 /* don't care for the reason here */
1461 dev_err(DEV, "submit failed, triggering re-connect\n");
Lars Ellenberg22cc37a2010-09-14 20:40:41 +02001462 spin_lock_irq(&mdev->req_lock);
1463 list_del(&e->w.list);
1464 spin_unlock_irq(&mdev->req_lock);
1465
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001466 drbd_free_ee(mdev, e);
1467fail:
1468 put_ldev(mdev);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001469 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001470}
1471
Andreas Gruenbacher668eebc2011-01-20 17:14:26 +01001472static struct drbd_request *
1473find_request(struct drbd_conf *mdev,
1474 struct hlist_head *(*hash_slot)(struct drbd_conf *, sector_t),
Andreas Gruenbacherc3afd8f2011-01-20 22:25:40 +01001475 u64 id, sector_t sector, bool missing_ok, const char *func)
Andreas Gruenbacher668eebc2011-01-20 17:14:26 +01001476{
1477 struct hlist_head *slot = hash_slot(mdev, sector);
1478 struct hlist_node *n;
1479 struct drbd_request *req;
1480
1481 hlist_for_each_entry(req, n, slot, collision) {
1482 if ((unsigned long)req != (unsigned long)id)
1483 continue;
Andreas Gruenbacherace652a2011-01-03 17:09:58 +01001484 if (req->i.sector != sector) {
Andreas Gruenbacher668eebc2011-01-20 17:14:26 +01001485 dev_err(DEV, "%s: found request %lu but it has "
1486 "wrong sector (%llus versus %llus)\n",
1487 func, (unsigned long)req,
Andreas Gruenbacherace652a2011-01-03 17:09:58 +01001488 (unsigned long long)req->i.sector,
Andreas Gruenbacher668eebc2011-01-20 17:14:26 +01001489 (unsigned long long)sector);
Andreas Gruenbacherc3afd8f2011-01-20 22:25:40 +01001490 return NULL;
Andreas Gruenbacher668eebc2011-01-20 17:14:26 +01001491 }
1492 return req;
1493 }
Andreas Gruenbacherc3afd8f2011-01-20 22:25:40 +01001494 if (!missing_ok) {
1495 dev_err(DEV, "%s: failed to find request %lu, sector %llus\n", func,
1496 (unsigned long)id, (unsigned long long)sector);
1497 }
Andreas Gruenbacher668eebc2011-01-20 17:14:26 +01001498 return NULL;
1499}
1500
Philipp Reisner02918be2010-08-20 14:35:10 +02001501static int receive_DataReply(struct drbd_conf *mdev, enum drbd_packets cmd, unsigned int data_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001502{
1503 struct drbd_request *req;
1504 sector_t sector;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001505 int ok;
Philipp Reisner02918be2010-08-20 14:35:10 +02001506 struct p_data *p = &mdev->data.rbuf.data;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001507
1508 sector = be64_to_cpu(p->sector);
1509
1510 spin_lock_irq(&mdev->req_lock);
Andreas Gruenbacherc3afd8f2011-01-20 22:25:40 +01001511 req = find_request(mdev, ar_hash_slot, p->block_id, sector, false, __func__);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001512 spin_unlock_irq(&mdev->req_lock);
Andreas Gruenbacherc3afd8f2011-01-20 22:25:40 +01001513 if (unlikely(!req))
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001514 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001515
Bart Van Assche24c48302011-05-21 18:32:29 +02001516 /* hlist_del(&req->collision) is done in _req_may_be_done, to avoid
Philipp Reisnerb411b362009-09-25 16:07:19 -07001517 * special casing it there for the various failure cases.
1518 * still no race with drbd_fail_pending_reads */
1519 ok = recv_dless_read(mdev, req, sector, data_size);
1520
1521 if (ok)
1522 req_mod(req, data_received);
1523 /* else: nothing. handled from drbd_disconnect...
1524 * I don't think we may complete this just yet
1525 * in case we are "on-disconnect: freeze" */
1526
1527 return ok;
1528}
1529
Philipp Reisner02918be2010-08-20 14:35:10 +02001530static int receive_RSDataReply(struct drbd_conf *mdev, enum drbd_packets cmd, unsigned int data_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001531{
1532 sector_t sector;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001533 int ok;
Philipp Reisner02918be2010-08-20 14:35:10 +02001534 struct p_data *p = &mdev->data.rbuf.data;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001535
1536 sector = be64_to_cpu(p->sector);
1537 D_ASSERT(p->block_id == ID_SYNCER);
1538
1539 if (get_ldev(mdev)) {
1540 /* data is submitted to disk within recv_resync_read.
1541 * corresponding put_ldev done below on error,
Andreas Gruenbacher9c508422011-01-14 21:19:36 +01001542 * or in drbd_endio_sec. */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001543 ok = recv_resync_read(mdev, sector, data_size);
1544 } else {
1545 if (__ratelimit(&drbd_ratelimit_state))
1546 dev_err(DEV, "Can not write resync data to local disk.\n");
1547
1548 ok = drbd_drain_block(mdev, data_size);
1549
Lars Ellenberg2b2bf212010-10-06 11:46:55 +02001550 drbd_send_ack_dp(mdev, P_NEG_ACK, p, data_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001551 }
1552
Philipp Reisner778f2712010-07-06 11:14:00 +02001553 atomic_add(data_size >> 9, &mdev->rs_sect_in);
1554
Philipp Reisnerb411b362009-09-25 16:07:19 -07001555 return ok;
1556}
1557
1558/* e_end_block() is called via drbd_process_done_ee().
1559 * this means this function only runs in the asender thread
1560 */
1561static int e_end_block(struct drbd_conf *mdev, struct drbd_work *w, int cancel)
1562{
1563 struct drbd_epoch_entry *e = (struct drbd_epoch_entry *)w;
1564 sector_t sector = e->sector;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001565 int ok = 1, pcmd;
1566
Philipp Reisnerb411b362009-09-25 16:07:19 -07001567 if (mdev->net_conf->wire_protocol == DRBD_PROT_C) {
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001568 if (likely((e->flags & EE_WAS_ERROR) == 0)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001569 pcmd = (mdev->state.conn >= C_SYNC_SOURCE &&
1570 mdev->state.conn <= C_PAUSED_SYNC_T &&
1571 e->flags & EE_MAY_SET_IN_SYNC) ?
1572 P_RS_WRITE_ACK : P_WRITE_ACK;
1573 ok &= drbd_send_ack(mdev, pcmd, e);
1574 if (pcmd == P_RS_WRITE_ACK)
1575 drbd_set_in_sync(mdev, sector, e->size);
1576 } else {
1577 ok = drbd_send_ack(mdev, P_NEG_ACK, e);
1578 /* we expect it to be marked out of sync anyways...
1579 * maybe assert this? */
1580 }
1581 dec_unacked(mdev);
1582 }
1583 /* we delete from the conflict detection hash _after_ we sent out the
1584 * P_WRITE_ACK / P_NEG_ACK, to get the sequence number right. */
1585 if (mdev->net_conf->two_primaries) {
1586 spin_lock_irq(&mdev->req_lock);
Bart Van Assche24c48302011-05-21 18:32:29 +02001587 D_ASSERT(!hlist_unhashed(&e->collision));
1588 hlist_del_init(&e->collision);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001589 spin_unlock_irq(&mdev->req_lock);
1590 } else {
Bart Van Assche24c48302011-05-21 18:32:29 +02001591 D_ASSERT(hlist_unhashed(&e->collision));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001592 }
1593
1594 drbd_may_finish_epoch(mdev, e->epoch, EV_PUT + (cancel ? EV_CLEANUP : 0));
1595
1596 return ok;
1597}
1598
1599static int e_send_discard_ack(struct drbd_conf *mdev, struct drbd_work *w, int unused)
1600{
1601 struct drbd_epoch_entry *e = (struct drbd_epoch_entry *)w;
1602 int ok = 1;
1603
1604 D_ASSERT(mdev->net_conf->wire_protocol == DRBD_PROT_C);
1605 ok = drbd_send_ack(mdev, P_DISCARD_ACK, e);
1606
1607 spin_lock_irq(&mdev->req_lock);
Bart Van Assche24c48302011-05-21 18:32:29 +02001608 D_ASSERT(!hlist_unhashed(&e->collision));
1609 hlist_del_init(&e->collision);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001610 spin_unlock_irq(&mdev->req_lock);
1611
1612 dec_unacked(mdev);
1613
1614 return ok;
1615}
1616
1617/* Called from receive_Data.
1618 * Synchronize packets on sock with packets on msock.
1619 *
1620 * This is here so even when a P_DATA packet traveling via sock overtook an Ack
1621 * packet traveling on msock, they are still processed in the order they have
1622 * been sent.
1623 *
1624 * Note: we don't care for Ack packets overtaking P_DATA packets.
1625 *
1626 * In case packet_seq is larger than mdev->peer_seq number, there are
1627 * outstanding packets on the msock. We wait for them to arrive.
1628 * In case we are the logically next packet, we update mdev->peer_seq
1629 * ourselves. Correctly handles 32bit wrap around.
1630 *
1631 * Assume we have a 10 GBit connection, that is about 1<<30 byte per second,
1632 * about 1<<21 sectors per second. So "worst" case, we have 1<<3 == 8 seconds
1633 * for the 24bit wrap (historical atomic_t guarantee on some archs), and we have
1634 * 1<<9 == 512 seconds aka ages for the 32bit wrap around...
1635 *
1636 * returns 0 if we may process the packet,
1637 * -ERESTARTSYS if we were interrupted (by disconnect signal). */
1638static int drbd_wait_peer_seq(struct drbd_conf *mdev, const u32 packet_seq)
1639{
1640 DEFINE_WAIT(wait);
1641 unsigned int p_seq;
1642 long timeout;
1643 int ret = 0;
1644 spin_lock(&mdev->peer_seq_lock);
1645 for (;;) {
1646 prepare_to_wait(&mdev->seq_wait, &wait, TASK_INTERRUPTIBLE);
1647 if (seq_le(packet_seq, mdev->peer_seq+1))
1648 break;
1649 if (signal_pending(current)) {
1650 ret = -ERESTARTSYS;
1651 break;
1652 }
1653 p_seq = mdev->peer_seq;
1654 spin_unlock(&mdev->peer_seq_lock);
1655 timeout = schedule_timeout(30*HZ);
1656 spin_lock(&mdev->peer_seq_lock);
1657 if (timeout == 0 && p_seq == mdev->peer_seq) {
1658 ret = -ETIMEDOUT;
1659 dev_err(DEV, "ASSERT FAILED waited 30 seconds for sequence update, forcing reconnect\n");
1660 break;
1661 }
1662 }
1663 finish_wait(&mdev->seq_wait, &wait);
1664 if (mdev->peer_seq+1 == packet_seq)
1665 mdev->peer_seq++;
1666 spin_unlock(&mdev->peer_seq_lock);
1667 return ret;
1668}
1669
Lars Ellenberg688593c2010-11-17 22:25:03 +01001670/* see also bio_flags_to_wire()
1671 * DRBD_REQ_*, because we need to semantically map the flags to data packet
1672 * flags and back. We may replicate to other kernel versions. */
1673static unsigned long wire_flags_to_bio(struct drbd_conf *mdev, u32 dpf)
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001674{
Lars Ellenberg688593c2010-11-17 22:25:03 +01001675 return (dpf & DP_RW_SYNC ? REQ_SYNC : 0) |
1676 (dpf & DP_FUA ? REQ_FUA : 0) |
1677 (dpf & DP_FLUSH ? REQ_FLUSH : 0) |
1678 (dpf & DP_DISCARD ? REQ_DISCARD : 0);
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001679}
1680
Philipp Reisnerb411b362009-09-25 16:07:19 -07001681/* mirrored write */
Philipp Reisner02918be2010-08-20 14:35:10 +02001682static int receive_Data(struct drbd_conf *mdev, enum drbd_packets cmd, unsigned int data_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001683{
1684 sector_t sector;
1685 struct drbd_epoch_entry *e;
Philipp Reisner02918be2010-08-20 14:35:10 +02001686 struct p_data *p = &mdev->data.rbuf.data;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001687 int rw = WRITE;
1688 u32 dp_flags;
1689
Philipp Reisnerb411b362009-09-25 16:07:19 -07001690 if (!get_ldev(mdev)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001691 spin_lock(&mdev->peer_seq_lock);
1692 if (mdev->peer_seq+1 == be32_to_cpu(p->seq_num))
1693 mdev->peer_seq++;
1694 spin_unlock(&mdev->peer_seq_lock);
1695
Lars Ellenberg2b2bf212010-10-06 11:46:55 +02001696 drbd_send_ack_dp(mdev, P_NEG_ACK, p, data_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001697 atomic_inc(&mdev->current_epoch->epoch_size);
1698 return drbd_drain_block(mdev, data_size);
1699 }
1700
1701 /* get_ldev(mdev) successful.
1702 * Corresponding put_ldev done either below (on various errors),
Andreas Gruenbacher9c508422011-01-14 21:19:36 +01001703 * or in drbd_endio_sec, if we successfully submit the data at
Philipp Reisnerb411b362009-09-25 16:07:19 -07001704 * the end of this function. */
1705
1706 sector = be64_to_cpu(p->sector);
1707 e = read_in_block(mdev, p->block_id, sector, data_size);
1708 if (!e) {
1709 put_ldev(mdev);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001710 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001711 }
1712
Philipp Reisnerb411b362009-09-25 16:07:19 -07001713 e->w.cb = e_end_block;
1714
Lars Ellenberg688593c2010-11-17 22:25:03 +01001715 dp_flags = be32_to_cpu(p->dp_flags);
1716 rw |= wire_flags_to_bio(mdev, dp_flags);
1717
1718 if (dp_flags & DP_MAY_SET_IN_SYNC)
1719 e->flags |= EE_MAY_SET_IN_SYNC;
1720
Philipp Reisnerb411b362009-09-25 16:07:19 -07001721 spin_lock(&mdev->epoch_lock);
1722 e->epoch = mdev->current_epoch;
1723 atomic_inc(&e->epoch->epoch_size);
1724 atomic_inc(&e->epoch->active);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001725 spin_unlock(&mdev->epoch_lock);
1726
Philipp Reisnerb411b362009-09-25 16:07:19 -07001727 /* I'm the receiver, I do hold a net_cnt reference. */
1728 if (!mdev->net_conf->two_primaries) {
1729 spin_lock_irq(&mdev->req_lock);
1730 } else {
1731 /* don't get the req_lock yet,
1732 * we may sleep in drbd_wait_peer_seq */
1733 const int size = e->size;
1734 const int discard = test_bit(DISCARD_CONCURRENT, &mdev->flags);
1735 DEFINE_WAIT(wait);
1736 struct drbd_request *i;
1737 struct hlist_node *n;
1738 struct hlist_head *slot;
1739 int first;
1740
1741 D_ASSERT(mdev->net_conf->wire_protocol == DRBD_PROT_C);
1742 BUG_ON(mdev->ee_hash == NULL);
1743 BUG_ON(mdev->tl_hash == NULL);
1744
1745 /* conflict detection and handling:
1746 * 1. wait on the sequence number,
1747 * in case this data packet overtook ACK packets.
1748 * 2. check our hash tables for conflicting requests.
1749 * we only need to walk the tl_hash, since an ee can not
1750 * have a conflict with an other ee: on the submitting
1751 * node, the corresponding req had already been conflicting,
1752 * and a conflicting req is never sent.
1753 *
1754 * Note: for two_primaries, we are protocol C,
1755 * so there cannot be any request that is DONE
1756 * but still on the transfer log.
1757 *
1758 * unconditionally add to the ee_hash.
1759 *
1760 * if no conflicting request is found:
1761 * submit.
1762 *
1763 * if any conflicting request is found
1764 * that has not yet been acked,
1765 * AND I have the "discard concurrent writes" flag:
1766 * queue (via done_ee) the P_DISCARD_ACK; OUT.
1767 *
1768 * if any conflicting request is found:
1769 * block the receiver, waiting on misc_wait
1770 * until no more conflicting requests are there,
1771 * or we get interrupted (disconnect).
1772 *
1773 * we do not just write after local io completion of those
1774 * requests, but only after req is done completely, i.e.
1775 * we wait for the P_DISCARD_ACK to arrive!
1776 *
1777 * then proceed normally, i.e. submit.
1778 */
1779 if (drbd_wait_peer_seq(mdev, be32_to_cpu(p->seq_num)))
1780 goto out_interrupted;
1781
1782 spin_lock_irq(&mdev->req_lock);
1783
Bart Van Assche24c48302011-05-21 18:32:29 +02001784 hlist_add_head(&e->collision, ee_hash_slot(mdev, sector));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001785
Andreas Gruenbacherace652a2011-01-03 17:09:58 +01001786#define OVERLAPS overlaps(i->i.sector, i->i.size, sector, size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001787 slot = tl_hash_slot(mdev, sector);
1788 first = 1;
1789 for (;;) {
1790 int have_unacked = 0;
1791 int have_conflict = 0;
1792 prepare_to_wait(&mdev->misc_wait, &wait,
1793 TASK_INTERRUPTIBLE);
Bart Van Assche24c48302011-05-21 18:32:29 +02001794 hlist_for_each_entry(i, n, slot, collision) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001795 if (OVERLAPS) {
1796 /* only ALERT on first iteration,
1797 * we may be woken up early... */
1798 if (first)
1799 dev_alert(DEV, "%s[%u] Concurrent local write detected!"
1800 " new: %llus +%u; pending: %llus +%u\n",
1801 current->comm, current->pid,
1802 (unsigned long long)sector, size,
Andreas Gruenbacherace652a2011-01-03 17:09:58 +01001803 (unsigned long long)i->i.sector, i->i.size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001804 if (i->rq_state & RQ_NET_PENDING)
1805 ++have_unacked;
1806 ++have_conflict;
1807 }
1808 }
1809#undef OVERLAPS
1810 if (!have_conflict)
1811 break;
1812
1813 /* Discard Ack only for the _first_ iteration */
1814 if (first && discard && have_unacked) {
1815 dev_alert(DEV, "Concurrent write! [DISCARD BY FLAG] sec=%llus\n",
1816 (unsigned long long)sector);
1817 inc_unacked(mdev);
1818 e->w.cb = e_send_discard_ack;
1819 list_add_tail(&e->w.list, &mdev->done_ee);
1820
1821 spin_unlock_irq(&mdev->req_lock);
1822
1823 /* we could probably send that P_DISCARD_ACK ourselves,
1824 * but I don't like the receiver using the msock */
1825
1826 put_ldev(mdev);
1827 wake_asender(mdev);
1828 finish_wait(&mdev->misc_wait, &wait);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001829 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001830 }
1831
1832 if (signal_pending(current)) {
Bart Van Assche24c48302011-05-21 18:32:29 +02001833 hlist_del_init(&e->collision);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001834
1835 spin_unlock_irq(&mdev->req_lock);
1836
1837 finish_wait(&mdev->misc_wait, &wait);
1838 goto out_interrupted;
1839 }
1840
1841 spin_unlock_irq(&mdev->req_lock);
1842 if (first) {
1843 first = 0;
1844 dev_alert(DEV, "Concurrent write! [W AFTERWARDS] "
1845 "sec=%llus\n", (unsigned long long)sector);
1846 } else if (discard) {
1847 /* we had none on the first iteration.
1848 * there must be none now. */
1849 D_ASSERT(have_unacked == 0);
1850 }
1851 schedule();
1852 spin_lock_irq(&mdev->req_lock);
1853 }
1854 finish_wait(&mdev->misc_wait, &wait);
1855 }
1856
1857 list_add(&e->w.list, &mdev->active_ee);
1858 spin_unlock_irq(&mdev->req_lock);
1859
1860 switch (mdev->net_conf->wire_protocol) {
1861 case DRBD_PROT_C:
1862 inc_unacked(mdev);
1863 /* corresponding dec_unacked() in e_end_block()
1864 * respective _drbd_clear_done_ee */
1865 break;
1866 case DRBD_PROT_B:
1867 /* I really don't like it that the receiver thread
1868 * sends on the msock, but anyways */
1869 drbd_send_ack(mdev, P_RECV_ACK, e);
1870 break;
1871 case DRBD_PROT_A:
1872 /* nothing to do */
1873 break;
1874 }
1875
Lars Ellenberg6719fb02010-10-18 23:04:07 +02001876 if (mdev->state.pdsk < D_INCONSISTENT) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001877 /* In case we have the only disk of the cluster, */
1878 drbd_set_out_of_sync(mdev, e->sector, e->size);
1879 e->flags |= EE_CALL_AL_COMPLETE_IO;
Lars Ellenberg6719fb02010-10-18 23:04:07 +02001880 e->flags &= ~EE_MAY_SET_IN_SYNC;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001881 drbd_al_begin_io(mdev, e->sector);
1882 }
1883
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001884 if (drbd_submit_ee(mdev, e, rw, DRBD_FAULT_DT_WR) == 0)
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001885 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001886
Lars Ellenberg10f6d9922011-01-24 14:47:09 +01001887 /* don't care for the reason here */
1888 dev_err(DEV, "submit failed, triggering re-connect\n");
Lars Ellenberg22cc37a2010-09-14 20:40:41 +02001889 spin_lock_irq(&mdev->req_lock);
1890 list_del(&e->w.list);
Bart Van Assche24c48302011-05-21 18:32:29 +02001891 hlist_del_init(&e->collision);
Lars Ellenberg22cc37a2010-09-14 20:40:41 +02001892 spin_unlock_irq(&mdev->req_lock);
1893 if (e->flags & EE_CALL_AL_COMPLETE_IO)
1894 drbd_al_complete_io(mdev, e->sector);
1895
Philipp Reisnerb411b362009-09-25 16:07:19 -07001896out_interrupted:
Lars Ellenberg10f6d9922011-01-24 14:47:09 +01001897 drbd_may_finish_epoch(mdev, e->epoch, EV_PUT + EV_CLEANUP);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001898 put_ldev(mdev);
1899 drbd_free_ee(mdev, e);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001900 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001901}
1902
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02001903/* We may throttle resync, if the lower device seems to be busy,
1904 * and current sync rate is above c_min_rate.
1905 *
1906 * To decide whether or not the lower device is busy, we use a scheme similar
1907 * to MD RAID is_mddev_idle(): if the partition stats reveal "significant"
1908 * (more than 64 sectors) of activity we cannot account for with our own resync
1909 * activity, it obviously is "busy".
1910 *
1911 * The current sync rate used here uses only the most recent two step marks,
1912 * to have a short time average so we can react faster.
1913 */
Philipp Reisnere3555d82010-11-07 15:56:29 +01001914int drbd_rs_should_slow_down(struct drbd_conf *mdev, sector_t sector)
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02001915{
1916 struct gendisk *disk = mdev->ldev->backing_bdev->bd_contains->bd_disk;
1917 unsigned long db, dt, dbdt;
Philipp Reisnere3555d82010-11-07 15:56:29 +01001918 struct lc_element *tmp;
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02001919 int curr_events;
1920 int throttle = 0;
1921
1922 /* feature disabled? */
1923 if (mdev->sync_conf.c_min_rate == 0)
1924 return 0;
1925
Philipp Reisnere3555d82010-11-07 15:56:29 +01001926 spin_lock_irq(&mdev->al_lock);
1927 tmp = lc_find(mdev->resync, BM_SECT_TO_EXT(sector));
1928 if (tmp) {
1929 struct bm_extent *bm_ext = lc_entry(tmp, struct bm_extent, lce);
1930 if (test_bit(BME_PRIORITY, &bm_ext->flags)) {
1931 spin_unlock_irq(&mdev->al_lock);
1932 return 0;
1933 }
1934 /* Do not slow down if app IO is already waiting for this extent */
1935 }
1936 spin_unlock_irq(&mdev->al_lock);
1937
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02001938 curr_events = (int)part_stat_read(&disk->part0, sectors[0]) +
1939 (int)part_stat_read(&disk->part0, sectors[1]) -
1940 atomic_read(&mdev->rs_sect_ev);
Philipp Reisnere3555d82010-11-07 15:56:29 +01001941
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02001942 if (!mdev->rs_last_events || curr_events - mdev->rs_last_events > 64) {
1943 unsigned long rs_left;
1944 int i;
1945
1946 mdev->rs_last_events = curr_events;
1947
1948 /* sync speed average over the last 2*DRBD_SYNC_MARK_STEP,
1949 * approx. */
Lars Ellenberg2649f082010-11-05 10:05:47 +01001950 i = (mdev->rs_last_mark + DRBD_SYNC_MARKS-1) % DRBD_SYNC_MARKS;
1951
1952 if (mdev->state.conn == C_VERIFY_S || mdev->state.conn == C_VERIFY_T)
1953 rs_left = mdev->ov_left;
1954 else
1955 rs_left = drbd_bm_total_weight(mdev) - mdev->rs_failed;
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02001956
1957 dt = ((long)jiffies - (long)mdev->rs_mark_time[i]) / HZ;
1958 if (!dt)
1959 dt++;
1960 db = mdev->rs_mark_left[i] - rs_left;
1961 dbdt = Bit2KB(db/dt);
1962
1963 if (dbdt > mdev->sync_conf.c_min_rate)
1964 throttle = 1;
1965 }
1966 return throttle;
1967}
1968
1969
Philipp Reisner02918be2010-08-20 14:35:10 +02001970static int receive_DataRequest(struct drbd_conf *mdev, enum drbd_packets cmd, unsigned int digest_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001971{
1972 sector_t sector;
1973 const sector_t capacity = drbd_get_capacity(mdev->this_bdev);
1974 struct drbd_epoch_entry *e;
1975 struct digest_info *di = NULL;
Philipp Reisnerb18b37b2010-10-13 15:32:44 +02001976 int size, verb;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001977 unsigned int fault_type;
Philipp Reisner02918be2010-08-20 14:35:10 +02001978 struct p_block_req *p = &mdev->data.rbuf.block_req;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001979
1980 sector = be64_to_cpu(p->sector);
1981 size = be32_to_cpu(p->blksize);
1982
Lars Ellenberg1816a2b2010-11-11 15:19:07 +01001983 if (size <= 0 || (size & 0x1ff) != 0 || size > DRBD_MAX_BIO_SIZE) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001984 dev_err(DEV, "%s:%d: sector: %llus, size: %u\n", __FILE__, __LINE__,
1985 (unsigned long long)sector, size);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001986 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001987 }
1988 if (sector + (size>>9) > capacity) {
1989 dev_err(DEV, "%s:%d: sector: %llus, size: %u\n", __FILE__, __LINE__,
1990 (unsigned long long)sector, size);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001991 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001992 }
1993
1994 if (!get_ldev_if_state(mdev, D_UP_TO_DATE)) {
Philipp Reisnerb18b37b2010-10-13 15:32:44 +02001995 verb = 1;
1996 switch (cmd) {
1997 case P_DATA_REQUEST:
1998 drbd_send_ack_rp(mdev, P_NEG_DREPLY, p);
1999 break;
2000 case P_RS_DATA_REQUEST:
2001 case P_CSUM_RS_REQUEST:
2002 case P_OV_REQUEST:
2003 drbd_send_ack_rp(mdev, P_NEG_RS_DREPLY , p);
2004 break;
2005 case P_OV_REPLY:
2006 verb = 0;
2007 dec_rs_pending(mdev);
2008 drbd_send_ack_ex(mdev, P_OV_RESULT, sector, size, ID_IN_SYNC);
2009 break;
2010 default:
2011 dev_err(DEV, "unexpected command (%s) in receive_DataRequest\n",
2012 cmdname(cmd));
2013 }
2014 if (verb && __ratelimit(&drbd_ratelimit_state))
Philipp Reisnerb411b362009-09-25 16:07:19 -07002015 dev_err(DEV, "Can not satisfy peer's read request, "
2016 "no local data.\n");
Philipp Reisnerb18b37b2010-10-13 15:32:44 +02002017
Lars Ellenberga821cc42010-09-06 12:31:37 +02002018 /* drain possibly payload */
2019 return drbd_drain_block(mdev, digest_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002020 }
2021
2022 /* GFP_NOIO, because we must not cause arbitrary write-out: in a DRBD
2023 * "criss-cross" setup, that might cause write-out on some other DRBD,
2024 * which in turn might block on the other node at this very place. */
2025 e = drbd_alloc_ee(mdev, p->block_id, sector, size, GFP_NOIO);
2026 if (!e) {
2027 put_ldev(mdev);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01002028 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002029 }
2030
Philipp Reisner02918be2010-08-20 14:35:10 +02002031 switch (cmd) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002032 case P_DATA_REQUEST:
2033 e->w.cb = w_e_end_data_req;
2034 fault_type = DRBD_FAULT_DT_RD;
Lars Ellenberg80a40e42010-08-11 23:28:00 +02002035 /* application IO, don't drbd_rs_begin_io */
2036 goto submit;
2037
Philipp Reisnerb411b362009-09-25 16:07:19 -07002038 case P_RS_DATA_REQUEST:
2039 e->w.cb = w_e_end_rsdata_req;
2040 fault_type = DRBD_FAULT_RS_RD;
Lars Ellenberg5f9915b2010-11-09 14:15:24 +01002041 /* used in the sector offset progress display */
2042 mdev->bm_resync_fo = BM_SECT_TO_BIT(sector);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002043 break;
2044
2045 case P_OV_REPLY:
2046 case P_CSUM_RS_REQUEST:
2047 fault_type = DRBD_FAULT_RS_RD;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002048 di = kmalloc(sizeof(*di) + digest_size, GFP_NOIO);
2049 if (!di)
2050 goto out_free_e;
2051
2052 di->digest_size = digest_size;
2053 di->digest = (((char *)di)+sizeof(struct digest_info));
2054
Lars Ellenbergc36c3ce2010-08-11 20:42:55 +02002055 e->digest = di;
2056 e->flags |= EE_HAS_DIGEST;
2057
Philipp Reisnerb411b362009-09-25 16:07:19 -07002058 if (drbd_recv(mdev, di->digest, digest_size) != digest_size)
2059 goto out_free_e;
2060
Philipp Reisner02918be2010-08-20 14:35:10 +02002061 if (cmd == P_CSUM_RS_REQUEST) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002062 D_ASSERT(mdev->agreed_pro_version >= 89);
2063 e->w.cb = w_e_end_csum_rs_req;
Lars Ellenberg5f9915b2010-11-09 14:15:24 +01002064 /* used in the sector offset progress display */
2065 mdev->bm_resync_fo = BM_SECT_TO_BIT(sector);
Philipp Reisner02918be2010-08-20 14:35:10 +02002066 } else if (cmd == P_OV_REPLY) {
Lars Ellenberg2649f082010-11-05 10:05:47 +01002067 /* track progress, we may need to throttle */
2068 atomic_add(size >> 9, &mdev->rs_sect_in);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002069 e->w.cb = w_e_end_ov_reply;
2070 dec_rs_pending(mdev);
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02002071 /* drbd_rs_begin_io done when we sent this request,
2072 * but accounting still needs to be done. */
2073 goto submit_for_resync;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002074 }
2075 break;
2076
2077 case P_OV_REQUEST:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002078 if (mdev->ov_start_sector == ~(sector_t)0 &&
2079 mdev->agreed_pro_version >= 90) {
Lars Ellenbergde228bb2010-11-05 09:43:15 +01002080 unsigned long now = jiffies;
2081 int i;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002082 mdev->ov_start_sector = sector;
2083 mdev->ov_position = sector;
Lars Ellenberg30b743a2010-11-05 09:39:06 +01002084 mdev->ov_left = drbd_bm_bits(mdev) - BM_SECT_TO_BIT(sector);
2085 mdev->rs_total = mdev->ov_left;
Lars Ellenbergde228bb2010-11-05 09:43:15 +01002086 for (i = 0; i < DRBD_SYNC_MARKS; i++) {
2087 mdev->rs_mark_left[i] = mdev->ov_left;
2088 mdev->rs_mark_time[i] = now;
2089 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07002090 dev_info(DEV, "Online Verify start sector: %llu\n",
2091 (unsigned long long)sector);
2092 }
2093 e->w.cb = w_e_end_ov_req;
2094 fault_type = DRBD_FAULT_RS_RD;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002095 break;
2096
Philipp Reisnerb411b362009-09-25 16:07:19 -07002097 default:
2098 dev_err(DEV, "unexpected command (%s) in receive_DataRequest\n",
Philipp Reisner02918be2010-08-20 14:35:10 +02002099 cmdname(cmd));
Philipp Reisnerb411b362009-09-25 16:07:19 -07002100 fault_type = DRBD_FAULT_MAX;
Lars Ellenberg80a40e42010-08-11 23:28:00 +02002101 goto out_free_e;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002102 }
2103
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02002104 /* Throttle, drbd_rs_begin_io and submit should become asynchronous
2105 * wrt the receiver, but it is not as straightforward as it may seem.
2106 * Various places in the resync start and stop logic assume resync
2107 * requests are processed in order, requeuing this on the worker thread
2108 * introduces a bunch of new code for synchronization between threads.
2109 *
2110 * Unlimited throttling before drbd_rs_begin_io may stall the resync
2111 * "forever", throttling after drbd_rs_begin_io will lock that extent
2112 * for application writes for the same time. For now, just throttle
2113 * here, where the rest of the code expects the receiver to sleep for
2114 * a while, anyways.
2115 */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002116
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02002117 /* Throttle before drbd_rs_begin_io, as that locks out application IO;
2118 * this defers syncer requests for some time, before letting at least
2119 * on request through. The resync controller on the receiving side
2120 * will adapt to the incoming rate accordingly.
2121 *
2122 * We cannot throttle here if remote is Primary/SyncTarget:
2123 * we would also throttle its application reads.
2124 * In that case, throttling is done on the SyncTarget only.
2125 */
Philipp Reisnere3555d82010-11-07 15:56:29 +01002126 if (mdev->state.peer != R_PRIMARY && drbd_rs_should_slow_down(mdev, sector))
2127 schedule_timeout_uninterruptible(HZ/10);
2128 if (drbd_rs_begin_io(mdev, sector))
Lars Ellenberg80a40e42010-08-11 23:28:00 +02002129 goto out_free_e;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002130
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02002131submit_for_resync:
2132 atomic_add(size >> 9, &mdev->rs_sect_ev);
2133
Lars Ellenberg80a40e42010-08-11 23:28:00 +02002134submit:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002135 inc_unacked(mdev);
Lars Ellenberg80a40e42010-08-11 23:28:00 +02002136 spin_lock_irq(&mdev->req_lock);
2137 list_add_tail(&e->w.list, &mdev->read_ee);
2138 spin_unlock_irq(&mdev->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002139
Lars Ellenberg45bb9122010-05-14 17:10:48 +02002140 if (drbd_submit_ee(mdev, e, READ, fault_type) == 0)
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01002141 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002142
Lars Ellenberg10f6d9922011-01-24 14:47:09 +01002143 /* don't care for the reason here */
2144 dev_err(DEV, "submit failed, triggering re-connect\n");
Lars Ellenberg22cc37a2010-09-14 20:40:41 +02002145 spin_lock_irq(&mdev->req_lock);
2146 list_del(&e->w.list);
2147 spin_unlock_irq(&mdev->req_lock);
2148 /* no drbd_rs_complete_io(), we are dropping the connection anyways */
2149
Philipp Reisnerb411b362009-09-25 16:07:19 -07002150out_free_e:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002151 put_ldev(mdev);
2152 drbd_free_ee(mdev, e);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01002153 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002154}
2155
2156static int drbd_asb_recover_0p(struct drbd_conf *mdev) __must_hold(local)
2157{
2158 int self, peer, rv = -100;
2159 unsigned long ch_self, ch_peer;
2160
2161 self = mdev->ldev->md.uuid[UI_BITMAP] & 1;
2162 peer = mdev->p_uuid[UI_BITMAP] & 1;
2163
2164 ch_peer = mdev->p_uuid[UI_SIZE];
2165 ch_self = mdev->comm_bm_set;
2166
2167 switch (mdev->net_conf->after_sb_0p) {
2168 case ASB_CONSENSUS:
2169 case ASB_DISCARD_SECONDARY:
2170 case ASB_CALL_HELPER:
2171 dev_err(DEV, "Configuration error.\n");
2172 break;
2173 case ASB_DISCONNECT:
2174 break;
2175 case ASB_DISCARD_YOUNGER_PRI:
2176 if (self == 0 && peer == 1) {
2177 rv = -1;
2178 break;
2179 }
2180 if (self == 1 && peer == 0) {
2181 rv = 1;
2182 break;
2183 }
2184 /* Else fall through to one of the other strategies... */
2185 case ASB_DISCARD_OLDER_PRI:
2186 if (self == 0 && peer == 1) {
2187 rv = 1;
2188 break;
2189 }
2190 if (self == 1 && peer == 0) {
2191 rv = -1;
2192 break;
2193 }
2194 /* Else fall through to one of the other strategies... */
Lars Ellenbergad19bf62009-10-14 09:36:49 +02002195 dev_warn(DEV, "Discard younger/older primary did not find a decision\n"
Philipp Reisnerb411b362009-09-25 16:07:19 -07002196 "Using discard-least-changes instead\n");
2197 case ASB_DISCARD_ZERO_CHG:
2198 if (ch_peer == 0 && ch_self == 0) {
2199 rv = test_bit(DISCARD_CONCURRENT, &mdev->flags)
2200 ? -1 : 1;
2201 break;
2202 } else {
2203 if (ch_peer == 0) { rv = 1; break; }
2204 if (ch_self == 0) { rv = -1; break; }
2205 }
2206 if (mdev->net_conf->after_sb_0p == ASB_DISCARD_ZERO_CHG)
2207 break;
2208 case ASB_DISCARD_LEAST_CHG:
2209 if (ch_self < ch_peer)
2210 rv = -1;
2211 else if (ch_self > ch_peer)
2212 rv = 1;
2213 else /* ( ch_self == ch_peer ) */
2214 /* Well, then use something else. */
2215 rv = test_bit(DISCARD_CONCURRENT, &mdev->flags)
2216 ? -1 : 1;
2217 break;
2218 case ASB_DISCARD_LOCAL:
2219 rv = -1;
2220 break;
2221 case ASB_DISCARD_REMOTE:
2222 rv = 1;
2223 }
2224
2225 return rv;
2226}
2227
2228static int drbd_asb_recover_1p(struct drbd_conf *mdev) __must_hold(local)
2229{
Andreas Gruenbacher6184ea22010-12-09 14:23:27 +01002230 int hg, rv = -100;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002231
2232 switch (mdev->net_conf->after_sb_1p) {
2233 case ASB_DISCARD_YOUNGER_PRI:
2234 case ASB_DISCARD_OLDER_PRI:
2235 case ASB_DISCARD_LEAST_CHG:
2236 case ASB_DISCARD_LOCAL:
2237 case ASB_DISCARD_REMOTE:
2238 dev_err(DEV, "Configuration error.\n");
2239 break;
2240 case ASB_DISCONNECT:
2241 break;
2242 case ASB_CONSENSUS:
2243 hg = drbd_asb_recover_0p(mdev);
2244 if (hg == -1 && mdev->state.role == R_SECONDARY)
2245 rv = hg;
2246 if (hg == 1 && mdev->state.role == R_PRIMARY)
2247 rv = hg;
2248 break;
2249 case ASB_VIOLENTLY:
2250 rv = drbd_asb_recover_0p(mdev);
2251 break;
2252 case ASB_DISCARD_SECONDARY:
2253 return mdev->state.role == R_PRIMARY ? 1 : -1;
2254 case ASB_CALL_HELPER:
2255 hg = drbd_asb_recover_0p(mdev);
2256 if (hg == -1 && mdev->state.role == R_PRIMARY) {
Andreas Gruenbacherbb437942010-12-09 14:02:35 +01002257 enum drbd_state_rv rv2;
2258
2259 drbd_set_role(mdev, R_SECONDARY, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002260 /* drbd_change_state() does not sleep while in SS_IN_TRANSIENT_STATE,
2261 * we might be here in C_WF_REPORT_PARAMS which is transient.
2262 * we do not need to wait for the after state change work either. */
Andreas Gruenbacherbb437942010-12-09 14:02:35 +01002263 rv2 = drbd_change_state(mdev, CS_VERBOSE, NS(role, R_SECONDARY));
2264 if (rv2 != SS_SUCCESS) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002265 drbd_khelper(mdev, "pri-lost-after-sb");
2266 } else {
2267 dev_warn(DEV, "Successfully gave up primary role.\n");
2268 rv = hg;
2269 }
2270 } else
2271 rv = hg;
2272 }
2273
2274 return rv;
2275}
2276
2277static int drbd_asb_recover_2p(struct drbd_conf *mdev) __must_hold(local)
2278{
Andreas Gruenbacher6184ea22010-12-09 14:23:27 +01002279 int hg, rv = -100;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002280
2281 switch (mdev->net_conf->after_sb_2p) {
2282 case ASB_DISCARD_YOUNGER_PRI:
2283 case ASB_DISCARD_OLDER_PRI:
2284 case ASB_DISCARD_LEAST_CHG:
2285 case ASB_DISCARD_LOCAL:
2286 case ASB_DISCARD_REMOTE:
2287 case ASB_CONSENSUS:
2288 case ASB_DISCARD_SECONDARY:
2289 dev_err(DEV, "Configuration error.\n");
2290 break;
2291 case ASB_VIOLENTLY:
2292 rv = drbd_asb_recover_0p(mdev);
2293 break;
2294 case ASB_DISCONNECT:
2295 break;
2296 case ASB_CALL_HELPER:
2297 hg = drbd_asb_recover_0p(mdev);
2298 if (hg == -1) {
Andreas Gruenbacherbb437942010-12-09 14:02:35 +01002299 enum drbd_state_rv rv2;
2300
Philipp Reisnerb411b362009-09-25 16:07:19 -07002301 /* drbd_change_state() does not sleep while in SS_IN_TRANSIENT_STATE,
2302 * we might be here in C_WF_REPORT_PARAMS which is transient.
2303 * we do not need to wait for the after state change work either. */
Andreas Gruenbacherbb437942010-12-09 14:02:35 +01002304 rv2 = drbd_change_state(mdev, CS_VERBOSE, NS(role, R_SECONDARY));
2305 if (rv2 != SS_SUCCESS) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002306 drbd_khelper(mdev, "pri-lost-after-sb");
2307 } else {
2308 dev_warn(DEV, "Successfully gave up primary role.\n");
2309 rv = hg;
2310 }
2311 } else
2312 rv = hg;
2313 }
2314
2315 return rv;
2316}
2317
2318static void drbd_uuid_dump(struct drbd_conf *mdev, char *text, u64 *uuid,
2319 u64 bits, u64 flags)
2320{
2321 if (!uuid) {
2322 dev_info(DEV, "%s uuid info vanished while I was looking!\n", text);
2323 return;
2324 }
2325 dev_info(DEV, "%s %016llX:%016llX:%016llX:%016llX bits:%llu flags:%llX\n",
2326 text,
2327 (unsigned long long)uuid[UI_CURRENT],
2328 (unsigned long long)uuid[UI_BITMAP],
2329 (unsigned long long)uuid[UI_HISTORY_START],
2330 (unsigned long long)uuid[UI_HISTORY_END],
2331 (unsigned long long)bits,
2332 (unsigned long long)flags);
2333}
2334
2335/*
2336 100 after split brain try auto recover
2337 2 C_SYNC_SOURCE set BitMap
2338 1 C_SYNC_SOURCE use BitMap
2339 0 no Sync
2340 -1 C_SYNC_TARGET use BitMap
2341 -2 C_SYNC_TARGET set BitMap
2342 -100 after split brain, disconnect
2343-1000 unrelated data
Philipp Reisner4a23f262011-01-11 17:42:17 +01002344-1091 requires proto 91
2345-1096 requires proto 96
Philipp Reisnerb411b362009-09-25 16:07:19 -07002346 */
2347static int drbd_uuid_compare(struct drbd_conf *mdev, int *rule_nr) __must_hold(local)
2348{
2349 u64 self, peer;
2350 int i, j;
2351
2352 self = mdev->ldev->md.uuid[UI_CURRENT] & ~((u64)1);
2353 peer = mdev->p_uuid[UI_CURRENT] & ~((u64)1);
2354
2355 *rule_nr = 10;
2356 if (self == UUID_JUST_CREATED && peer == UUID_JUST_CREATED)
2357 return 0;
2358
2359 *rule_nr = 20;
2360 if ((self == UUID_JUST_CREATED || self == (u64)0) &&
2361 peer != UUID_JUST_CREATED)
2362 return -2;
2363
2364 *rule_nr = 30;
2365 if (self != UUID_JUST_CREATED &&
2366 (peer == UUID_JUST_CREATED || peer == (u64)0))
2367 return 2;
2368
2369 if (self == peer) {
2370 int rct, dc; /* roles at crash time */
2371
2372 if (mdev->p_uuid[UI_BITMAP] == (u64)0 && mdev->ldev->md.uuid[UI_BITMAP] != (u64)0) {
2373
2374 if (mdev->agreed_pro_version < 91)
Philipp Reisner4a23f262011-01-11 17:42:17 +01002375 return -1091;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002376
2377 if ((mdev->ldev->md.uuid[UI_BITMAP] & ~((u64)1)) == (mdev->p_uuid[UI_HISTORY_START] & ~((u64)1)) &&
2378 (mdev->ldev->md.uuid[UI_HISTORY_START] & ~((u64)1)) == (mdev->p_uuid[UI_HISTORY_START + 1] & ~((u64)1))) {
2379 dev_info(DEV, "was SyncSource, missed the resync finished event, corrected myself:\n");
2380 drbd_uuid_set_bm(mdev, 0UL);
2381
2382 drbd_uuid_dump(mdev, "self", mdev->ldev->md.uuid,
2383 mdev->state.disk >= D_NEGOTIATING ? drbd_bm_total_weight(mdev) : 0, 0);
2384 *rule_nr = 34;
2385 } else {
2386 dev_info(DEV, "was SyncSource (peer failed to write sync_uuid)\n");
2387 *rule_nr = 36;
2388 }
2389
2390 return 1;
2391 }
2392
2393 if (mdev->ldev->md.uuid[UI_BITMAP] == (u64)0 && mdev->p_uuid[UI_BITMAP] != (u64)0) {
2394
2395 if (mdev->agreed_pro_version < 91)
Philipp Reisner4a23f262011-01-11 17:42:17 +01002396 return -1091;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002397
2398 if ((mdev->ldev->md.uuid[UI_HISTORY_START] & ~((u64)1)) == (mdev->p_uuid[UI_BITMAP] & ~((u64)1)) &&
2399 (mdev->ldev->md.uuid[UI_HISTORY_START + 1] & ~((u64)1)) == (mdev->p_uuid[UI_HISTORY_START] & ~((u64)1))) {
2400 dev_info(DEV, "was SyncTarget, peer missed the resync finished event, corrected peer:\n");
2401
2402 mdev->p_uuid[UI_HISTORY_START + 1] = mdev->p_uuid[UI_HISTORY_START];
2403 mdev->p_uuid[UI_HISTORY_START] = mdev->p_uuid[UI_BITMAP];
2404 mdev->p_uuid[UI_BITMAP] = 0UL;
2405
2406 drbd_uuid_dump(mdev, "peer", mdev->p_uuid, mdev->p_uuid[UI_SIZE], mdev->p_uuid[UI_FLAGS]);
2407 *rule_nr = 35;
2408 } else {
2409 dev_info(DEV, "was SyncTarget (failed to write sync_uuid)\n");
2410 *rule_nr = 37;
2411 }
2412
2413 return -1;
2414 }
2415
2416 /* Common power [off|failure] */
2417 rct = (test_bit(CRASHED_PRIMARY, &mdev->flags) ? 1 : 0) +
2418 (mdev->p_uuid[UI_FLAGS] & 2);
2419 /* lowest bit is set when we were primary,
2420 * next bit (weight 2) is set when peer was primary */
2421 *rule_nr = 40;
2422
2423 switch (rct) {
2424 case 0: /* !self_pri && !peer_pri */ return 0;
2425 case 1: /* self_pri && !peer_pri */ return 1;
2426 case 2: /* !self_pri && peer_pri */ return -1;
2427 case 3: /* self_pri && peer_pri */
2428 dc = test_bit(DISCARD_CONCURRENT, &mdev->flags);
2429 return dc ? -1 : 1;
2430 }
2431 }
2432
2433 *rule_nr = 50;
2434 peer = mdev->p_uuid[UI_BITMAP] & ~((u64)1);
2435 if (self == peer)
2436 return -1;
2437
2438 *rule_nr = 51;
2439 peer = mdev->p_uuid[UI_HISTORY_START] & ~((u64)1);
2440 if (self == peer) {
Philipp Reisner4a23f262011-01-11 17:42:17 +01002441 if (mdev->agreed_pro_version < 96 ?
2442 (mdev->ldev->md.uuid[UI_HISTORY_START] & ~((u64)1)) ==
2443 (mdev->p_uuid[UI_HISTORY_START + 1] & ~((u64)1)) :
2444 peer + UUID_NEW_BM_OFFSET == (mdev->p_uuid[UI_BITMAP] & ~((u64)1))) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002445 /* The last P_SYNC_UUID did not get though. Undo the last start of
2446 resync as sync source modifications of the peer's UUIDs. */
2447
2448 if (mdev->agreed_pro_version < 91)
Philipp Reisner4a23f262011-01-11 17:42:17 +01002449 return -1091;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002450
2451 mdev->p_uuid[UI_BITMAP] = mdev->p_uuid[UI_HISTORY_START];
2452 mdev->p_uuid[UI_HISTORY_START] = mdev->p_uuid[UI_HISTORY_START + 1];
Philipp Reisner4a23f262011-01-11 17:42:17 +01002453
2454 dev_info(DEV, "Did not got last syncUUID packet, corrected:\n");
2455 drbd_uuid_dump(mdev, "peer", mdev->p_uuid, mdev->p_uuid[UI_SIZE], mdev->p_uuid[UI_FLAGS]);
2456
Philipp Reisnerb411b362009-09-25 16:07:19 -07002457 return -1;
2458 }
2459 }
2460
2461 *rule_nr = 60;
2462 self = mdev->ldev->md.uuid[UI_CURRENT] & ~((u64)1);
2463 for (i = UI_HISTORY_START; i <= UI_HISTORY_END; i++) {
2464 peer = mdev->p_uuid[i] & ~((u64)1);
2465 if (self == peer)
2466 return -2;
2467 }
2468
2469 *rule_nr = 70;
2470 self = mdev->ldev->md.uuid[UI_BITMAP] & ~((u64)1);
2471 peer = mdev->p_uuid[UI_CURRENT] & ~((u64)1);
2472 if (self == peer)
2473 return 1;
2474
2475 *rule_nr = 71;
2476 self = mdev->ldev->md.uuid[UI_HISTORY_START] & ~((u64)1);
2477 if (self == peer) {
Philipp Reisner4a23f262011-01-11 17:42:17 +01002478 if (mdev->agreed_pro_version < 96 ?
2479 (mdev->ldev->md.uuid[UI_HISTORY_START + 1] & ~((u64)1)) ==
2480 (mdev->p_uuid[UI_HISTORY_START] & ~((u64)1)) :
2481 self + UUID_NEW_BM_OFFSET == (mdev->ldev->md.uuid[UI_BITMAP] & ~((u64)1))) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002482 /* The last P_SYNC_UUID did not get though. Undo the last start of
2483 resync as sync source modifications of our UUIDs. */
2484
2485 if (mdev->agreed_pro_version < 91)
Philipp Reisner4a23f262011-01-11 17:42:17 +01002486 return -1091;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002487
2488 _drbd_uuid_set(mdev, UI_BITMAP, mdev->ldev->md.uuid[UI_HISTORY_START]);
2489 _drbd_uuid_set(mdev, UI_HISTORY_START, mdev->ldev->md.uuid[UI_HISTORY_START + 1]);
2490
Philipp Reisner4a23f262011-01-11 17:42:17 +01002491 dev_info(DEV, "Last syncUUID did not get through, corrected:\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07002492 drbd_uuid_dump(mdev, "self", mdev->ldev->md.uuid,
2493 mdev->state.disk >= D_NEGOTIATING ? drbd_bm_total_weight(mdev) : 0, 0);
2494
2495 return 1;
2496 }
2497 }
2498
2499
2500 *rule_nr = 80;
Philipp Reisnerd8c2a362009-11-18 15:52:51 +01002501 peer = mdev->p_uuid[UI_CURRENT] & ~((u64)1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002502 for (i = UI_HISTORY_START; i <= UI_HISTORY_END; i++) {
2503 self = mdev->ldev->md.uuid[i] & ~((u64)1);
2504 if (self == peer)
2505 return 2;
2506 }
2507
2508 *rule_nr = 90;
2509 self = mdev->ldev->md.uuid[UI_BITMAP] & ~((u64)1);
2510 peer = mdev->p_uuid[UI_BITMAP] & ~((u64)1);
2511 if (self == peer && self != ((u64)0))
2512 return 100;
2513
2514 *rule_nr = 100;
2515 for (i = UI_HISTORY_START; i <= UI_HISTORY_END; i++) {
2516 self = mdev->ldev->md.uuid[i] & ~((u64)1);
2517 for (j = UI_HISTORY_START; j <= UI_HISTORY_END; j++) {
2518 peer = mdev->p_uuid[j] & ~((u64)1);
2519 if (self == peer)
2520 return -100;
2521 }
2522 }
2523
2524 return -1000;
2525}
2526
2527/* drbd_sync_handshake() returns the new conn state on success, or
2528 CONN_MASK (-1) on failure.
2529 */
2530static enum drbd_conns drbd_sync_handshake(struct drbd_conf *mdev, enum drbd_role peer_role,
2531 enum drbd_disk_state peer_disk) __must_hold(local)
2532{
2533 int hg, rule_nr;
2534 enum drbd_conns rv = C_MASK;
2535 enum drbd_disk_state mydisk;
2536
2537 mydisk = mdev->state.disk;
2538 if (mydisk == D_NEGOTIATING)
2539 mydisk = mdev->new_state_tmp.disk;
2540
2541 dev_info(DEV, "drbd_sync_handshake:\n");
2542 drbd_uuid_dump(mdev, "self", mdev->ldev->md.uuid, mdev->comm_bm_set, 0);
2543 drbd_uuid_dump(mdev, "peer", mdev->p_uuid,
2544 mdev->p_uuid[UI_SIZE], mdev->p_uuid[UI_FLAGS]);
2545
2546 hg = drbd_uuid_compare(mdev, &rule_nr);
2547
2548 dev_info(DEV, "uuid_compare()=%d by rule %d\n", hg, rule_nr);
2549
2550 if (hg == -1000) {
2551 dev_alert(DEV, "Unrelated data, aborting!\n");
2552 return C_MASK;
2553 }
Philipp Reisner4a23f262011-01-11 17:42:17 +01002554 if (hg < -1000) {
2555 dev_alert(DEV, "To resolve this both sides have to support at least protocol %d\n", -hg - 1000);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002556 return C_MASK;
2557 }
2558
2559 if ((mydisk == D_INCONSISTENT && peer_disk > D_INCONSISTENT) ||
2560 (peer_disk == D_INCONSISTENT && mydisk > D_INCONSISTENT)) {
2561 int f = (hg == -100) || abs(hg) == 2;
2562 hg = mydisk > D_INCONSISTENT ? 1 : -1;
2563 if (f)
2564 hg = hg*2;
2565 dev_info(DEV, "Becoming sync %s due to disk states.\n",
2566 hg > 0 ? "source" : "target");
2567 }
2568
Adam Gandelman3a11a482010-04-08 16:48:23 -07002569 if (abs(hg) == 100)
2570 drbd_khelper(mdev, "initial-split-brain");
2571
Philipp Reisnerb411b362009-09-25 16:07:19 -07002572 if (hg == 100 || (hg == -100 && mdev->net_conf->always_asbp)) {
2573 int pcount = (mdev->state.role == R_PRIMARY)
2574 + (peer_role == R_PRIMARY);
2575 int forced = (hg == -100);
2576
2577 switch (pcount) {
2578 case 0:
2579 hg = drbd_asb_recover_0p(mdev);
2580 break;
2581 case 1:
2582 hg = drbd_asb_recover_1p(mdev);
2583 break;
2584 case 2:
2585 hg = drbd_asb_recover_2p(mdev);
2586 break;
2587 }
2588 if (abs(hg) < 100) {
2589 dev_warn(DEV, "Split-Brain detected, %d primaries, "
2590 "automatically solved. Sync from %s node\n",
2591 pcount, (hg < 0) ? "peer" : "this");
2592 if (forced) {
2593 dev_warn(DEV, "Doing a full sync, since"
2594 " UUIDs where ambiguous.\n");
2595 hg = hg*2;
2596 }
2597 }
2598 }
2599
2600 if (hg == -100) {
2601 if (mdev->net_conf->want_lose && !(mdev->p_uuid[UI_FLAGS]&1))
2602 hg = -1;
2603 if (!mdev->net_conf->want_lose && (mdev->p_uuid[UI_FLAGS]&1))
2604 hg = 1;
2605
2606 if (abs(hg) < 100)
2607 dev_warn(DEV, "Split-Brain detected, manually solved. "
2608 "Sync from %s node\n",
2609 (hg < 0) ? "peer" : "this");
2610 }
2611
2612 if (hg == -100) {
Lars Ellenberg580b9762010-02-26 23:15:23 +01002613 /* FIXME this log message is not correct if we end up here
2614 * after an attempted attach on a diskless node.
2615 * We just refuse to attach -- well, we drop the "connection"
2616 * to that disk, in a way... */
Adam Gandelman3a11a482010-04-08 16:48:23 -07002617 dev_alert(DEV, "Split-Brain detected but unresolved, dropping connection!\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07002618 drbd_khelper(mdev, "split-brain");
2619 return C_MASK;
2620 }
2621
2622 if (hg > 0 && mydisk <= D_INCONSISTENT) {
2623 dev_err(DEV, "I shall become SyncSource, but I am inconsistent!\n");
2624 return C_MASK;
2625 }
2626
2627 if (hg < 0 && /* by intention we do not use mydisk here. */
2628 mdev->state.role == R_PRIMARY && mdev->state.disk >= D_CONSISTENT) {
2629 switch (mdev->net_conf->rr_conflict) {
2630 case ASB_CALL_HELPER:
2631 drbd_khelper(mdev, "pri-lost");
2632 /* fall through */
2633 case ASB_DISCONNECT:
2634 dev_err(DEV, "I shall become SyncTarget, but I am primary!\n");
2635 return C_MASK;
2636 case ASB_VIOLENTLY:
2637 dev_warn(DEV, "Becoming SyncTarget, violating the stable-data"
2638 "assumption\n");
2639 }
2640 }
2641
Philipp Reisnercf14c2e2010-02-02 21:03:50 +01002642 if (mdev->net_conf->dry_run || test_bit(CONN_DRY_RUN, &mdev->flags)) {
2643 if (hg == 0)
2644 dev_info(DEV, "dry-run connect: No resync, would become Connected immediately.\n");
2645 else
2646 dev_info(DEV, "dry-run connect: Would become %s, doing a %s resync.",
2647 drbd_conn_str(hg > 0 ? C_SYNC_SOURCE : C_SYNC_TARGET),
2648 abs(hg) >= 2 ? "full" : "bit-map based");
2649 return C_MASK;
2650 }
2651
Philipp Reisnerb411b362009-09-25 16:07:19 -07002652 if (abs(hg) >= 2) {
2653 dev_info(DEV, "Writing the whole bitmap, full sync required after drbd_sync_handshake.\n");
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01002654 if (drbd_bitmap_io(mdev, &drbd_bmio_set_n_write, "set_n_write from sync_handshake",
2655 BM_LOCKED_SET_ALLOWED))
Philipp Reisnerb411b362009-09-25 16:07:19 -07002656 return C_MASK;
2657 }
2658
2659 if (hg > 0) { /* become sync source. */
2660 rv = C_WF_BITMAP_S;
2661 } else if (hg < 0) { /* become sync target */
2662 rv = C_WF_BITMAP_T;
2663 } else {
2664 rv = C_CONNECTED;
2665 if (drbd_bm_total_weight(mdev)) {
2666 dev_info(DEV, "No resync, but %lu bits in bitmap!\n",
2667 drbd_bm_total_weight(mdev));
2668 }
2669 }
2670
2671 return rv;
2672}
2673
2674/* returns 1 if invalid */
2675static int cmp_after_sb(enum drbd_after_sb_p peer, enum drbd_after_sb_p self)
2676{
2677 /* ASB_DISCARD_REMOTE - ASB_DISCARD_LOCAL is valid */
2678 if ((peer == ASB_DISCARD_REMOTE && self == ASB_DISCARD_LOCAL) ||
2679 (self == ASB_DISCARD_REMOTE && peer == ASB_DISCARD_LOCAL))
2680 return 0;
2681
2682 /* any other things with ASB_DISCARD_REMOTE or ASB_DISCARD_LOCAL are invalid */
2683 if (peer == ASB_DISCARD_REMOTE || peer == ASB_DISCARD_LOCAL ||
2684 self == ASB_DISCARD_REMOTE || self == ASB_DISCARD_LOCAL)
2685 return 1;
2686
2687 /* everything else is valid if they are equal on both sides. */
2688 if (peer == self)
2689 return 0;
2690
2691 /* everything es is invalid. */
2692 return 1;
2693}
2694
Philipp Reisner02918be2010-08-20 14:35:10 +02002695static int receive_protocol(struct drbd_conf *mdev, enum drbd_packets cmd, unsigned int data_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002696{
Philipp Reisner02918be2010-08-20 14:35:10 +02002697 struct p_protocol *p = &mdev->data.rbuf.protocol;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002698 int p_proto, p_after_sb_0p, p_after_sb_1p, p_after_sb_2p;
Philipp Reisnercf14c2e2010-02-02 21:03:50 +01002699 int p_want_lose, p_two_primaries, cf;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002700 char p_integrity_alg[SHARED_SECRET_MAX] = "";
2701
Philipp Reisnerb411b362009-09-25 16:07:19 -07002702 p_proto = be32_to_cpu(p->protocol);
2703 p_after_sb_0p = be32_to_cpu(p->after_sb_0p);
2704 p_after_sb_1p = be32_to_cpu(p->after_sb_1p);
2705 p_after_sb_2p = be32_to_cpu(p->after_sb_2p);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002706 p_two_primaries = be32_to_cpu(p->two_primaries);
Philipp Reisnercf14c2e2010-02-02 21:03:50 +01002707 cf = be32_to_cpu(p->conn_flags);
2708 p_want_lose = cf & CF_WANT_LOSE;
2709
2710 clear_bit(CONN_DRY_RUN, &mdev->flags);
2711
2712 if (cf & CF_DRY_RUN)
2713 set_bit(CONN_DRY_RUN, &mdev->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002714
2715 if (p_proto != mdev->net_conf->wire_protocol) {
2716 dev_err(DEV, "incompatible communication protocols\n");
2717 goto disconnect;
2718 }
2719
2720 if (cmp_after_sb(p_after_sb_0p, mdev->net_conf->after_sb_0p)) {
2721 dev_err(DEV, "incompatible after-sb-0pri settings\n");
2722 goto disconnect;
2723 }
2724
2725 if (cmp_after_sb(p_after_sb_1p, mdev->net_conf->after_sb_1p)) {
2726 dev_err(DEV, "incompatible after-sb-1pri settings\n");
2727 goto disconnect;
2728 }
2729
2730 if (cmp_after_sb(p_after_sb_2p, mdev->net_conf->after_sb_2p)) {
2731 dev_err(DEV, "incompatible after-sb-2pri settings\n");
2732 goto disconnect;
2733 }
2734
2735 if (p_want_lose && mdev->net_conf->want_lose) {
2736 dev_err(DEV, "both sides have the 'want_lose' flag set\n");
2737 goto disconnect;
2738 }
2739
2740 if (p_two_primaries != mdev->net_conf->two_primaries) {
2741 dev_err(DEV, "incompatible setting of the two-primaries options\n");
2742 goto disconnect;
2743 }
2744
2745 if (mdev->agreed_pro_version >= 87) {
2746 unsigned char *my_alg = mdev->net_conf->integrity_alg;
2747
2748 if (drbd_recv(mdev, p_integrity_alg, data_size) != data_size)
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01002749 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002750
2751 p_integrity_alg[SHARED_SECRET_MAX-1] = 0;
2752 if (strcmp(p_integrity_alg, my_alg)) {
2753 dev_err(DEV, "incompatible setting of the data-integrity-alg\n");
2754 goto disconnect;
2755 }
2756 dev_info(DEV, "data-integrity-alg: %s\n",
2757 my_alg[0] ? my_alg : (unsigned char *)"<not-used>");
2758 }
2759
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01002760 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002761
2762disconnect:
2763 drbd_force_state(mdev, NS(conn, C_DISCONNECTING));
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01002764 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002765}
2766
2767/* helper function
2768 * input: alg name, feature name
2769 * return: NULL (alg name was "")
2770 * ERR_PTR(error) if something goes wrong
2771 * or the crypto hash ptr, if it worked out ok. */
2772struct crypto_hash *drbd_crypto_alloc_digest_safe(const struct drbd_conf *mdev,
2773 const char *alg, const char *name)
2774{
2775 struct crypto_hash *tfm;
2776
2777 if (!alg[0])
2778 return NULL;
2779
2780 tfm = crypto_alloc_hash(alg, 0, CRYPTO_ALG_ASYNC);
2781 if (IS_ERR(tfm)) {
2782 dev_err(DEV, "Can not allocate \"%s\" as %s (reason: %ld)\n",
2783 alg, name, PTR_ERR(tfm));
2784 return tfm;
2785 }
2786 if (!drbd_crypto_is_hash(crypto_hash_tfm(tfm))) {
2787 crypto_free_hash(tfm);
2788 dev_err(DEV, "\"%s\" is not a digest (%s)\n", alg, name);
2789 return ERR_PTR(-EINVAL);
2790 }
2791 return tfm;
2792}
2793
Philipp Reisner02918be2010-08-20 14:35:10 +02002794static int receive_SyncParam(struct drbd_conf *mdev, enum drbd_packets cmd, unsigned int packet_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002795{
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01002796 int ok = true;
Philipp Reisner02918be2010-08-20 14:35:10 +02002797 struct p_rs_param_95 *p = &mdev->data.rbuf.rs_param_95;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002798 unsigned int header_size, data_size, exp_max_sz;
2799 struct crypto_hash *verify_tfm = NULL;
2800 struct crypto_hash *csums_tfm = NULL;
2801 const int apv = mdev->agreed_pro_version;
Philipp Reisner778f2712010-07-06 11:14:00 +02002802 int *rs_plan_s = NULL;
2803 int fifo_size = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002804
2805 exp_max_sz = apv <= 87 ? sizeof(struct p_rs_param)
2806 : apv == 88 ? sizeof(struct p_rs_param)
2807 + SHARED_SECRET_MAX
Philipp Reisner8e26f9c2010-07-06 17:25:54 +02002808 : apv <= 94 ? sizeof(struct p_rs_param_89)
2809 : /* apv >= 95 */ sizeof(struct p_rs_param_95);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002810
Philipp Reisner02918be2010-08-20 14:35:10 +02002811 if (packet_size > exp_max_sz) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002812 dev_err(DEV, "SyncParam packet too long: received %u, expected <= %u bytes\n",
Philipp Reisner02918be2010-08-20 14:35:10 +02002813 packet_size, exp_max_sz);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01002814 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002815 }
2816
2817 if (apv <= 88) {
Philipp Reisner02918be2010-08-20 14:35:10 +02002818 header_size = sizeof(struct p_rs_param) - sizeof(struct p_header80);
2819 data_size = packet_size - header_size;
Philipp Reisner8e26f9c2010-07-06 17:25:54 +02002820 } else if (apv <= 94) {
Philipp Reisner02918be2010-08-20 14:35:10 +02002821 header_size = sizeof(struct p_rs_param_89) - sizeof(struct p_header80);
2822 data_size = packet_size - header_size;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002823 D_ASSERT(data_size == 0);
Philipp Reisner8e26f9c2010-07-06 17:25:54 +02002824 } else {
Philipp Reisner02918be2010-08-20 14:35:10 +02002825 header_size = sizeof(struct p_rs_param_95) - sizeof(struct p_header80);
2826 data_size = packet_size - header_size;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002827 D_ASSERT(data_size == 0);
2828 }
2829
2830 /* initialize verify_alg and csums_alg */
2831 memset(p->verify_alg, 0, 2 * SHARED_SECRET_MAX);
2832
Philipp Reisner02918be2010-08-20 14:35:10 +02002833 if (drbd_recv(mdev, &p->head.payload, header_size) != header_size)
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01002834 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002835
2836 mdev->sync_conf.rate = be32_to_cpu(p->rate);
2837
2838 if (apv >= 88) {
2839 if (apv == 88) {
2840 if (data_size > SHARED_SECRET_MAX) {
2841 dev_err(DEV, "verify-alg too long, "
2842 "peer wants %u, accepting only %u byte\n",
2843 data_size, SHARED_SECRET_MAX);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01002844 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002845 }
2846
2847 if (drbd_recv(mdev, p->verify_alg, data_size) != data_size)
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01002848 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002849
2850 /* we expect NUL terminated string */
2851 /* but just in case someone tries to be evil */
2852 D_ASSERT(p->verify_alg[data_size-1] == 0);
2853 p->verify_alg[data_size-1] = 0;
2854
2855 } else /* apv >= 89 */ {
2856 /* we still expect NUL terminated strings */
2857 /* but just in case someone tries to be evil */
2858 D_ASSERT(p->verify_alg[SHARED_SECRET_MAX-1] == 0);
2859 D_ASSERT(p->csums_alg[SHARED_SECRET_MAX-1] == 0);
2860 p->verify_alg[SHARED_SECRET_MAX-1] = 0;
2861 p->csums_alg[SHARED_SECRET_MAX-1] = 0;
2862 }
2863
2864 if (strcmp(mdev->sync_conf.verify_alg, p->verify_alg)) {
2865 if (mdev->state.conn == C_WF_REPORT_PARAMS) {
2866 dev_err(DEV, "Different verify-alg settings. me=\"%s\" peer=\"%s\"\n",
2867 mdev->sync_conf.verify_alg, p->verify_alg);
2868 goto disconnect;
2869 }
2870 verify_tfm = drbd_crypto_alloc_digest_safe(mdev,
2871 p->verify_alg, "verify-alg");
2872 if (IS_ERR(verify_tfm)) {
2873 verify_tfm = NULL;
2874 goto disconnect;
2875 }
2876 }
2877
2878 if (apv >= 89 && strcmp(mdev->sync_conf.csums_alg, p->csums_alg)) {
2879 if (mdev->state.conn == C_WF_REPORT_PARAMS) {
2880 dev_err(DEV, "Different csums-alg settings. me=\"%s\" peer=\"%s\"\n",
2881 mdev->sync_conf.csums_alg, p->csums_alg);
2882 goto disconnect;
2883 }
2884 csums_tfm = drbd_crypto_alloc_digest_safe(mdev,
2885 p->csums_alg, "csums-alg");
2886 if (IS_ERR(csums_tfm)) {
2887 csums_tfm = NULL;
2888 goto disconnect;
2889 }
2890 }
2891
Philipp Reisner8e26f9c2010-07-06 17:25:54 +02002892 if (apv > 94) {
2893 mdev->sync_conf.rate = be32_to_cpu(p->rate);
2894 mdev->sync_conf.c_plan_ahead = be32_to_cpu(p->c_plan_ahead);
2895 mdev->sync_conf.c_delay_target = be32_to_cpu(p->c_delay_target);
2896 mdev->sync_conf.c_fill_target = be32_to_cpu(p->c_fill_target);
2897 mdev->sync_conf.c_max_rate = be32_to_cpu(p->c_max_rate);
Philipp Reisner778f2712010-07-06 11:14:00 +02002898
2899 fifo_size = (mdev->sync_conf.c_plan_ahead * 10 * SLEEP_TIME) / HZ;
2900 if (fifo_size != mdev->rs_plan_s.size && fifo_size > 0) {
2901 rs_plan_s = kzalloc(sizeof(int) * fifo_size, GFP_KERNEL);
2902 if (!rs_plan_s) {
2903 dev_err(DEV, "kmalloc of fifo_buffer failed");
2904 goto disconnect;
2905 }
2906 }
Philipp Reisner8e26f9c2010-07-06 17:25:54 +02002907 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07002908
2909 spin_lock(&mdev->peer_seq_lock);
2910 /* lock against drbd_nl_syncer_conf() */
2911 if (verify_tfm) {
2912 strcpy(mdev->sync_conf.verify_alg, p->verify_alg);
2913 mdev->sync_conf.verify_alg_len = strlen(p->verify_alg) + 1;
2914 crypto_free_hash(mdev->verify_tfm);
2915 mdev->verify_tfm = verify_tfm;
2916 dev_info(DEV, "using verify-alg: \"%s\"\n", p->verify_alg);
2917 }
2918 if (csums_tfm) {
2919 strcpy(mdev->sync_conf.csums_alg, p->csums_alg);
2920 mdev->sync_conf.csums_alg_len = strlen(p->csums_alg) + 1;
2921 crypto_free_hash(mdev->csums_tfm);
2922 mdev->csums_tfm = csums_tfm;
2923 dev_info(DEV, "using csums-alg: \"%s\"\n", p->csums_alg);
2924 }
Philipp Reisner778f2712010-07-06 11:14:00 +02002925 if (fifo_size != mdev->rs_plan_s.size) {
2926 kfree(mdev->rs_plan_s.values);
2927 mdev->rs_plan_s.values = rs_plan_s;
2928 mdev->rs_plan_s.size = fifo_size;
2929 mdev->rs_planed = 0;
2930 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07002931 spin_unlock(&mdev->peer_seq_lock);
2932 }
2933
2934 return ok;
2935disconnect:
2936 /* just for completeness: actually not needed,
2937 * as this is not reached if csums_tfm was ok. */
2938 crypto_free_hash(csums_tfm);
2939 /* but free the verify_tfm again, if csums_tfm did not work out */
2940 crypto_free_hash(verify_tfm);
2941 drbd_force_state(mdev, NS(conn, C_DISCONNECTING));
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01002942 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002943}
2944
Philipp Reisnerb411b362009-09-25 16:07:19 -07002945/* warn if the arguments differ by more than 12.5% */
2946static void warn_if_differ_considerably(struct drbd_conf *mdev,
2947 const char *s, sector_t a, sector_t b)
2948{
2949 sector_t d;
2950 if (a == 0 || b == 0)
2951 return;
2952 d = (a > b) ? (a - b) : (b - a);
2953 if (d > (a>>3) || d > (b>>3))
2954 dev_warn(DEV, "Considerable difference in %s: %llus vs. %llus\n", s,
2955 (unsigned long long)a, (unsigned long long)b);
2956}
2957
Philipp Reisner02918be2010-08-20 14:35:10 +02002958static int receive_sizes(struct drbd_conf *mdev, enum drbd_packets cmd, unsigned int data_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002959{
Philipp Reisner02918be2010-08-20 14:35:10 +02002960 struct p_sizes *p = &mdev->data.rbuf.sizes;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002961 enum determine_dev_size dd = unchanged;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002962 sector_t p_size, p_usize, my_usize;
2963 int ldsc = 0; /* local disk size changed */
Philipp Reisnere89b5912010-03-24 17:11:33 +01002964 enum dds_flags ddsf;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002965
Philipp Reisnerb411b362009-09-25 16:07:19 -07002966 p_size = be64_to_cpu(p->d_size);
2967 p_usize = be64_to_cpu(p->u_size);
2968
2969 if (p_size == 0 && mdev->state.disk == D_DISKLESS) {
2970 dev_err(DEV, "some backing storage is needed\n");
2971 drbd_force_state(mdev, NS(conn, C_DISCONNECTING));
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01002972 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002973 }
2974
2975 /* just store the peer's disk size for now.
2976 * we still need to figure out whether we accept that. */
2977 mdev->p_size = p_size;
2978
Philipp Reisnerb411b362009-09-25 16:07:19 -07002979 if (get_ldev(mdev)) {
2980 warn_if_differ_considerably(mdev, "lower level device sizes",
2981 p_size, drbd_get_max_capacity(mdev->ldev));
2982 warn_if_differ_considerably(mdev, "user requested size",
2983 p_usize, mdev->ldev->dc.disk_size);
2984
2985 /* if this is the first connect, or an otherwise expected
2986 * param exchange, choose the minimum */
2987 if (mdev->state.conn == C_WF_REPORT_PARAMS)
2988 p_usize = min_not_zero((sector_t)mdev->ldev->dc.disk_size,
2989 p_usize);
2990
2991 my_usize = mdev->ldev->dc.disk_size;
2992
2993 if (mdev->ldev->dc.disk_size != p_usize) {
2994 mdev->ldev->dc.disk_size = p_usize;
2995 dev_info(DEV, "Peer sets u_size to %lu sectors\n",
2996 (unsigned long)mdev->ldev->dc.disk_size);
2997 }
2998
2999 /* Never shrink a device with usable data during connect.
3000 But allow online shrinking if we are connected. */
Philipp Reisnera393db62009-12-22 13:35:52 +01003001 if (drbd_new_dev_size(mdev, mdev->ldev, 0) <
Philipp Reisnerb411b362009-09-25 16:07:19 -07003002 drbd_get_capacity(mdev->this_bdev) &&
3003 mdev->state.disk >= D_OUTDATED &&
3004 mdev->state.conn < C_CONNECTED) {
3005 dev_err(DEV, "The peer's disk size is too small!\n");
3006 drbd_force_state(mdev, NS(conn, C_DISCONNECTING));
3007 mdev->ldev->dc.disk_size = my_usize;
3008 put_ldev(mdev);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01003009 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003010 }
3011 put_ldev(mdev);
3012 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07003013
Philipp Reisnere89b5912010-03-24 17:11:33 +01003014 ddsf = be16_to_cpu(p->dds_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003015 if (get_ldev(mdev)) {
Bart Van Assche24c48302011-05-21 18:32:29 +02003016 dd = drbd_determine_dev_size(mdev, ddsf);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003017 put_ldev(mdev);
3018 if (dd == dev_size_error)
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01003019 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003020 drbd_md_sync(mdev);
3021 } else {
3022 /* I am diskless, need to accept the peer's size. */
3023 drbd_set_my_capacity(mdev, p_size);
3024 }
3025
Philipp Reisner99432fc2011-05-20 16:39:13 +02003026 mdev->peer_max_bio_size = be32_to_cpu(p->max_bio_size);
3027 drbd_reconsider_max_bio_size(mdev);
3028
Philipp Reisnerb411b362009-09-25 16:07:19 -07003029 if (get_ldev(mdev)) {
3030 if (mdev->ldev->known_size != drbd_get_capacity(mdev->ldev->backing_bdev)) {
3031 mdev->ldev->known_size = drbd_get_capacity(mdev->ldev->backing_bdev);
3032 ldsc = 1;
3033 }
3034
Philipp Reisnerb411b362009-09-25 16:07:19 -07003035 put_ldev(mdev);
3036 }
3037
3038 if (mdev->state.conn > C_WF_REPORT_PARAMS) {
3039 if (be64_to_cpu(p->c_size) !=
3040 drbd_get_capacity(mdev->this_bdev) || ldsc) {
3041 /* we have different sizes, probably peer
3042 * needs to know my new size... */
Philipp Reisnere89b5912010-03-24 17:11:33 +01003043 drbd_send_sizes(mdev, 0, ddsf);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003044 }
3045 if (test_and_clear_bit(RESIZE_PENDING, &mdev->flags) ||
3046 (dd == grew && mdev->state.conn == C_CONNECTED)) {
3047 if (mdev->state.pdsk >= D_INCONSISTENT &&
Philipp Reisnere89b5912010-03-24 17:11:33 +01003048 mdev->state.disk >= D_INCONSISTENT) {
3049 if (ddsf & DDSF_NO_RESYNC)
3050 dev_info(DEV, "Resync of new storage suppressed with --assume-clean\n");
3051 else
3052 resync_after_online_grow(mdev);
3053 } else
Philipp Reisnerb411b362009-09-25 16:07:19 -07003054 set_bit(RESYNC_AFTER_NEG, &mdev->flags);
3055 }
3056 }
3057
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01003058 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003059}
3060
Philipp Reisner02918be2010-08-20 14:35:10 +02003061static int receive_uuids(struct drbd_conf *mdev, enum drbd_packets cmd, unsigned int data_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003062{
Philipp Reisner02918be2010-08-20 14:35:10 +02003063 struct p_uuids *p = &mdev->data.rbuf.uuids;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003064 u64 *p_uuid;
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003065 int i, updated_uuids = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003066
Philipp Reisnerb411b362009-09-25 16:07:19 -07003067 p_uuid = kmalloc(sizeof(u64)*UI_EXTENDED_SIZE, GFP_NOIO);
3068
3069 for (i = UI_CURRENT; i < UI_EXTENDED_SIZE; i++)
3070 p_uuid[i] = be64_to_cpu(p->uuid[i]);
3071
3072 kfree(mdev->p_uuid);
3073 mdev->p_uuid = p_uuid;
3074
3075 if (mdev->state.conn < C_CONNECTED &&
3076 mdev->state.disk < D_INCONSISTENT &&
3077 mdev->state.role == R_PRIMARY &&
3078 (mdev->ed_uuid & ~((u64)1)) != (p_uuid[UI_CURRENT] & ~((u64)1))) {
3079 dev_err(DEV, "Can only connect to data with current UUID=%016llX\n",
3080 (unsigned long long)mdev->ed_uuid);
3081 drbd_force_state(mdev, NS(conn, C_DISCONNECTING));
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01003082 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003083 }
3084
3085 if (get_ldev(mdev)) {
3086 int skip_initial_sync =
3087 mdev->state.conn == C_CONNECTED &&
3088 mdev->agreed_pro_version >= 90 &&
3089 mdev->ldev->md.uuid[UI_CURRENT] == UUID_JUST_CREATED &&
3090 (p_uuid[UI_FLAGS] & 8);
3091 if (skip_initial_sync) {
3092 dev_info(DEV, "Accepted new current UUID, preparing to skip initial sync\n");
3093 drbd_bitmap_io(mdev, &drbd_bmio_clear_n_write,
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003094 "clear_n_write from receive_uuids",
3095 BM_LOCKED_TEST_ALLOWED);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003096 _drbd_uuid_set(mdev, UI_CURRENT, p_uuid[UI_CURRENT]);
3097 _drbd_uuid_set(mdev, UI_BITMAP, 0);
3098 _drbd_set_state(_NS2(mdev, disk, D_UP_TO_DATE, pdsk, D_UP_TO_DATE),
3099 CS_VERBOSE, NULL);
3100 drbd_md_sync(mdev);
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003101 updated_uuids = 1;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003102 }
3103 put_ldev(mdev);
Philipp Reisner18a50fa2010-06-21 14:14:15 +02003104 } else if (mdev->state.disk < D_INCONSISTENT &&
3105 mdev->state.role == R_PRIMARY) {
3106 /* I am a diskless primary, the peer just created a new current UUID
3107 for me. */
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003108 updated_uuids = drbd_set_ed_uuid(mdev, p_uuid[UI_CURRENT]);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003109 }
3110
3111 /* Before we test for the disk state, we should wait until an eventually
3112 ongoing cluster wide state change is finished. That is important if
3113 we are primary and are detaching from our disk. We need to see the
3114 new disk state... */
3115 wait_event(mdev->misc_wait, !test_bit(CLUSTER_ST_CHANGE, &mdev->flags));
3116 if (mdev->state.conn >= C_CONNECTED && mdev->state.disk < D_INCONSISTENT)
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003117 updated_uuids |= drbd_set_ed_uuid(mdev, p_uuid[UI_CURRENT]);
3118
3119 if (updated_uuids)
3120 drbd_print_uuids(mdev, "receiver updated UUIDs to");
Philipp Reisnerb411b362009-09-25 16:07:19 -07003121
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01003122 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003123}
3124
3125/**
3126 * convert_state() - Converts the peer's view of the cluster state to our point of view
3127 * @ps: The state as seen by the peer.
3128 */
3129static union drbd_state convert_state(union drbd_state ps)
3130{
3131 union drbd_state ms;
3132
3133 static enum drbd_conns c_tab[] = {
3134 [C_CONNECTED] = C_CONNECTED,
3135
3136 [C_STARTING_SYNC_S] = C_STARTING_SYNC_T,
3137 [C_STARTING_SYNC_T] = C_STARTING_SYNC_S,
3138 [C_DISCONNECTING] = C_TEAR_DOWN, /* C_NETWORK_FAILURE, */
3139 [C_VERIFY_S] = C_VERIFY_T,
3140 [C_MASK] = C_MASK,
3141 };
3142
3143 ms.i = ps.i;
3144
3145 ms.conn = c_tab[ps.conn];
3146 ms.peer = ps.role;
3147 ms.role = ps.peer;
3148 ms.pdsk = ps.disk;
3149 ms.disk = ps.pdsk;
3150 ms.peer_isp = (ps.aftr_isp | ps.user_isp);
3151
3152 return ms;
3153}
3154
Philipp Reisner02918be2010-08-20 14:35:10 +02003155static int receive_req_state(struct drbd_conf *mdev, enum drbd_packets cmd, unsigned int data_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003156{
Philipp Reisner02918be2010-08-20 14:35:10 +02003157 struct p_req_state *p = &mdev->data.rbuf.req_state;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003158 union drbd_state mask, val;
Andreas Gruenbacherbf885f82010-12-08 00:39:32 +01003159 enum drbd_state_rv rv;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003160
Philipp Reisnerb411b362009-09-25 16:07:19 -07003161 mask.i = be32_to_cpu(p->mask);
3162 val.i = be32_to_cpu(p->val);
3163
3164 if (test_bit(DISCARD_CONCURRENT, &mdev->flags) &&
3165 test_bit(CLUSTER_ST_CHANGE, &mdev->flags)) {
3166 drbd_send_sr_reply(mdev, SS_CONCURRENT_ST_CHG);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01003167 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003168 }
3169
3170 mask = convert_state(mask);
3171 val = convert_state(val);
3172
3173 rv = drbd_change_state(mdev, CS_VERBOSE, mask, val);
3174
3175 drbd_send_sr_reply(mdev, rv);
3176 drbd_md_sync(mdev);
3177
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01003178 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003179}
3180
Philipp Reisner02918be2010-08-20 14:35:10 +02003181static int receive_state(struct drbd_conf *mdev, enum drbd_packets cmd, unsigned int data_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003182{
Philipp Reisner02918be2010-08-20 14:35:10 +02003183 struct p_state *p = &mdev->data.rbuf.state;
Lars Ellenberg4ac4aad2010-07-22 17:39:26 +02003184 union drbd_state os, ns, peer_state;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003185 enum drbd_disk_state real_peer_disk;
Philipp Reisner65d922c2010-06-16 16:18:09 +02003186 enum chg_state_flags cs_flags;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003187 int rv;
3188
Philipp Reisnerb411b362009-09-25 16:07:19 -07003189 peer_state.i = be32_to_cpu(p->state);
3190
3191 real_peer_disk = peer_state.disk;
3192 if (peer_state.disk == D_NEGOTIATING) {
3193 real_peer_disk = mdev->p_uuid[UI_FLAGS] & 4 ? D_INCONSISTENT : D_CONSISTENT;
3194 dev_info(DEV, "real peer disk state = %s\n", drbd_disk_str(real_peer_disk));
3195 }
3196
3197 spin_lock_irq(&mdev->req_lock);
3198 retry:
Lars Ellenberg4ac4aad2010-07-22 17:39:26 +02003199 os = ns = mdev->state;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003200 spin_unlock_irq(&mdev->req_lock);
3201
Lars Ellenberge9ef7bb2010-10-07 15:55:39 +02003202 /* peer says his disk is uptodate, while we think it is inconsistent,
3203 * and this happens while we think we have a sync going on. */
3204 if (os.pdsk == D_INCONSISTENT && real_peer_disk == D_UP_TO_DATE &&
3205 os.conn > C_CONNECTED && os.disk == D_UP_TO_DATE) {
3206 /* If we are (becoming) SyncSource, but peer is still in sync
3207 * preparation, ignore its uptodate-ness to avoid flapping, it
3208 * will change to inconsistent once the peer reaches active
3209 * syncing states.
3210 * It may have changed syncer-paused flags, however, so we
3211 * cannot ignore this completely. */
3212 if (peer_state.conn > C_CONNECTED &&
3213 peer_state.conn < C_SYNC_SOURCE)
3214 real_peer_disk = D_INCONSISTENT;
3215
3216 /* if peer_state changes to connected at the same time,
3217 * it explicitly notifies us that it finished resync.
3218 * Maybe we should finish it up, too? */
3219 else if (os.conn >= C_SYNC_SOURCE &&
3220 peer_state.conn == C_CONNECTED) {
3221 if (drbd_bm_total_weight(mdev) <= mdev->rs_failed)
3222 drbd_resync_finished(mdev);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01003223 return true;
Lars Ellenberge9ef7bb2010-10-07 15:55:39 +02003224 }
3225 }
3226
3227 /* peer says his disk is inconsistent, while we think it is uptodate,
3228 * and this happens while the peer still thinks we have a sync going on,
3229 * but we think we are already done with the sync.
3230 * We ignore this to avoid flapping pdsk.
3231 * This should not happen, if the peer is a recent version of drbd. */
3232 if (os.pdsk == D_UP_TO_DATE && real_peer_disk == D_INCONSISTENT &&
3233 os.conn == C_CONNECTED && peer_state.conn > C_SYNC_SOURCE)
3234 real_peer_disk = D_UP_TO_DATE;
3235
Lars Ellenberg4ac4aad2010-07-22 17:39:26 +02003236 if (ns.conn == C_WF_REPORT_PARAMS)
3237 ns.conn = C_CONNECTED;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003238
Philipp Reisner67531712010-10-27 12:21:30 +02003239 if (peer_state.conn == C_AHEAD)
3240 ns.conn = C_BEHIND;
3241
Philipp Reisnerb411b362009-09-25 16:07:19 -07003242 if (mdev->p_uuid && peer_state.disk >= D_NEGOTIATING &&
3243 get_ldev_if_state(mdev, D_NEGOTIATING)) {
3244 int cr; /* consider resync */
3245
3246 /* if we established a new connection */
Lars Ellenberg4ac4aad2010-07-22 17:39:26 +02003247 cr = (os.conn < C_CONNECTED);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003248 /* if we had an established connection
3249 * and one of the nodes newly attaches a disk */
Lars Ellenberg4ac4aad2010-07-22 17:39:26 +02003250 cr |= (os.conn == C_CONNECTED &&
Philipp Reisnerb411b362009-09-25 16:07:19 -07003251 (peer_state.disk == D_NEGOTIATING ||
Lars Ellenberg4ac4aad2010-07-22 17:39:26 +02003252 os.disk == D_NEGOTIATING));
Philipp Reisnerb411b362009-09-25 16:07:19 -07003253 /* if we have both been inconsistent, and the peer has been
3254 * forced to be UpToDate with --overwrite-data */
3255 cr |= test_bit(CONSIDER_RESYNC, &mdev->flags);
3256 /* if we had been plain connected, and the admin requested to
3257 * start a sync by "invalidate" or "invalidate-remote" */
Lars Ellenberg4ac4aad2010-07-22 17:39:26 +02003258 cr |= (os.conn == C_CONNECTED &&
Philipp Reisnerb411b362009-09-25 16:07:19 -07003259 (peer_state.conn >= C_STARTING_SYNC_S &&
3260 peer_state.conn <= C_WF_BITMAP_T));
3261
3262 if (cr)
Lars Ellenberg4ac4aad2010-07-22 17:39:26 +02003263 ns.conn = drbd_sync_handshake(mdev, peer_state.role, real_peer_disk);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003264
3265 put_ldev(mdev);
Lars Ellenberg4ac4aad2010-07-22 17:39:26 +02003266 if (ns.conn == C_MASK) {
3267 ns.conn = C_CONNECTED;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003268 if (mdev->state.disk == D_NEGOTIATING) {
Lars Ellenberg82f59cc2010-10-16 12:13:47 +02003269 drbd_force_state(mdev, NS(disk, D_FAILED));
Philipp Reisnerb411b362009-09-25 16:07:19 -07003270 } else if (peer_state.disk == D_NEGOTIATING) {
3271 dev_err(DEV, "Disk attach process on the peer node was aborted.\n");
3272 peer_state.disk = D_DISKLESS;
Lars Ellenberg580b9762010-02-26 23:15:23 +01003273 real_peer_disk = D_DISKLESS;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003274 } else {
Philipp Reisnercf14c2e2010-02-02 21:03:50 +01003275 if (test_and_clear_bit(CONN_DRY_RUN, &mdev->flags))
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01003276 return false;
Lars Ellenberg4ac4aad2010-07-22 17:39:26 +02003277 D_ASSERT(os.conn == C_WF_REPORT_PARAMS);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003278 drbd_force_state(mdev, NS(conn, C_DISCONNECTING));
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01003279 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003280 }
3281 }
3282 }
3283
3284 spin_lock_irq(&mdev->req_lock);
Lars Ellenberg4ac4aad2010-07-22 17:39:26 +02003285 if (mdev->state.i != os.i)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003286 goto retry;
3287 clear_bit(CONSIDER_RESYNC, &mdev->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003288 ns.peer = peer_state.role;
3289 ns.pdsk = real_peer_disk;
3290 ns.peer_isp = (peer_state.aftr_isp | peer_state.user_isp);
Lars Ellenberg4ac4aad2010-07-22 17:39:26 +02003291 if ((ns.conn == C_CONNECTED || ns.conn == C_WF_BITMAP_S) && ns.disk == D_NEGOTIATING)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003292 ns.disk = mdev->new_state_tmp.disk;
Lars Ellenberg4ac4aad2010-07-22 17:39:26 +02003293 cs_flags = CS_VERBOSE + (os.conn < C_CONNECTED && ns.conn >= C_CONNECTED ? 0 : CS_HARD);
3294 if (ns.pdsk == D_CONSISTENT && is_susp(ns) && ns.conn == C_CONNECTED && os.conn < C_CONNECTED &&
Philipp Reisner481c6f52010-06-22 14:03:27 +02003295 test_bit(NEW_CUR_UUID, &mdev->flags)) {
3296 /* Do not allow tl_restart(resend) for a rebooted peer. We can only allow this
3297 for temporal network outages! */
3298 spin_unlock_irq(&mdev->req_lock);
3299 dev_err(DEV, "Aborting Connect, can not thaw IO with an only Consistent peer\n");
3300 tl_clear(mdev);
3301 drbd_uuid_new_current(mdev);
3302 clear_bit(NEW_CUR_UUID, &mdev->flags);
3303 drbd_force_state(mdev, NS2(conn, C_PROTOCOL_ERROR, susp, 0));
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01003304 return false;
Philipp Reisner481c6f52010-06-22 14:03:27 +02003305 }
Philipp Reisner65d922c2010-06-16 16:18:09 +02003306 rv = _drbd_set_state(mdev, ns, cs_flags, NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003307 ns = mdev->state;
3308 spin_unlock_irq(&mdev->req_lock);
3309
3310 if (rv < SS_SUCCESS) {
3311 drbd_force_state(mdev, NS(conn, C_DISCONNECTING));
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01003312 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003313 }
3314
Lars Ellenberg4ac4aad2010-07-22 17:39:26 +02003315 if (os.conn > C_WF_REPORT_PARAMS) {
3316 if (ns.conn > C_CONNECTED && peer_state.conn <= C_CONNECTED &&
Philipp Reisnerb411b362009-09-25 16:07:19 -07003317 peer_state.disk != D_NEGOTIATING ) {
3318 /* we want resync, peer has not yet decided to sync... */
3319 /* Nowadays only used when forcing a node into primary role and
3320 setting its disk to UpToDate with that */
3321 drbd_send_uuids(mdev);
3322 drbd_send_state(mdev);
3323 }
3324 }
3325
3326 mdev->net_conf->want_lose = 0;
3327
3328 drbd_md_sync(mdev); /* update connected indicator, la_size, ... */
3329
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01003330 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003331}
3332
Philipp Reisner02918be2010-08-20 14:35:10 +02003333static int receive_sync_uuid(struct drbd_conf *mdev, enum drbd_packets cmd, unsigned int data_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003334{
Philipp Reisner02918be2010-08-20 14:35:10 +02003335 struct p_rs_uuid *p = &mdev->data.rbuf.rs_uuid;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003336
3337 wait_event(mdev->misc_wait,
3338 mdev->state.conn == C_WF_SYNC_UUID ||
Philipp Reisnerc4752ef2010-10-27 17:32:36 +02003339 mdev->state.conn == C_BEHIND ||
Philipp Reisnerb411b362009-09-25 16:07:19 -07003340 mdev->state.conn < C_CONNECTED ||
3341 mdev->state.disk < D_NEGOTIATING);
3342
3343 /* D_ASSERT( mdev->state.conn == C_WF_SYNC_UUID ); */
3344
Philipp Reisnerb411b362009-09-25 16:07:19 -07003345 /* Here the _drbd_uuid_ functions are right, current should
3346 _not_ be rotated into the history */
3347 if (get_ldev_if_state(mdev, D_NEGOTIATING)) {
3348 _drbd_uuid_set(mdev, UI_CURRENT, be64_to_cpu(p->uuid));
3349 _drbd_uuid_set(mdev, UI_BITMAP, 0UL);
3350
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003351 drbd_print_uuids(mdev, "updated sync uuid");
Philipp Reisnerb411b362009-09-25 16:07:19 -07003352 drbd_start_resync(mdev, C_SYNC_TARGET);
3353
3354 put_ldev(mdev);
3355 } else
3356 dev_err(DEV, "Ignoring SyncUUID packet!\n");
3357
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01003358 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003359}
3360
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01003361/**
3362 * receive_bitmap_plain
3363 *
3364 * Return 0 when done, 1 when another iteration is needed, and a negative error
3365 * code upon failure.
3366 */
3367static int
Philipp Reisner02918be2010-08-20 14:35:10 +02003368receive_bitmap_plain(struct drbd_conf *mdev, unsigned int data_size,
3369 unsigned long *buffer, struct bm_xfer_ctx *c)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003370{
3371 unsigned num_words = min_t(size_t, BM_PACKET_WORDS, c->bm_words - c->word_offset);
3372 unsigned want = num_words * sizeof(long);
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01003373 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003374
Philipp Reisner02918be2010-08-20 14:35:10 +02003375 if (want != data_size) {
3376 dev_err(DEV, "%s:want (%u) != data_size (%u)\n", __func__, want, data_size);
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01003377 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003378 }
3379 if (want == 0)
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01003380 return 0;
3381 err = drbd_recv(mdev, buffer, want);
3382 if (err != want) {
3383 if (err >= 0)
3384 err = -EIO;
3385 return err;
3386 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07003387
3388 drbd_bm_merge_lel(mdev, c->word_offset, num_words, buffer);
3389
3390 c->word_offset += num_words;
3391 c->bit_offset = c->word_offset * BITS_PER_LONG;
3392 if (c->bit_offset > c->bm_bits)
3393 c->bit_offset = c->bm_bits;
3394
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01003395 return 1;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003396}
3397
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01003398/**
3399 * recv_bm_rle_bits
3400 *
3401 * Return 0 when done, 1 when another iteration is needed, and a negative error
3402 * code upon failure.
3403 */
3404static int
Philipp Reisnerb411b362009-09-25 16:07:19 -07003405recv_bm_rle_bits(struct drbd_conf *mdev,
3406 struct p_compressed_bm *p,
3407 struct bm_xfer_ctx *c)
3408{
3409 struct bitstream bs;
3410 u64 look_ahead;
3411 u64 rl;
3412 u64 tmp;
3413 unsigned long s = c->bit_offset;
3414 unsigned long e;
Lars Ellenberg004352f2010-10-05 20:13:58 +02003415 int len = be16_to_cpu(p->head.length) - (sizeof(*p) - sizeof(p->head));
Philipp Reisnerb411b362009-09-25 16:07:19 -07003416 int toggle = DCBP_get_start(p);
3417 int have;
3418 int bits;
3419
3420 bitstream_init(&bs, p->code, len, DCBP_get_pad_bits(p));
3421
3422 bits = bitstream_get_bits(&bs, &look_ahead, 64);
3423 if (bits < 0)
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01003424 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003425
3426 for (have = bits; have > 0; s += rl, toggle = !toggle) {
3427 bits = vli_decode_bits(&rl, look_ahead);
3428 if (bits <= 0)
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01003429 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003430
3431 if (toggle) {
3432 e = s + rl -1;
3433 if (e >= c->bm_bits) {
3434 dev_err(DEV, "bitmap overflow (e:%lu) while decoding bm RLE packet\n", e);
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01003435 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003436 }
3437 _drbd_bm_set_bits(mdev, s, e);
3438 }
3439
3440 if (have < bits) {
3441 dev_err(DEV, "bitmap decoding error: h:%d b:%d la:0x%08llx l:%u/%u\n",
3442 have, bits, look_ahead,
3443 (unsigned int)(bs.cur.b - p->code),
3444 (unsigned int)bs.buf_len);
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01003445 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003446 }
3447 look_ahead >>= bits;
3448 have -= bits;
3449
3450 bits = bitstream_get_bits(&bs, &tmp, 64 - have);
3451 if (bits < 0)
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01003452 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003453 look_ahead |= tmp << have;
3454 have += bits;
3455 }
3456
3457 c->bit_offset = s;
3458 bm_xfer_ctx_bit_to_word_offset(c);
3459
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01003460 return (s != c->bm_bits);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003461}
3462
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01003463/**
3464 * decode_bitmap_c
3465 *
3466 * Return 0 when done, 1 when another iteration is needed, and a negative error
3467 * code upon failure.
3468 */
3469static int
Philipp Reisnerb411b362009-09-25 16:07:19 -07003470decode_bitmap_c(struct drbd_conf *mdev,
3471 struct p_compressed_bm *p,
3472 struct bm_xfer_ctx *c)
3473{
3474 if (DCBP_get_code(p) == RLE_VLI_Bits)
3475 return recv_bm_rle_bits(mdev, p, c);
3476
3477 /* other variants had been implemented for evaluation,
3478 * but have been dropped as this one turned out to be "best"
3479 * during all our tests. */
3480
3481 dev_err(DEV, "receive_bitmap_c: unknown encoding %u\n", p->encoding);
3482 drbd_force_state(mdev, NS(conn, C_PROTOCOL_ERROR));
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01003483 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003484}
3485
3486void INFO_bm_xfer_stats(struct drbd_conf *mdev,
3487 const char *direction, struct bm_xfer_ctx *c)
3488{
3489 /* what would it take to transfer it "plaintext" */
Philipp Reisner0b70a132010-08-20 13:36:10 +02003490 unsigned plain = sizeof(struct p_header80) *
Philipp Reisnerb411b362009-09-25 16:07:19 -07003491 ((c->bm_words+BM_PACKET_WORDS-1)/BM_PACKET_WORDS+1)
3492 + c->bm_words * sizeof(long);
3493 unsigned total = c->bytes[0] + c->bytes[1];
3494 unsigned r;
3495
3496 /* total can not be zero. but just in case: */
3497 if (total == 0)
3498 return;
3499
3500 /* don't report if not compressed */
3501 if (total >= plain)
3502 return;
3503
3504 /* total < plain. check for overflow, still */
3505 r = (total > UINT_MAX/1000) ? (total / (plain/1000))
3506 : (1000 * total / plain);
3507
3508 if (r > 1000)
3509 r = 1000;
3510
3511 r = 1000 - r;
3512 dev_info(DEV, "%s bitmap stats [Bytes(packets)]: plain %u(%u), RLE %u(%u), "
3513 "total %u; compression: %u.%u%%\n",
3514 direction,
3515 c->bytes[1], c->packets[1],
3516 c->bytes[0], c->packets[0],
3517 total, r/10, r % 10);
3518}
3519
3520/* Since we are processing the bitfield from lower addresses to higher,
3521 it does not matter if the process it in 32 bit chunks or 64 bit
3522 chunks as long as it is little endian. (Understand it as byte stream,
3523 beginning with the lowest byte...) If we would use big endian
3524 we would need to process it from the highest address to the lowest,
3525 in order to be agnostic to the 32 vs 64 bits issue.
3526
3527 returns 0 on failure, 1 if we successfully received it. */
Philipp Reisner02918be2010-08-20 14:35:10 +02003528static int receive_bitmap(struct drbd_conf *mdev, enum drbd_packets cmd, unsigned int data_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003529{
3530 struct bm_xfer_ctx c;
3531 void *buffer;
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01003532 int err;
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01003533 int ok = false;
Philipp Reisner02918be2010-08-20 14:35:10 +02003534 struct p_header80 *h = &mdev->data.rbuf.header.h80;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003535
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003536 drbd_bm_lock(mdev, "receive bitmap", BM_LOCKED_SET_ALLOWED);
3537 /* you are supposed to send additional out-of-sync information
3538 * if you actually set bits during this phase */
Philipp Reisnerb411b362009-09-25 16:07:19 -07003539
3540 /* maybe we should use some per thread scratch page,
3541 * and allocate that during initial device creation? */
3542 buffer = (unsigned long *) __get_free_page(GFP_NOIO);
3543 if (!buffer) {
3544 dev_err(DEV, "failed to allocate one page buffer in %s\n", __func__);
3545 goto out;
3546 }
3547
3548 c = (struct bm_xfer_ctx) {
3549 .bm_bits = drbd_bm_bits(mdev),
3550 .bm_words = drbd_bm_words(mdev),
3551 };
3552
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01003553 for(;;) {
Philipp Reisner02918be2010-08-20 14:35:10 +02003554 if (cmd == P_BITMAP) {
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01003555 err = receive_bitmap_plain(mdev, data_size, buffer, &c);
Philipp Reisner02918be2010-08-20 14:35:10 +02003556 } else if (cmd == P_COMPRESSED_BITMAP) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07003557 /* MAYBE: sanity check that we speak proto >= 90,
3558 * and the feature is enabled! */
3559 struct p_compressed_bm *p;
3560
Philipp Reisner02918be2010-08-20 14:35:10 +02003561 if (data_size > BM_PACKET_PAYLOAD_BYTES) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07003562 dev_err(DEV, "ReportCBitmap packet too large\n");
3563 goto out;
3564 }
3565 /* use the page buff */
3566 p = buffer;
3567 memcpy(p, h, sizeof(*h));
Philipp Reisner02918be2010-08-20 14:35:10 +02003568 if (drbd_recv(mdev, p->head.payload, data_size) != data_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003569 goto out;
Lars Ellenberg004352f2010-10-05 20:13:58 +02003570 if (data_size <= (sizeof(*p) - sizeof(p->head))) {
3571 dev_err(DEV, "ReportCBitmap packet too small (l:%u)\n", data_size);
Andreas Gruenbacher78fcbda2010-12-10 22:18:27 +01003572 goto out;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003573 }
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01003574 err = decode_bitmap_c(mdev, p, &c);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003575 } else {
Philipp Reisner02918be2010-08-20 14:35:10 +02003576 dev_warn(DEV, "receive_bitmap: cmd neither ReportBitMap nor ReportCBitMap (is 0x%x)", cmd);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003577 goto out;
3578 }
3579
Philipp Reisner02918be2010-08-20 14:35:10 +02003580 c.packets[cmd == P_BITMAP]++;
3581 c.bytes[cmd == P_BITMAP] += sizeof(struct p_header80) + data_size;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003582
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01003583 if (err <= 0) {
3584 if (err < 0)
3585 goto out;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003586 break;
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01003587 }
Philipp Reisner02918be2010-08-20 14:35:10 +02003588 if (!drbd_recv_header(mdev, &cmd, &data_size))
Philipp Reisnerb411b362009-09-25 16:07:19 -07003589 goto out;
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01003590 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07003591
3592 INFO_bm_xfer_stats(mdev, "receive", &c);
3593
3594 if (mdev->state.conn == C_WF_BITMAP_T) {
Andreas Gruenbacherde1f8e42010-12-10 21:04:00 +01003595 enum drbd_state_rv rv;
3596
Philipp Reisnerb411b362009-09-25 16:07:19 -07003597 ok = !drbd_send_bitmap(mdev);
3598 if (!ok)
3599 goto out;
3600 /* Omit CS_ORDERED with this state transition to avoid deadlocks. */
Andreas Gruenbacherde1f8e42010-12-10 21:04:00 +01003601 rv = _drbd_request_state(mdev, NS(conn, C_WF_SYNC_UUID), CS_VERBOSE);
3602 D_ASSERT(rv == SS_SUCCESS);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003603 } else if (mdev->state.conn != C_WF_BITMAP_S) {
3604 /* admin may have requested C_DISCONNECTING,
3605 * other threads may have noticed network errors */
3606 dev_info(DEV, "unexpected cstate (%s) in receive_bitmap\n",
3607 drbd_conn_str(mdev->state.conn));
3608 }
3609
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01003610 ok = true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003611 out:
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003612 drbd_bm_unlock(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003613 if (ok && mdev->state.conn == C_WF_BITMAP_S)
3614 drbd_start_resync(mdev, C_SYNC_SOURCE);
3615 free_page((unsigned long) buffer);
3616 return ok;
3617}
3618
Philipp Reisner02918be2010-08-20 14:35:10 +02003619static int receive_skip(struct drbd_conf *mdev, enum drbd_packets cmd, unsigned int data_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003620{
3621 /* TODO zero copy sink :) */
3622 static char sink[128];
3623 int size, want, r;
3624
Philipp Reisner02918be2010-08-20 14:35:10 +02003625 dev_warn(DEV, "skipping unknown optional packet type %d, l: %d!\n",
3626 cmd, data_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003627
Philipp Reisner02918be2010-08-20 14:35:10 +02003628 size = data_size;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003629 while (size > 0) {
3630 want = min_t(int, size, sizeof(sink));
3631 r = drbd_recv(mdev, sink, want);
3632 ERR_IF(r <= 0) break;
3633 size -= r;
3634 }
3635 return size == 0;
3636}
3637
Philipp Reisner02918be2010-08-20 14:35:10 +02003638static int receive_UnplugRemote(struct drbd_conf *mdev, enum drbd_packets cmd, unsigned int data_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003639{
Philipp Reisnerb411b362009-09-25 16:07:19 -07003640 /* Make sure we've acked all the TCP data associated
3641 * with the data requests being unplugged */
3642 drbd_tcp_quickack(mdev->data.socket);
3643
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01003644 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003645}
3646
Philipp Reisner73a01a12010-10-27 14:33:00 +02003647static int receive_out_of_sync(struct drbd_conf *mdev, enum drbd_packets cmd, unsigned int data_size)
3648{
3649 struct p_block_desc *p = &mdev->data.rbuf.block_desc;
3650
Lars Ellenbergf735e3632010-12-17 21:06:18 +01003651 switch (mdev->state.conn) {
3652 case C_WF_SYNC_UUID:
3653 case C_WF_BITMAP_T:
3654 case C_BEHIND:
3655 break;
3656 default:
3657 dev_err(DEV, "ASSERT FAILED cstate = %s, expected: WFSyncUUID|WFBitMapT|Behind\n",
3658 drbd_conn_str(mdev->state.conn));
3659 }
3660
Philipp Reisner73a01a12010-10-27 14:33:00 +02003661 drbd_set_out_of_sync(mdev, be64_to_cpu(p->sector), be32_to_cpu(p->blksize));
3662
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01003663 return true;
Philipp Reisner73a01a12010-10-27 14:33:00 +02003664}
3665
Philipp Reisner02918be2010-08-20 14:35:10 +02003666typedef int (*drbd_cmd_handler_f)(struct drbd_conf *, enum drbd_packets cmd, unsigned int to_receive);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003667
Philipp Reisner02918be2010-08-20 14:35:10 +02003668struct data_cmd {
3669 int expect_payload;
3670 size_t pkt_size;
3671 drbd_cmd_handler_f function;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003672};
3673
Philipp Reisner02918be2010-08-20 14:35:10 +02003674static struct data_cmd drbd_cmd_handler[] = {
3675 [P_DATA] = { 1, sizeof(struct p_data), receive_Data },
3676 [P_DATA_REPLY] = { 1, sizeof(struct p_data), receive_DataReply },
3677 [P_RS_DATA_REPLY] = { 1, sizeof(struct p_data), receive_RSDataReply } ,
3678 [P_BARRIER] = { 0, sizeof(struct p_barrier), receive_Barrier } ,
3679 [P_BITMAP] = { 1, sizeof(struct p_header80), receive_bitmap } ,
3680 [P_COMPRESSED_BITMAP] = { 1, sizeof(struct p_header80), receive_bitmap } ,
3681 [P_UNPLUG_REMOTE] = { 0, sizeof(struct p_header80), receive_UnplugRemote },
3682 [P_DATA_REQUEST] = { 0, sizeof(struct p_block_req), receive_DataRequest },
3683 [P_RS_DATA_REQUEST] = { 0, sizeof(struct p_block_req), receive_DataRequest },
3684 [P_SYNC_PARAM] = { 1, sizeof(struct p_header80), receive_SyncParam },
3685 [P_SYNC_PARAM89] = { 1, sizeof(struct p_header80), receive_SyncParam },
3686 [P_PROTOCOL] = { 1, sizeof(struct p_protocol), receive_protocol },
3687 [P_UUIDS] = { 0, sizeof(struct p_uuids), receive_uuids },
3688 [P_SIZES] = { 0, sizeof(struct p_sizes), receive_sizes },
3689 [P_STATE] = { 0, sizeof(struct p_state), receive_state },
3690 [P_STATE_CHG_REQ] = { 0, sizeof(struct p_req_state), receive_req_state },
3691 [P_SYNC_UUID] = { 0, sizeof(struct p_rs_uuid), receive_sync_uuid },
3692 [P_OV_REQUEST] = { 0, sizeof(struct p_block_req), receive_DataRequest },
3693 [P_OV_REPLY] = { 1, sizeof(struct p_block_req), receive_DataRequest },
3694 [P_CSUM_RS_REQUEST] = { 1, sizeof(struct p_block_req), receive_DataRequest },
3695 [P_DELAY_PROBE] = { 0, sizeof(struct p_delay_probe93), receive_skip },
Philipp Reisner73a01a12010-10-27 14:33:00 +02003696 [P_OUT_OF_SYNC] = { 0, sizeof(struct p_block_desc), receive_out_of_sync },
Philipp Reisner02918be2010-08-20 14:35:10 +02003697 /* anything missing from this table is in
3698 * the asender_tbl, see get_asender_cmd */
3699 [P_MAX_CMD] = { 0, 0, NULL },
3700};
3701
3702/* All handler functions that expect a sub-header get that sub-heder in
3703 mdev->data.rbuf.header.head.payload.
3704
3705 Usually in mdev->data.rbuf.header.head the callback can find the usual
3706 p_header, but they may not rely on that. Since there is also p_header95 !
3707 */
Philipp Reisnerb411b362009-09-25 16:07:19 -07003708
3709static void drbdd(struct drbd_conf *mdev)
3710{
Philipp Reisner02918be2010-08-20 14:35:10 +02003711 union p_header *header = &mdev->data.rbuf.header;
3712 unsigned int packet_size;
3713 enum drbd_packets cmd;
3714 size_t shs; /* sub header size */
3715 int rv;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003716
3717 while (get_t_state(&mdev->receiver) == Running) {
3718 drbd_thread_current_set_cpu(mdev);
Philipp Reisner02918be2010-08-20 14:35:10 +02003719 if (!drbd_recv_header(mdev, &cmd, &packet_size))
3720 goto err_out;
3721
3722 if (unlikely(cmd >= P_MAX_CMD || !drbd_cmd_handler[cmd].function)) {
3723 dev_err(DEV, "unknown packet type %d, l: %d!\n", cmd, packet_size);
3724 goto err_out;
Lars Ellenberg0b33a912009-11-16 15:58:04 +01003725 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07003726
Philipp Reisner02918be2010-08-20 14:35:10 +02003727 shs = drbd_cmd_handler[cmd].pkt_size - sizeof(union p_header);
Philipp Reisner02918be2010-08-20 14:35:10 +02003728 if (packet_size - shs > 0 && !drbd_cmd_handler[cmd].expect_payload) {
3729 dev_err(DEV, "No payload expected %s l:%d\n", cmdname(cmd), packet_size);
3730 goto err_out;
3731 }
3732
Lars Ellenbergc13f7e12010-10-29 23:32:01 +02003733 if (shs) {
3734 rv = drbd_recv(mdev, &header->h80.payload, shs);
3735 if (unlikely(rv != shs)) {
Lars Ellenberg0ddc5542011-01-21 12:35:15 +01003736 if (!signal_pending(current))
3737 dev_warn(DEV, "short read while reading sub header: rv=%d\n", rv);
Lars Ellenbergc13f7e12010-10-29 23:32:01 +02003738 goto err_out;
3739 }
3740 }
3741
Philipp Reisner02918be2010-08-20 14:35:10 +02003742 rv = drbd_cmd_handler[cmd].function(mdev, cmd, packet_size - shs);
3743
3744 if (unlikely(!rv)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07003745 dev_err(DEV, "error receiving %s, l: %d!\n",
Philipp Reisner02918be2010-08-20 14:35:10 +02003746 cmdname(cmd), packet_size);
3747 goto err_out;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003748 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07003749 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07003750
Philipp Reisner02918be2010-08-20 14:35:10 +02003751 if (0) {
3752 err_out:
3753 drbd_force_state(mdev, NS(conn, C_PROTOCOL_ERROR));
Philipp Reisnerb411b362009-09-25 16:07:19 -07003754 }
Lars Ellenberg856c50c2010-10-14 13:37:40 +02003755 /* If we leave here, we probably want to update at least the
3756 * "Connected" indicator on stable storage. Do so explicitly here. */
3757 drbd_md_sync(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003758}
3759
3760void drbd_flush_workqueue(struct drbd_conf *mdev)
3761{
3762 struct drbd_wq_barrier barr;
3763
3764 barr.w.cb = w_prev_work_done;
3765 init_completion(&barr.done);
3766 drbd_queue_work(&mdev->data.work, &barr.w);
3767 wait_for_completion(&barr.done);
3768}
3769
3770static void drbd_disconnect(struct drbd_conf *mdev)
3771{
3772 enum drbd_fencing_p fp;
3773 union drbd_state os, ns;
3774 int rv = SS_UNKNOWN_ERROR;
3775 unsigned int i;
3776
3777 if (mdev->state.conn == C_STANDALONE)
3778 return;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003779
3780 /* asender does not clean up anything. it must not interfere, either */
3781 drbd_thread_stop(&mdev->asender);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003782 drbd_free_sock(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003783
Philipp Reisner85719572010-07-21 10:20:17 +02003784 /* wait for current activity to cease. */
Philipp Reisnerb411b362009-09-25 16:07:19 -07003785 spin_lock_irq(&mdev->req_lock);
3786 _drbd_wait_ee_list_empty(mdev, &mdev->active_ee);
3787 _drbd_wait_ee_list_empty(mdev, &mdev->sync_ee);
3788 _drbd_wait_ee_list_empty(mdev, &mdev->read_ee);
3789 spin_unlock_irq(&mdev->req_lock);
3790
3791 /* We do not have data structures that would allow us to
3792 * get the rs_pending_cnt down to 0 again.
3793 * * On C_SYNC_TARGET we do not have any data structures describing
3794 * the pending RSDataRequest's we have sent.
3795 * * On C_SYNC_SOURCE there is no data structure that tracks
3796 * the P_RS_DATA_REPLY blocks that we sent to the SyncTarget.
3797 * And no, it is not the sum of the reference counts in the
3798 * resync_LRU. The resync_LRU tracks the whole operation including
3799 * the disk-IO, while the rs_pending_cnt only tracks the blocks
3800 * on the fly. */
3801 drbd_rs_cancel_all(mdev);
3802 mdev->rs_total = 0;
3803 mdev->rs_failed = 0;
3804 atomic_set(&mdev->rs_pending_cnt, 0);
3805 wake_up(&mdev->misc_wait);
3806
Philipp Reisner7fde2be2011-03-01 11:08:28 +01003807 del_timer(&mdev->request_timer);
3808
Philipp Reisnerb411b362009-09-25 16:07:19 -07003809 /* make sure syncer is stopped and w_resume_next_sg queued */
3810 del_timer_sync(&mdev->resync_timer);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003811 resync_timer_fn((unsigned long)mdev);
3812
Philipp Reisnerb411b362009-09-25 16:07:19 -07003813 /* wait for all w_e_end_data_req, w_e_end_rsdata_req, w_send_barrier,
3814 * w_make_resync_request etc. which may still be on the worker queue
3815 * to be "canceled" */
3816 drbd_flush_workqueue(mdev);
3817
3818 /* This also does reclaim_net_ee(). If we do this too early, we might
3819 * miss some resync ee and pages.*/
3820 drbd_process_done_ee(mdev);
3821
3822 kfree(mdev->p_uuid);
3823 mdev->p_uuid = NULL;
3824
Philipp Reisnerfb22c402010-09-08 23:20:21 +02003825 if (!is_susp(mdev->state))
Philipp Reisnerb411b362009-09-25 16:07:19 -07003826 tl_clear(mdev);
3827
Philipp Reisnerb411b362009-09-25 16:07:19 -07003828 dev_info(DEV, "Connection closed\n");
3829
3830 drbd_md_sync(mdev);
3831
3832 fp = FP_DONT_CARE;
3833 if (get_ldev(mdev)) {
3834 fp = mdev->ldev->dc.fencing;
3835 put_ldev(mdev);
3836 }
3837
Philipp Reisner87f7be42010-06-11 13:56:33 +02003838 if (mdev->state.role == R_PRIMARY && fp >= FP_RESOURCE && mdev->state.pdsk >= D_UNKNOWN)
3839 drbd_try_outdate_peer_async(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003840
3841 spin_lock_irq(&mdev->req_lock);
3842 os = mdev->state;
3843 if (os.conn >= C_UNCONNECTED) {
3844 /* Do not restart in case we are C_DISCONNECTING */
3845 ns = os;
3846 ns.conn = C_UNCONNECTED;
3847 rv = _drbd_set_state(mdev, ns, CS_VERBOSE, NULL);
3848 }
3849 spin_unlock_irq(&mdev->req_lock);
3850
3851 if (os.conn == C_DISCONNECTING) {
Philipp Reisner84dfb9f2010-06-23 11:20:05 +02003852 wait_event(mdev->net_cnt_wait, atomic_read(&mdev->net_cnt) == 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003853
Philipp Reisnerb411b362009-09-25 16:07:19 -07003854 crypto_free_hash(mdev->cram_hmac_tfm);
3855 mdev->cram_hmac_tfm = NULL;
3856
3857 kfree(mdev->net_conf);
3858 mdev->net_conf = NULL;
3859 drbd_request_state(mdev, NS(conn, C_STANDALONE));
3860 }
3861
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003862 /* serialize with bitmap writeout triggered by the state change,
3863 * if any. */
3864 wait_event(mdev->misc_wait, !test_bit(BITMAP_IO, &mdev->flags));
3865
Philipp Reisnerb411b362009-09-25 16:07:19 -07003866 /* tcp_close and release of sendpage pages can be deferred. I don't
3867 * want to use SO_LINGER, because apparently it can be deferred for
3868 * more than 20 seconds (longest time I checked).
3869 *
3870 * Actually we don't care for exactly when the network stack does its
3871 * put_page(), but release our reference on these pages right here.
3872 */
3873 i = drbd_release_ee(mdev, &mdev->net_ee);
3874 if (i)
3875 dev_info(DEV, "net_ee not empty, killed %u entries\n", i);
Lars Ellenberg435f0742010-09-06 12:30:25 +02003876 i = atomic_read(&mdev->pp_in_use_by_net);
3877 if (i)
3878 dev_info(DEV, "pp_in_use_by_net = %d, expected 0\n", i);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003879 i = atomic_read(&mdev->pp_in_use);
3880 if (i)
Lars Ellenberg45bb9122010-05-14 17:10:48 +02003881 dev_info(DEV, "pp_in_use = %d, expected 0\n", i);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003882
3883 D_ASSERT(list_empty(&mdev->read_ee));
3884 D_ASSERT(list_empty(&mdev->active_ee));
3885 D_ASSERT(list_empty(&mdev->sync_ee));
3886 D_ASSERT(list_empty(&mdev->done_ee));
3887
3888 /* ok, no more ee's on the fly, it is safe to reset the epoch_size */
3889 atomic_set(&mdev->current_epoch->epoch_size, 0);
3890 D_ASSERT(list_empty(&mdev->current_epoch->list));
3891}
3892
3893/*
3894 * We support PRO_VERSION_MIN to PRO_VERSION_MAX. The protocol version
3895 * we can agree on is stored in agreed_pro_version.
3896 *
3897 * feature flags and the reserved array should be enough room for future
3898 * enhancements of the handshake protocol, and possible plugins...
3899 *
3900 * for now, they are expected to be zero, but ignored.
3901 */
3902static int drbd_send_handshake(struct drbd_conf *mdev)
3903{
3904 /* ASSERT current == mdev->receiver ... */
3905 struct p_handshake *p = &mdev->data.sbuf.handshake;
3906 int ok;
3907
3908 if (mutex_lock_interruptible(&mdev->data.mutex)) {
3909 dev_err(DEV, "interrupted during initial handshake\n");
3910 return 0; /* interrupted. not ok. */
3911 }
3912
3913 if (mdev->data.socket == NULL) {
3914 mutex_unlock(&mdev->data.mutex);
3915 return 0;
3916 }
3917
3918 memset(p, 0, sizeof(*p));
3919 p->protocol_min = cpu_to_be32(PRO_VERSION_MIN);
3920 p->protocol_max = cpu_to_be32(PRO_VERSION_MAX);
3921 ok = _drbd_send_cmd( mdev, mdev->data.socket, P_HAND_SHAKE,
Philipp Reisner0b70a132010-08-20 13:36:10 +02003922 (struct p_header80 *)p, sizeof(*p), 0 );
Philipp Reisnerb411b362009-09-25 16:07:19 -07003923 mutex_unlock(&mdev->data.mutex);
3924 return ok;
3925}
3926
3927/*
3928 * return values:
3929 * 1 yes, we have a valid connection
3930 * 0 oops, did not work out, please try again
3931 * -1 peer talks different language,
3932 * no point in trying again, please go standalone.
3933 */
3934static int drbd_do_handshake(struct drbd_conf *mdev)
3935{
3936 /* ASSERT current == mdev->receiver ... */
3937 struct p_handshake *p = &mdev->data.rbuf.handshake;
Philipp Reisner02918be2010-08-20 14:35:10 +02003938 const int expect = sizeof(struct p_handshake) - sizeof(struct p_header80);
3939 unsigned int length;
3940 enum drbd_packets cmd;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003941 int rv;
3942
3943 rv = drbd_send_handshake(mdev);
3944 if (!rv)
3945 return 0;
3946
Philipp Reisner02918be2010-08-20 14:35:10 +02003947 rv = drbd_recv_header(mdev, &cmd, &length);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003948 if (!rv)
3949 return 0;
3950
Philipp Reisner02918be2010-08-20 14:35:10 +02003951 if (cmd != P_HAND_SHAKE) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07003952 dev_err(DEV, "expected HandShake packet, received: %s (0x%04x)\n",
Philipp Reisner02918be2010-08-20 14:35:10 +02003953 cmdname(cmd), cmd);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003954 return -1;
3955 }
3956
Philipp Reisner02918be2010-08-20 14:35:10 +02003957 if (length != expect) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07003958 dev_err(DEV, "expected HandShake length: %u, received: %u\n",
Philipp Reisner02918be2010-08-20 14:35:10 +02003959 expect, length);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003960 return -1;
3961 }
3962
3963 rv = drbd_recv(mdev, &p->head.payload, expect);
3964
3965 if (rv != expect) {
Lars Ellenberg0ddc5542011-01-21 12:35:15 +01003966 if (!signal_pending(current))
3967 dev_warn(DEV, "short read receiving handshake packet: l=%u\n", rv);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003968 return 0;
3969 }
3970
Philipp Reisnerb411b362009-09-25 16:07:19 -07003971 p->protocol_min = be32_to_cpu(p->protocol_min);
3972 p->protocol_max = be32_to_cpu(p->protocol_max);
3973 if (p->protocol_max == 0)
3974 p->protocol_max = p->protocol_min;
3975
3976 if (PRO_VERSION_MAX < p->protocol_min ||
3977 PRO_VERSION_MIN > p->protocol_max)
3978 goto incompat;
3979
3980 mdev->agreed_pro_version = min_t(int, PRO_VERSION_MAX, p->protocol_max);
3981
3982 dev_info(DEV, "Handshake successful: "
3983 "Agreed network protocol version %d\n", mdev->agreed_pro_version);
3984
3985 return 1;
3986
3987 incompat:
3988 dev_err(DEV, "incompatible DRBD dialects: "
3989 "I support %d-%d, peer supports %d-%d\n",
3990 PRO_VERSION_MIN, PRO_VERSION_MAX,
3991 p->protocol_min, p->protocol_max);
3992 return -1;
3993}
3994
3995#if !defined(CONFIG_CRYPTO_HMAC) && !defined(CONFIG_CRYPTO_HMAC_MODULE)
3996static int drbd_do_auth(struct drbd_conf *mdev)
3997{
3998 dev_err(DEV, "This kernel was build without CONFIG_CRYPTO_HMAC.\n");
3999 dev_err(DEV, "You need to disable 'cram-hmac-alg' in drbd.conf.\n");
Johannes Thomab10d96c2010-01-07 16:02:50 +01004000 return -1;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004001}
4002#else
4003#define CHALLENGE_LEN 64
Johannes Thomab10d96c2010-01-07 16:02:50 +01004004
4005/* Return value:
4006 1 - auth succeeded,
4007 0 - failed, try again (network error),
4008 -1 - auth failed, don't try again.
4009*/
4010
Philipp Reisnerb411b362009-09-25 16:07:19 -07004011static int drbd_do_auth(struct drbd_conf *mdev)
4012{
4013 char my_challenge[CHALLENGE_LEN]; /* 64 Bytes... */
4014 struct scatterlist sg;
4015 char *response = NULL;
4016 char *right_response = NULL;
4017 char *peers_ch = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004018 unsigned int key_len = strlen(mdev->net_conf->shared_secret);
4019 unsigned int resp_size;
4020 struct hash_desc desc;
Philipp Reisner02918be2010-08-20 14:35:10 +02004021 enum drbd_packets cmd;
4022 unsigned int length;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004023 int rv;
4024
4025 desc.tfm = mdev->cram_hmac_tfm;
4026 desc.flags = 0;
4027
4028 rv = crypto_hash_setkey(mdev->cram_hmac_tfm,
4029 (u8 *)mdev->net_conf->shared_secret, key_len);
4030 if (rv) {
4031 dev_err(DEV, "crypto_hash_setkey() failed with %d\n", rv);
Johannes Thomab10d96c2010-01-07 16:02:50 +01004032 rv = -1;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004033 goto fail;
4034 }
4035
4036 get_random_bytes(my_challenge, CHALLENGE_LEN);
4037
4038 rv = drbd_send_cmd2(mdev, P_AUTH_CHALLENGE, my_challenge, CHALLENGE_LEN);
4039 if (!rv)
4040 goto fail;
4041
Philipp Reisner02918be2010-08-20 14:35:10 +02004042 rv = drbd_recv_header(mdev, &cmd, &length);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004043 if (!rv)
4044 goto fail;
4045
Philipp Reisner02918be2010-08-20 14:35:10 +02004046 if (cmd != P_AUTH_CHALLENGE) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07004047 dev_err(DEV, "expected AuthChallenge packet, received: %s (0x%04x)\n",
Philipp Reisner02918be2010-08-20 14:35:10 +02004048 cmdname(cmd), cmd);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004049 rv = 0;
4050 goto fail;
4051 }
4052
Philipp Reisner02918be2010-08-20 14:35:10 +02004053 if (length > CHALLENGE_LEN * 2) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07004054 dev_err(DEV, "expected AuthChallenge payload too big.\n");
Johannes Thomab10d96c2010-01-07 16:02:50 +01004055 rv = -1;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004056 goto fail;
4057 }
4058
Philipp Reisner02918be2010-08-20 14:35:10 +02004059 peers_ch = kmalloc(length, GFP_NOIO);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004060 if (peers_ch == NULL) {
4061 dev_err(DEV, "kmalloc of peers_ch failed\n");
Johannes Thomab10d96c2010-01-07 16:02:50 +01004062 rv = -1;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004063 goto fail;
4064 }
4065
Philipp Reisner02918be2010-08-20 14:35:10 +02004066 rv = drbd_recv(mdev, peers_ch, length);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004067
Philipp Reisner02918be2010-08-20 14:35:10 +02004068 if (rv != length) {
Lars Ellenberg0ddc5542011-01-21 12:35:15 +01004069 if (!signal_pending(current))
4070 dev_warn(DEV, "short read AuthChallenge: l=%u\n", rv);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004071 rv = 0;
4072 goto fail;
4073 }
4074
4075 resp_size = crypto_hash_digestsize(mdev->cram_hmac_tfm);
4076 response = kmalloc(resp_size, GFP_NOIO);
4077 if (response == NULL) {
4078 dev_err(DEV, "kmalloc of response failed\n");
Johannes Thomab10d96c2010-01-07 16:02:50 +01004079 rv = -1;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004080 goto fail;
4081 }
4082
4083 sg_init_table(&sg, 1);
Philipp Reisner02918be2010-08-20 14:35:10 +02004084 sg_set_buf(&sg, peers_ch, length);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004085
4086 rv = crypto_hash_digest(&desc, &sg, sg.length, response);
4087 if (rv) {
4088 dev_err(DEV, "crypto_hash_digest() failed with %d\n", rv);
Johannes Thomab10d96c2010-01-07 16:02:50 +01004089 rv = -1;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004090 goto fail;
4091 }
4092
4093 rv = drbd_send_cmd2(mdev, P_AUTH_RESPONSE, response, resp_size);
4094 if (!rv)
4095 goto fail;
4096
Philipp Reisner02918be2010-08-20 14:35:10 +02004097 rv = drbd_recv_header(mdev, &cmd, &length);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004098 if (!rv)
4099 goto fail;
4100
Philipp Reisner02918be2010-08-20 14:35:10 +02004101 if (cmd != P_AUTH_RESPONSE) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07004102 dev_err(DEV, "expected AuthResponse packet, received: %s (0x%04x)\n",
Philipp Reisner02918be2010-08-20 14:35:10 +02004103 cmdname(cmd), cmd);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004104 rv = 0;
4105 goto fail;
4106 }
4107
Philipp Reisner02918be2010-08-20 14:35:10 +02004108 if (length != resp_size) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07004109 dev_err(DEV, "expected AuthResponse payload of wrong size\n");
4110 rv = 0;
4111 goto fail;
4112 }
4113
4114 rv = drbd_recv(mdev, response , resp_size);
4115
4116 if (rv != resp_size) {
Lars Ellenberg0ddc5542011-01-21 12:35:15 +01004117 if (!signal_pending(current))
4118 dev_warn(DEV, "short read receiving AuthResponse: l=%u\n", rv);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004119 rv = 0;
4120 goto fail;
4121 }
4122
4123 right_response = kmalloc(resp_size, GFP_NOIO);
Julia Lawall2d1ee872009-12-27 22:27:11 +01004124 if (right_response == NULL) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07004125 dev_err(DEV, "kmalloc of right_response failed\n");
Johannes Thomab10d96c2010-01-07 16:02:50 +01004126 rv = -1;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004127 goto fail;
4128 }
4129
4130 sg_set_buf(&sg, my_challenge, CHALLENGE_LEN);
4131
4132 rv = crypto_hash_digest(&desc, &sg, sg.length, right_response);
4133 if (rv) {
4134 dev_err(DEV, "crypto_hash_digest() failed with %d\n", rv);
Johannes Thomab10d96c2010-01-07 16:02:50 +01004135 rv = -1;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004136 goto fail;
4137 }
4138
4139 rv = !memcmp(response, right_response, resp_size);
4140
4141 if (rv)
4142 dev_info(DEV, "Peer authenticated using %d bytes of '%s' HMAC\n",
4143 resp_size, mdev->net_conf->cram_hmac_alg);
Johannes Thomab10d96c2010-01-07 16:02:50 +01004144 else
4145 rv = -1;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004146
4147 fail:
4148 kfree(peers_ch);
4149 kfree(response);
4150 kfree(right_response);
4151
4152 return rv;
4153}
4154#endif
4155
4156int drbdd_init(struct drbd_thread *thi)
4157{
4158 struct drbd_conf *mdev = thi->mdev;
4159 unsigned int minor = mdev_to_minor(mdev);
4160 int h;
4161
4162 sprintf(current->comm, "drbd%d_receiver", minor);
4163
4164 dev_info(DEV, "receiver (re)started\n");
4165
4166 do {
4167 h = drbd_connect(mdev);
4168 if (h == 0) {
4169 drbd_disconnect(mdev);
Philipp Reisner20ee6392011-01-18 15:28:59 +01004170 schedule_timeout_interruptible(HZ);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004171 }
4172 if (h == -1) {
4173 dev_warn(DEV, "Discarding network configuration.\n");
4174 drbd_force_state(mdev, NS(conn, C_DISCONNECTING));
4175 }
4176 } while (h == 0);
4177
4178 if (h > 0) {
4179 if (get_net_conf(mdev)) {
4180 drbdd(mdev);
4181 put_net_conf(mdev);
4182 }
4183 }
4184
4185 drbd_disconnect(mdev);
4186
4187 dev_info(DEV, "receiver terminated\n");
4188 return 0;
4189}
4190
4191/* ********* acknowledge sender ******** */
4192
Philipp Reisner0b70a132010-08-20 13:36:10 +02004193static int got_RqSReply(struct drbd_conf *mdev, struct p_header80 *h)
Philipp Reisnerb411b362009-09-25 16:07:19 -07004194{
4195 struct p_req_state_reply *p = (struct p_req_state_reply *)h;
4196
4197 int retcode = be32_to_cpu(p->retcode);
4198
4199 if (retcode >= SS_SUCCESS) {
4200 set_bit(CL_ST_CHG_SUCCESS, &mdev->flags);
4201 } else {
4202 set_bit(CL_ST_CHG_FAIL, &mdev->flags);
4203 dev_err(DEV, "Requested state change failed by peer: %s (%d)\n",
4204 drbd_set_st_err_str(retcode), retcode);
4205 }
4206 wake_up(&mdev->state_wait);
4207
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01004208 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004209}
4210
Philipp Reisner0b70a132010-08-20 13:36:10 +02004211static int got_Ping(struct drbd_conf *mdev, struct p_header80 *h)
Philipp Reisnerb411b362009-09-25 16:07:19 -07004212{
4213 return drbd_send_ping_ack(mdev);
4214
4215}
4216
Philipp Reisner0b70a132010-08-20 13:36:10 +02004217static int got_PingAck(struct drbd_conf *mdev, struct p_header80 *h)
Philipp Reisnerb411b362009-09-25 16:07:19 -07004218{
4219 /* restore idle timeout */
4220 mdev->meta.socket->sk->sk_rcvtimeo = mdev->net_conf->ping_int*HZ;
Philipp Reisner309d1602010-03-02 15:03:44 +01004221 if (!test_and_set_bit(GOT_PING_ACK, &mdev->flags))
4222 wake_up(&mdev->misc_wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004223
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01004224 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004225}
4226
Philipp Reisner0b70a132010-08-20 13:36:10 +02004227static int got_IsInSync(struct drbd_conf *mdev, struct p_header80 *h)
Philipp Reisnerb411b362009-09-25 16:07:19 -07004228{
4229 struct p_block_ack *p = (struct p_block_ack *)h;
4230 sector_t sector = be64_to_cpu(p->sector);
4231 int blksize = be32_to_cpu(p->blksize);
4232
4233 D_ASSERT(mdev->agreed_pro_version >= 89);
4234
4235 update_peer_seq(mdev, be32_to_cpu(p->seq_num));
4236
Lars Ellenberg1d53f092010-09-05 01:13:24 +02004237 if (get_ldev(mdev)) {
4238 drbd_rs_complete_io(mdev, sector);
4239 drbd_set_in_sync(mdev, sector, blksize);
4240 /* rs_same_csums is supposed to count in units of BM_BLOCK_SIZE */
4241 mdev->rs_same_csum += (blksize >> BM_BLOCK_SHIFT);
4242 put_ldev(mdev);
4243 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07004244 dec_rs_pending(mdev);
Philipp Reisner778f2712010-07-06 11:14:00 +02004245 atomic_add(blksize >> 9, &mdev->rs_sect_in);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004246
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01004247 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004248}
4249
Philipp Reisnerb411b362009-09-25 16:07:19 -07004250static int validate_req_change_req_state(struct drbd_conf *mdev,
Andreas Gruenbacher28c455c2011-01-09 17:52:09 +01004251 u64 id, sector_t sector,
Andreas Gruenbacherae3388d2011-01-20 17:23:59 +01004252 struct hlist_head *(*hash_slot)(struct drbd_conf *, sector_t),
Andreas Gruenbacherc3afd8f2011-01-20 22:25:40 +01004253 const char *func, enum drbd_req_event what, bool missing_ok)
Philipp Reisnerb411b362009-09-25 16:07:19 -07004254{
4255 struct drbd_request *req;
4256 struct bio_and_error m;
4257
4258 spin_lock_irq(&mdev->req_lock);
Andreas Gruenbacherc3afd8f2011-01-20 22:25:40 +01004259 req = find_request(mdev, hash_slot, id, sector, missing_ok, func);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004260 if (unlikely(!req)) {
4261 spin_unlock_irq(&mdev->req_lock);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01004262 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004263 }
4264 __req_mod(req, what, &m);
4265 spin_unlock_irq(&mdev->req_lock);
4266
4267 if (m.bio)
4268 complete_master_bio(mdev, &m);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01004269 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004270}
4271
Philipp Reisner0b70a132010-08-20 13:36:10 +02004272static int got_BlockAck(struct drbd_conf *mdev, struct p_header80 *h)
Philipp Reisnerb411b362009-09-25 16:07:19 -07004273{
4274 struct p_block_ack *p = (struct p_block_ack *)h;
4275 sector_t sector = be64_to_cpu(p->sector);
4276 int blksize = be32_to_cpu(p->blksize);
4277 enum drbd_req_event what;
4278
4279 update_peer_seq(mdev, be32_to_cpu(p->seq_num));
4280
Andreas Gruenbacher579b57e2011-01-13 18:40:57 +01004281 if (p->block_id == ID_SYNCER) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07004282 drbd_set_in_sync(mdev, sector, blksize);
4283 dec_rs_pending(mdev);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01004284 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004285 }
4286 switch (be16_to_cpu(h->command)) {
4287 case P_RS_WRITE_ACK:
4288 D_ASSERT(mdev->net_conf->wire_protocol == DRBD_PROT_C);
4289 what = write_acked_by_peer_and_sis;
4290 break;
4291 case P_WRITE_ACK:
4292 D_ASSERT(mdev->net_conf->wire_protocol == DRBD_PROT_C);
4293 what = write_acked_by_peer;
4294 break;
4295 case P_RECV_ACK:
4296 D_ASSERT(mdev->net_conf->wire_protocol == DRBD_PROT_B);
4297 what = recv_acked_by_peer;
4298 break;
4299 case P_DISCARD_ACK:
4300 D_ASSERT(mdev->net_conf->wire_protocol == DRBD_PROT_C);
4301 what = conflict_discarded_by_peer;
4302 break;
4303 default:
4304 D_ASSERT(0);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01004305 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004306 }
4307
4308 return validate_req_change_req_state(mdev, p->block_id, sector,
Andreas Gruenbacherc3afd8f2011-01-20 22:25:40 +01004309 tl_hash_slot, __func__, what,
4310 false);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004311}
4312
Philipp Reisner0b70a132010-08-20 13:36:10 +02004313static int got_NegAck(struct drbd_conf *mdev, struct p_header80 *h)
Philipp Reisnerb411b362009-09-25 16:07:19 -07004314{
4315 struct p_block_ack *p = (struct p_block_ack *)h;
4316 sector_t sector = be64_to_cpu(p->sector);
Philipp Reisner2deb8332011-01-17 18:39:18 +01004317 int size = be32_to_cpu(p->blksize);
Andreas Gruenbacherc3afd8f2011-01-20 22:25:40 +01004318 bool missing_ok = mdev->net_conf->wire_protocol == DRBD_PROT_A ||
4319 mdev->net_conf->wire_protocol == DRBD_PROT_B;
4320 bool found;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004321
4322 update_peer_seq(mdev, be32_to_cpu(p->seq_num));
4323
Andreas Gruenbacher579b57e2011-01-13 18:40:57 +01004324 if (p->block_id == ID_SYNCER) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07004325 dec_rs_pending(mdev);
4326 drbd_rs_failed_io(mdev, sector, size);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01004327 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004328 }
Philipp Reisner2deb8332011-01-17 18:39:18 +01004329
Andreas Gruenbacherc3afd8f2011-01-20 22:25:40 +01004330 found = validate_req_change_req_state(mdev, p->block_id, sector,
4331 tl_hash_slot, __func__,
4332 neg_acked, missing_ok);
4333 if (!found) {
4334 /* Protocol A has no P_WRITE_ACKs, but has P_NEG_ACKs.
4335 The master bio might already be completed, therefore the
4336 request is no longer in the collision hash. */
4337 /* In Protocol B we might already have got a P_RECV_ACK
4338 but then get a P_NEG_ACK afterwards. */
4339 if (!missing_ok)
Philipp Reisner2deb8332011-01-17 18:39:18 +01004340 return false;
Andreas Gruenbacherc3afd8f2011-01-20 22:25:40 +01004341 drbd_set_out_of_sync(mdev, sector, size);
Philipp Reisner2deb8332011-01-17 18:39:18 +01004342 }
Philipp Reisner2deb8332011-01-17 18:39:18 +01004343 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004344}
4345
Philipp Reisner0b70a132010-08-20 13:36:10 +02004346static int got_NegDReply(struct drbd_conf *mdev, struct p_header80 *h)
Philipp Reisnerb411b362009-09-25 16:07:19 -07004347{
4348 struct p_block_ack *p = (struct p_block_ack *)h;
4349 sector_t sector = be64_to_cpu(p->sector);
4350
4351 update_peer_seq(mdev, be32_to_cpu(p->seq_num));
4352 dev_err(DEV, "Got NegDReply; Sector %llus, len %u; Fail original request.\n",
4353 (unsigned long long)sector, be32_to_cpu(p->blksize));
4354
4355 return validate_req_change_req_state(mdev, p->block_id, sector,
Andreas Gruenbacherc3afd8f2011-01-20 22:25:40 +01004356 ar_hash_slot, __func__, neg_acked,
4357 false);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004358}
4359
Philipp Reisner0b70a132010-08-20 13:36:10 +02004360static int got_NegRSDReply(struct drbd_conf *mdev, struct p_header80 *h)
Philipp Reisnerb411b362009-09-25 16:07:19 -07004361{
4362 sector_t sector;
4363 int size;
4364 struct p_block_ack *p = (struct p_block_ack *)h;
4365
4366 sector = be64_to_cpu(p->sector);
4367 size = be32_to_cpu(p->blksize);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004368
4369 update_peer_seq(mdev, be32_to_cpu(p->seq_num));
4370
4371 dec_rs_pending(mdev);
4372
4373 if (get_ldev_if_state(mdev, D_FAILED)) {
4374 drbd_rs_complete_io(mdev, sector);
Philipp Reisnerd612d302010-12-27 10:53:28 +01004375 switch (be16_to_cpu(h->command)) {
4376 case P_NEG_RS_DREPLY:
4377 drbd_rs_failed_io(mdev, sector, size);
4378 case P_RS_CANCEL:
4379 break;
4380 default:
4381 D_ASSERT(0);
4382 put_ldev(mdev);
4383 return false;
4384 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07004385 put_ldev(mdev);
4386 }
4387
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01004388 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004389}
4390
Philipp Reisner0b70a132010-08-20 13:36:10 +02004391static int got_BarrierAck(struct drbd_conf *mdev, struct p_header80 *h)
Philipp Reisnerb411b362009-09-25 16:07:19 -07004392{
4393 struct p_barrier_ack *p = (struct p_barrier_ack *)h;
4394
4395 tl_release(mdev, p->barrier, be32_to_cpu(p->set_size));
4396
Philipp Reisnerc4752ef2010-10-27 17:32:36 +02004397 if (mdev->state.conn == C_AHEAD &&
4398 atomic_read(&mdev->ap_in_flight) == 0 &&
Philipp Reisner370a43e2011-01-14 16:03:11 +01004399 !test_and_set_bit(AHEAD_TO_SYNC_SOURCE, &mdev->current_epoch->flags)) {
4400 mdev->start_resync_timer.expires = jiffies + HZ;
4401 add_timer(&mdev->start_resync_timer);
Philipp Reisnerc4752ef2010-10-27 17:32:36 +02004402 }
4403
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01004404 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004405}
4406
Philipp Reisner0b70a132010-08-20 13:36:10 +02004407static int got_OVResult(struct drbd_conf *mdev, struct p_header80 *h)
Philipp Reisnerb411b362009-09-25 16:07:19 -07004408{
4409 struct p_block_ack *p = (struct p_block_ack *)h;
4410 struct drbd_work *w;
4411 sector_t sector;
4412 int size;
4413
4414 sector = be64_to_cpu(p->sector);
4415 size = be32_to_cpu(p->blksize);
4416
4417 update_peer_seq(mdev, be32_to_cpu(p->seq_num));
4418
4419 if (be64_to_cpu(p->block_id) == ID_OUT_OF_SYNC)
4420 drbd_ov_oos_found(mdev, sector, size);
4421 else
4422 ov_oos_print(mdev);
4423
Lars Ellenberg1d53f092010-09-05 01:13:24 +02004424 if (!get_ldev(mdev))
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01004425 return true;
Lars Ellenberg1d53f092010-09-05 01:13:24 +02004426
Philipp Reisnerb411b362009-09-25 16:07:19 -07004427 drbd_rs_complete_io(mdev, sector);
4428 dec_rs_pending(mdev);
4429
Lars Ellenbergea5442a2010-11-05 09:48:01 +01004430 --mdev->ov_left;
4431
4432 /* let's advance progress step marks only for every other megabyte */
4433 if ((mdev->ov_left & 0x200) == 0x200)
4434 drbd_advance_rs_marks(mdev, mdev->ov_left);
4435
4436 if (mdev->ov_left == 0) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07004437 w = kmalloc(sizeof(*w), GFP_NOIO);
4438 if (w) {
4439 w->cb = w_ov_finished;
4440 drbd_queue_work_front(&mdev->data.work, w);
4441 } else {
4442 dev_err(DEV, "kmalloc(w) failed.");
4443 ov_oos_print(mdev);
4444 drbd_resync_finished(mdev);
4445 }
4446 }
Lars Ellenberg1d53f092010-09-05 01:13:24 +02004447 put_ldev(mdev);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01004448 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004449}
4450
Philipp Reisner02918be2010-08-20 14:35:10 +02004451static int got_skip(struct drbd_conf *mdev, struct p_header80 *h)
Philipp Reisner0ced55a2010-04-30 15:26:20 +02004452{
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01004453 return true;
Philipp Reisner0ced55a2010-04-30 15:26:20 +02004454}
4455
Philipp Reisnerb411b362009-09-25 16:07:19 -07004456struct asender_cmd {
4457 size_t pkt_size;
Philipp Reisner0b70a132010-08-20 13:36:10 +02004458 int (*process)(struct drbd_conf *mdev, struct p_header80 *h);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004459};
4460
4461static struct asender_cmd *get_asender_cmd(int cmd)
4462{
4463 static struct asender_cmd asender_tbl[] = {
4464 /* anything missing from this table is in
4465 * the drbd_cmd_handler (drbd_default_handler) table,
4466 * see the beginning of drbdd() */
Philipp Reisner0b70a132010-08-20 13:36:10 +02004467 [P_PING] = { sizeof(struct p_header80), got_Ping },
4468 [P_PING_ACK] = { sizeof(struct p_header80), got_PingAck },
Philipp Reisnerb411b362009-09-25 16:07:19 -07004469 [P_RECV_ACK] = { sizeof(struct p_block_ack), got_BlockAck },
4470 [P_WRITE_ACK] = { sizeof(struct p_block_ack), got_BlockAck },
4471 [P_RS_WRITE_ACK] = { sizeof(struct p_block_ack), got_BlockAck },
4472 [P_DISCARD_ACK] = { sizeof(struct p_block_ack), got_BlockAck },
4473 [P_NEG_ACK] = { sizeof(struct p_block_ack), got_NegAck },
4474 [P_NEG_DREPLY] = { sizeof(struct p_block_ack), got_NegDReply },
4475 [P_NEG_RS_DREPLY] = { sizeof(struct p_block_ack), got_NegRSDReply},
4476 [P_OV_RESULT] = { sizeof(struct p_block_ack), got_OVResult },
4477 [P_BARRIER_ACK] = { sizeof(struct p_barrier_ack), got_BarrierAck },
4478 [P_STATE_CHG_REPLY] = { sizeof(struct p_req_state_reply), got_RqSReply },
4479 [P_RS_IS_IN_SYNC] = { sizeof(struct p_block_ack), got_IsInSync },
Philipp Reisner02918be2010-08-20 14:35:10 +02004480 [P_DELAY_PROBE] = { sizeof(struct p_delay_probe93), got_skip },
Philipp Reisnerd612d302010-12-27 10:53:28 +01004481 [P_RS_CANCEL] = { sizeof(struct p_block_ack), got_NegRSDReply},
Philipp Reisnerb411b362009-09-25 16:07:19 -07004482 [P_MAX_CMD] = { 0, NULL },
4483 };
4484 if (cmd > P_MAX_CMD || asender_tbl[cmd].process == NULL)
4485 return NULL;
4486 return &asender_tbl[cmd];
4487}
4488
4489int drbd_asender(struct drbd_thread *thi)
4490{
4491 struct drbd_conf *mdev = thi->mdev;
Philipp Reisner02918be2010-08-20 14:35:10 +02004492 struct p_header80 *h = &mdev->meta.rbuf.header.h80;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004493 struct asender_cmd *cmd = NULL;
4494
4495 int rv, len;
4496 void *buf = h;
4497 int received = 0;
Philipp Reisner0b70a132010-08-20 13:36:10 +02004498 int expect = sizeof(struct p_header80);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004499 int empty;
Lars Ellenbergf36af182011-03-09 22:44:55 +01004500 int ping_timeout_active = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004501
4502 sprintf(current->comm, "drbd%d_asender", mdev_to_minor(mdev));
4503
4504 current->policy = SCHED_RR; /* Make this a realtime task! */
4505 current->rt_priority = 2; /* more important than all other tasks */
4506
4507 while (get_t_state(thi) == Running) {
4508 drbd_thread_current_set_cpu(mdev);
4509 if (test_and_clear_bit(SEND_PING, &mdev->flags)) {
4510 ERR_IF(!drbd_send_ping(mdev)) goto reconnect;
4511 mdev->meta.socket->sk->sk_rcvtimeo =
4512 mdev->net_conf->ping_timeo*HZ/10;
Lars Ellenbergf36af182011-03-09 22:44:55 +01004513 ping_timeout_active = 1;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004514 }
4515
4516 /* conditionally cork;
4517 * it may hurt latency if we cork without much to send */
4518 if (!mdev->net_conf->no_cork &&
4519 3 < atomic_read(&mdev->unacked_cnt))
4520 drbd_tcp_cork(mdev->meta.socket);
4521 while (1) {
4522 clear_bit(SIGNAL_ASENDER, &mdev->flags);
4523 flush_signals(current);
Lars Ellenberg0f8488e2010-10-13 18:19:23 +02004524 if (!drbd_process_done_ee(mdev))
Philipp Reisnerb411b362009-09-25 16:07:19 -07004525 goto reconnect;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004526 /* to avoid race with newly queued ACKs */
4527 set_bit(SIGNAL_ASENDER, &mdev->flags);
4528 spin_lock_irq(&mdev->req_lock);
4529 empty = list_empty(&mdev->done_ee);
4530 spin_unlock_irq(&mdev->req_lock);
4531 /* new ack may have been queued right here,
4532 * but then there is also a signal pending,
4533 * and we start over... */
4534 if (empty)
4535 break;
4536 }
4537 /* but unconditionally uncork unless disabled */
4538 if (!mdev->net_conf->no_cork)
4539 drbd_tcp_uncork(mdev->meta.socket);
4540
4541 /* short circuit, recv_msg would return EINTR anyways. */
4542 if (signal_pending(current))
4543 continue;
4544
4545 rv = drbd_recv_short(mdev, mdev->meta.socket,
4546 buf, expect-received, 0);
4547 clear_bit(SIGNAL_ASENDER, &mdev->flags);
4548
4549 flush_signals(current);
4550
4551 /* Note:
4552 * -EINTR (on meta) we got a signal
4553 * -EAGAIN (on meta) rcvtimeo expired
4554 * -ECONNRESET other side closed the connection
4555 * -ERESTARTSYS (on data) we got a signal
4556 * rv < 0 other than above: unexpected error!
4557 * rv == expected: full header or command
4558 * rv < expected: "woken" by signal during receive
4559 * rv == 0 : "connection shut down by peer"
4560 */
4561 if (likely(rv > 0)) {
4562 received += rv;
4563 buf += rv;
4564 } else if (rv == 0) {
4565 dev_err(DEV, "meta connection shut down by peer.\n");
4566 goto reconnect;
4567 } else if (rv == -EAGAIN) {
Lars Ellenbergcb6518c2011-06-20 14:44:45 +02004568 /* If the data socket received something meanwhile,
4569 * that is good enough: peer is still alive. */
4570 if (time_after(mdev->last_received,
4571 jiffies - mdev->meta.socket->sk->sk_rcvtimeo))
4572 continue;
Lars Ellenbergf36af182011-03-09 22:44:55 +01004573 if (ping_timeout_active) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07004574 dev_err(DEV, "PingAck did not arrive in time.\n");
4575 goto reconnect;
4576 }
4577 set_bit(SEND_PING, &mdev->flags);
4578 continue;
4579 } else if (rv == -EINTR) {
4580 continue;
4581 } else {
4582 dev_err(DEV, "sock_recvmsg returned %d\n", rv);
4583 goto reconnect;
4584 }
4585
4586 if (received == expect && cmd == NULL) {
Andreas Gruenbacherca9bc122011-01-11 13:47:24 +01004587 if (unlikely(h->magic != cpu_to_be32(DRBD_MAGIC))) {
Lars Ellenberg004352f2010-10-05 20:13:58 +02004588 dev_err(DEV, "magic?? on meta m: 0x%08x c: %d l: %d\n",
4589 be32_to_cpu(h->magic),
4590 be16_to_cpu(h->command),
4591 be16_to_cpu(h->length));
Philipp Reisnerb411b362009-09-25 16:07:19 -07004592 goto reconnect;
4593 }
4594 cmd = get_asender_cmd(be16_to_cpu(h->command));
4595 len = be16_to_cpu(h->length);
4596 if (unlikely(cmd == NULL)) {
Lars Ellenberg004352f2010-10-05 20:13:58 +02004597 dev_err(DEV, "unknown command?? on meta m: 0x%08x c: %d l: %d\n",
4598 be32_to_cpu(h->magic),
4599 be16_to_cpu(h->command),
4600 be16_to_cpu(h->length));
Philipp Reisnerb411b362009-09-25 16:07:19 -07004601 goto disconnect;
4602 }
4603 expect = cmd->pkt_size;
Philipp Reisner0b70a132010-08-20 13:36:10 +02004604 ERR_IF(len != expect-sizeof(struct p_header80))
Philipp Reisnerb411b362009-09-25 16:07:19 -07004605 goto reconnect;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004606 }
4607 if (received == expect) {
Lars Ellenbergcb6518c2011-06-20 14:44:45 +02004608 mdev->last_received = jiffies;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004609 D_ASSERT(cmd != NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004610 if (!cmd->process(mdev, h))
4611 goto reconnect;
4612
Lars Ellenbergf36af182011-03-09 22:44:55 +01004613 /* the idle_timeout (ping-int)
4614 * has been restored in got_PingAck() */
4615 if (cmd == get_asender_cmd(P_PING_ACK))
4616 ping_timeout_active = 0;
4617
Philipp Reisnerb411b362009-09-25 16:07:19 -07004618 buf = h;
4619 received = 0;
Philipp Reisner0b70a132010-08-20 13:36:10 +02004620 expect = sizeof(struct p_header80);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004621 cmd = NULL;
4622 }
4623 }
4624
4625 if (0) {
4626reconnect:
4627 drbd_force_state(mdev, NS(conn, C_NETWORK_FAILURE));
Lars Ellenberg856c50c2010-10-14 13:37:40 +02004628 drbd_md_sync(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004629 }
4630 if (0) {
4631disconnect:
4632 drbd_force_state(mdev, NS(conn, C_DISCONNECTING));
Lars Ellenberg856c50c2010-10-14 13:37:40 +02004633 drbd_md_sync(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004634 }
4635 clear_bit(SIGNAL_ASENDER, &mdev->flags);
4636
4637 D_ASSERT(mdev->state.conn < C_CONNECTED);
4638 dev_info(DEV, "asender terminated\n");
4639
4640 return 0;
4641}