blob: 4222affff488bc15c116187e2eb382af5f2d0508 [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 Reisner77351055b2011-02-07 17:24:26 +010051struct packet_info {
52 enum drbd_packet cmd;
Andreas Gruenbachere2857212011-03-25 00:57:38 +010053 unsigned int size;
54 unsigned int vnr;
Andreas Gruenbachere6589832011-03-30 12:54:42 +020055 void *data;
Philipp Reisner77351055b2011-02-07 17:24:26 +010056};
57
Philipp Reisnerb411b362009-09-25 16:07:19 -070058enum finish_epoch {
59 FE_STILL_LIVE,
60 FE_DESTROYED,
61 FE_RECYCLED,
62};
63
Andreas Gruenbacher60381782011-03-28 17:05:50 +020064static int drbd_do_features(struct drbd_tconn *tconn);
Philipp Reisner13e60372011-02-08 09:54:40 +010065static int drbd_do_auth(struct drbd_tconn *tconn);
Philipp Reisnerc141ebd2011-05-05 16:13:10 +020066static int drbd_disconnected(struct drbd_conf *mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -070067
Philipp Reisner1e9dd292011-11-10 15:14:53 +010068static enum finish_epoch drbd_may_finish_epoch(struct drbd_tconn *, struct drbd_epoch *, enum epoch_event);
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +010069static int e_end_block(struct drbd_work *, int);
Philipp Reisnerb411b362009-09-25 16:07:19 -070070
Philipp Reisnerb411b362009-09-25 16:07:19 -070071
72#define GFP_TRY (__GFP_HIGHMEM | __GFP_NOWARN)
73
Lars Ellenberg45bb9122010-05-14 17:10:48 +020074/*
75 * some helper functions to deal with single linked page lists,
76 * page->private being our "next" pointer.
77 */
78
79/* If at least n pages are linked at head, get n pages off.
80 * Otherwise, don't modify head, and return NULL.
81 * Locking is the responsibility of the caller.
82 */
83static struct page *page_chain_del(struct page **head, int n)
84{
85 struct page *page;
86 struct page *tmp;
87
88 BUG_ON(!n);
89 BUG_ON(!head);
90
91 page = *head;
Philipp Reisner23ce4222010-05-20 13:35:31 +020092
93 if (!page)
94 return NULL;
95
Lars Ellenberg45bb9122010-05-14 17:10:48 +020096 while (page) {
97 tmp = page_chain_next(page);
98 if (--n == 0)
99 break; /* found sufficient pages */
100 if (tmp == NULL)
101 /* insufficient pages, don't use any of them. */
102 return NULL;
103 page = tmp;
104 }
105
106 /* add end of list marker for the returned list */
107 set_page_private(page, 0);
108 /* actual return value, and adjustment of head */
109 page = *head;
110 *head = tmp;
111 return page;
112}
113
114/* may be used outside of locks to find the tail of a (usually short)
115 * "private" page chain, before adding it back to a global chain head
116 * with page_chain_add() under a spinlock. */
117static struct page *page_chain_tail(struct page *page, int *len)
118{
119 struct page *tmp;
120 int i = 1;
121 while ((tmp = page_chain_next(page)))
122 ++i, page = tmp;
123 if (len)
124 *len = i;
125 return page;
126}
127
128static int page_chain_free(struct page *page)
129{
130 struct page *tmp;
131 int i = 0;
132 page_chain_for_each_safe(page, tmp) {
133 put_page(page);
134 ++i;
135 }
136 return i;
137}
138
139static void page_chain_add(struct page **head,
140 struct page *chain_first, struct page *chain_last)
141{
142#if 1
143 struct page *tmp;
144 tmp = page_chain_tail(chain_first, NULL);
145 BUG_ON(tmp != chain_last);
146#endif
147
148 /* add chain to head */
149 set_page_private(chain_last, (unsigned long)*head);
150 *head = chain_first;
151}
152
Andreas Gruenbacher18c2d522011-04-07 21:08:50 +0200153static struct page *__drbd_alloc_pages(struct drbd_conf *mdev,
154 unsigned int number)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700155{
156 struct page *page = NULL;
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200157 struct page *tmp = NULL;
Andreas Gruenbacher18c2d522011-04-07 21:08:50 +0200158 unsigned int i = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700159
160 /* Yes, testing drbd_pp_vacant outside the lock is racy.
161 * So what. It saves a spin_lock. */
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200162 if (drbd_pp_vacant >= number) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700163 spin_lock(&drbd_pp_lock);
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200164 page = page_chain_del(&drbd_pp_pool, number);
165 if (page)
166 drbd_pp_vacant -= number;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700167 spin_unlock(&drbd_pp_lock);
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200168 if (page)
169 return page;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700170 }
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200171
Philipp Reisnerb411b362009-09-25 16:07:19 -0700172 /* GFP_TRY, because we must not cause arbitrary write-out: in a DRBD
173 * "criss-cross" setup, that might cause write-out on some other DRBD,
174 * which in turn might block on the other node at this very place. */
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200175 for (i = 0; i < number; i++) {
176 tmp = alloc_page(GFP_TRY);
177 if (!tmp)
178 break;
179 set_page_private(tmp, (unsigned long)page);
180 page = tmp;
181 }
182
183 if (i == number)
184 return page;
185
186 /* Not enough pages immediately available this time.
Andreas Gruenbacherc37c8ec2011-04-07 21:02:09 +0200187 * No need to jump around here, drbd_alloc_pages will retry this
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200188 * function "soon". */
189 if (page) {
190 tmp = page_chain_tail(page, NULL);
191 spin_lock(&drbd_pp_lock);
192 page_chain_add(&drbd_pp_pool, page, tmp);
193 drbd_pp_vacant += i;
194 spin_unlock(&drbd_pp_lock);
195 }
196 return NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700197}
198
Andreas Gruenbachera990be42011-04-06 17:56:48 +0200199static void reclaim_finished_net_peer_reqs(struct drbd_conf *mdev,
200 struct list_head *to_be_freed)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700201{
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +0100202 struct drbd_peer_request *peer_req;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700203 struct list_head *le, *tle;
204
205 /* The EEs are always appended to the end of the list. Since
206 they are sent in order over the wire, they have to finish
207 in order. As soon as we see the first not finished we can
208 stop to examine the list... */
209
210 list_for_each_safe(le, tle, &mdev->net_ee) {
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +0100211 peer_req = list_entry(le, struct drbd_peer_request, w.list);
Andreas Gruenbacher045417f2011-04-07 21:34:24 +0200212 if (drbd_peer_req_has_active_page(peer_req))
Philipp Reisnerb411b362009-09-25 16:07:19 -0700213 break;
214 list_move(le, to_be_freed);
215 }
216}
217
218static void drbd_kick_lo_and_reclaim_net(struct drbd_conf *mdev)
219{
220 LIST_HEAD(reclaimed);
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +0100221 struct drbd_peer_request *peer_req, *t;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700222
Philipp Reisner87eeee42011-01-19 14:16:30 +0100223 spin_lock_irq(&mdev->tconn->req_lock);
Andreas Gruenbachera990be42011-04-06 17:56:48 +0200224 reclaim_finished_net_peer_reqs(mdev, &reclaimed);
Philipp Reisner87eeee42011-01-19 14:16:30 +0100225 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700226
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +0100227 list_for_each_entry_safe(peer_req, t, &reclaimed, w.list)
Andreas Gruenbacher3967deb2011-04-06 16:16:56 +0200228 drbd_free_net_peer_req(mdev, peer_req);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700229}
230
231/**
Andreas Gruenbacherc37c8ec2011-04-07 21:02:09 +0200232 * drbd_alloc_pages() - Returns @number pages, retries forever (or until signalled)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700233 * @mdev: DRBD device.
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200234 * @number: number of pages requested
235 * @retry: whether to retry, if not enough pages are available right now
Philipp Reisnerb411b362009-09-25 16:07:19 -0700236 *
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200237 * Tries to allocate number pages, first from our own page pool, then from
238 * the kernel, unless this allocation would exceed the max_buffers setting.
239 * Possibly retry until DRBD frees sufficient pages somewhere else.
240 *
241 * Returns a page chain linked via page->private.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700242 */
Andreas Gruenbacherc37c8ec2011-04-07 21:02:09 +0200243struct page *drbd_alloc_pages(struct drbd_conf *mdev, unsigned int number,
244 bool retry)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700245{
246 struct page *page = NULL;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200247 struct net_conf *nc;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700248 DEFINE_WAIT(wait);
Philipp Reisner44ed1672011-04-19 17:10:19 +0200249 int mxb;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700250
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200251 /* Yes, we may run up to @number over max_buffers. If we
252 * follow it strictly, the admin will get it wrong anyways. */
Philipp Reisner44ed1672011-04-19 17:10:19 +0200253 rcu_read_lock();
254 nc = rcu_dereference(mdev->tconn->net_conf);
255 mxb = nc ? nc->max_buffers : 1000000;
256 rcu_read_unlock();
257
258 if (atomic_read(&mdev->pp_in_use) < mxb)
Andreas Gruenbacher18c2d522011-04-07 21:08:50 +0200259 page = __drbd_alloc_pages(mdev, number);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700260
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200261 while (page == NULL) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700262 prepare_to_wait(&drbd_pp_wait, &wait, TASK_INTERRUPTIBLE);
263
264 drbd_kick_lo_and_reclaim_net(mdev);
265
Philipp Reisner44ed1672011-04-19 17:10:19 +0200266 if (atomic_read(&mdev->pp_in_use) < mxb) {
Andreas Gruenbacher18c2d522011-04-07 21:08:50 +0200267 page = __drbd_alloc_pages(mdev, number);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700268 if (page)
269 break;
270 }
271
272 if (!retry)
273 break;
274
275 if (signal_pending(current)) {
Andreas Gruenbacherc37c8ec2011-04-07 21:02:09 +0200276 dev_warn(DEV, "drbd_alloc_pages interrupted!\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700277 break;
278 }
279
280 schedule();
281 }
282 finish_wait(&drbd_pp_wait, &wait);
283
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200284 if (page)
285 atomic_add(number, &mdev->pp_in_use);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700286 return page;
287}
288
Andreas Gruenbacherc37c8ec2011-04-07 21:02:09 +0200289/* Must not be used from irq, as that may deadlock: see drbd_alloc_pages.
Philipp Reisner87eeee42011-01-19 14:16:30 +0100290 * Is also used from inside an other spin_lock_irq(&mdev->tconn->req_lock);
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200291 * Either links the page chain back to the global pool,
292 * or returns all pages to the system. */
Andreas Gruenbacher5cc287e2011-04-07 21:02:59 +0200293static void drbd_free_pages(struct drbd_conf *mdev, struct page *page, int is_net)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700294{
Lars Ellenberg435f0742010-09-06 12:30:25 +0200295 atomic_t *a = is_net ? &mdev->pp_in_use_by_net : &mdev->pp_in_use;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700296 int i;
Lars Ellenberg435f0742010-09-06 12:30:25 +0200297
Lars Ellenberga73ff322012-06-25 19:15:38 +0200298 if (page == NULL)
299 return;
300
Philipp Reisner81a5d602011-02-22 19:53:16 -0500301 if (drbd_pp_vacant > (DRBD_MAX_BIO_SIZE/PAGE_SIZE) * minor_count)
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200302 i = page_chain_free(page);
303 else {
304 struct page *tmp;
305 tmp = page_chain_tail(page, &i);
306 spin_lock(&drbd_pp_lock);
307 page_chain_add(&drbd_pp_pool, page, tmp);
308 drbd_pp_vacant += i;
309 spin_unlock(&drbd_pp_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700310 }
Lars Ellenberg435f0742010-09-06 12:30:25 +0200311 i = atomic_sub_return(i, a);
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200312 if (i < 0)
Lars Ellenberg435f0742010-09-06 12:30:25 +0200313 dev_warn(DEV, "ASSERTION FAILED: %s: %d < 0\n",
314 is_net ? "pp_in_use_by_net" : "pp_in_use", i);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700315 wake_up(&drbd_pp_wait);
316}
317
318/*
319You need to hold the req_lock:
320 _drbd_wait_ee_list_empty()
321
322You must not have the req_lock:
Andreas Gruenbacher3967deb2011-04-06 16:16:56 +0200323 drbd_free_peer_req()
Andreas Gruenbacher0db55362011-04-06 16:09:15 +0200324 drbd_alloc_peer_req()
Andreas Gruenbacher7721f562011-04-06 17:14:02 +0200325 drbd_free_peer_reqs()
Philipp Reisnerb411b362009-09-25 16:07:19 -0700326 drbd_ee_fix_bhs()
Andreas Gruenbachera990be42011-04-06 17:56:48 +0200327 drbd_finish_peer_reqs()
Philipp Reisnerb411b362009-09-25 16:07:19 -0700328 drbd_clear_done_ee()
329 drbd_wait_ee_list_empty()
330*/
331
Andreas Gruenbacherf6ffca92011-02-04 15:30:34 +0100332struct drbd_peer_request *
Andreas Gruenbacher0db55362011-04-06 16:09:15 +0200333drbd_alloc_peer_req(struct drbd_conf *mdev, u64 id, sector_t sector,
334 unsigned int data_size, gfp_t gfp_mask) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700335{
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +0100336 struct drbd_peer_request *peer_req;
Lars Ellenberga73ff322012-06-25 19:15:38 +0200337 struct page *page = NULL;
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200338 unsigned nr_pages = (data_size + PAGE_SIZE -1) >> PAGE_SHIFT;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700339
Andreas Gruenbacher0cf9d272010-12-07 10:43:29 +0100340 if (drbd_insert_fault(mdev, DRBD_FAULT_AL_EE))
Philipp Reisnerb411b362009-09-25 16:07:19 -0700341 return NULL;
342
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +0100343 peer_req = mempool_alloc(drbd_ee_mempool, gfp_mask & ~__GFP_HIGHMEM);
344 if (!peer_req) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700345 if (!(gfp_mask & __GFP_NOWARN))
Andreas Gruenbacher0db55362011-04-06 16:09:15 +0200346 dev_err(DEV, "%s: allocation failed\n", __func__);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700347 return NULL;
348 }
349
Lars Ellenberga73ff322012-06-25 19:15:38 +0200350 if (data_size) {
Lars Ellenberg81a35372012-07-30 09:00:54 +0200351 page = drbd_alloc_pages(mdev, nr_pages, (gfp_mask & __GFP_WAIT));
Lars Ellenberga73ff322012-06-25 19:15:38 +0200352 if (!page)
353 goto fail;
354 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700355
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +0100356 drbd_clear_interval(&peer_req->i);
357 peer_req->i.size = data_size;
358 peer_req->i.sector = sector;
359 peer_req->i.local = false;
360 peer_req->i.waiting = false;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700361
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +0100362 peer_req->epoch = NULL;
Philipp Reisnera21e9292011-02-08 15:08:49 +0100363 peer_req->w.mdev = mdev;
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +0100364 peer_req->pages = page;
365 atomic_set(&peer_req->pending_bios, 0);
366 peer_req->flags = 0;
Andreas Gruenbacher9a8e7752011-01-11 14:04:09 +0100367 /*
368 * The block_id is opaque to the receiver. It is not endianness
369 * converted, and sent back to the sender unchanged.
370 */
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +0100371 peer_req->block_id = id;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700372
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +0100373 return peer_req;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700374
Lars Ellenberg45bb9122010-05-14 17:10:48 +0200375 fail:
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +0100376 mempool_free(peer_req, drbd_ee_mempool);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700377 return NULL;
378}
379
Andreas Gruenbacher3967deb2011-04-06 16:16:56 +0200380void __drbd_free_peer_req(struct drbd_conf *mdev, struct drbd_peer_request *peer_req,
Andreas Gruenbacherf6ffca92011-02-04 15:30:34 +0100381 int is_net)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700382{
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +0100383 if (peer_req->flags & EE_HAS_DIGEST)
384 kfree(peer_req->digest);
Andreas Gruenbacher5cc287e2011-04-07 21:02:59 +0200385 drbd_free_pages(mdev, peer_req->pages, is_net);
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +0100386 D_ASSERT(atomic_read(&peer_req->pending_bios) == 0);
387 D_ASSERT(drbd_interval_empty(&peer_req->i));
388 mempool_free(peer_req, drbd_ee_mempool);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700389}
390
Andreas Gruenbacher7721f562011-04-06 17:14:02 +0200391int drbd_free_peer_reqs(struct drbd_conf *mdev, struct list_head *list)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700392{
393 LIST_HEAD(work_list);
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +0100394 struct drbd_peer_request *peer_req, *t;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700395 int count = 0;
Lars Ellenberg435f0742010-09-06 12:30:25 +0200396 int is_net = list == &mdev->net_ee;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700397
Philipp Reisner87eeee42011-01-19 14:16:30 +0100398 spin_lock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700399 list_splice_init(list, &work_list);
Philipp Reisner87eeee42011-01-19 14:16:30 +0100400 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700401
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +0100402 list_for_each_entry_safe(peer_req, t, &work_list, w.list) {
Andreas Gruenbacher3967deb2011-04-06 16:16:56 +0200403 __drbd_free_peer_req(mdev, peer_req, is_net);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700404 count++;
405 }
406 return count;
407}
408
Philipp Reisnerb411b362009-09-25 16:07:19 -0700409/*
Andreas Gruenbachera990be42011-04-06 17:56:48 +0200410 * See also comments in _req_mod(,BARRIER_ACKED) and receive_Barrier.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700411 */
Andreas Gruenbachera990be42011-04-06 17:56:48 +0200412static int drbd_finish_peer_reqs(struct drbd_conf *mdev)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700413{
414 LIST_HEAD(work_list);
415 LIST_HEAD(reclaimed);
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +0100416 struct drbd_peer_request *peer_req, *t;
Andreas Gruenbachere2b30322011-03-16 17:16:12 +0100417 int err = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700418
Philipp Reisner87eeee42011-01-19 14:16:30 +0100419 spin_lock_irq(&mdev->tconn->req_lock);
Andreas Gruenbachera990be42011-04-06 17:56:48 +0200420 reclaim_finished_net_peer_reqs(mdev, &reclaimed);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700421 list_splice_init(&mdev->done_ee, &work_list);
Philipp Reisner87eeee42011-01-19 14:16:30 +0100422 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700423
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +0100424 list_for_each_entry_safe(peer_req, t, &reclaimed, w.list)
Andreas Gruenbacher3967deb2011-04-06 16:16:56 +0200425 drbd_free_net_peer_req(mdev, peer_req);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700426
427 /* possible callbacks here:
Lars Ellenbergd4dabbe2012-08-01 12:33:51 +0200428 * e_end_block, and e_end_resync_block, e_send_superseded.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700429 * all ignore the last argument.
430 */
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +0100431 list_for_each_entry_safe(peer_req, t, &work_list, w.list) {
Andreas Gruenbachere2b30322011-03-16 17:16:12 +0100432 int err2;
433
Philipp Reisnerb411b362009-09-25 16:07:19 -0700434 /* list_del not necessary, next/prev members not touched */
Andreas Gruenbachere2b30322011-03-16 17:16:12 +0100435 err2 = peer_req->w.cb(&peer_req->w, !!err);
436 if (!err)
437 err = err2;
Andreas Gruenbacher3967deb2011-04-06 16:16:56 +0200438 drbd_free_peer_req(mdev, peer_req);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700439 }
440 wake_up(&mdev->ee_wait);
441
Andreas Gruenbachere2b30322011-03-16 17:16:12 +0100442 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700443}
444
Andreas Gruenbacherd4da1532011-04-07 00:06:56 +0200445static void _drbd_wait_ee_list_empty(struct drbd_conf *mdev,
446 struct list_head *head)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700447{
448 DEFINE_WAIT(wait);
449
450 /* avoids spin_lock/unlock
451 * and calling prepare_to_wait in the fast path */
452 while (!list_empty(head)) {
453 prepare_to_wait(&mdev->ee_wait, &wait, TASK_UNINTERRUPTIBLE);
Philipp Reisner87eeee42011-01-19 14:16:30 +0100454 spin_unlock_irq(&mdev->tconn->req_lock);
Jens Axboe7eaceac2011-03-10 08:52:07 +0100455 io_schedule();
Philipp Reisnerb411b362009-09-25 16:07:19 -0700456 finish_wait(&mdev->ee_wait, &wait);
Philipp Reisner87eeee42011-01-19 14:16:30 +0100457 spin_lock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700458 }
459}
460
Andreas Gruenbacherd4da1532011-04-07 00:06:56 +0200461static void drbd_wait_ee_list_empty(struct drbd_conf *mdev,
462 struct list_head *head)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700463{
Philipp Reisner87eeee42011-01-19 14:16:30 +0100464 spin_lock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700465 _drbd_wait_ee_list_empty(mdev, head);
Philipp Reisner87eeee42011-01-19 14:16:30 +0100466 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700467}
468
Philipp Reisnerdbd9eea2011-02-07 15:34:16 +0100469static int drbd_recv_short(struct socket *sock, void *buf, size_t size, int flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700470{
471 mm_segment_t oldfs;
472 struct kvec iov = {
473 .iov_base = buf,
474 .iov_len = size,
475 };
476 struct msghdr msg = {
477 .msg_iovlen = 1,
478 .msg_iov = (struct iovec *)&iov,
479 .msg_flags = (flags ? flags : MSG_WAITALL | MSG_NOSIGNAL)
480 };
481 int rv;
482
483 oldfs = get_fs();
484 set_fs(KERNEL_DS);
485 rv = sock_recvmsg(sock, &msg, size, msg.msg_flags);
486 set_fs(oldfs);
487
488 return rv;
489}
490
Philipp Reisnerde0ff332011-02-07 16:56:20 +0100491static int drbd_recv(struct drbd_tconn *tconn, void *buf, size_t size)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700492{
Philipp Reisnerb411b362009-09-25 16:07:19 -0700493 int rv;
494
Philipp Reisner1393b592012-09-03 14:04:23 +0200495 rv = drbd_recv_short(tconn->data.socket, buf, size, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700496
Philipp Reisnerdbd08202012-08-17 16:55:47 +0200497 if (rv < 0) {
498 if (rv == -ECONNRESET)
Philipp Reisner155522d2012-08-08 21:19:09 +0200499 conn_info(tconn, "sock was reset by peer\n");
Philipp Reisnerdbd08202012-08-17 16:55:47 +0200500 else if (rv != -ERESTARTSYS)
Philipp Reisner155522d2012-08-08 21:19:09 +0200501 conn_err(tconn, "sock_recvmsg returned %d\n", rv);
Philipp Reisnerdbd08202012-08-17 16:55:47 +0200502 } else if (rv == 0) {
Philipp Reisnerb66623e2012-08-08 21:19:09 +0200503 if (test_bit(DISCONNECT_SENT, &tconn->flags)) {
504 long t;
505 rcu_read_lock();
506 t = rcu_dereference(tconn->net_conf)->ping_timeo * HZ/10;
507 rcu_read_unlock();
508
509 t = wait_event_timeout(tconn->ping_wait, tconn->cstate < C_WF_REPORT_PARAMS, t);
510
Philipp Reisner599377a2012-08-17 14:50:22 +0200511 if (t)
512 goto out;
513 }
Philipp Reisnerb66623e2012-08-08 21:19:09 +0200514 conn_info(tconn, "sock was shut down by peer\n");
Philipp Reisner599377a2012-08-17 14:50:22 +0200515 }
516
Philipp Reisnerb411b362009-09-25 16:07:19 -0700517 if (rv != size)
Philipp Reisnerbbeb6412011-02-10 13:45:46 +0100518 conn_request_state(tconn, NS(conn, C_BROKEN_PIPE), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700519
Philipp Reisner599377a2012-08-17 14:50:22 +0200520out:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700521 return rv;
522}
523
Andreas Gruenbacherc6967742011-03-17 17:15:20 +0100524static int drbd_recv_all(struct drbd_tconn *tconn, void *buf, size_t size)
525{
526 int err;
527
528 err = drbd_recv(tconn, buf, size);
529 if (err != size) {
530 if (err >= 0)
531 err = -EIO;
532 } else
533 err = 0;
534 return err;
535}
536
Andreas Gruenbachera5c31902011-03-24 03:28:04 +0100537static int drbd_recv_all_warn(struct drbd_tconn *tconn, void *buf, size_t size)
538{
539 int err;
540
541 err = drbd_recv_all(tconn, buf, size);
542 if (err && !signal_pending(current))
543 conn_warn(tconn, "short read (expected size %d)\n", (int)size);
544 return err;
545}
546
Lars Ellenberg5dbf1672010-05-25 16:18:01 +0200547/* quoting tcp(7):
548 * On individual connections, the socket buffer size must be set prior to the
549 * listen(2) or connect(2) calls in order to have it take effect.
550 * This is our wrapper to do so.
551 */
552static void drbd_setbufsize(struct socket *sock, unsigned int snd,
553 unsigned int rcv)
554{
555 /* open coded SO_SNDBUF, SO_RCVBUF */
556 if (snd) {
557 sock->sk->sk_sndbuf = snd;
558 sock->sk->sk_userlocks |= SOCK_SNDBUF_LOCK;
559 }
560 if (rcv) {
561 sock->sk->sk_rcvbuf = rcv;
562 sock->sk->sk_userlocks |= SOCK_RCVBUF_LOCK;
563 }
564}
565
Philipp Reisnereac3e992011-02-07 14:05:07 +0100566static struct socket *drbd_try_connect(struct drbd_tconn *tconn)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700567{
568 const char *what;
569 struct socket *sock;
570 struct sockaddr_in6 src_in6;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200571 struct sockaddr_in6 peer_in6;
572 struct net_conf *nc;
573 int err, peer_addr_len, my_addr_len;
Andreas Gruenbacher69ef82d2011-05-11 14:34:35 +0200574 int sndbuf_size, rcvbuf_size, connect_int;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700575 int disconnect_on_error = 1;
576
Philipp Reisner44ed1672011-04-19 17:10:19 +0200577 rcu_read_lock();
578 nc = rcu_dereference(tconn->net_conf);
579 if (!nc) {
580 rcu_read_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -0700581 return NULL;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200582 }
Philipp Reisner44ed1672011-04-19 17:10:19 +0200583 sndbuf_size = nc->sndbuf_size;
584 rcvbuf_size = nc->rcvbuf_size;
Andreas Gruenbacher69ef82d2011-05-11 14:34:35 +0200585 connect_int = nc->connect_int;
Andreas Gruenbacher089c0752011-06-14 18:28:09 +0200586 rcu_read_unlock();
Philipp Reisner44ed1672011-04-19 17:10:19 +0200587
Andreas Gruenbacher089c0752011-06-14 18:28:09 +0200588 my_addr_len = min_t(int, tconn->my_addr_len, sizeof(src_in6));
589 memcpy(&src_in6, &tconn->my_addr, my_addr_len);
Philipp Reisner44ed1672011-04-19 17:10:19 +0200590
Andreas Gruenbacher089c0752011-06-14 18:28:09 +0200591 if (((struct sockaddr *)&tconn->my_addr)->sa_family == AF_INET6)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200592 src_in6.sin6_port = 0;
593 else
594 ((struct sockaddr_in *)&src_in6)->sin_port = 0; /* AF_INET & AF_SCI */
595
Andreas Gruenbacher089c0752011-06-14 18:28:09 +0200596 peer_addr_len = min_t(int, tconn->peer_addr_len, sizeof(src_in6));
597 memcpy(&peer_in6, &tconn->peer_addr, peer_addr_len);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700598
599 what = "sock_create_kern";
Philipp Reisner44ed1672011-04-19 17:10:19 +0200600 err = sock_create_kern(((struct sockaddr *)&src_in6)->sa_family,
601 SOCK_STREAM, IPPROTO_TCP, &sock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700602 if (err < 0) {
603 sock = NULL;
604 goto out;
605 }
606
607 sock->sk->sk_rcvtimeo =
Andreas Gruenbacher69ef82d2011-05-11 14:34:35 +0200608 sock->sk->sk_sndtimeo = connect_int * HZ;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200609 drbd_setbufsize(sock, sndbuf_size, rcvbuf_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700610
611 /* explicitly bind to the configured IP as source IP
612 * for the outgoing connections.
613 * This is needed for multihomed hosts and to be
614 * able to use lo: interfaces for drbd.
615 * Make sure to use 0 as port number, so linux selects
616 * a free one dynamically.
617 */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700618 what = "bind before connect";
Philipp Reisner44ed1672011-04-19 17:10:19 +0200619 err = sock->ops->bind(sock, (struct sockaddr *) &src_in6, my_addr_len);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700620 if (err < 0)
621 goto out;
622
623 /* connect may fail, peer not yet available.
624 * stay C_WF_CONNECTION, don't go Disconnecting! */
625 disconnect_on_error = 0;
626 what = "connect";
Philipp Reisner44ed1672011-04-19 17:10:19 +0200627 err = sock->ops->connect(sock, (struct sockaddr *) &peer_in6, peer_addr_len, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700628
629out:
630 if (err < 0) {
631 if (sock) {
632 sock_release(sock);
633 sock = NULL;
634 }
635 switch (-err) {
636 /* timeout, busy, signal pending */
637 case ETIMEDOUT: case EAGAIN: case EINPROGRESS:
638 case EINTR: case ERESTARTSYS:
639 /* peer not (yet) available, network problem */
640 case ECONNREFUSED: case ENETUNREACH:
641 case EHOSTDOWN: case EHOSTUNREACH:
642 disconnect_on_error = 0;
643 break;
644 default:
Philipp Reisnereac3e992011-02-07 14:05:07 +0100645 conn_err(tconn, "%s failed, err = %d\n", what, err);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700646 }
647 if (disconnect_on_error)
Philipp Reisnerbbeb6412011-02-10 13:45:46 +0100648 conn_request_state(tconn, NS(conn, C_DISCONNECTING), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700649 }
Philipp Reisner44ed1672011-04-19 17:10:19 +0200650
Philipp Reisnerb411b362009-09-25 16:07:19 -0700651 return sock;
652}
653
Philipp Reisner7a426fd2012-07-12 14:22:37 +0200654struct accept_wait_data {
655 struct drbd_tconn *tconn;
656 struct socket *s_listen;
657 struct completion door_bell;
658 void (*original_sk_state_change)(struct sock *sk);
659
660};
661
Andreas Gruenbacher715306f2012-08-10 17:00:30 +0200662static void drbd_incoming_connection(struct sock *sk)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700663{
Philipp Reisner7a426fd2012-07-12 14:22:37 +0200664 struct accept_wait_data *ad = sk->sk_user_data;
Andreas Gruenbacher715306f2012-08-10 17:00:30 +0200665 void (*state_change)(struct sock *sk);
Philipp Reisner7a426fd2012-07-12 14:22:37 +0200666
Andreas Gruenbacher715306f2012-08-10 17:00:30 +0200667 state_change = ad->original_sk_state_change;
668 if (sk->sk_state == TCP_ESTABLISHED)
669 complete(&ad->door_bell);
670 state_change(sk);
Philipp Reisner7a426fd2012-07-12 14:22:37 +0200671}
672
673static int prepare_listen_socket(struct drbd_tconn *tconn, struct accept_wait_data *ad)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700674{
Philipp Reisner1f3e5092012-07-12 11:08:34 +0200675 int err, sndbuf_size, rcvbuf_size, my_addr_len;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200676 struct sockaddr_in6 my_addr;
Philipp Reisner1f3e5092012-07-12 11:08:34 +0200677 struct socket *s_listen;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200678 struct net_conf *nc;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700679 const char *what;
680
Philipp Reisner44ed1672011-04-19 17:10:19 +0200681 rcu_read_lock();
682 nc = rcu_dereference(tconn->net_conf);
683 if (!nc) {
684 rcu_read_unlock();
Philipp Reisner7a426fd2012-07-12 14:22:37 +0200685 return -EIO;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200686 }
Philipp Reisner44ed1672011-04-19 17:10:19 +0200687 sndbuf_size = nc->sndbuf_size;
688 rcvbuf_size = nc->rcvbuf_size;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200689 rcu_read_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -0700690
Andreas Gruenbacher089c0752011-06-14 18:28:09 +0200691 my_addr_len = min_t(int, tconn->my_addr_len, sizeof(struct sockaddr_in6));
692 memcpy(&my_addr, &tconn->my_addr, my_addr_len);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700693
694 what = "sock_create_kern";
Philipp Reisner44ed1672011-04-19 17:10:19 +0200695 err = sock_create_kern(((struct sockaddr *)&my_addr)->sa_family,
Philipp Reisner1f3e5092012-07-12 11:08:34 +0200696 SOCK_STREAM, IPPROTO_TCP, &s_listen);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700697 if (err) {
698 s_listen = NULL;
699 goto out;
700 }
701
Philipp Reisner98683652012-11-09 14:18:43 +0100702 s_listen->sk->sk_reuse = SK_CAN_REUSE; /* SO_REUSEADDR */
Philipp Reisner44ed1672011-04-19 17:10:19 +0200703 drbd_setbufsize(s_listen, sndbuf_size, rcvbuf_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700704
705 what = "bind before listen";
Philipp Reisner44ed1672011-04-19 17:10:19 +0200706 err = s_listen->ops->bind(s_listen, (struct sockaddr *)&my_addr, my_addr_len);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700707 if (err < 0)
708 goto out;
709
Philipp Reisner7a426fd2012-07-12 14:22:37 +0200710 ad->s_listen = s_listen;
711 write_lock_bh(&s_listen->sk->sk_callback_lock);
712 ad->original_sk_state_change = s_listen->sk->sk_state_change;
Andreas Gruenbacher715306f2012-08-10 17:00:30 +0200713 s_listen->sk->sk_state_change = drbd_incoming_connection;
Philipp Reisner7a426fd2012-07-12 14:22:37 +0200714 s_listen->sk->sk_user_data = ad;
715 write_unlock_bh(&s_listen->sk->sk_callback_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700716
Philipp Reisner2820fd32012-07-12 10:22:48 +0200717 what = "listen";
718 err = s_listen->ops->listen(s_listen, 5);
719 if (err < 0)
720 goto out;
721
Philipp Reisner7a426fd2012-07-12 14:22:37 +0200722 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700723out:
724 if (s_listen)
725 sock_release(s_listen);
726 if (err < 0) {
727 if (err != -EAGAIN && err != -EINTR && err != -ERESTARTSYS) {
Philipp Reisner1f3e5092012-07-12 11:08:34 +0200728 conn_err(tconn, "%s failed, err = %d\n", what, err);
729 conn_request_state(tconn, NS(conn, C_DISCONNECTING), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700730 }
731 }
Philipp Reisner1f3e5092012-07-12 11:08:34 +0200732
Philipp Reisner7a426fd2012-07-12 14:22:37 +0200733 return -EIO;
Philipp Reisner1f3e5092012-07-12 11:08:34 +0200734}
735
Andreas Gruenbacher715306f2012-08-10 17:00:30 +0200736static void unregister_state_change(struct sock *sk, struct accept_wait_data *ad)
737{
738 write_lock_bh(&sk->sk_callback_lock);
739 sk->sk_state_change = ad->original_sk_state_change;
740 sk->sk_user_data = NULL;
741 write_unlock_bh(&sk->sk_callback_lock);
742}
743
Philipp Reisner7a426fd2012-07-12 14:22:37 +0200744static struct socket *drbd_wait_for_connect(struct drbd_tconn *tconn, struct accept_wait_data *ad)
Philipp Reisner1f3e5092012-07-12 11:08:34 +0200745{
746 int timeo, connect_int, err = 0;
747 struct socket *s_estab = NULL;
Philipp Reisner1f3e5092012-07-12 11:08:34 +0200748 struct net_conf *nc;
749
750 rcu_read_lock();
751 nc = rcu_dereference(tconn->net_conf);
752 if (!nc) {
753 rcu_read_unlock();
754 return NULL;
755 }
756 connect_int = nc->connect_int;
757 rcu_read_unlock();
758
759 timeo = connect_int * HZ;
Akinobu Mita38b682b22013-04-29 16:21:31 -0700760 /* 28.5% random jitter */
761 timeo += (prandom_u32() & 1) ? timeo / 7 : -timeo / 7;
Philipp Reisner1f3e5092012-07-12 11:08:34 +0200762
Philipp Reisner7a426fd2012-07-12 14:22:37 +0200763 err = wait_for_completion_interruptible_timeout(&ad->door_bell, timeo);
764 if (err <= 0)
765 return NULL;
Philipp Reisner1f3e5092012-07-12 11:08:34 +0200766
Philipp Reisner7a426fd2012-07-12 14:22:37 +0200767 err = kernel_accept(ad->s_listen, &s_estab, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700768 if (err < 0) {
769 if (err != -EAGAIN && err != -EINTR && err != -ERESTARTSYS) {
Philipp Reisner1f3e5092012-07-12 11:08:34 +0200770 conn_err(tconn, "accept failed, err = %d\n", err);
Philipp Reisnerbbeb6412011-02-10 13:45:46 +0100771 conn_request_state(tconn, NS(conn, C_DISCONNECTING), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700772 }
773 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700774
Andreas Gruenbacher715306f2012-08-10 17:00:30 +0200775 if (s_estab)
776 unregister_state_change(s_estab->sk, ad);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700777
778 return s_estab;
779}
780
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200781static int decode_header(struct drbd_tconn *, void *, struct packet_info *);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700782
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200783static int send_first_packet(struct drbd_tconn *tconn, struct drbd_socket *sock,
784 enum drbd_packet cmd)
785{
786 if (!conn_prepare_command(tconn, sock))
787 return -EIO;
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200788 return conn_send_command(tconn, sock, cmd, 0, NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700789}
790
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200791static int receive_first_packet(struct drbd_tconn *tconn, struct socket *sock)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700792{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200793 unsigned int header_size = drbd_header_size(tconn);
794 struct packet_info pi;
795 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700796
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200797 err = drbd_recv_short(sock, tconn->data.rbuf, header_size, 0);
798 if (err != header_size) {
799 if (err >= 0)
800 err = -EIO;
801 return err;
802 }
803 err = decode_header(tconn, tconn->data.rbuf, &pi);
804 if (err)
805 return err;
806 return pi.cmd;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700807}
808
809/**
810 * drbd_socket_okay() - Free the socket if its connection is not okay
Philipp Reisnerb411b362009-09-25 16:07:19 -0700811 * @sock: pointer to the pointer to the socket.
812 */
Philipp Reisnerdbd9eea2011-02-07 15:34:16 +0100813static int drbd_socket_okay(struct socket **sock)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700814{
815 int rr;
816 char tb[4];
817
818 if (!*sock)
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100819 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700820
Philipp Reisnerdbd9eea2011-02-07 15:34:16 +0100821 rr = drbd_recv_short(*sock, tb, 4, MSG_DONTWAIT | MSG_PEEK);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700822
823 if (rr > 0 || rr == -EAGAIN) {
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100824 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700825 } else {
826 sock_release(*sock);
827 *sock = NULL;
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100828 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700829 }
830}
Philipp Reisner2325eb62011-03-15 16:56:18 +0100831/* Gets called if a connection is established, or if a new minor gets created
832 in a connection */
Philipp Reisnerc141ebd2011-05-05 16:13:10 +0200833int drbd_connected(struct drbd_conf *mdev)
Philipp Reisner907599e2011-02-08 11:25:37 +0100834{
Andreas Gruenbacher0829f5e2011-03-24 14:31:22 +0100835 int err;
Philipp Reisner907599e2011-02-08 11:25:37 +0100836
837 atomic_set(&mdev->packet_seq, 0);
838 mdev->peer_seq = 0;
839
Philipp Reisner8410da82011-02-11 20:11:10 +0100840 mdev->state_mutex = mdev->tconn->agreed_pro_version < 100 ?
841 &mdev->tconn->cstate_mutex :
842 &mdev->own_state_mutex;
843
Andreas Gruenbacher0829f5e2011-03-24 14:31:22 +0100844 err = drbd_send_sync_param(mdev);
845 if (!err)
846 err = drbd_send_sizes(mdev, 0, 0);
847 if (!err)
848 err = drbd_send_uuids(mdev);
849 if (!err)
Philipp Reisner43de7c82011-11-10 13:16:13 +0100850 err = drbd_send_current_state(mdev);
Philipp Reisner907599e2011-02-08 11:25:37 +0100851 clear_bit(USE_DEGR_WFC_T, &mdev->flags);
852 clear_bit(RESIZE_PENDING, &mdev->flags);
Philipp Reisner2d56a972013-03-27 14:08:34 +0100853 atomic_set(&mdev->ap_in_flight, 0);
Philipp Reisner8b924f12011-03-01 11:08:28 +0100854 mod_timer(&mdev->request_timer, jiffies + HZ); /* just start it here. */
Andreas Gruenbacher0829f5e2011-03-24 14:31:22 +0100855 return err;
Philipp Reisner907599e2011-02-08 11:25:37 +0100856}
Philipp Reisnerb411b362009-09-25 16:07:19 -0700857
858/*
859 * return values:
860 * 1 yes, we have a valid connection
861 * 0 oops, did not work out, please try again
862 * -1 peer talks different language,
863 * no point in trying again, please go standalone.
864 * -2 We do not have a network config...
865 */
Philipp Reisner81fa2e62011-05-04 15:10:30 +0200866static int conn_connect(struct drbd_tconn *tconn)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700867{
Philipp Reisner7da35862011-12-19 22:42:56 +0100868 struct drbd_socket sock, msock;
Philipp Reisnerc141ebd2011-05-05 16:13:10 +0200869 struct drbd_conf *mdev;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200870 struct net_conf *nc;
Philipp Reisner92f14952012-08-01 11:41:01 +0200871 int vnr, timeout, h, ok;
Philipp Reisner08b165b2011-09-05 16:22:33 +0200872 bool discard_my_data;
Philipp Reisner197296f2012-03-26 16:47:11 +0200873 enum drbd_state_rv rv;
Philipp Reisner7a426fd2012-07-12 14:22:37 +0200874 struct accept_wait_data ad = {
875 .tconn = tconn,
876 .door_bell = COMPLETION_INITIALIZER_ONSTACK(ad.door_bell),
877 };
Philipp Reisnerb411b362009-09-25 16:07:19 -0700878
Philipp Reisnerb66623e2012-08-08 21:19:09 +0200879 clear_bit(DISCONNECT_SENT, &tconn->flags);
Philipp Reisnerbbeb6412011-02-10 13:45:46 +0100880 if (conn_request_state(tconn, NS(conn, C_WF_CONNECTION), CS_VERBOSE) < SS_SUCCESS)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700881 return -2;
882
Philipp Reisner7da35862011-12-19 22:42:56 +0100883 mutex_init(&sock.mutex);
884 sock.sbuf = tconn->data.sbuf;
885 sock.rbuf = tconn->data.rbuf;
886 sock.socket = NULL;
887 mutex_init(&msock.mutex);
888 msock.sbuf = tconn->meta.sbuf;
889 msock.rbuf = tconn->meta.rbuf;
890 msock.socket = NULL;
891
Andreas Gruenbacher0916e0e2011-03-21 14:10:15 +0100892 /* Assume that the peer only understands protocol 80 until we know better. */
893 tconn->agreed_pro_version = 80;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700894
Philipp Reisner7a426fd2012-07-12 14:22:37 +0200895 if (prepare_listen_socket(tconn, &ad))
896 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700897
898 do {
Andreas Gruenbacher2bf89622011-03-28 16:33:12 +0200899 struct socket *s;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700900
Philipp Reisner92f14952012-08-01 11:41:01 +0200901 s = drbd_try_connect(tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700902 if (s) {
Philipp Reisner7da35862011-12-19 22:42:56 +0100903 if (!sock.socket) {
904 sock.socket = s;
905 send_first_packet(tconn, &sock, P_INITIAL_DATA);
906 } else if (!msock.socket) {
Lars Ellenberg427c0432012-08-01 12:43:01 +0200907 clear_bit(RESOLVE_CONFLICTS, &tconn->flags);
Philipp Reisner7da35862011-12-19 22:42:56 +0100908 msock.socket = s;
909 send_first_packet(tconn, &msock, P_INITIAL_META);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700910 } else {
Philipp Reisner81fa2e62011-05-04 15:10:30 +0200911 conn_err(tconn, "Logic error in conn_connect()\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700912 goto out_release_sockets;
913 }
914 }
915
Philipp Reisner7da35862011-12-19 22:42:56 +0100916 if (sock.socket && msock.socket) {
917 rcu_read_lock();
918 nc = rcu_dereference(tconn->net_conf);
919 timeout = nc->ping_timeo * HZ / 10;
920 rcu_read_unlock();
921 schedule_timeout_interruptible(timeout);
922 ok = drbd_socket_okay(&sock.socket);
923 ok = drbd_socket_okay(&msock.socket) && ok;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700924 if (ok)
925 break;
926 }
927
928retry:
Philipp Reisner7a426fd2012-07-12 14:22:37 +0200929 s = drbd_wait_for_connect(tconn, &ad);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700930 if (s) {
Philipp Reisner92f14952012-08-01 11:41:01 +0200931 int fp = receive_first_packet(tconn, s);
Philipp Reisner7da35862011-12-19 22:42:56 +0100932 drbd_socket_okay(&sock.socket);
933 drbd_socket_okay(&msock.socket);
Philipp Reisner92f14952012-08-01 11:41:01 +0200934 switch (fp) {
Andreas Gruenbachere5d6f332011-03-28 16:44:40 +0200935 case P_INITIAL_DATA:
Philipp Reisner7da35862011-12-19 22:42:56 +0100936 if (sock.socket) {
Philipp Reisner907599e2011-02-08 11:25:37 +0100937 conn_warn(tconn, "initial packet S crossed\n");
Philipp Reisner7da35862011-12-19 22:42:56 +0100938 sock_release(sock.socket);
Philipp Reisner80c6eed2012-08-01 14:53:39 +0200939 sock.socket = s;
940 goto randomize;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700941 }
Philipp Reisner7da35862011-12-19 22:42:56 +0100942 sock.socket = s;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700943 break;
Andreas Gruenbachere5d6f332011-03-28 16:44:40 +0200944 case P_INITIAL_META:
Lars Ellenberg427c0432012-08-01 12:43:01 +0200945 set_bit(RESOLVE_CONFLICTS, &tconn->flags);
Philipp Reisner7da35862011-12-19 22:42:56 +0100946 if (msock.socket) {
Philipp Reisner907599e2011-02-08 11:25:37 +0100947 conn_warn(tconn, "initial packet M crossed\n");
Philipp Reisner7da35862011-12-19 22:42:56 +0100948 sock_release(msock.socket);
Philipp Reisner80c6eed2012-08-01 14:53:39 +0200949 msock.socket = s;
950 goto randomize;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700951 }
Philipp Reisner7da35862011-12-19 22:42:56 +0100952 msock.socket = s;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700953 break;
954 default:
Philipp Reisner907599e2011-02-08 11:25:37 +0100955 conn_warn(tconn, "Error receiving initial packet\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700956 sock_release(s);
Philipp Reisner80c6eed2012-08-01 14:53:39 +0200957randomize:
Akinobu Mita38b682b22013-04-29 16:21:31 -0700958 if (prandom_u32() & 1)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700959 goto retry;
960 }
961 }
962
Philipp Reisnerbbeb6412011-02-10 13:45:46 +0100963 if (tconn->cstate <= C_DISCONNECTING)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700964 goto out_release_sockets;
965 if (signal_pending(current)) {
966 flush_signals(current);
967 smp_rmb();
Philipp Reisner907599e2011-02-08 11:25:37 +0100968 if (get_t_state(&tconn->receiver) == EXITING)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700969 goto out_release_sockets;
970 }
971
Philipp Reisnerb666dbf2012-07-26 14:12:59 +0200972 ok = drbd_socket_okay(&sock.socket);
973 ok = drbd_socket_okay(&msock.socket) && ok;
974 } while (!ok);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700975
Philipp Reisner7a426fd2012-07-12 14:22:37 +0200976 if (ad.s_listen)
977 sock_release(ad.s_listen);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700978
Philipp Reisner98683652012-11-09 14:18:43 +0100979 sock.socket->sk->sk_reuse = SK_CAN_REUSE; /* SO_REUSEADDR */
980 msock.socket->sk->sk_reuse = SK_CAN_REUSE; /* SO_REUSEADDR */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700981
Philipp Reisner7da35862011-12-19 22:42:56 +0100982 sock.socket->sk->sk_allocation = GFP_NOIO;
983 msock.socket->sk->sk_allocation = GFP_NOIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700984
Philipp Reisner7da35862011-12-19 22:42:56 +0100985 sock.socket->sk->sk_priority = TC_PRIO_INTERACTIVE_BULK;
986 msock.socket->sk->sk_priority = TC_PRIO_INTERACTIVE;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700987
Philipp Reisnerb411b362009-09-25 16:07:19 -0700988 /* NOT YET ...
Philipp Reisner7da35862011-12-19 22:42:56 +0100989 * sock.socket->sk->sk_sndtimeo = tconn->net_conf->timeout*HZ/10;
990 * sock.socket->sk->sk_rcvtimeo = MAX_SCHEDULE_TIMEOUT;
Andreas Gruenbacher60381782011-03-28 17:05:50 +0200991 * first set it to the P_CONNECTION_FEATURES timeout,
Philipp Reisnerb411b362009-09-25 16:07:19 -0700992 * which we set to 4x the configured ping_timeout. */
Philipp Reisner44ed1672011-04-19 17:10:19 +0200993 rcu_read_lock();
994 nc = rcu_dereference(tconn->net_conf);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700995
Philipp Reisner7da35862011-12-19 22:42:56 +0100996 sock.socket->sk->sk_sndtimeo =
997 sock.socket->sk->sk_rcvtimeo = nc->ping_timeo*4*HZ/10;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200998
Philipp Reisner7da35862011-12-19 22:42:56 +0100999 msock.socket->sk->sk_rcvtimeo = nc->ping_int*HZ;
Philipp Reisner44ed1672011-04-19 17:10:19 +02001000 timeout = nc->timeout * HZ / 10;
Philipp Reisner08b165b2011-09-05 16:22:33 +02001001 discard_my_data = nc->discard_my_data;
Philipp Reisner44ed1672011-04-19 17:10:19 +02001002 rcu_read_unlock();
1003
Philipp Reisner7da35862011-12-19 22:42:56 +01001004 msock.socket->sk->sk_sndtimeo = timeout;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001005
1006 /* we don't want delays.
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001007 * we use TCP_CORK where appropriate, though */
Philipp Reisner7da35862011-12-19 22:42:56 +01001008 drbd_tcp_nodelay(sock.socket);
1009 drbd_tcp_nodelay(msock.socket);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001010
Philipp Reisner7da35862011-12-19 22:42:56 +01001011 tconn->data.socket = sock.socket;
1012 tconn->meta.socket = msock.socket;
Philipp Reisner907599e2011-02-08 11:25:37 +01001013 tconn->last_received = jiffies;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001014
Andreas Gruenbacher60381782011-03-28 17:05:50 +02001015 h = drbd_do_features(tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001016 if (h <= 0)
1017 return h;
1018
Philipp Reisner907599e2011-02-08 11:25:37 +01001019 if (tconn->cram_hmac_tfm) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001020 /* drbd_request_state(mdev, NS(conn, WFAuth)); */
Philipp Reisner907599e2011-02-08 11:25:37 +01001021 switch (drbd_do_auth(tconn)) {
Johannes Thomab10d96c2010-01-07 16:02:50 +01001022 case -1:
Philipp Reisner907599e2011-02-08 11:25:37 +01001023 conn_err(tconn, "Authentication of peer failed\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07001024 return -1;
Johannes Thomab10d96c2010-01-07 16:02:50 +01001025 case 0:
Philipp Reisner907599e2011-02-08 11:25:37 +01001026 conn_err(tconn, "Authentication of peer failed, trying again.\n");
Johannes Thomab10d96c2010-01-07 16:02:50 +01001027 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001028 }
1029 }
1030
Philipp Reisner7da35862011-12-19 22:42:56 +01001031 tconn->data.socket->sk->sk_sndtimeo = timeout;
1032 tconn->data.socket->sk->sk_rcvtimeo = MAX_SCHEDULE_TIMEOUT;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001033
Andreas Gruenbacher387eb302011-03-16 01:05:37 +01001034 if (drbd_send_protocol(tconn) == -EOPNOTSUPP)
Philipp Reisner7e2455c2010-04-22 14:50:23 +02001035 return -1;
Philipp Reisner1e86ac42011-08-04 10:33:08 +02001036
Philipp Reisnera1096a62012-04-06 12:07:34 +02001037 set_bit(STATE_SENT, &tconn->flags);
Philipp Reisner197296f2012-03-26 16:47:11 +02001038
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02001039 rcu_read_lock();
1040 idr_for_each_entry(&tconn->volumes, mdev, vnr) {
1041 kref_get(&mdev->kref);
Philipp Reisner13c76ab2012-11-22 17:06:00 +01001042 /* Prevent a race between resync-handshake and
1043 * being promoted to Primary.
1044 *
1045 * Grab and release the state mutex, so we know that any current
1046 * drbd_set_role() is finished, and any incoming drbd_set_role
1047 * will see the STATE_SENT flag, and wait for it to be cleared.
1048 */
1049 mutex_lock(mdev->state_mutex);
1050 mutex_unlock(mdev->state_mutex);
1051
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02001052 rcu_read_unlock();
Philipp Reisner08b165b2011-09-05 16:22:33 +02001053
1054 if (discard_my_data)
1055 set_bit(DISCARD_MY_DATA, &mdev->flags);
1056 else
1057 clear_bit(DISCARD_MY_DATA, &mdev->flags);
1058
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02001059 drbd_connected(mdev);
1060 kref_put(&mdev->kref, &drbd_minor_destroy);
1061 rcu_read_lock();
1062 }
1063 rcu_read_unlock();
1064
Philipp Reisnera1096a62012-04-06 12:07:34 +02001065 rv = conn_request_state(tconn, NS(conn, C_WF_REPORT_PARAMS), CS_VERBOSE);
Lars Ellenberged635cb02012-11-05 11:54:30 +01001066 if (rv < SS_SUCCESS || tconn->cstate != C_WF_REPORT_PARAMS) {
Philipp Reisnera1096a62012-04-06 12:07:34 +02001067 clear_bit(STATE_SENT, &tconn->flags);
Philipp Reisner1e86ac42011-08-04 10:33:08 +02001068 return 0;
Philipp Reisnera1096a62012-04-06 12:07:34 +02001069 }
Philipp Reisner1e86ac42011-08-04 10:33:08 +02001070
Philipp Reisner823bd832012-11-08 15:04:36 +01001071 drbd_thread_start(&tconn->asender);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001072
Philipp Reisner08b165b2011-09-05 16:22:33 +02001073 mutex_lock(&tconn->conf_update);
1074 /* The discard_my_data flag is a single-shot modifier to the next
1075 * connection attempt, the handshake of which is now well underway.
1076 * No need for rcu style copying of the whole struct
1077 * just to clear a single value. */
1078 tconn->net_conf->discard_my_data = 0;
1079 mutex_unlock(&tconn->conf_update);
1080
Philipp Reisnerd3fcb492011-04-13 14:46:05 -07001081 return h;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001082
1083out_release_sockets:
Philipp Reisner7a426fd2012-07-12 14:22:37 +02001084 if (ad.s_listen)
1085 sock_release(ad.s_listen);
Philipp Reisner7da35862011-12-19 22:42:56 +01001086 if (sock.socket)
1087 sock_release(sock.socket);
1088 if (msock.socket)
1089 sock_release(msock.socket);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001090 return -1;
1091}
1092
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001093static int decode_header(struct drbd_tconn *tconn, void *header, struct packet_info *pi)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001094{
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001095 unsigned int header_size = drbd_header_size(tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001096
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +02001097 if (header_size == sizeof(struct p_header100) &&
1098 *(__be32 *)header == cpu_to_be32(DRBD_MAGIC_100)) {
1099 struct p_header100 *h = header;
1100 if (h->pad != 0) {
1101 conn_err(tconn, "Header padding is not zero\n");
1102 return -EINVAL;
1103 }
1104 pi->vnr = be16_to_cpu(h->volume);
1105 pi->cmd = be16_to_cpu(h->command);
1106 pi->size = be32_to_cpu(h->length);
1107 } else if (header_size == sizeof(struct p_header95) &&
1108 *(__be16 *)header == cpu_to_be16(DRBD_MAGIC_BIG)) {
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001109 struct p_header95 *h = header;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001110 pi->cmd = be16_to_cpu(h->command);
Andreas Gruenbacherb55d84b2011-03-22 13:17:47 +01001111 pi->size = be32_to_cpu(h->length);
1112 pi->vnr = 0;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001113 } else if (header_size == sizeof(struct p_header80) &&
1114 *(__be32 *)header == cpu_to_be32(DRBD_MAGIC)) {
1115 struct p_header80 *h = header;
1116 pi->cmd = be16_to_cpu(h->command);
1117 pi->size = be16_to_cpu(h->length);
Philipp Reisner77351055b2011-02-07 17:24:26 +01001118 pi->vnr = 0;
Philipp Reisner02918be2010-08-20 14:35:10 +02001119 } else {
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001120 conn_err(tconn, "Wrong magic value 0x%08x in protocol version %d\n",
1121 be32_to_cpu(*(__be32 *)header),
1122 tconn->agreed_pro_version);
Andreas Gruenbacher8172f3e2011-03-16 17:22:39 +01001123 return -EINVAL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001124 }
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001125 pi->data = header + header_size;
Andreas Gruenbacher8172f3e2011-03-16 17:22:39 +01001126 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001127}
1128
Philipp Reisner9ba7aa02011-02-07 17:32:41 +01001129static int drbd_recv_header(struct drbd_tconn *tconn, struct packet_info *pi)
Philipp Reisner257d0af2011-01-26 12:15:29 +01001130{
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001131 void *buffer = tconn->data.rbuf;
Andreas Gruenbacher69bc7bc2011-03-16 17:31:52 +01001132 int err;
Philipp Reisner257d0af2011-01-26 12:15:29 +01001133
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001134 err = drbd_recv_all_warn(tconn, buffer, drbd_header_size(tconn));
Andreas Gruenbachera5c31902011-03-24 03:28:04 +01001135 if (err)
Andreas Gruenbacher69bc7bc2011-03-16 17:31:52 +01001136 return err;
Philipp Reisner257d0af2011-01-26 12:15:29 +01001137
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001138 err = decode_header(tconn, buffer, pi);
Philipp Reisner9ba7aa02011-02-07 17:32:41 +01001139 tconn->last_received = jiffies;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001140
Andreas Gruenbacher69bc7bc2011-03-16 17:31:52 +01001141 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001142}
1143
Philipp Reisner4b0007c2011-11-09 20:12:34 +01001144static void drbd_flush(struct drbd_tconn *tconn)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001145{
1146 int rv;
Philipp Reisner4b0007c2011-11-09 20:12:34 +01001147 struct drbd_conf *mdev;
1148 int vnr;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001149
Philipp Reisner4b0007c2011-11-09 20:12:34 +01001150 if (tconn->write_ordering >= WO_bdev_flush) {
Lars Ellenberg615e0872011-11-17 14:32:12 +01001151 rcu_read_lock();
Philipp Reisner4b0007c2011-11-09 20:12:34 +01001152 idr_for_each_entry(&tconn->volumes, mdev, vnr) {
Lars Ellenberg615e0872011-11-17 14:32:12 +01001153 if (!get_ldev(mdev))
1154 continue;
1155 kref_get(&mdev->kref);
1156 rcu_read_unlock();
Philipp Reisner4b0007c2011-11-09 20:12:34 +01001157
Lars Ellenberg615e0872011-11-17 14:32:12 +01001158 rv = blkdev_issue_flush(mdev->ldev->backing_bdev,
1159 GFP_NOIO, NULL);
1160 if (rv) {
1161 dev_info(DEV, "local disk flush failed with status %d\n", rv);
1162 /* would rather check on EOPNOTSUPP, but that is not reliable.
1163 * don't try again for ANY return value != 0
1164 * if (rv == -EOPNOTSUPP) */
1165 drbd_bump_write_ordering(tconn, WO_drain_io);
Philipp Reisner4b0007c2011-11-09 20:12:34 +01001166 }
Lars Ellenberg615e0872011-11-17 14:32:12 +01001167 put_ldev(mdev);
1168 kref_put(&mdev->kref, &drbd_minor_destroy);
1169
1170 rcu_read_lock();
1171 if (rv)
1172 break;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001173 }
Lars Ellenberg615e0872011-11-17 14:32:12 +01001174 rcu_read_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -07001175 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001176}
1177
1178/**
1179 * drbd_may_finish_epoch() - Applies an epoch_event to the epoch's state, eventually finishes it.
1180 * @mdev: DRBD device.
1181 * @epoch: Epoch object.
1182 * @ev: Epoch event.
1183 */
Philipp Reisner1e9dd292011-11-10 15:14:53 +01001184static enum finish_epoch drbd_may_finish_epoch(struct drbd_tconn *tconn,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001185 struct drbd_epoch *epoch,
1186 enum epoch_event ev)
1187{
Philipp Reisner2451fc32010-08-24 13:43:11 +02001188 int epoch_size;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001189 struct drbd_epoch *next_epoch;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001190 enum finish_epoch rv = FE_STILL_LIVE;
1191
Philipp Reisner12038a32011-11-09 19:18:00 +01001192 spin_lock(&tconn->epoch_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001193 do {
1194 next_epoch = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001195
1196 epoch_size = atomic_read(&epoch->epoch_size);
1197
1198 switch (ev & ~EV_CLEANUP) {
1199 case EV_PUT:
1200 atomic_dec(&epoch->active);
1201 break;
1202 case EV_GOT_BARRIER_NR:
1203 set_bit(DE_HAVE_BARRIER_NUMBER, &epoch->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001204 break;
1205 case EV_BECAME_LAST:
1206 /* nothing to do*/
1207 break;
1208 }
1209
Philipp Reisnerb411b362009-09-25 16:07:19 -07001210 if (epoch_size != 0 &&
1211 atomic_read(&epoch->active) == 0 &&
Philipp Reisner80f9fd52011-07-18 15:45:15 +02001212 (test_bit(DE_HAVE_BARRIER_NUMBER, &epoch->flags) || ev & EV_CLEANUP)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001213 if (!(ev & EV_CLEANUP)) {
Philipp Reisner12038a32011-11-09 19:18:00 +01001214 spin_unlock(&tconn->epoch_lock);
Lars Ellenberg9ed57dc2012-03-26 20:55:17 +02001215 drbd_send_b_ack(epoch->tconn, epoch->barrier_nr, epoch_size);
Philipp Reisner12038a32011-11-09 19:18:00 +01001216 spin_lock(&tconn->epoch_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001217 }
Lars Ellenberg9ed57dc2012-03-26 20:55:17 +02001218#if 0
1219 /* FIXME: dec unacked on connection, once we have
1220 * something to count pending connection packets in. */
Philipp Reisner80f9fd52011-07-18 15:45:15 +02001221 if (test_bit(DE_HAVE_BARRIER_NUMBER, &epoch->flags))
Lars Ellenberg9ed57dc2012-03-26 20:55:17 +02001222 dec_unacked(epoch->tconn);
1223#endif
Philipp Reisnerb411b362009-09-25 16:07:19 -07001224
Philipp Reisner12038a32011-11-09 19:18:00 +01001225 if (tconn->current_epoch != epoch) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001226 next_epoch = list_entry(epoch->list.next, struct drbd_epoch, list);
1227 list_del(&epoch->list);
1228 ev = EV_BECAME_LAST | (ev & EV_CLEANUP);
Philipp Reisner12038a32011-11-09 19:18:00 +01001229 tconn->epochs--;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001230 kfree(epoch);
1231
1232 if (rv == FE_STILL_LIVE)
1233 rv = FE_DESTROYED;
1234 } else {
1235 epoch->flags = 0;
1236 atomic_set(&epoch->epoch_size, 0);
Uwe Kleine-König698f9312010-07-02 20:41:51 +02001237 /* atomic_set(&epoch->active, 0); is already zero */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001238 if (rv == FE_STILL_LIVE)
1239 rv = FE_RECYCLED;
1240 }
1241 }
1242
1243 if (!next_epoch)
1244 break;
1245
1246 epoch = next_epoch;
1247 } while (1);
1248
Philipp Reisner12038a32011-11-09 19:18:00 +01001249 spin_unlock(&tconn->epoch_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001250
Philipp Reisnerb411b362009-09-25 16:07:19 -07001251 return rv;
1252}
1253
1254/**
1255 * drbd_bump_write_ordering() - Fall back to an other write ordering method
Philipp Reisner4b0007c2011-11-09 20:12:34 +01001256 * @tconn: DRBD connection.
Philipp Reisnerb411b362009-09-25 16:07:19 -07001257 * @wo: Write ordering method to try.
1258 */
Philipp Reisner4b0007c2011-11-09 20:12:34 +01001259void drbd_bump_write_ordering(struct drbd_tconn *tconn, enum write_ordering_e wo)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001260{
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +02001261 struct disk_conf *dc;
Philipp Reisner4b0007c2011-11-09 20:12:34 +01001262 struct drbd_conf *mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001263 enum write_ordering_e pwo;
Philipp Reisner4b0007c2011-11-09 20:12:34 +01001264 int vnr;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001265 static char *write_ordering_str[] = {
1266 [WO_none] = "none",
1267 [WO_drain_io] = "drain",
1268 [WO_bdev_flush] = "flush",
Philipp Reisnerb411b362009-09-25 16:07:19 -07001269 };
1270
Philipp Reisner4b0007c2011-11-09 20:12:34 +01001271 pwo = tconn->write_ordering;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001272 wo = min(pwo, wo);
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +02001273 rcu_read_lock();
Philipp Reisner4b0007c2011-11-09 20:12:34 +01001274 idr_for_each_entry(&tconn->volumes, mdev, vnr) {
Philipp Reisner27eb13e2012-03-30 14:12:15 +02001275 if (!get_ldev_if_state(mdev, D_ATTACHING))
Philipp Reisner4b0007c2011-11-09 20:12:34 +01001276 continue;
1277 dc = rcu_dereference(mdev->ldev->disk_conf);
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +02001278
Philipp Reisner4b0007c2011-11-09 20:12:34 +01001279 if (wo == WO_bdev_flush && !dc->disk_flushes)
1280 wo = WO_drain_io;
1281 if (wo == WO_drain_io && !dc->disk_drain)
1282 wo = WO_none;
1283 put_ldev(mdev);
1284 }
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +02001285 rcu_read_unlock();
Philipp Reisner4b0007c2011-11-09 20:12:34 +01001286 tconn->write_ordering = wo;
1287 if (pwo != tconn->write_ordering || wo == WO_bdev_flush)
1288 conn_info(tconn, "Method to ensure write ordering: %s\n", write_ordering_str[tconn->write_ordering]);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001289}
1290
1291/**
Andreas Gruenbacherfbe29de2011-02-17 16:38:35 +01001292 * drbd_submit_peer_request()
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001293 * @mdev: DRBD device.
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001294 * @peer_req: peer request
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001295 * @rw: flag field, see bio->bi_rw
Lars Ellenberg10f6d9922011-01-24 14:47:09 +01001296 *
1297 * May spread the pages to multiple bios,
1298 * depending on bio_add_page restrictions.
1299 *
1300 * Returns 0 if all bios have been submitted,
1301 * -ENOMEM if we could not allocate enough bios,
1302 * -ENOSPC (any better suggestion?) if we have not been able to bio_add_page a
1303 * single page to an empty bio (which should never happen and likely indicates
1304 * that the lower level IO stack is in some way broken). This has been observed
1305 * on certain Xen deployments.
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001306 */
1307/* TODO allocate from our own bio_set. */
Andreas Gruenbacherfbe29de2011-02-17 16:38:35 +01001308int drbd_submit_peer_request(struct drbd_conf *mdev,
1309 struct drbd_peer_request *peer_req,
1310 const unsigned rw, const int fault_type)
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001311{
1312 struct bio *bios = NULL;
1313 struct bio *bio;
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001314 struct page *page = peer_req->pages;
1315 sector_t sector = peer_req->i.sector;
1316 unsigned ds = peer_req->i.size;
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001317 unsigned n_bios = 0;
1318 unsigned nr_pages = (ds + PAGE_SIZE -1) >> PAGE_SHIFT;
Lars Ellenberg10f6d9922011-01-24 14:47:09 +01001319 int err = -ENOMEM;
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001320
1321 /* In most cases, we will only need one bio. But in case the lower
1322 * level restrictions happen to be different at this offset on this
1323 * side than those of the sending peer, we may need to submit the
Lars Ellenberg9476f392011-02-23 17:02:01 +01001324 * request in more than one bio.
1325 *
1326 * Plain bio_alloc is good enough here, this is no DRBD internally
1327 * generated bio, but a bio allocated on behalf of the peer.
1328 */
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001329next_bio:
1330 bio = bio_alloc(GFP_NOIO, nr_pages);
1331 if (!bio) {
1332 dev_err(DEV, "submit_ee: Allocation of a bio failed\n");
1333 goto fail;
1334 }
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001335 /* > peer_req->i.sector, unless this is the first bio */
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001336 bio->bi_sector = sector;
1337 bio->bi_bdev = mdev->ldev->backing_bdev;
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001338 bio->bi_rw = rw;
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001339 bio->bi_private = peer_req;
Andreas Gruenbacherfcefa622011-02-17 16:46:59 +01001340 bio->bi_end_io = drbd_peer_request_endio;
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001341
1342 bio->bi_next = bios;
1343 bios = bio;
1344 ++n_bios;
1345
1346 page_chain_for_each(page) {
1347 unsigned len = min_t(unsigned, ds, PAGE_SIZE);
1348 if (!bio_add_page(bio, page, len, 0)) {
Lars Ellenberg10f6d9922011-01-24 14:47:09 +01001349 /* A single page must always be possible!
1350 * But in case it fails anyways,
1351 * we deal with it, and complain (below). */
1352 if (bio->bi_vcnt == 0) {
1353 dev_err(DEV,
1354 "bio_add_page failed for len=%u, "
1355 "bi_vcnt=0 (bi_sector=%llu)\n",
1356 len, (unsigned long long)bio->bi_sector);
1357 err = -ENOSPC;
1358 goto fail;
1359 }
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001360 goto next_bio;
1361 }
1362 ds -= len;
1363 sector += len >> 9;
1364 --nr_pages;
1365 }
1366 D_ASSERT(page == NULL);
1367 D_ASSERT(ds == 0);
1368
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001369 atomic_set(&peer_req->pending_bios, n_bios);
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001370 do {
1371 bio = bios;
1372 bios = bios->bi_next;
1373 bio->bi_next = NULL;
1374
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001375 drbd_generic_make_request(mdev, fault_type, bio);
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001376 } while (bios);
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001377 return 0;
1378
1379fail:
1380 while (bios) {
1381 bio = bios;
1382 bios = bios->bi_next;
1383 bio_put(bio);
1384 }
Lars Ellenberg10f6d9922011-01-24 14:47:09 +01001385 return err;
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001386}
1387
Andreas Gruenbacher53840642011-01-28 10:31:04 +01001388static void drbd_remove_epoch_entry_interval(struct drbd_conf *mdev,
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001389 struct drbd_peer_request *peer_req)
Andreas Gruenbacher53840642011-01-28 10:31:04 +01001390{
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001391 struct drbd_interval *i = &peer_req->i;
Andreas Gruenbacher53840642011-01-28 10:31:04 +01001392
1393 drbd_remove_interval(&mdev->write_requests, i);
1394 drbd_clear_interval(i);
1395
Andreas Gruenbacher6c852be2011-02-04 15:38:52 +01001396 /* Wake up any processes waiting for this peer request to complete. */
Andreas Gruenbacher53840642011-01-28 10:31:04 +01001397 if (i->waiting)
1398 wake_up(&mdev->misc_wait);
1399}
1400
Philipp Reisner77fede52011-11-10 21:19:11 +01001401void conn_wait_active_ee_empty(struct drbd_tconn *tconn)
1402{
1403 struct drbd_conf *mdev;
1404 int vnr;
1405
1406 rcu_read_lock();
1407 idr_for_each_entry(&tconn->volumes, mdev, vnr) {
1408 kref_get(&mdev->kref);
1409 rcu_read_unlock();
1410 drbd_wait_ee_list_empty(mdev, &mdev->active_ee);
1411 kref_put(&mdev->kref, &drbd_minor_destroy);
1412 rcu_read_lock();
1413 }
1414 rcu_read_unlock();
1415}
1416
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01001417static int receive_Barrier(struct drbd_tconn *tconn, struct packet_info *pi)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001418{
Philipp Reisner2451fc32010-08-24 13:43:11 +02001419 int rv;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001420 struct p_barrier *p = pi->data;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001421 struct drbd_epoch *epoch;
1422
Lars Ellenberg9ed57dc2012-03-26 20:55:17 +02001423 /* FIXME these are unacked on connection,
1424 * not a specific (peer)device.
1425 */
Philipp Reisner12038a32011-11-09 19:18:00 +01001426 tconn->current_epoch->barrier_nr = p->barrier;
Lars Ellenberg9ed57dc2012-03-26 20:55:17 +02001427 tconn->current_epoch->tconn = tconn;
Philipp Reisner1e9dd292011-11-10 15:14:53 +01001428 rv = drbd_may_finish_epoch(tconn, tconn->current_epoch, EV_GOT_BARRIER_NR);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001429
1430 /* P_BARRIER_ACK may imply that the corresponding extent is dropped from
1431 * the activity log, which means it would not be resynced in case the
1432 * R_PRIMARY crashes now.
1433 * Therefore we must send the barrier_ack after the barrier request was
1434 * completed. */
Philipp Reisner4b0007c2011-11-09 20:12:34 +01001435 switch (tconn->write_ordering) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001436 case WO_none:
1437 if (rv == FE_RECYCLED)
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01001438 return 0;
Philipp Reisner2451fc32010-08-24 13:43:11 +02001439
1440 /* receiver context, in the writeout path of the other node.
1441 * avoid potential distributed deadlock */
1442 epoch = kmalloc(sizeof(struct drbd_epoch), GFP_NOIO);
1443 if (epoch)
1444 break;
1445 else
Lars Ellenberg9ed57dc2012-03-26 20:55:17 +02001446 conn_warn(tconn, "Allocation of an epoch failed, slowing down\n");
Philipp Reisner2451fc32010-08-24 13:43:11 +02001447 /* Fall through */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001448
1449 case WO_bdev_flush:
1450 case WO_drain_io:
Philipp Reisner77fede52011-11-10 21:19:11 +01001451 conn_wait_active_ee_empty(tconn);
Philipp Reisner4b0007c2011-11-09 20:12:34 +01001452 drbd_flush(tconn);
Philipp Reisner2451fc32010-08-24 13:43:11 +02001453
Philipp Reisner12038a32011-11-09 19:18:00 +01001454 if (atomic_read(&tconn->current_epoch->epoch_size)) {
Philipp Reisner2451fc32010-08-24 13:43:11 +02001455 epoch = kmalloc(sizeof(struct drbd_epoch), GFP_NOIO);
1456 if (epoch)
1457 break;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001458 }
1459
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01001460 return 0;
Philipp Reisner2451fc32010-08-24 13:43:11 +02001461 default:
Lars Ellenberg9ed57dc2012-03-26 20:55:17 +02001462 conn_err(tconn, "Strangeness in tconn->write_ordering %d\n", tconn->write_ordering);
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01001463 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001464 }
1465
1466 epoch->flags = 0;
1467 atomic_set(&epoch->epoch_size, 0);
1468 atomic_set(&epoch->active, 0);
1469
Philipp Reisner12038a32011-11-09 19:18:00 +01001470 spin_lock(&tconn->epoch_lock);
1471 if (atomic_read(&tconn->current_epoch->epoch_size)) {
1472 list_add(&epoch->list, &tconn->current_epoch->list);
1473 tconn->current_epoch = epoch;
1474 tconn->epochs++;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001475 } else {
1476 /* The current_epoch got recycled while we allocated this one... */
1477 kfree(epoch);
1478 }
Philipp Reisner12038a32011-11-09 19:18:00 +01001479 spin_unlock(&tconn->epoch_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001480
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01001481 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001482}
1483
1484/* used from receive_RSDataReply (recv_resync_read)
1485 * and from receive_Data */
Andreas Gruenbacherf6ffca92011-02-04 15:30:34 +01001486static struct drbd_peer_request *
1487read_in_block(struct drbd_conf *mdev, u64 id, sector_t sector,
1488 int data_size) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001489{
Lars Ellenberg66660322010-04-06 12:15:04 +02001490 const sector_t capacity = drbd_get_capacity(mdev->this_bdev);
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001491 struct drbd_peer_request *peer_req;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001492 struct page *page;
Andreas Gruenbachera5c31902011-03-24 03:28:04 +01001493 int dgs, ds, err;
Philipp Reisnera0638452011-01-19 14:31:32 +01001494 void *dig_in = mdev->tconn->int_dig_in;
1495 void *dig_vv = mdev->tconn->int_dig_vv;
Philipp Reisner6b4388a2010-04-26 14:11:45 +02001496 unsigned long *data;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001497
Andreas Gruenbacher88104ca2011-04-28 21:47:21 +02001498 dgs = 0;
1499 if (mdev->tconn->peer_integrity_tfm) {
1500 dgs = crypto_hash_digestsize(mdev->tconn->peer_integrity_tfm);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001501 /*
1502 * FIXME: Receive the incoming digest into the receive buffer
1503 * here, together with its struct p_data?
1504 */
Andreas Gruenbachera5c31902011-03-24 03:28:04 +01001505 err = drbd_recv_all_warn(mdev->tconn, dig_in, dgs);
1506 if (err)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001507 return NULL;
Andreas Gruenbacher88104ca2011-04-28 21:47:21 +02001508 data_size -= dgs;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001509 }
1510
Andreas Gruenbacher841ce242010-12-15 19:31:20 +01001511 if (!expect(IS_ALIGNED(data_size, 512)))
1512 return NULL;
1513 if (!expect(data_size <= DRBD_MAX_BIO_SIZE))
1514 return NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001515
Lars Ellenberg66660322010-04-06 12:15:04 +02001516 /* even though we trust out peer,
1517 * we sometimes have to double check. */
1518 if (sector + (data_size>>9) > capacity) {
Lars Ellenbergfdda6542011-01-24 15:11:01 +01001519 dev_err(DEV, "request from peer beyond end of local disk: "
1520 "capacity: %llus < sector: %llus + size: %u\n",
Lars Ellenberg66660322010-04-06 12:15:04 +02001521 (unsigned long long)capacity,
1522 (unsigned long long)sector, data_size);
1523 return NULL;
1524 }
1525
Philipp Reisnerb411b362009-09-25 16:07:19 -07001526 /* GFP_NOIO, because we must not cause arbitrary write-out: in a DRBD
1527 * "criss-cross" setup, that might cause write-out on some other DRBD,
1528 * which in turn might block on the other node at this very place. */
Andreas Gruenbacher0db55362011-04-06 16:09:15 +02001529 peer_req = drbd_alloc_peer_req(mdev, id, sector, data_size, GFP_NOIO);
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001530 if (!peer_req)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001531 return NULL;
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001532
Lars Ellenberga73ff322012-06-25 19:15:38 +02001533 if (!data_size)
Lars Ellenberg81a35372012-07-30 09:00:54 +02001534 return peer_req;
Lars Ellenberga73ff322012-06-25 19:15:38 +02001535
Philipp Reisnerb411b362009-09-25 16:07:19 -07001536 ds = data_size;
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001537 page = peer_req->pages;
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001538 page_chain_for_each(page) {
1539 unsigned len = min_t(int, ds, PAGE_SIZE);
Philipp Reisner6b4388a2010-04-26 14:11:45 +02001540 data = kmap(page);
Andreas Gruenbachera5c31902011-03-24 03:28:04 +01001541 err = drbd_recv_all_warn(mdev->tconn, data, len);
Andreas Gruenbacher0cf9d272010-12-07 10:43:29 +01001542 if (drbd_insert_fault(mdev, DRBD_FAULT_RECEIVE)) {
Philipp Reisner6b4388a2010-04-26 14:11:45 +02001543 dev_err(DEV, "Fault injection: Corrupting data on receive\n");
1544 data[0] = data[0] ^ (unsigned long)-1;
1545 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001546 kunmap(page);
Andreas Gruenbachera5c31902011-03-24 03:28:04 +01001547 if (err) {
Andreas Gruenbacher3967deb2011-04-06 16:16:56 +02001548 drbd_free_peer_req(mdev, peer_req);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001549 return NULL;
1550 }
Andreas Gruenbachera5c31902011-03-24 03:28:04 +01001551 ds -= len;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001552 }
1553
1554 if (dgs) {
Andreas Gruenbacher5b614ab2011-04-27 21:00:12 +02001555 drbd_csum_ee(mdev, mdev->tconn->peer_integrity_tfm, peer_req, dig_vv);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001556 if (memcmp(dig_in, dig_vv, dgs)) {
Lars Ellenberg470be442010-11-10 10:36:52 +01001557 dev_err(DEV, "Digest integrity check FAILED: %llus +%u\n",
1558 (unsigned long long)sector, data_size);
Andreas Gruenbacher3967deb2011-04-06 16:16:56 +02001559 drbd_free_peer_req(mdev, peer_req);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001560 return NULL;
1561 }
1562 }
1563 mdev->recv_cnt += data_size>>9;
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001564 return peer_req;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001565}
1566
1567/* drbd_drain_block() just takes a data block
1568 * out of the socket input buffer, and discards it.
1569 */
1570static int drbd_drain_block(struct drbd_conf *mdev, int data_size)
1571{
1572 struct page *page;
Andreas Gruenbachera5c31902011-03-24 03:28:04 +01001573 int err = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001574 void *data;
1575
Lars Ellenbergc3470cd2010-04-01 16:57:19 +02001576 if (!data_size)
Andreas Gruenbacherfc5be832011-03-16 17:50:50 +01001577 return 0;
Lars Ellenbergc3470cd2010-04-01 16:57:19 +02001578
Andreas Gruenbacherc37c8ec2011-04-07 21:02:09 +02001579 page = drbd_alloc_pages(mdev, 1, 1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001580
1581 data = kmap(page);
1582 while (data_size) {
Andreas Gruenbacherfc5be832011-03-16 17:50:50 +01001583 unsigned int len = min_t(int, data_size, PAGE_SIZE);
1584
Andreas Gruenbachera5c31902011-03-24 03:28:04 +01001585 err = drbd_recv_all_warn(mdev->tconn, data, len);
1586 if (err)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001587 break;
Andreas Gruenbachera5c31902011-03-24 03:28:04 +01001588 data_size -= len;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001589 }
1590 kunmap(page);
Andreas Gruenbacher5cc287e2011-04-07 21:02:59 +02001591 drbd_free_pages(mdev, page, 0);
Andreas Gruenbacherfc5be832011-03-16 17:50:50 +01001592 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001593}
1594
1595static int recv_dless_read(struct drbd_conf *mdev, struct drbd_request *req,
1596 sector_t sector, int data_size)
1597{
1598 struct bio_vec *bvec;
1599 struct bio *bio;
Andreas Gruenbachera5c31902011-03-24 03:28:04 +01001600 int dgs, err, i, expect;
Philipp Reisnera0638452011-01-19 14:31:32 +01001601 void *dig_in = mdev->tconn->int_dig_in;
1602 void *dig_vv = mdev->tconn->int_dig_vv;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001603
Andreas Gruenbacher88104ca2011-04-28 21:47:21 +02001604 dgs = 0;
1605 if (mdev->tconn->peer_integrity_tfm) {
1606 dgs = crypto_hash_digestsize(mdev->tconn->peer_integrity_tfm);
Andreas Gruenbachera5c31902011-03-24 03:28:04 +01001607 err = drbd_recv_all_warn(mdev->tconn, dig_in, dgs);
1608 if (err)
1609 return err;
Andreas Gruenbacher88104ca2011-04-28 21:47:21 +02001610 data_size -= dgs;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001611 }
1612
Philipp Reisnerb411b362009-09-25 16:07:19 -07001613 /* optimistically update recv_cnt. if receiving fails below,
1614 * we disconnect anyways, and counters will be reset. */
1615 mdev->recv_cnt += data_size>>9;
1616
1617 bio = req->master_bio;
1618 D_ASSERT(sector == bio->bi_sector);
1619
1620 bio_for_each_segment(bvec, bio, i) {
Andreas Gruenbachera5c31902011-03-24 03:28:04 +01001621 void *mapped = kmap(bvec->bv_page) + bvec->bv_offset;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001622 expect = min_t(int, data_size, bvec->bv_len);
Andreas Gruenbachera5c31902011-03-24 03:28:04 +01001623 err = drbd_recv_all_warn(mdev->tconn, mapped, expect);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001624 kunmap(bvec->bv_page);
Andreas Gruenbachera5c31902011-03-24 03:28:04 +01001625 if (err)
1626 return err;
1627 data_size -= expect;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001628 }
1629
1630 if (dgs) {
Andreas Gruenbacher5b614ab2011-04-27 21:00:12 +02001631 drbd_csum_bio(mdev, mdev->tconn->peer_integrity_tfm, bio, dig_vv);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001632 if (memcmp(dig_in, dig_vv, dgs)) {
1633 dev_err(DEV, "Digest integrity check FAILED. Broken NICs?\n");
Andreas Gruenbacher28284ce2011-03-16 17:54:02 +01001634 return -EINVAL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001635 }
1636 }
1637
1638 D_ASSERT(data_size == 0);
Andreas Gruenbacher28284ce2011-03-16 17:54:02 +01001639 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001640}
1641
Andreas Gruenbachera990be42011-04-06 17:56:48 +02001642/*
1643 * e_end_resync_block() is called in asender context via
1644 * drbd_finish_peer_reqs().
1645 */
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001646static int e_end_resync_block(struct drbd_work *w, int unused)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001647{
Andreas Gruenbacher8050e6d2011-02-18 16:12:48 +01001648 struct drbd_peer_request *peer_req =
1649 container_of(w, struct drbd_peer_request, w);
Philipp Reisner00d56942011-02-09 18:09:48 +01001650 struct drbd_conf *mdev = w->mdev;
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001651 sector_t sector = peer_req->i.sector;
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001652 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001653
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001654 D_ASSERT(drbd_interval_empty(&peer_req->i));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001655
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001656 if (likely((peer_req->flags & EE_WAS_ERROR) == 0)) {
1657 drbd_set_in_sync(mdev, sector, peer_req->i.size);
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001658 err = drbd_send_ack(mdev, P_RS_WRITE_ACK, peer_req);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001659 } else {
1660 /* Record failure to sync */
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001661 drbd_rs_failed_io(mdev, sector, peer_req->i.size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001662
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001663 err = drbd_send_ack(mdev, P_NEG_ACK, peer_req);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001664 }
1665 dec_unacked(mdev);
1666
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001667 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001668}
1669
1670static int recv_resync_read(struct drbd_conf *mdev, sector_t sector, int data_size) __releases(local)
1671{
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001672 struct drbd_peer_request *peer_req;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001673
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001674 peer_req = read_in_block(mdev, ID_SYNCER, sector, data_size);
1675 if (!peer_req)
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001676 goto fail;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001677
1678 dec_rs_pending(mdev);
1679
Philipp Reisnerb411b362009-09-25 16:07:19 -07001680 inc_unacked(mdev);
1681 /* corresponding dec_unacked() in e_end_resync_block()
1682 * respective _drbd_clear_done_ee */
1683
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001684 peer_req->w.cb = e_end_resync_block;
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001685
Philipp Reisner87eeee42011-01-19 14:16:30 +01001686 spin_lock_irq(&mdev->tconn->req_lock);
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001687 list_add(&peer_req->w.list, &mdev->sync_ee);
Philipp Reisner87eeee42011-01-19 14:16:30 +01001688 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001689
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02001690 atomic_add(data_size >> 9, &mdev->rs_sect_ev);
Andreas Gruenbacherfbe29de2011-02-17 16:38:35 +01001691 if (drbd_submit_peer_request(mdev, peer_req, WRITE, DRBD_FAULT_RS_WR) == 0)
Andreas Gruenbachere1c1b0f2011-03-16 17:58:27 +01001692 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001693
Lars Ellenberg10f6d9922011-01-24 14:47:09 +01001694 /* don't care for the reason here */
1695 dev_err(DEV, "submit failed, triggering re-connect\n");
Philipp Reisner87eeee42011-01-19 14:16:30 +01001696 spin_lock_irq(&mdev->tconn->req_lock);
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001697 list_del(&peer_req->w.list);
Philipp Reisner87eeee42011-01-19 14:16:30 +01001698 spin_unlock_irq(&mdev->tconn->req_lock);
Lars Ellenberg22cc37a2010-09-14 20:40:41 +02001699
Andreas Gruenbacher3967deb2011-04-06 16:16:56 +02001700 drbd_free_peer_req(mdev, peer_req);
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001701fail:
1702 put_ldev(mdev);
Andreas Gruenbachere1c1b0f2011-03-16 17:58:27 +01001703 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001704}
1705
Andreas Gruenbacher668eebc2011-01-20 17:14:26 +01001706static struct drbd_request *
Andreas Gruenbacherbc9c5c42011-01-21 18:00:55 +01001707find_request(struct drbd_conf *mdev, struct rb_root *root, u64 id,
1708 sector_t sector, bool missing_ok, const char *func)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001709{
1710 struct drbd_request *req;
Andreas Gruenbacher668eebc2011-01-20 17:14:26 +01001711
Andreas Gruenbacherbc9c5c42011-01-21 18:00:55 +01001712 /* Request object according to our peer */
1713 req = (struct drbd_request *)(unsigned long)id;
Andreas Gruenbacher5e472262011-01-27 14:42:51 +01001714 if (drbd_contains_interval(root, sector, &req->i) && req->i.local)
Andreas Gruenbacher668eebc2011-01-20 17:14:26 +01001715 return req;
Andreas Gruenbacherc3afd8f2011-01-20 22:25:40 +01001716 if (!missing_ok) {
Andreas Gruenbacher5af172e2011-07-15 09:43:23 +02001717 dev_err(DEV, "%s: failed to find request 0x%lx, sector %llus\n", func,
Andreas Gruenbacherc3afd8f2011-01-20 22:25:40 +01001718 (unsigned long)id, (unsigned long long)sector);
1719 }
Andreas Gruenbacher668eebc2011-01-20 17:14:26 +01001720 return NULL;
1721}
1722
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01001723static int receive_DataReply(struct drbd_tconn *tconn, struct packet_info *pi)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001724{
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01001725 struct drbd_conf *mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001726 struct drbd_request *req;
1727 sector_t sector;
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01001728 int err;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001729 struct p_data *p = pi->data;
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01001730
1731 mdev = vnr_to_mdev(tconn, pi->vnr);
1732 if (!mdev)
1733 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001734
1735 sector = be64_to_cpu(p->sector);
1736
Philipp Reisner87eeee42011-01-19 14:16:30 +01001737 spin_lock_irq(&mdev->tconn->req_lock);
Andreas Gruenbacherbc9c5c42011-01-21 18:00:55 +01001738 req = find_request(mdev, &mdev->read_requests, p->block_id, sector, false, __func__);
Philipp Reisner87eeee42011-01-19 14:16:30 +01001739 spin_unlock_irq(&mdev->tconn->req_lock);
Andreas Gruenbacherc3afd8f2011-01-20 22:25:40 +01001740 if (unlikely(!req))
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01001741 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001742
Bart Van Assche24c48302011-05-21 18:32:29 +02001743 /* hlist_del(&req->collision) is done in _req_may_be_done, to avoid
Philipp Reisnerb411b362009-09-25 16:07:19 -07001744 * special casing it there for the various failure cases.
1745 * still no race with drbd_fail_pending_reads */
Andreas Gruenbachere2857212011-03-25 00:57:38 +01001746 err = recv_dless_read(mdev, req, sector, pi->size);
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01001747 if (!err)
Andreas Gruenbacher8554df12011-01-25 15:37:43 +01001748 req_mod(req, DATA_RECEIVED);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001749 /* else: nothing. handled from drbd_disconnect...
1750 * I don't think we may complete this just yet
1751 * in case we are "on-disconnect: freeze" */
1752
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01001753 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001754}
1755
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01001756static int receive_RSDataReply(struct drbd_tconn *tconn, struct packet_info *pi)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001757{
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01001758 struct drbd_conf *mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001759 sector_t sector;
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01001760 int err;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001761 struct p_data *p = pi->data;
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01001762
1763 mdev = vnr_to_mdev(tconn, pi->vnr);
1764 if (!mdev)
1765 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001766
1767 sector = be64_to_cpu(p->sector);
1768 D_ASSERT(p->block_id == ID_SYNCER);
1769
1770 if (get_ldev(mdev)) {
1771 /* data is submitted to disk within recv_resync_read.
1772 * corresponding put_ldev done below on error,
Andreas Gruenbacherfcefa622011-02-17 16:46:59 +01001773 * or in drbd_peer_request_endio. */
Andreas Gruenbachere2857212011-03-25 00:57:38 +01001774 err = recv_resync_read(mdev, sector, pi->size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001775 } else {
1776 if (__ratelimit(&drbd_ratelimit_state))
1777 dev_err(DEV, "Can not write resync data to local disk.\n");
1778
Andreas Gruenbachere2857212011-03-25 00:57:38 +01001779 err = drbd_drain_block(mdev, pi->size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001780
Andreas Gruenbachere2857212011-03-25 00:57:38 +01001781 drbd_send_ack_dp(mdev, P_NEG_ACK, p, pi->size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001782 }
1783
Andreas Gruenbachere2857212011-03-25 00:57:38 +01001784 atomic_add(pi->size >> 9, &mdev->rs_sect_in);
Philipp Reisner778f2712010-07-06 11:14:00 +02001785
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01001786 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001787}
1788
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01001789static void restart_conflicting_writes(struct drbd_conf *mdev,
1790 sector_t sector, int size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001791{
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01001792 struct drbd_interval *i;
1793 struct drbd_request *req;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001794
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01001795 drbd_for_each_overlap(i, &mdev->write_requests, sector, size) {
1796 if (!i->local)
1797 continue;
1798 req = container_of(i, struct drbd_request, i);
1799 if (req->rq_state & RQ_LOCAL_PENDING ||
1800 !(req->rq_state & RQ_POSTPONED))
1801 continue;
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01001802 /* as it is RQ_POSTPONED, this will cause it to
1803 * be queued on the retry workqueue. */
Lars Ellenbergd4dabbe2012-08-01 12:33:51 +02001804 __req_mod(req, CONFLICT_RESOLVED, NULL);
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01001805 }
1806}
1807
Andreas Gruenbachera990be42011-04-06 17:56:48 +02001808/*
1809 * e_end_block() is called in asender context via drbd_finish_peer_reqs().
Philipp Reisnerb411b362009-09-25 16:07:19 -07001810 */
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001811static int e_end_block(struct drbd_work *w, int cancel)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001812{
Andreas Gruenbacher8050e6d2011-02-18 16:12:48 +01001813 struct drbd_peer_request *peer_req =
1814 container_of(w, struct drbd_peer_request, w);
Philipp Reisner00d56942011-02-09 18:09:48 +01001815 struct drbd_conf *mdev = w->mdev;
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001816 sector_t sector = peer_req->i.sector;
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001817 int err = 0, pcmd;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001818
Philipp Reisner303d1442011-04-13 16:24:47 -07001819 if (peer_req->flags & EE_SEND_WRITE_ACK) {
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001820 if (likely((peer_req->flags & EE_WAS_ERROR) == 0)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001821 pcmd = (mdev->state.conn >= C_SYNC_SOURCE &&
1822 mdev->state.conn <= C_PAUSED_SYNC_T &&
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001823 peer_req->flags & EE_MAY_SET_IN_SYNC) ?
Philipp Reisnerb411b362009-09-25 16:07:19 -07001824 P_RS_WRITE_ACK : P_WRITE_ACK;
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001825 err = drbd_send_ack(mdev, pcmd, peer_req);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001826 if (pcmd == P_RS_WRITE_ACK)
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001827 drbd_set_in_sync(mdev, sector, peer_req->i.size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001828 } else {
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001829 err = drbd_send_ack(mdev, P_NEG_ACK, peer_req);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001830 /* we expect it to be marked out of sync anyways...
1831 * maybe assert this? */
1832 }
1833 dec_unacked(mdev);
1834 }
1835 /* we delete from the conflict detection hash _after_ we sent out the
1836 * P_WRITE_ACK / P_NEG_ACK, to get the sequence number right. */
Philipp Reisner302bdea2011-04-21 11:36:49 +02001837 if (peer_req->flags & EE_IN_INTERVAL_TREE) {
Philipp Reisner87eeee42011-01-19 14:16:30 +01001838 spin_lock_irq(&mdev->tconn->req_lock);
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001839 D_ASSERT(!drbd_interval_empty(&peer_req->i));
1840 drbd_remove_epoch_entry_interval(mdev, peer_req);
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01001841 if (peer_req->flags & EE_RESTART_REQUESTS)
1842 restart_conflicting_writes(mdev, sector, peer_req->i.size);
Philipp Reisner87eeee42011-01-19 14:16:30 +01001843 spin_unlock_irq(&mdev->tconn->req_lock);
Andreas Gruenbacherbb3bfe92011-01-21 15:59:23 +01001844 } else
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001845 D_ASSERT(drbd_interval_empty(&peer_req->i));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001846
Philipp Reisner1e9dd292011-11-10 15:14:53 +01001847 drbd_may_finish_epoch(mdev->tconn, peer_req->epoch, EV_PUT + (cancel ? EV_CLEANUP : 0));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001848
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001849 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001850}
1851
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01001852static int e_send_ack(struct drbd_work *w, enum drbd_packet ack)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001853{
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01001854 struct drbd_conf *mdev = w->mdev;
Andreas Gruenbacher8050e6d2011-02-18 16:12:48 +01001855 struct drbd_peer_request *peer_req =
1856 container_of(w, struct drbd_peer_request, w);
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001857 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001858
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001859 err = drbd_send_ack(mdev, ack, peer_req);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001860 dec_unacked(mdev);
1861
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001862 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001863}
1864
Lars Ellenbergd4dabbe2012-08-01 12:33:51 +02001865static int e_send_superseded(struct drbd_work *w, int unused)
Philipp Reisnerb6a370ba2012-02-19 01:27:53 +01001866{
Lars Ellenbergd4dabbe2012-08-01 12:33:51 +02001867 return e_send_ack(w, P_SUPERSEDED);
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01001868}
Philipp Reisnerb6a370ba2012-02-19 01:27:53 +01001869
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01001870static int e_send_retry_write(struct drbd_work *w, int unused)
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01001871{
1872 struct drbd_tconn *tconn = w->mdev->tconn;
1873
1874 return e_send_ack(w, tconn->agreed_pro_version >= 100 ?
Lars Ellenbergd4dabbe2012-08-01 12:33:51 +02001875 P_RETRY_WRITE : P_SUPERSEDED);
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01001876}
1877
Andreas Gruenbacher3e394da2011-01-26 18:36:55 +01001878static bool seq_greater(u32 a, u32 b)
1879{
1880 /*
1881 * We assume 32-bit wrap-around here.
1882 * For 24-bit wrap-around, we would have to shift:
1883 * a <<= 8; b <<= 8;
1884 */
1885 return (s32)a - (s32)b > 0;
1886}
1887
1888static u32 seq_max(u32 a, u32 b)
1889{
1890 return seq_greater(a, b) ? a : b;
1891}
1892
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01001893static bool need_peer_seq(struct drbd_conf *mdev)
1894{
1895 struct drbd_tconn *tconn = mdev->tconn;
Philipp Reisner302bdea2011-04-21 11:36:49 +02001896 int tp;
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01001897
1898 /*
1899 * We only need to keep track of the last packet_seq number of our peer
Lars Ellenberg427c0432012-08-01 12:43:01 +02001900 * if we are in dual-primary mode and we have the resolve-conflicts flag set; see
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01001901 * handle_write_conflicts().
1902 */
Philipp Reisner302bdea2011-04-21 11:36:49 +02001903
1904 rcu_read_lock();
1905 tp = rcu_dereference(mdev->tconn->net_conf)->two_primaries;
1906 rcu_read_unlock();
1907
Lars Ellenberg427c0432012-08-01 12:43:01 +02001908 return tp && test_bit(RESOLVE_CONFLICTS, &tconn->flags);
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01001909}
1910
Andreas Gruenbacher43ae0772011-02-03 18:42:08 +01001911static void update_peer_seq(struct drbd_conf *mdev, unsigned int peer_seq)
Andreas Gruenbacher3e394da2011-01-26 18:36:55 +01001912{
Lars Ellenberg3c13b682011-02-23 16:10:01 +01001913 unsigned int newest_peer_seq;
Andreas Gruenbacher3e394da2011-01-26 18:36:55 +01001914
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01001915 if (need_peer_seq(mdev)) {
1916 spin_lock(&mdev->peer_seq_lock);
Lars Ellenberg3c13b682011-02-23 16:10:01 +01001917 newest_peer_seq = seq_max(mdev->peer_seq, peer_seq);
1918 mdev->peer_seq = newest_peer_seq;
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01001919 spin_unlock(&mdev->peer_seq_lock);
Lars Ellenberg3c13b682011-02-23 16:10:01 +01001920 /* wake up only if we actually changed mdev->peer_seq */
1921 if (peer_seq == newest_peer_seq)
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01001922 wake_up(&mdev->seq_wait);
1923 }
Andreas Gruenbacher3e394da2011-01-26 18:36:55 +01001924}
1925
Lars Ellenbergd93f6302012-03-26 15:49:13 +02001926static inline int overlaps(sector_t s1, int l1, sector_t s2, int l2)
1927{
1928 return !((s1 + (l1>>9) <= s2) || (s1 >= s2 + (l2>>9)));
1929}
1930
1931/* maybe change sync_ee into interval trees as well? */
Philipp Reisner3ea35df2012-04-06 12:13:18 +02001932static bool overlapping_resync_write(struct drbd_conf *mdev, struct drbd_peer_request *peer_req)
Lars Ellenbergd93f6302012-03-26 15:49:13 +02001933{
1934 struct drbd_peer_request *rs_req;
Philipp Reisnerb6a370ba2012-02-19 01:27:53 +01001935 bool rv = 0;
1936
Lars Ellenbergd93f6302012-03-26 15:49:13 +02001937 spin_lock_irq(&mdev->tconn->req_lock);
1938 list_for_each_entry(rs_req, &mdev->sync_ee, w.list) {
1939 if (overlaps(peer_req->i.sector, peer_req->i.size,
1940 rs_req->i.sector, rs_req->i.size)) {
Philipp Reisnerb6a370ba2012-02-19 01:27:53 +01001941 rv = 1;
1942 break;
1943 }
1944 }
Lars Ellenbergd93f6302012-03-26 15:49:13 +02001945 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb6a370ba2012-02-19 01:27:53 +01001946
1947 return rv;
1948}
1949
Philipp Reisnerb411b362009-09-25 16:07:19 -07001950/* Called from receive_Data.
1951 * Synchronize packets on sock with packets on msock.
1952 *
1953 * This is here so even when a P_DATA packet traveling via sock overtook an Ack
1954 * packet traveling on msock, they are still processed in the order they have
1955 * been sent.
1956 *
1957 * Note: we don't care for Ack packets overtaking P_DATA packets.
1958 *
1959 * In case packet_seq is larger than mdev->peer_seq number, there are
1960 * outstanding packets on the msock. We wait for them to arrive.
1961 * In case we are the logically next packet, we update mdev->peer_seq
1962 * ourselves. Correctly handles 32bit wrap around.
1963 *
1964 * Assume we have a 10 GBit connection, that is about 1<<30 byte per second,
1965 * about 1<<21 sectors per second. So "worst" case, we have 1<<3 == 8 seconds
1966 * for the 24bit wrap (historical atomic_t guarantee on some archs), and we have
1967 * 1<<9 == 512 seconds aka ages for the 32bit wrap around...
1968 *
1969 * returns 0 if we may process the packet,
1970 * -ERESTARTSYS if we were interrupted (by disconnect signal). */
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01001971static int wait_for_and_update_peer_seq(struct drbd_conf *mdev, const u32 peer_seq)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001972{
1973 DEFINE_WAIT(wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001974 long timeout;
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01001975 int ret;
1976
1977 if (!need_peer_seq(mdev))
1978 return 0;
1979
Philipp Reisnerb411b362009-09-25 16:07:19 -07001980 spin_lock(&mdev->peer_seq_lock);
1981 for (;;) {
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01001982 if (!seq_greater(peer_seq - 1, mdev->peer_seq)) {
1983 mdev->peer_seq = seq_max(mdev->peer_seq, peer_seq);
1984 ret = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001985 break;
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01001986 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001987 if (signal_pending(current)) {
1988 ret = -ERESTARTSYS;
1989 break;
1990 }
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01001991 prepare_to_wait(&mdev->seq_wait, &wait, TASK_INTERRUPTIBLE);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001992 spin_unlock(&mdev->peer_seq_lock);
Philipp Reisner44ed1672011-04-19 17:10:19 +02001993 rcu_read_lock();
1994 timeout = rcu_dereference(mdev->tconn->net_conf)->ping_timeo*HZ/10;
1995 rcu_read_unlock();
Andreas Gruenbacher71b1c1e2011-03-01 15:40:43 +01001996 timeout = schedule_timeout(timeout);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001997 spin_lock(&mdev->peer_seq_lock);
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01001998 if (!timeout) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001999 ret = -ETIMEDOUT;
Andreas Gruenbacher71b1c1e2011-03-01 15:40:43 +01002000 dev_err(DEV, "Timed out waiting for missing ack packets; disconnecting\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07002001 break;
2002 }
2003 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07002004 spin_unlock(&mdev->peer_seq_lock);
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01002005 finish_wait(&mdev->seq_wait, &wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002006 return ret;
2007}
2008
Lars Ellenberg688593c2010-11-17 22:25:03 +01002009/* see also bio_flags_to_wire()
2010 * DRBD_REQ_*, because we need to semantically map the flags to data packet
2011 * flags and back. We may replicate to other kernel versions. */
2012static unsigned long wire_flags_to_bio(struct drbd_conf *mdev, u32 dpf)
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02002013{
Lars Ellenberg688593c2010-11-17 22:25:03 +01002014 return (dpf & DP_RW_SYNC ? REQ_SYNC : 0) |
2015 (dpf & DP_FUA ? REQ_FUA : 0) |
2016 (dpf & DP_FLUSH ? REQ_FLUSH : 0) |
2017 (dpf & DP_DISCARD ? REQ_DISCARD : 0);
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02002018}
2019
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01002020static void fail_postponed_requests(struct drbd_conf *mdev, sector_t sector,
2021 unsigned int size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002022{
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01002023 struct drbd_interval *i;
2024
2025 repeat:
2026 drbd_for_each_overlap(i, &mdev->write_requests, sector, size) {
2027 struct drbd_request *req;
2028 struct bio_and_error m;
2029
2030 if (!i->local)
2031 continue;
2032 req = container_of(i, struct drbd_request, i);
2033 if (!(req->rq_state & RQ_POSTPONED))
2034 continue;
2035 req->rq_state &= ~RQ_POSTPONED;
2036 __req_mod(req, NEG_ACKED, &m);
2037 spin_unlock_irq(&mdev->tconn->req_lock);
2038 if (m.bio)
2039 complete_master_bio(mdev, &m);
2040 spin_lock_irq(&mdev->tconn->req_lock);
2041 goto repeat;
2042 }
2043}
2044
2045static int handle_write_conflicts(struct drbd_conf *mdev,
2046 struct drbd_peer_request *peer_req)
2047{
2048 struct drbd_tconn *tconn = mdev->tconn;
Lars Ellenberg427c0432012-08-01 12:43:01 +02002049 bool resolve_conflicts = test_bit(RESOLVE_CONFLICTS, &tconn->flags);
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01002050 sector_t sector = peer_req->i.sector;
2051 const unsigned int size = peer_req->i.size;
2052 struct drbd_interval *i;
2053 bool equal;
2054 int err;
2055
2056 /*
2057 * Inserting the peer request into the write_requests tree will prevent
2058 * new conflicting local requests from being added.
2059 */
2060 drbd_insert_interval(&mdev->write_requests, &peer_req->i);
2061
2062 repeat:
2063 drbd_for_each_overlap(i, &mdev->write_requests, sector, size) {
2064 if (i == &peer_req->i)
2065 continue;
2066
2067 if (!i->local) {
2068 /*
2069 * Our peer has sent a conflicting remote request; this
2070 * should not happen in a two-node setup. Wait for the
2071 * earlier peer request to complete.
2072 */
2073 err = drbd_wait_misc(mdev, i);
2074 if (err)
2075 goto out;
2076 goto repeat;
2077 }
2078
2079 equal = i->sector == sector && i->size == size;
2080 if (resolve_conflicts) {
2081 /*
2082 * If the peer request is fully contained within the
Lars Ellenbergd4dabbe2012-08-01 12:33:51 +02002083 * overlapping request, it can be considered overwritten
2084 * and thus superseded; otherwise, it will be retried
2085 * once all overlapping requests have completed.
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01002086 */
Lars Ellenbergd4dabbe2012-08-01 12:33:51 +02002087 bool superseded = i->sector <= sector && i->sector +
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01002088 (i->size >> 9) >= sector + (size >> 9);
2089
2090 if (!equal)
2091 dev_alert(DEV, "Concurrent writes detected: "
2092 "local=%llus +%u, remote=%llus +%u, "
2093 "assuming %s came first\n",
2094 (unsigned long long)i->sector, i->size,
2095 (unsigned long long)sector, size,
Lars Ellenbergd4dabbe2012-08-01 12:33:51 +02002096 superseded ? "local" : "remote");
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01002097
2098 inc_unacked(mdev);
Lars Ellenbergd4dabbe2012-08-01 12:33:51 +02002099 peer_req->w.cb = superseded ? e_send_superseded :
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01002100 e_send_retry_write;
2101 list_add_tail(&peer_req->w.list, &mdev->done_ee);
2102 wake_asender(mdev->tconn);
2103
2104 err = -ENOENT;
2105 goto out;
2106 } else {
2107 struct drbd_request *req =
2108 container_of(i, struct drbd_request, i);
2109
2110 if (!equal)
2111 dev_alert(DEV, "Concurrent writes detected: "
2112 "local=%llus +%u, remote=%llus +%u\n",
2113 (unsigned long long)i->sector, i->size,
2114 (unsigned long long)sector, size);
2115
2116 if (req->rq_state & RQ_LOCAL_PENDING ||
2117 !(req->rq_state & RQ_POSTPONED)) {
2118 /*
2119 * Wait for the node with the discard flag to
Lars Ellenbergd4dabbe2012-08-01 12:33:51 +02002120 * decide if this request has been superseded
2121 * or needs to be retried.
2122 * Requests that have been superseded will
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01002123 * disappear from the write_requests tree.
2124 *
2125 * In addition, wait for the conflicting
2126 * request to finish locally before submitting
2127 * the conflicting peer request.
2128 */
2129 err = drbd_wait_misc(mdev, &req->i);
2130 if (err) {
2131 _conn_request_state(mdev->tconn,
2132 NS(conn, C_TIMEOUT),
2133 CS_HARD);
2134 fail_postponed_requests(mdev, sector, size);
2135 goto out;
2136 }
2137 goto repeat;
2138 }
2139 /*
2140 * Remember to restart the conflicting requests after
2141 * the new peer request has completed.
2142 */
2143 peer_req->flags |= EE_RESTART_REQUESTS;
2144 }
2145 }
2146 err = 0;
2147
2148 out:
2149 if (err)
2150 drbd_remove_epoch_entry_interval(mdev, peer_req);
2151 return err;
2152}
2153
Philipp Reisnerb411b362009-09-25 16:07:19 -07002154/* mirrored write */
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01002155static int receive_Data(struct drbd_tconn *tconn, struct packet_info *pi)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002156{
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01002157 struct drbd_conf *mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002158 sector_t sector;
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01002159 struct drbd_peer_request *peer_req;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02002160 struct p_data *p = pi->data;
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01002161 u32 peer_seq = be32_to_cpu(p->seq_num);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002162 int rw = WRITE;
2163 u32 dp_flags;
Philipp Reisner302bdea2011-04-21 11:36:49 +02002164 int err, tp;
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01002165
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01002166 mdev = vnr_to_mdev(tconn, pi->vnr);
2167 if (!mdev)
2168 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002169
Philipp Reisnerb411b362009-09-25 16:07:19 -07002170 if (!get_ldev(mdev)) {
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01002171 int err2;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002172
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01002173 err = wait_for_and_update_peer_seq(mdev, peer_seq);
Andreas Gruenbachere2857212011-03-25 00:57:38 +01002174 drbd_send_ack_dp(mdev, P_NEG_ACK, p, pi->size);
Philipp Reisner12038a32011-11-09 19:18:00 +01002175 atomic_inc(&tconn->current_epoch->epoch_size);
Andreas Gruenbachere2857212011-03-25 00:57:38 +01002176 err2 = drbd_drain_block(mdev, pi->size);
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01002177 if (!err)
2178 err = err2;
2179 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002180 }
2181
Andreas Gruenbacherfcefa622011-02-17 16:46:59 +01002182 /*
2183 * Corresponding put_ldev done either below (on various errors), or in
2184 * drbd_peer_request_endio, if we successfully submit the data at the
2185 * end of this function.
2186 */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002187
2188 sector = be64_to_cpu(p->sector);
Andreas Gruenbachere2857212011-03-25 00:57:38 +01002189 peer_req = read_in_block(mdev, p->block_id, sector, pi->size);
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01002190 if (!peer_req) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002191 put_ldev(mdev);
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01002192 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002193 }
2194
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01002195 peer_req->w.cb = e_end_block;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002196
Lars Ellenberg688593c2010-11-17 22:25:03 +01002197 dp_flags = be32_to_cpu(p->dp_flags);
2198 rw |= wire_flags_to_bio(mdev, dp_flags);
Lars Ellenberg81a35372012-07-30 09:00:54 +02002199 if (peer_req->pages == NULL) {
2200 D_ASSERT(peer_req->i.size == 0);
Lars Ellenberga73ff322012-06-25 19:15:38 +02002201 D_ASSERT(dp_flags & DP_FLUSH);
2202 }
Lars Ellenberg688593c2010-11-17 22:25:03 +01002203
2204 if (dp_flags & DP_MAY_SET_IN_SYNC)
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01002205 peer_req->flags |= EE_MAY_SET_IN_SYNC;
Lars Ellenberg688593c2010-11-17 22:25:03 +01002206
Philipp Reisner12038a32011-11-09 19:18:00 +01002207 spin_lock(&tconn->epoch_lock);
2208 peer_req->epoch = tconn->current_epoch;
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01002209 atomic_inc(&peer_req->epoch->epoch_size);
2210 atomic_inc(&peer_req->epoch->active);
Philipp Reisner12038a32011-11-09 19:18:00 +01002211 spin_unlock(&tconn->epoch_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002212
Philipp Reisner302bdea2011-04-21 11:36:49 +02002213 rcu_read_lock();
2214 tp = rcu_dereference(mdev->tconn->net_conf)->two_primaries;
2215 rcu_read_unlock();
2216 if (tp) {
2217 peer_req->flags |= EE_IN_INTERVAL_TREE;
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01002218 err = wait_for_and_update_peer_seq(mdev, peer_seq);
2219 if (err)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002220 goto out_interrupted;
Philipp Reisner87eeee42011-01-19 14:16:30 +01002221 spin_lock_irq(&mdev->tconn->req_lock);
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01002222 err = handle_write_conflicts(mdev, peer_req);
2223 if (err) {
2224 spin_unlock_irq(&mdev->tconn->req_lock);
2225 if (err == -ENOENT) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002226 put_ldev(mdev);
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01002227 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002228 }
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01002229 goto out_interrupted;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002230 }
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01002231 } else
2232 spin_lock_irq(&mdev->tconn->req_lock);
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01002233 list_add(&peer_req->w.list, &mdev->active_ee);
Philipp Reisner87eeee42011-01-19 14:16:30 +01002234 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002235
Philipp Reisnerb6a370ba2012-02-19 01:27:53 +01002236 if (mdev->state.conn == C_SYNC_TARGET)
Philipp Reisner3ea35df2012-04-06 12:13:18 +02002237 wait_event(mdev->ee_wait, !overlapping_resync_write(mdev, peer_req));
Philipp Reisnerb6a370ba2012-02-19 01:27:53 +01002238
Philipp Reisner303d1442011-04-13 16:24:47 -07002239 if (mdev->tconn->agreed_pro_version < 100) {
Philipp Reisner44ed1672011-04-19 17:10:19 +02002240 rcu_read_lock();
2241 switch (rcu_dereference(mdev->tconn->net_conf)->wire_protocol) {
Philipp Reisner303d1442011-04-13 16:24:47 -07002242 case DRBD_PROT_C:
2243 dp_flags |= DP_SEND_WRITE_ACK;
2244 break;
2245 case DRBD_PROT_B:
2246 dp_flags |= DP_SEND_RECEIVE_ACK;
2247 break;
2248 }
Philipp Reisner44ed1672011-04-19 17:10:19 +02002249 rcu_read_unlock();
Philipp Reisner303d1442011-04-13 16:24:47 -07002250 }
2251
2252 if (dp_flags & DP_SEND_WRITE_ACK) {
2253 peer_req->flags |= EE_SEND_WRITE_ACK;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002254 inc_unacked(mdev);
2255 /* corresponding dec_unacked() in e_end_block()
2256 * respective _drbd_clear_done_ee */
Philipp Reisner303d1442011-04-13 16:24:47 -07002257 }
2258
2259 if (dp_flags & DP_SEND_RECEIVE_ACK) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002260 /* I really don't like it that the receiver thread
2261 * sends on the msock, but anyways */
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01002262 drbd_send_ack(mdev, P_RECV_ACK, peer_req);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002263 }
2264
Lars Ellenberg6719fb02010-10-18 23:04:07 +02002265 if (mdev->state.pdsk < D_INCONSISTENT) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002266 /* In case we have the only disk of the cluster, */
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01002267 drbd_set_out_of_sync(mdev, peer_req->i.sector, peer_req->i.size);
2268 peer_req->flags |= EE_CALL_AL_COMPLETE_IO;
2269 peer_req->flags &= ~EE_MAY_SET_IN_SYNC;
Lars Ellenberg56392d22013-03-19 18:16:48 +01002270 drbd_al_begin_io(mdev, &peer_req->i, true);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002271 }
2272
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01002273 err = drbd_submit_peer_request(mdev, peer_req, rw, DRBD_FAULT_DT_WR);
2274 if (!err)
2275 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002276
Lars Ellenberg10f6d9922011-01-24 14:47:09 +01002277 /* don't care for the reason here */
2278 dev_err(DEV, "submit failed, triggering re-connect\n");
Philipp Reisner87eeee42011-01-19 14:16:30 +01002279 spin_lock_irq(&mdev->tconn->req_lock);
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01002280 list_del(&peer_req->w.list);
2281 drbd_remove_epoch_entry_interval(mdev, peer_req);
Philipp Reisner87eeee42011-01-19 14:16:30 +01002282 spin_unlock_irq(&mdev->tconn->req_lock);
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01002283 if (peer_req->flags & EE_CALL_AL_COMPLETE_IO)
Lars Ellenberg181286a2011-03-31 15:18:56 +02002284 drbd_al_complete_io(mdev, &peer_req->i);
Lars Ellenberg22cc37a2010-09-14 20:40:41 +02002285
Philipp Reisnerb411b362009-09-25 16:07:19 -07002286out_interrupted:
Philipp Reisner1e9dd292011-11-10 15:14:53 +01002287 drbd_may_finish_epoch(tconn, peer_req->epoch, EV_PUT + EV_CLEANUP);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002288 put_ldev(mdev);
Andreas Gruenbacher3967deb2011-04-06 16:16:56 +02002289 drbd_free_peer_req(mdev, peer_req);
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01002290 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002291}
2292
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02002293/* We may throttle resync, if the lower device seems to be busy,
2294 * and current sync rate is above c_min_rate.
2295 *
2296 * To decide whether or not the lower device is busy, we use a scheme similar
2297 * to MD RAID is_mddev_idle(): if the partition stats reveal "significant"
2298 * (more than 64 sectors) of activity we cannot account for with our own resync
2299 * activity, it obviously is "busy".
2300 *
2301 * The current sync rate used here uses only the most recent two step marks,
2302 * to have a short time average so we can react faster.
2303 */
Philipp Reisnere3555d82010-11-07 15:56:29 +01002304int drbd_rs_should_slow_down(struct drbd_conf *mdev, sector_t sector)
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02002305{
2306 struct gendisk *disk = mdev->ldev->backing_bdev->bd_contains->bd_disk;
2307 unsigned long db, dt, dbdt;
Philipp Reisnere3555d82010-11-07 15:56:29 +01002308 struct lc_element *tmp;
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02002309 int curr_events;
2310 int throttle = 0;
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +02002311 unsigned int c_min_rate;
2312
2313 rcu_read_lock();
2314 c_min_rate = rcu_dereference(mdev->ldev->disk_conf)->c_min_rate;
2315 rcu_read_unlock();
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02002316
2317 /* feature disabled? */
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +02002318 if (c_min_rate == 0)
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02002319 return 0;
2320
Philipp Reisnere3555d82010-11-07 15:56:29 +01002321 spin_lock_irq(&mdev->al_lock);
2322 tmp = lc_find(mdev->resync, BM_SECT_TO_EXT(sector));
2323 if (tmp) {
2324 struct bm_extent *bm_ext = lc_entry(tmp, struct bm_extent, lce);
2325 if (test_bit(BME_PRIORITY, &bm_ext->flags)) {
2326 spin_unlock_irq(&mdev->al_lock);
2327 return 0;
2328 }
2329 /* Do not slow down if app IO is already waiting for this extent */
2330 }
2331 spin_unlock_irq(&mdev->al_lock);
2332
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02002333 curr_events = (int)part_stat_read(&disk->part0, sectors[0]) +
2334 (int)part_stat_read(&disk->part0, sectors[1]) -
2335 atomic_read(&mdev->rs_sect_ev);
Philipp Reisnere3555d82010-11-07 15:56:29 +01002336
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02002337 if (!mdev->rs_last_events || curr_events - mdev->rs_last_events > 64) {
2338 unsigned long rs_left;
2339 int i;
2340
2341 mdev->rs_last_events = curr_events;
2342
2343 /* sync speed average over the last 2*DRBD_SYNC_MARK_STEP,
2344 * approx. */
Lars Ellenberg2649f082010-11-05 10:05:47 +01002345 i = (mdev->rs_last_mark + DRBD_SYNC_MARKS-1) % DRBD_SYNC_MARKS;
2346
2347 if (mdev->state.conn == C_VERIFY_S || mdev->state.conn == C_VERIFY_T)
2348 rs_left = mdev->ov_left;
2349 else
2350 rs_left = drbd_bm_total_weight(mdev) - mdev->rs_failed;
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02002351
2352 dt = ((long)jiffies - (long)mdev->rs_mark_time[i]) / HZ;
2353 if (!dt)
2354 dt++;
2355 db = mdev->rs_mark_left[i] - rs_left;
2356 dbdt = Bit2KB(db/dt);
2357
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +02002358 if (dbdt > c_min_rate)
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02002359 throttle = 1;
2360 }
2361 return throttle;
2362}
2363
2364
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01002365static int receive_DataRequest(struct drbd_tconn *tconn, struct packet_info *pi)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002366{
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01002367 struct drbd_conf *mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002368 sector_t sector;
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01002369 sector_t capacity;
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01002370 struct drbd_peer_request *peer_req;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002371 struct digest_info *di = NULL;
Philipp Reisnerb18b37b2010-10-13 15:32:44 +02002372 int size, verb;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002373 unsigned int fault_type;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02002374 struct p_block_req *p = pi->data;
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01002375
2376 mdev = vnr_to_mdev(tconn, pi->vnr);
2377 if (!mdev)
2378 return -EIO;
2379 capacity = drbd_get_capacity(mdev->this_bdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002380
2381 sector = be64_to_cpu(p->sector);
2382 size = be32_to_cpu(p->blksize);
2383
Andreas Gruenbacherc670a392011-02-21 12:41:39 +01002384 if (size <= 0 || !IS_ALIGNED(size, 512) || size > DRBD_MAX_BIO_SIZE) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002385 dev_err(DEV, "%s:%d: sector: %llus, size: %u\n", __FILE__, __LINE__,
2386 (unsigned long long)sector, size);
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01002387 return -EINVAL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002388 }
2389 if (sector + (size>>9) > capacity) {
2390 dev_err(DEV, "%s:%d: sector: %llus, size: %u\n", __FILE__, __LINE__,
2391 (unsigned long long)sector, size);
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01002392 return -EINVAL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002393 }
2394
2395 if (!get_ldev_if_state(mdev, D_UP_TO_DATE)) {
Philipp Reisnerb18b37b2010-10-13 15:32:44 +02002396 verb = 1;
Andreas Gruenbachere2857212011-03-25 00:57:38 +01002397 switch (pi->cmd) {
Philipp Reisnerb18b37b2010-10-13 15:32:44 +02002398 case P_DATA_REQUEST:
2399 drbd_send_ack_rp(mdev, P_NEG_DREPLY, p);
2400 break;
2401 case P_RS_DATA_REQUEST:
2402 case P_CSUM_RS_REQUEST:
2403 case P_OV_REQUEST:
2404 drbd_send_ack_rp(mdev, P_NEG_RS_DREPLY , p);
2405 break;
2406 case P_OV_REPLY:
2407 verb = 0;
2408 dec_rs_pending(mdev);
2409 drbd_send_ack_ex(mdev, P_OV_RESULT, sector, size, ID_IN_SYNC);
2410 break;
2411 default:
Andreas Gruenbacher49ba9b12011-03-25 00:35:45 +01002412 BUG();
Philipp Reisnerb18b37b2010-10-13 15:32:44 +02002413 }
2414 if (verb && __ratelimit(&drbd_ratelimit_state))
Philipp Reisnerb411b362009-09-25 16:07:19 -07002415 dev_err(DEV, "Can not satisfy peer's read request, "
2416 "no local data.\n");
Philipp Reisnerb18b37b2010-10-13 15:32:44 +02002417
Lars Ellenberga821cc42010-09-06 12:31:37 +02002418 /* drain possibly payload */
Andreas Gruenbachere2857212011-03-25 00:57:38 +01002419 return drbd_drain_block(mdev, pi->size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002420 }
2421
2422 /* GFP_NOIO, because we must not cause arbitrary write-out: in a DRBD
2423 * "criss-cross" setup, that might cause write-out on some other DRBD,
2424 * which in turn might block on the other node at this very place. */
Andreas Gruenbacher0db55362011-04-06 16:09:15 +02002425 peer_req = drbd_alloc_peer_req(mdev, p->block_id, sector, size, GFP_NOIO);
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01002426 if (!peer_req) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002427 put_ldev(mdev);
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01002428 return -ENOMEM;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002429 }
2430
Andreas Gruenbachere2857212011-03-25 00:57:38 +01002431 switch (pi->cmd) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002432 case P_DATA_REQUEST:
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01002433 peer_req->w.cb = w_e_end_data_req;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002434 fault_type = DRBD_FAULT_DT_RD;
Lars Ellenberg80a40e42010-08-11 23:28:00 +02002435 /* application IO, don't drbd_rs_begin_io */
2436 goto submit;
2437
Philipp Reisnerb411b362009-09-25 16:07:19 -07002438 case P_RS_DATA_REQUEST:
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01002439 peer_req->w.cb = w_e_end_rsdata_req;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002440 fault_type = DRBD_FAULT_RS_RD;
Lars Ellenberg5f9915b2010-11-09 14:15:24 +01002441 /* used in the sector offset progress display */
2442 mdev->bm_resync_fo = BM_SECT_TO_BIT(sector);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002443 break;
2444
2445 case P_OV_REPLY:
2446 case P_CSUM_RS_REQUEST:
2447 fault_type = DRBD_FAULT_RS_RD;
Andreas Gruenbachere2857212011-03-25 00:57:38 +01002448 di = kmalloc(sizeof(*di) + pi->size, GFP_NOIO);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002449 if (!di)
2450 goto out_free_e;
2451
Andreas Gruenbachere2857212011-03-25 00:57:38 +01002452 di->digest_size = pi->size;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002453 di->digest = (((char *)di)+sizeof(struct digest_info));
2454
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01002455 peer_req->digest = di;
2456 peer_req->flags |= EE_HAS_DIGEST;
Lars Ellenbergc36c3ce2010-08-11 20:42:55 +02002457
Andreas Gruenbachere2857212011-03-25 00:57:38 +01002458 if (drbd_recv_all(mdev->tconn, di->digest, pi->size))
Philipp Reisnerb411b362009-09-25 16:07:19 -07002459 goto out_free_e;
2460
Andreas Gruenbachere2857212011-03-25 00:57:38 +01002461 if (pi->cmd == P_CSUM_RS_REQUEST) {
Philipp Reisner31890f42011-01-19 14:12:51 +01002462 D_ASSERT(mdev->tconn->agreed_pro_version >= 89);
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01002463 peer_req->w.cb = w_e_end_csum_rs_req;
Lars Ellenberg5f9915b2010-11-09 14:15:24 +01002464 /* used in the sector offset progress display */
2465 mdev->bm_resync_fo = BM_SECT_TO_BIT(sector);
Andreas Gruenbachere2857212011-03-25 00:57:38 +01002466 } else if (pi->cmd == P_OV_REPLY) {
Lars Ellenberg2649f082010-11-05 10:05:47 +01002467 /* track progress, we may need to throttle */
2468 atomic_add(size >> 9, &mdev->rs_sect_in);
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01002469 peer_req->w.cb = w_e_end_ov_reply;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002470 dec_rs_pending(mdev);
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02002471 /* drbd_rs_begin_io done when we sent this request,
2472 * but accounting still needs to be done. */
2473 goto submit_for_resync;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002474 }
2475 break;
2476
2477 case P_OV_REQUEST:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002478 if (mdev->ov_start_sector == ~(sector_t)0 &&
Philipp Reisner31890f42011-01-19 14:12:51 +01002479 mdev->tconn->agreed_pro_version >= 90) {
Lars Ellenbergde228bb2010-11-05 09:43:15 +01002480 unsigned long now = jiffies;
2481 int i;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002482 mdev->ov_start_sector = sector;
2483 mdev->ov_position = sector;
Lars Ellenberg30b743a2010-11-05 09:39:06 +01002484 mdev->ov_left = drbd_bm_bits(mdev) - BM_SECT_TO_BIT(sector);
2485 mdev->rs_total = mdev->ov_left;
Lars Ellenbergde228bb2010-11-05 09:43:15 +01002486 for (i = 0; i < DRBD_SYNC_MARKS; i++) {
2487 mdev->rs_mark_left[i] = mdev->ov_left;
2488 mdev->rs_mark_time[i] = now;
2489 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07002490 dev_info(DEV, "Online Verify start sector: %llu\n",
2491 (unsigned long long)sector);
2492 }
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01002493 peer_req->w.cb = w_e_end_ov_req;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002494 fault_type = DRBD_FAULT_RS_RD;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002495 break;
2496
Philipp Reisnerb411b362009-09-25 16:07:19 -07002497 default:
Andreas Gruenbacher49ba9b12011-03-25 00:35:45 +01002498 BUG();
Philipp Reisnerb411b362009-09-25 16:07:19 -07002499 }
2500
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02002501 /* Throttle, drbd_rs_begin_io and submit should become asynchronous
2502 * wrt the receiver, but it is not as straightforward as it may seem.
2503 * Various places in the resync start and stop logic assume resync
2504 * requests are processed in order, requeuing this on the worker thread
2505 * introduces a bunch of new code for synchronization between threads.
2506 *
2507 * Unlimited throttling before drbd_rs_begin_io may stall the resync
2508 * "forever", throttling after drbd_rs_begin_io will lock that extent
2509 * for application writes for the same time. For now, just throttle
2510 * here, where the rest of the code expects the receiver to sleep for
2511 * a while, anyways.
2512 */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002513
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02002514 /* Throttle before drbd_rs_begin_io, as that locks out application IO;
2515 * this defers syncer requests for some time, before letting at least
2516 * on request through. The resync controller on the receiving side
2517 * will adapt to the incoming rate accordingly.
2518 *
2519 * We cannot throttle here if remote is Primary/SyncTarget:
2520 * we would also throttle its application reads.
2521 * In that case, throttling is done on the SyncTarget only.
2522 */
Philipp Reisnere3555d82010-11-07 15:56:29 +01002523 if (mdev->state.peer != R_PRIMARY && drbd_rs_should_slow_down(mdev, sector))
2524 schedule_timeout_uninterruptible(HZ/10);
2525 if (drbd_rs_begin_io(mdev, sector))
Lars Ellenberg80a40e42010-08-11 23:28:00 +02002526 goto out_free_e;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002527
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02002528submit_for_resync:
2529 atomic_add(size >> 9, &mdev->rs_sect_ev);
2530
Lars Ellenberg80a40e42010-08-11 23:28:00 +02002531submit:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002532 inc_unacked(mdev);
Philipp Reisner87eeee42011-01-19 14:16:30 +01002533 spin_lock_irq(&mdev->tconn->req_lock);
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01002534 list_add_tail(&peer_req->w.list, &mdev->read_ee);
Philipp Reisner87eeee42011-01-19 14:16:30 +01002535 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002536
Andreas Gruenbacherfbe29de2011-02-17 16:38:35 +01002537 if (drbd_submit_peer_request(mdev, peer_req, READ, fault_type) == 0)
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01002538 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002539
Lars Ellenberg10f6d9922011-01-24 14:47:09 +01002540 /* don't care for the reason here */
2541 dev_err(DEV, "submit failed, triggering re-connect\n");
Philipp Reisner87eeee42011-01-19 14:16:30 +01002542 spin_lock_irq(&mdev->tconn->req_lock);
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01002543 list_del(&peer_req->w.list);
Philipp Reisner87eeee42011-01-19 14:16:30 +01002544 spin_unlock_irq(&mdev->tconn->req_lock);
Lars Ellenberg22cc37a2010-09-14 20:40:41 +02002545 /* no drbd_rs_complete_io(), we are dropping the connection anyways */
2546
Philipp Reisnerb411b362009-09-25 16:07:19 -07002547out_free_e:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002548 put_ldev(mdev);
Andreas Gruenbacher3967deb2011-04-06 16:16:56 +02002549 drbd_free_peer_req(mdev, peer_req);
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01002550 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002551}
2552
2553static int drbd_asb_recover_0p(struct drbd_conf *mdev) __must_hold(local)
2554{
2555 int self, peer, rv = -100;
2556 unsigned long ch_self, ch_peer;
Philipp Reisner44ed1672011-04-19 17:10:19 +02002557 enum drbd_after_sb_p after_sb_0p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002558
2559 self = mdev->ldev->md.uuid[UI_BITMAP] & 1;
2560 peer = mdev->p_uuid[UI_BITMAP] & 1;
2561
2562 ch_peer = mdev->p_uuid[UI_SIZE];
2563 ch_self = mdev->comm_bm_set;
2564
Philipp Reisner44ed1672011-04-19 17:10:19 +02002565 rcu_read_lock();
2566 after_sb_0p = rcu_dereference(mdev->tconn->net_conf)->after_sb_0p;
2567 rcu_read_unlock();
2568 switch (after_sb_0p) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002569 case ASB_CONSENSUS:
2570 case ASB_DISCARD_SECONDARY:
2571 case ASB_CALL_HELPER:
Philipp Reisner44ed1672011-04-19 17:10:19 +02002572 case ASB_VIOLENTLY:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002573 dev_err(DEV, "Configuration error.\n");
2574 break;
2575 case ASB_DISCONNECT:
2576 break;
2577 case ASB_DISCARD_YOUNGER_PRI:
2578 if (self == 0 && peer == 1) {
2579 rv = -1;
2580 break;
2581 }
2582 if (self == 1 && peer == 0) {
2583 rv = 1;
2584 break;
2585 }
2586 /* Else fall through to one of the other strategies... */
2587 case ASB_DISCARD_OLDER_PRI:
2588 if (self == 0 && peer == 1) {
2589 rv = 1;
2590 break;
2591 }
2592 if (self == 1 && peer == 0) {
2593 rv = -1;
2594 break;
2595 }
2596 /* Else fall through to one of the other strategies... */
Lars Ellenbergad19bf62009-10-14 09:36:49 +02002597 dev_warn(DEV, "Discard younger/older primary did not find a decision\n"
Philipp Reisnerb411b362009-09-25 16:07:19 -07002598 "Using discard-least-changes instead\n");
2599 case ASB_DISCARD_ZERO_CHG:
2600 if (ch_peer == 0 && ch_self == 0) {
Lars Ellenberg427c0432012-08-01 12:43:01 +02002601 rv = test_bit(RESOLVE_CONFLICTS, &mdev->tconn->flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002602 ? -1 : 1;
2603 break;
2604 } else {
2605 if (ch_peer == 0) { rv = 1; break; }
2606 if (ch_self == 0) { rv = -1; break; }
2607 }
Philipp Reisner44ed1672011-04-19 17:10:19 +02002608 if (after_sb_0p == ASB_DISCARD_ZERO_CHG)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002609 break;
2610 case ASB_DISCARD_LEAST_CHG:
2611 if (ch_self < ch_peer)
2612 rv = -1;
2613 else if (ch_self > ch_peer)
2614 rv = 1;
2615 else /* ( ch_self == ch_peer ) */
2616 /* Well, then use something else. */
Lars Ellenberg427c0432012-08-01 12:43:01 +02002617 rv = test_bit(RESOLVE_CONFLICTS, &mdev->tconn->flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002618 ? -1 : 1;
2619 break;
2620 case ASB_DISCARD_LOCAL:
2621 rv = -1;
2622 break;
2623 case ASB_DISCARD_REMOTE:
2624 rv = 1;
2625 }
2626
2627 return rv;
2628}
2629
2630static int drbd_asb_recover_1p(struct drbd_conf *mdev) __must_hold(local)
2631{
Andreas Gruenbacher6184ea22010-12-09 14:23:27 +01002632 int hg, rv = -100;
Philipp Reisner44ed1672011-04-19 17:10:19 +02002633 enum drbd_after_sb_p after_sb_1p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002634
Philipp Reisner44ed1672011-04-19 17:10:19 +02002635 rcu_read_lock();
2636 after_sb_1p = rcu_dereference(mdev->tconn->net_conf)->after_sb_1p;
2637 rcu_read_unlock();
2638 switch (after_sb_1p) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002639 case ASB_DISCARD_YOUNGER_PRI:
2640 case ASB_DISCARD_OLDER_PRI:
2641 case ASB_DISCARD_LEAST_CHG:
2642 case ASB_DISCARD_LOCAL:
2643 case ASB_DISCARD_REMOTE:
Philipp Reisner44ed1672011-04-19 17:10:19 +02002644 case ASB_DISCARD_ZERO_CHG:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002645 dev_err(DEV, "Configuration error.\n");
2646 break;
2647 case ASB_DISCONNECT:
2648 break;
2649 case ASB_CONSENSUS:
2650 hg = drbd_asb_recover_0p(mdev);
2651 if (hg == -1 && mdev->state.role == R_SECONDARY)
2652 rv = hg;
2653 if (hg == 1 && mdev->state.role == R_PRIMARY)
2654 rv = hg;
2655 break;
2656 case ASB_VIOLENTLY:
2657 rv = drbd_asb_recover_0p(mdev);
2658 break;
2659 case ASB_DISCARD_SECONDARY:
2660 return mdev->state.role == R_PRIMARY ? 1 : -1;
2661 case ASB_CALL_HELPER:
2662 hg = drbd_asb_recover_0p(mdev);
2663 if (hg == -1 && mdev->state.role == R_PRIMARY) {
Andreas Gruenbacherbb437942010-12-09 14:02:35 +01002664 enum drbd_state_rv rv2;
2665
Philipp Reisnerb411b362009-09-25 16:07:19 -07002666 /* drbd_change_state() does not sleep while in SS_IN_TRANSIENT_STATE,
2667 * we might be here in C_WF_REPORT_PARAMS which is transient.
2668 * we do not need to wait for the after state change work either. */
Andreas Gruenbacherbb437942010-12-09 14:02:35 +01002669 rv2 = drbd_change_state(mdev, CS_VERBOSE, NS(role, R_SECONDARY));
2670 if (rv2 != SS_SUCCESS) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002671 drbd_khelper(mdev, "pri-lost-after-sb");
2672 } else {
2673 dev_warn(DEV, "Successfully gave up primary role.\n");
2674 rv = hg;
2675 }
2676 } else
2677 rv = hg;
2678 }
2679
2680 return rv;
2681}
2682
2683static int drbd_asb_recover_2p(struct drbd_conf *mdev) __must_hold(local)
2684{
Andreas Gruenbacher6184ea22010-12-09 14:23:27 +01002685 int hg, rv = -100;
Philipp Reisner44ed1672011-04-19 17:10:19 +02002686 enum drbd_after_sb_p after_sb_2p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002687
Philipp Reisner44ed1672011-04-19 17:10:19 +02002688 rcu_read_lock();
2689 after_sb_2p = rcu_dereference(mdev->tconn->net_conf)->after_sb_2p;
2690 rcu_read_unlock();
2691 switch (after_sb_2p) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002692 case ASB_DISCARD_YOUNGER_PRI:
2693 case ASB_DISCARD_OLDER_PRI:
2694 case ASB_DISCARD_LEAST_CHG:
2695 case ASB_DISCARD_LOCAL:
2696 case ASB_DISCARD_REMOTE:
2697 case ASB_CONSENSUS:
2698 case ASB_DISCARD_SECONDARY:
Philipp Reisner44ed1672011-04-19 17:10:19 +02002699 case ASB_DISCARD_ZERO_CHG:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002700 dev_err(DEV, "Configuration error.\n");
2701 break;
2702 case ASB_VIOLENTLY:
2703 rv = drbd_asb_recover_0p(mdev);
2704 break;
2705 case ASB_DISCONNECT:
2706 break;
2707 case ASB_CALL_HELPER:
2708 hg = drbd_asb_recover_0p(mdev);
2709 if (hg == -1) {
Andreas Gruenbacherbb437942010-12-09 14:02:35 +01002710 enum drbd_state_rv rv2;
2711
Philipp Reisnerb411b362009-09-25 16:07:19 -07002712 /* drbd_change_state() does not sleep while in SS_IN_TRANSIENT_STATE,
2713 * we might be here in C_WF_REPORT_PARAMS which is transient.
2714 * we do not need to wait for the after state change work either. */
Andreas Gruenbacherbb437942010-12-09 14:02:35 +01002715 rv2 = drbd_change_state(mdev, CS_VERBOSE, NS(role, R_SECONDARY));
2716 if (rv2 != SS_SUCCESS) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002717 drbd_khelper(mdev, "pri-lost-after-sb");
2718 } else {
2719 dev_warn(DEV, "Successfully gave up primary role.\n");
2720 rv = hg;
2721 }
2722 } else
2723 rv = hg;
2724 }
2725
2726 return rv;
2727}
2728
2729static void drbd_uuid_dump(struct drbd_conf *mdev, char *text, u64 *uuid,
2730 u64 bits, u64 flags)
2731{
2732 if (!uuid) {
2733 dev_info(DEV, "%s uuid info vanished while I was looking!\n", text);
2734 return;
2735 }
2736 dev_info(DEV, "%s %016llX:%016llX:%016llX:%016llX bits:%llu flags:%llX\n",
2737 text,
2738 (unsigned long long)uuid[UI_CURRENT],
2739 (unsigned long long)uuid[UI_BITMAP],
2740 (unsigned long long)uuid[UI_HISTORY_START],
2741 (unsigned long long)uuid[UI_HISTORY_END],
2742 (unsigned long long)bits,
2743 (unsigned long long)flags);
2744}
2745
2746/*
2747 100 after split brain try auto recover
2748 2 C_SYNC_SOURCE set BitMap
2749 1 C_SYNC_SOURCE use BitMap
2750 0 no Sync
2751 -1 C_SYNC_TARGET use BitMap
2752 -2 C_SYNC_TARGET set BitMap
2753 -100 after split brain, disconnect
2754-1000 unrelated data
Philipp Reisner4a23f262011-01-11 17:42:17 +01002755-1091 requires proto 91
2756-1096 requires proto 96
Philipp Reisnerb411b362009-09-25 16:07:19 -07002757 */
2758static int drbd_uuid_compare(struct drbd_conf *mdev, int *rule_nr) __must_hold(local)
2759{
2760 u64 self, peer;
2761 int i, j;
2762
2763 self = mdev->ldev->md.uuid[UI_CURRENT] & ~((u64)1);
2764 peer = mdev->p_uuid[UI_CURRENT] & ~((u64)1);
2765
2766 *rule_nr = 10;
2767 if (self == UUID_JUST_CREATED && peer == UUID_JUST_CREATED)
2768 return 0;
2769
2770 *rule_nr = 20;
2771 if ((self == UUID_JUST_CREATED || self == (u64)0) &&
2772 peer != UUID_JUST_CREATED)
2773 return -2;
2774
2775 *rule_nr = 30;
2776 if (self != UUID_JUST_CREATED &&
2777 (peer == UUID_JUST_CREATED || peer == (u64)0))
2778 return 2;
2779
2780 if (self == peer) {
2781 int rct, dc; /* roles at crash time */
2782
2783 if (mdev->p_uuid[UI_BITMAP] == (u64)0 && mdev->ldev->md.uuid[UI_BITMAP] != (u64)0) {
2784
Philipp Reisner31890f42011-01-19 14:12:51 +01002785 if (mdev->tconn->agreed_pro_version < 91)
Philipp Reisner4a23f262011-01-11 17:42:17 +01002786 return -1091;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002787
2788 if ((mdev->ldev->md.uuid[UI_BITMAP] & ~((u64)1)) == (mdev->p_uuid[UI_HISTORY_START] & ~((u64)1)) &&
2789 (mdev->ldev->md.uuid[UI_HISTORY_START] & ~((u64)1)) == (mdev->p_uuid[UI_HISTORY_START + 1] & ~((u64)1))) {
2790 dev_info(DEV, "was SyncSource, missed the resync finished event, corrected myself:\n");
Philipp Reisner9f2247b2012-08-16 14:25:58 +02002791 drbd_uuid_move_history(mdev);
2792 mdev->ldev->md.uuid[UI_HISTORY_START] = mdev->ldev->md.uuid[UI_BITMAP];
2793 mdev->ldev->md.uuid[UI_BITMAP] = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002794
2795 drbd_uuid_dump(mdev, "self", mdev->ldev->md.uuid,
2796 mdev->state.disk >= D_NEGOTIATING ? drbd_bm_total_weight(mdev) : 0, 0);
2797 *rule_nr = 34;
2798 } else {
2799 dev_info(DEV, "was SyncSource (peer failed to write sync_uuid)\n");
2800 *rule_nr = 36;
2801 }
2802
2803 return 1;
2804 }
2805
2806 if (mdev->ldev->md.uuid[UI_BITMAP] == (u64)0 && mdev->p_uuid[UI_BITMAP] != (u64)0) {
2807
Philipp Reisner31890f42011-01-19 14:12:51 +01002808 if (mdev->tconn->agreed_pro_version < 91)
Philipp Reisner4a23f262011-01-11 17:42:17 +01002809 return -1091;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002810
2811 if ((mdev->ldev->md.uuid[UI_HISTORY_START] & ~((u64)1)) == (mdev->p_uuid[UI_BITMAP] & ~((u64)1)) &&
2812 (mdev->ldev->md.uuid[UI_HISTORY_START + 1] & ~((u64)1)) == (mdev->p_uuid[UI_HISTORY_START] & ~((u64)1))) {
2813 dev_info(DEV, "was SyncTarget, peer missed the resync finished event, corrected peer:\n");
2814
2815 mdev->p_uuid[UI_HISTORY_START + 1] = mdev->p_uuid[UI_HISTORY_START];
2816 mdev->p_uuid[UI_HISTORY_START] = mdev->p_uuid[UI_BITMAP];
2817 mdev->p_uuid[UI_BITMAP] = 0UL;
2818
2819 drbd_uuid_dump(mdev, "peer", mdev->p_uuid, mdev->p_uuid[UI_SIZE], mdev->p_uuid[UI_FLAGS]);
2820 *rule_nr = 35;
2821 } else {
2822 dev_info(DEV, "was SyncTarget (failed to write sync_uuid)\n");
2823 *rule_nr = 37;
2824 }
2825
2826 return -1;
2827 }
2828
2829 /* Common power [off|failure] */
2830 rct = (test_bit(CRASHED_PRIMARY, &mdev->flags) ? 1 : 0) +
2831 (mdev->p_uuid[UI_FLAGS] & 2);
2832 /* lowest bit is set when we were primary,
2833 * next bit (weight 2) is set when peer was primary */
2834 *rule_nr = 40;
2835
2836 switch (rct) {
2837 case 0: /* !self_pri && !peer_pri */ return 0;
2838 case 1: /* self_pri && !peer_pri */ return 1;
2839 case 2: /* !self_pri && peer_pri */ return -1;
2840 case 3: /* self_pri && peer_pri */
Lars Ellenberg427c0432012-08-01 12:43:01 +02002841 dc = test_bit(RESOLVE_CONFLICTS, &mdev->tconn->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002842 return dc ? -1 : 1;
2843 }
2844 }
2845
2846 *rule_nr = 50;
2847 peer = mdev->p_uuid[UI_BITMAP] & ~((u64)1);
2848 if (self == peer)
2849 return -1;
2850
2851 *rule_nr = 51;
2852 peer = mdev->p_uuid[UI_HISTORY_START] & ~((u64)1);
2853 if (self == peer) {
Philipp Reisner31890f42011-01-19 14:12:51 +01002854 if (mdev->tconn->agreed_pro_version < 96 ?
Philipp Reisner4a23f262011-01-11 17:42:17 +01002855 (mdev->ldev->md.uuid[UI_HISTORY_START] & ~((u64)1)) ==
2856 (mdev->p_uuid[UI_HISTORY_START + 1] & ~((u64)1)) :
2857 peer + UUID_NEW_BM_OFFSET == (mdev->p_uuid[UI_BITMAP] & ~((u64)1))) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002858 /* The last P_SYNC_UUID did not get though. Undo the last start of
2859 resync as sync source modifications of the peer's UUIDs. */
2860
Philipp Reisner31890f42011-01-19 14:12:51 +01002861 if (mdev->tconn->agreed_pro_version < 91)
Philipp Reisner4a23f262011-01-11 17:42:17 +01002862 return -1091;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002863
2864 mdev->p_uuid[UI_BITMAP] = mdev->p_uuid[UI_HISTORY_START];
2865 mdev->p_uuid[UI_HISTORY_START] = mdev->p_uuid[UI_HISTORY_START + 1];
Philipp Reisner4a23f262011-01-11 17:42:17 +01002866
Lars Ellenberg92b4ca22012-04-30 12:53:52 +02002867 dev_info(DEV, "Lost last syncUUID packet, corrected:\n");
Philipp Reisner4a23f262011-01-11 17:42:17 +01002868 drbd_uuid_dump(mdev, "peer", mdev->p_uuid, mdev->p_uuid[UI_SIZE], mdev->p_uuid[UI_FLAGS]);
2869
Philipp Reisnerb411b362009-09-25 16:07:19 -07002870 return -1;
2871 }
2872 }
2873
2874 *rule_nr = 60;
2875 self = mdev->ldev->md.uuid[UI_CURRENT] & ~((u64)1);
2876 for (i = UI_HISTORY_START; i <= UI_HISTORY_END; i++) {
2877 peer = mdev->p_uuid[i] & ~((u64)1);
2878 if (self == peer)
2879 return -2;
2880 }
2881
2882 *rule_nr = 70;
2883 self = mdev->ldev->md.uuid[UI_BITMAP] & ~((u64)1);
2884 peer = mdev->p_uuid[UI_CURRENT] & ~((u64)1);
2885 if (self == peer)
2886 return 1;
2887
2888 *rule_nr = 71;
2889 self = mdev->ldev->md.uuid[UI_HISTORY_START] & ~((u64)1);
2890 if (self == peer) {
Philipp Reisner31890f42011-01-19 14:12:51 +01002891 if (mdev->tconn->agreed_pro_version < 96 ?
Philipp Reisner4a23f262011-01-11 17:42:17 +01002892 (mdev->ldev->md.uuid[UI_HISTORY_START + 1] & ~((u64)1)) ==
2893 (mdev->p_uuid[UI_HISTORY_START] & ~((u64)1)) :
2894 self + UUID_NEW_BM_OFFSET == (mdev->ldev->md.uuid[UI_BITMAP] & ~((u64)1))) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002895 /* The last P_SYNC_UUID did not get though. Undo the last start of
2896 resync as sync source modifications of our UUIDs. */
2897
Philipp Reisner31890f42011-01-19 14:12:51 +01002898 if (mdev->tconn->agreed_pro_version < 91)
Philipp Reisner4a23f262011-01-11 17:42:17 +01002899 return -1091;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002900
Philipp Reisner9f2247b2012-08-16 14:25:58 +02002901 __drbd_uuid_set(mdev, UI_BITMAP, mdev->ldev->md.uuid[UI_HISTORY_START]);
2902 __drbd_uuid_set(mdev, UI_HISTORY_START, mdev->ldev->md.uuid[UI_HISTORY_START + 1]);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002903
Philipp Reisner4a23f262011-01-11 17:42:17 +01002904 dev_info(DEV, "Last syncUUID did not get through, corrected:\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07002905 drbd_uuid_dump(mdev, "self", mdev->ldev->md.uuid,
2906 mdev->state.disk >= D_NEGOTIATING ? drbd_bm_total_weight(mdev) : 0, 0);
2907
2908 return 1;
2909 }
2910 }
2911
2912
2913 *rule_nr = 80;
Philipp Reisnerd8c2a362009-11-18 15:52:51 +01002914 peer = mdev->p_uuid[UI_CURRENT] & ~((u64)1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002915 for (i = UI_HISTORY_START; i <= UI_HISTORY_END; i++) {
2916 self = mdev->ldev->md.uuid[i] & ~((u64)1);
2917 if (self == peer)
2918 return 2;
2919 }
2920
2921 *rule_nr = 90;
2922 self = mdev->ldev->md.uuid[UI_BITMAP] & ~((u64)1);
2923 peer = mdev->p_uuid[UI_BITMAP] & ~((u64)1);
2924 if (self == peer && self != ((u64)0))
2925 return 100;
2926
2927 *rule_nr = 100;
2928 for (i = UI_HISTORY_START; i <= UI_HISTORY_END; i++) {
2929 self = mdev->ldev->md.uuid[i] & ~((u64)1);
2930 for (j = UI_HISTORY_START; j <= UI_HISTORY_END; j++) {
2931 peer = mdev->p_uuid[j] & ~((u64)1);
2932 if (self == peer)
2933 return -100;
2934 }
2935 }
2936
2937 return -1000;
2938}
2939
2940/* drbd_sync_handshake() returns the new conn state on success, or
2941 CONN_MASK (-1) on failure.
2942 */
2943static enum drbd_conns drbd_sync_handshake(struct drbd_conf *mdev, enum drbd_role peer_role,
2944 enum drbd_disk_state peer_disk) __must_hold(local)
2945{
Philipp Reisnerb411b362009-09-25 16:07:19 -07002946 enum drbd_conns rv = C_MASK;
2947 enum drbd_disk_state mydisk;
Philipp Reisner44ed1672011-04-19 17:10:19 +02002948 struct net_conf *nc;
Andreas Gruenbacher6dff2902011-06-28 14:18:12 +02002949 int hg, rule_nr, rr_conflict, tentative;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002950
2951 mydisk = mdev->state.disk;
2952 if (mydisk == D_NEGOTIATING)
2953 mydisk = mdev->new_state_tmp.disk;
2954
2955 dev_info(DEV, "drbd_sync_handshake:\n");
Philipp Reisner9f2247b2012-08-16 14:25:58 +02002956
2957 spin_lock_irq(&mdev->ldev->md.uuid_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002958 drbd_uuid_dump(mdev, "self", mdev->ldev->md.uuid, mdev->comm_bm_set, 0);
2959 drbd_uuid_dump(mdev, "peer", mdev->p_uuid,
2960 mdev->p_uuid[UI_SIZE], mdev->p_uuid[UI_FLAGS]);
2961
2962 hg = drbd_uuid_compare(mdev, &rule_nr);
Philipp Reisner9f2247b2012-08-16 14:25:58 +02002963 spin_unlock_irq(&mdev->ldev->md.uuid_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002964
2965 dev_info(DEV, "uuid_compare()=%d by rule %d\n", hg, rule_nr);
2966
2967 if (hg == -1000) {
2968 dev_alert(DEV, "Unrelated data, aborting!\n");
2969 return C_MASK;
2970 }
Philipp Reisner4a23f262011-01-11 17:42:17 +01002971 if (hg < -1000) {
2972 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 -07002973 return C_MASK;
2974 }
2975
2976 if ((mydisk == D_INCONSISTENT && peer_disk > D_INCONSISTENT) ||
2977 (peer_disk == D_INCONSISTENT && mydisk > D_INCONSISTENT)) {
2978 int f = (hg == -100) || abs(hg) == 2;
2979 hg = mydisk > D_INCONSISTENT ? 1 : -1;
2980 if (f)
2981 hg = hg*2;
2982 dev_info(DEV, "Becoming sync %s due to disk states.\n",
2983 hg > 0 ? "source" : "target");
2984 }
2985
Adam Gandelman3a11a482010-04-08 16:48:23 -07002986 if (abs(hg) == 100)
2987 drbd_khelper(mdev, "initial-split-brain");
2988
Philipp Reisner44ed1672011-04-19 17:10:19 +02002989 rcu_read_lock();
2990 nc = rcu_dereference(mdev->tconn->net_conf);
2991
2992 if (hg == 100 || (hg == -100 && nc->always_asbp)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002993 int pcount = (mdev->state.role == R_PRIMARY)
2994 + (peer_role == R_PRIMARY);
2995 int forced = (hg == -100);
2996
2997 switch (pcount) {
2998 case 0:
2999 hg = drbd_asb_recover_0p(mdev);
3000 break;
3001 case 1:
3002 hg = drbd_asb_recover_1p(mdev);
3003 break;
3004 case 2:
3005 hg = drbd_asb_recover_2p(mdev);
3006 break;
3007 }
3008 if (abs(hg) < 100) {
3009 dev_warn(DEV, "Split-Brain detected, %d primaries, "
3010 "automatically solved. Sync from %s node\n",
3011 pcount, (hg < 0) ? "peer" : "this");
3012 if (forced) {
3013 dev_warn(DEV, "Doing a full sync, since"
3014 " UUIDs where ambiguous.\n");
3015 hg = hg*2;
3016 }
3017 }
3018 }
3019
3020 if (hg == -100) {
Philipp Reisner08b165b2011-09-05 16:22:33 +02003021 if (test_bit(DISCARD_MY_DATA, &mdev->flags) && !(mdev->p_uuid[UI_FLAGS]&1))
Philipp Reisnerb411b362009-09-25 16:07:19 -07003022 hg = -1;
Philipp Reisner08b165b2011-09-05 16:22:33 +02003023 if (!test_bit(DISCARD_MY_DATA, &mdev->flags) && (mdev->p_uuid[UI_FLAGS]&1))
Philipp Reisnerb411b362009-09-25 16:07:19 -07003024 hg = 1;
3025
3026 if (abs(hg) < 100)
3027 dev_warn(DEV, "Split-Brain detected, manually solved. "
3028 "Sync from %s node\n",
3029 (hg < 0) ? "peer" : "this");
3030 }
Philipp Reisner44ed1672011-04-19 17:10:19 +02003031 rr_conflict = nc->rr_conflict;
Andreas Gruenbacher6dff2902011-06-28 14:18:12 +02003032 tentative = nc->tentative;
Philipp Reisner44ed1672011-04-19 17:10:19 +02003033 rcu_read_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -07003034
3035 if (hg == -100) {
Lars Ellenberg580b9762010-02-26 23:15:23 +01003036 /* FIXME this log message is not correct if we end up here
3037 * after an attempted attach on a diskless node.
3038 * We just refuse to attach -- well, we drop the "connection"
3039 * to that disk, in a way... */
Adam Gandelman3a11a482010-04-08 16:48:23 -07003040 dev_alert(DEV, "Split-Brain detected but unresolved, dropping connection!\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07003041 drbd_khelper(mdev, "split-brain");
3042 return C_MASK;
3043 }
3044
3045 if (hg > 0 && mydisk <= D_INCONSISTENT) {
3046 dev_err(DEV, "I shall become SyncSource, but I am inconsistent!\n");
3047 return C_MASK;
3048 }
3049
3050 if (hg < 0 && /* by intention we do not use mydisk here. */
3051 mdev->state.role == R_PRIMARY && mdev->state.disk >= D_CONSISTENT) {
Philipp Reisner44ed1672011-04-19 17:10:19 +02003052 switch (rr_conflict) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07003053 case ASB_CALL_HELPER:
3054 drbd_khelper(mdev, "pri-lost");
3055 /* fall through */
3056 case ASB_DISCONNECT:
3057 dev_err(DEV, "I shall become SyncTarget, but I am primary!\n");
3058 return C_MASK;
3059 case ASB_VIOLENTLY:
3060 dev_warn(DEV, "Becoming SyncTarget, violating the stable-data"
3061 "assumption\n");
3062 }
3063 }
3064
Andreas Gruenbacher6dff2902011-06-28 14:18:12 +02003065 if (tentative || test_bit(CONN_DRY_RUN, &mdev->tconn->flags)) {
Philipp Reisnercf14c2e2010-02-02 21:03:50 +01003066 if (hg == 0)
3067 dev_info(DEV, "dry-run connect: No resync, would become Connected immediately.\n");
3068 else
3069 dev_info(DEV, "dry-run connect: Would become %s, doing a %s resync.",
3070 drbd_conn_str(hg > 0 ? C_SYNC_SOURCE : C_SYNC_TARGET),
3071 abs(hg) >= 2 ? "full" : "bit-map based");
3072 return C_MASK;
3073 }
3074
Philipp Reisnerb411b362009-09-25 16:07:19 -07003075 if (abs(hg) >= 2) {
3076 dev_info(DEV, "Writing the whole bitmap, full sync required after drbd_sync_handshake.\n");
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003077 if (drbd_bitmap_io(mdev, &drbd_bmio_set_n_write, "set_n_write from sync_handshake",
3078 BM_LOCKED_SET_ALLOWED))
Philipp Reisnerb411b362009-09-25 16:07:19 -07003079 return C_MASK;
3080 }
3081
3082 if (hg > 0) { /* become sync source. */
3083 rv = C_WF_BITMAP_S;
3084 } else if (hg < 0) { /* become sync target */
3085 rv = C_WF_BITMAP_T;
3086 } else {
3087 rv = C_CONNECTED;
3088 if (drbd_bm_total_weight(mdev)) {
3089 dev_info(DEV, "No resync, but %lu bits in bitmap!\n",
3090 drbd_bm_total_weight(mdev));
3091 }
3092 }
3093
3094 return rv;
3095}
3096
Philipp Reisnerf179d762011-05-16 17:31:47 +02003097static enum drbd_after_sb_p convert_after_sb(enum drbd_after_sb_p peer)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003098{
3099 /* ASB_DISCARD_REMOTE - ASB_DISCARD_LOCAL is valid */
Philipp Reisnerf179d762011-05-16 17:31:47 +02003100 if (peer == ASB_DISCARD_REMOTE)
3101 return ASB_DISCARD_LOCAL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003102
3103 /* any other things with ASB_DISCARD_REMOTE or ASB_DISCARD_LOCAL are invalid */
Philipp Reisnerf179d762011-05-16 17:31:47 +02003104 if (peer == ASB_DISCARD_LOCAL)
3105 return ASB_DISCARD_REMOTE;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003106
3107 /* everything else is valid if they are equal on both sides. */
Philipp Reisnerf179d762011-05-16 17:31:47 +02003108 return peer;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003109}
3110
Andreas Gruenbachere2857212011-03-25 00:57:38 +01003111static int receive_protocol(struct drbd_tconn *tconn, struct packet_info *pi)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003112{
Andreas Gruenbachere6589832011-03-30 12:54:42 +02003113 struct p_protocol *p = pi->data;
Philipp Reisner036b17e2011-05-16 17:38:11 +02003114 enum drbd_after_sb_p p_after_sb_0p, p_after_sb_1p, p_after_sb_2p;
3115 int p_proto, p_discard_my_data, p_two_primaries, cf;
3116 struct net_conf *nc, *old_net_conf, *new_net_conf = NULL;
3117 char integrity_alg[SHARED_SECRET_MAX] = "";
Andreas Gruenbacheraccdbcc2011-07-15 17:41:09 +02003118 struct crypto_hash *peer_integrity_tfm = NULL;
Philipp Reisner7aca6c72011-05-17 10:12:56 +02003119 void *int_dig_in = NULL, *int_dig_vv = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003120
Philipp Reisnerb411b362009-09-25 16:07:19 -07003121 p_proto = be32_to_cpu(p->protocol);
3122 p_after_sb_0p = be32_to_cpu(p->after_sb_0p);
3123 p_after_sb_1p = be32_to_cpu(p->after_sb_1p);
3124 p_after_sb_2p = be32_to_cpu(p->after_sb_2p);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003125 p_two_primaries = be32_to_cpu(p->two_primaries);
Philipp Reisnercf14c2e2010-02-02 21:03:50 +01003126 cf = be32_to_cpu(p->conn_flags);
Andreas Gruenbacher6139f602011-05-06 20:00:02 +02003127 p_discard_my_data = cf & CF_DISCARD_MY_DATA;
Philipp Reisnercf14c2e2010-02-02 21:03:50 +01003128
Andreas Gruenbacher86db0612011-04-28 15:24:18 +02003129 if (tconn->agreed_pro_version >= 87) {
3130 int err;
Philipp Reisnercf14c2e2010-02-02 21:03:50 +01003131
Andreas Gruenbacher88104ca2011-04-28 21:47:21 +02003132 if (pi->size > sizeof(integrity_alg))
Andreas Gruenbacher86db0612011-04-28 15:24:18 +02003133 return -EIO;
Andreas Gruenbacher88104ca2011-04-28 21:47:21 +02003134 err = drbd_recv_all(tconn, integrity_alg, pi->size);
Andreas Gruenbacher86db0612011-04-28 15:24:18 +02003135 if (err)
3136 return err;
Philipp Reisner036b17e2011-05-16 17:38:11 +02003137 integrity_alg[SHARED_SECRET_MAX - 1] = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003138 }
3139
Andreas Gruenbacher7d4c7822011-07-17 23:06:12 +02003140 if (pi->cmd != P_PROTOCOL_UPDATE) {
Andreas Gruenbacherfbc12f42011-07-15 17:04:26 +02003141 clear_bit(CONN_DRY_RUN, &tconn->flags);
Philipp Reisner036b17e2011-05-16 17:38:11 +02003142
Andreas Gruenbacherfbc12f42011-07-15 17:04:26 +02003143 if (cf & CF_DRY_RUN)
3144 set_bit(CONN_DRY_RUN, &tconn->flags);
3145
3146 rcu_read_lock();
3147 nc = rcu_dereference(tconn->net_conf);
3148
3149 if (p_proto != nc->wire_protocol) {
Andreas Gruenbacherd505d9b2011-07-15 17:19:18 +02003150 conn_err(tconn, "incompatible %s settings\n", "protocol");
Andreas Gruenbacherfbc12f42011-07-15 17:04:26 +02003151 goto disconnect_rcu_unlock;
3152 }
3153
3154 if (convert_after_sb(p_after_sb_0p) != nc->after_sb_0p) {
Andreas Gruenbacherd505d9b2011-07-15 17:19:18 +02003155 conn_err(tconn, "incompatible %s settings\n", "after-sb-0pri");
Andreas Gruenbacherfbc12f42011-07-15 17:04:26 +02003156 goto disconnect_rcu_unlock;
3157 }
3158
3159 if (convert_after_sb(p_after_sb_1p) != nc->after_sb_1p) {
Andreas Gruenbacherd505d9b2011-07-15 17:19:18 +02003160 conn_err(tconn, "incompatible %s settings\n", "after-sb-1pri");
Andreas Gruenbacherfbc12f42011-07-15 17:04:26 +02003161 goto disconnect_rcu_unlock;
3162 }
3163
3164 if (convert_after_sb(p_after_sb_2p) != nc->after_sb_2p) {
Andreas Gruenbacherd505d9b2011-07-15 17:19:18 +02003165 conn_err(tconn, "incompatible %s settings\n", "after-sb-2pri");
Andreas Gruenbacherfbc12f42011-07-15 17:04:26 +02003166 goto disconnect_rcu_unlock;
3167 }
3168
3169 if (p_discard_my_data && nc->discard_my_data) {
Andreas Gruenbacherd505d9b2011-07-15 17:19:18 +02003170 conn_err(tconn, "incompatible %s settings\n", "discard-my-data");
Andreas Gruenbacherfbc12f42011-07-15 17:04:26 +02003171 goto disconnect_rcu_unlock;
3172 }
3173
3174 if (p_two_primaries != nc->two_primaries) {
Andreas Gruenbacherd505d9b2011-07-15 17:19:18 +02003175 conn_err(tconn, "incompatible %s settings\n", "allow-two-primaries");
Andreas Gruenbacherfbc12f42011-07-15 17:04:26 +02003176 goto disconnect_rcu_unlock;
3177 }
3178
3179 if (strcmp(integrity_alg, nc->integrity_alg)) {
Andreas Gruenbacherd505d9b2011-07-15 17:19:18 +02003180 conn_err(tconn, "incompatible %s settings\n", "data-integrity-alg");
Andreas Gruenbacherfbc12f42011-07-15 17:04:26 +02003181 goto disconnect_rcu_unlock;
3182 }
3183
3184 rcu_read_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -07003185 }
3186
Andreas Gruenbacher7d4c7822011-07-17 23:06:12 +02003187 if (integrity_alg[0]) {
3188 int hash_size;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003189
Andreas Gruenbacher7d4c7822011-07-17 23:06:12 +02003190 /*
3191 * We can only change the peer data integrity algorithm
3192 * here. Changing our own data integrity algorithm
3193 * requires that we send a P_PROTOCOL_UPDATE packet at
3194 * the same time; otherwise, the peer has no way to
3195 * tell between which packets the algorithm should
3196 * change.
3197 */
Philipp Reisnerb411b362009-09-25 16:07:19 -07003198
Andreas Gruenbacher7d4c7822011-07-17 23:06:12 +02003199 peer_integrity_tfm = crypto_alloc_hash(integrity_alg, 0, CRYPTO_ALG_ASYNC);
3200 if (!peer_integrity_tfm) {
3201 conn_err(tconn, "peer data-integrity-alg %s not supported\n",
3202 integrity_alg);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003203 goto disconnect;
3204 }
Andreas Gruenbacher7d4c7822011-07-17 23:06:12 +02003205
3206 hash_size = crypto_hash_digestsize(peer_integrity_tfm);
3207 int_dig_in = kmalloc(hash_size, GFP_KERNEL);
3208 int_dig_vv = kmalloc(hash_size, GFP_KERNEL);
3209 if (!(int_dig_in && int_dig_vv)) {
3210 conn_err(tconn, "Allocation of buffers for data integrity checking failed\n");
3211 goto disconnect;
3212 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07003213 }
3214
Andreas Gruenbacher7d4c7822011-07-17 23:06:12 +02003215 new_net_conf = kmalloc(sizeof(struct net_conf), GFP_KERNEL);
3216 if (!new_net_conf) {
3217 conn_err(tconn, "Allocation of new net_conf failed\n");
3218 goto disconnect;
3219 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07003220
Andreas Gruenbacher7d4c7822011-07-17 23:06:12 +02003221 mutex_lock(&tconn->data.mutex);
3222 mutex_lock(&tconn->conf_update);
3223 old_net_conf = tconn->net_conf;
3224 *new_net_conf = *old_net_conf;
3225
3226 new_net_conf->wire_protocol = p_proto;
3227 new_net_conf->after_sb_0p = convert_after_sb(p_after_sb_0p);
3228 new_net_conf->after_sb_1p = convert_after_sb(p_after_sb_1p);
3229 new_net_conf->after_sb_2p = convert_after_sb(p_after_sb_2p);
3230 new_net_conf->two_primaries = p_two_primaries;
3231
3232 rcu_assign_pointer(tconn->net_conf, new_net_conf);
3233 mutex_unlock(&tconn->conf_update);
3234 mutex_unlock(&tconn->data.mutex);
3235
3236 crypto_free_hash(tconn->peer_integrity_tfm);
3237 kfree(tconn->int_dig_in);
3238 kfree(tconn->int_dig_vv);
3239 tconn->peer_integrity_tfm = peer_integrity_tfm;
3240 tconn->int_dig_in = int_dig_in;
3241 tconn->int_dig_vv = int_dig_vv;
3242
3243 if (strcmp(old_net_conf->integrity_alg, integrity_alg))
3244 conn_info(tconn, "peer data-integrity-alg: %s\n",
3245 integrity_alg[0] ? integrity_alg : "(none)");
3246
3247 synchronize_rcu();
3248 kfree(old_net_conf);
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01003249 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003250
Philipp Reisner44ed1672011-04-19 17:10:19 +02003251disconnect_rcu_unlock:
3252 rcu_read_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -07003253disconnect:
Andreas Gruenbacherb792c352011-07-15 16:48:49 +02003254 crypto_free_hash(peer_integrity_tfm);
Philipp Reisner036b17e2011-05-16 17:38:11 +02003255 kfree(int_dig_in);
3256 kfree(int_dig_vv);
Philipp Reisner72046242011-03-15 18:51:47 +01003257 conn_request_state(tconn, NS(conn, C_DISCONNECTING), CS_HARD);
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01003258 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003259}
3260
3261/* helper function
3262 * input: alg name, feature name
3263 * return: NULL (alg name was "")
3264 * ERR_PTR(error) if something goes wrong
3265 * or the crypto hash ptr, if it worked out ok. */
3266struct crypto_hash *drbd_crypto_alloc_digest_safe(const struct drbd_conf *mdev,
3267 const char *alg, const char *name)
3268{
3269 struct crypto_hash *tfm;
3270
3271 if (!alg[0])
3272 return NULL;
3273
3274 tfm = crypto_alloc_hash(alg, 0, CRYPTO_ALG_ASYNC);
3275 if (IS_ERR(tfm)) {
3276 dev_err(DEV, "Can not allocate \"%s\" as %s (reason: %ld)\n",
3277 alg, name, PTR_ERR(tfm));
3278 return tfm;
3279 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07003280 return tfm;
3281}
3282
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01003283static int ignore_remaining_packet(struct drbd_tconn *tconn, struct packet_info *pi)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003284{
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01003285 void *buffer = tconn->data.rbuf;
3286 int size = pi->size;
3287
3288 while (size) {
3289 int s = min_t(int, size, DRBD_SOCKET_BUFFER_SIZE);
3290 s = drbd_recv(tconn, buffer, s);
3291 if (s <= 0) {
3292 if (s < 0)
3293 return s;
3294 break;
3295 }
3296 size -= s;
3297 }
3298 if (size)
3299 return -EIO;
3300 return 0;
3301}
3302
3303/*
3304 * config_unknown_volume - device configuration command for unknown volume
3305 *
3306 * When a device is added to an existing connection, the node on which the
3307 * device is added first will send configuration commands to its peer but the
3308 * peer will not know about the device yet. It will warn and ignore these
3309 * commands. Once the device is added on the second node, the second node will
3310 * send the same device configuration commands, but in the other direction.
3311 *
3312 * (We can also end up here if drbd is misconfigured.)
3313 */
3314static int config_unknown_volume(struct drbd_tconn *tconn, struct packet_info *pi)
3315{
Andreas Gruenbacher2fcb8f32011-07-03 11:41:08 +02003316 conn_warn(tconn, "%s packet received for volume %u, which is not configured locally\n",
3317 cmdname(pi->cmd), pi->vnr);
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01003318 return ignore_remaining_packet(tconn, pi);
3319}
3320
3321static int receive_SyncParam(struct drbd_tconn *tconn, struct packet_info *pi)
3322{
3323 struct drbd_conf *mdev;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02003324 struct p_rs_param_95 *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003325 unsigned int header_size, data_size, exp_max_sz;
3326 struct crypto_hash *verify_tfm = NULL;
3327 struct crypto_hash *csums_tfm = NULL;
Philipp Reisner2ec91e02011-05-03 14:58:00 +02003328 struct net_conf *old_net_conf, *new_net_conf = NULL;
Philipp Reisner813472c2011-05-03 16:47:02 +02003329 struct disk_conf *old_disk_conf = NULL, *new_disk_conf = NULL;
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01003330 const int apv = tconn->agreed_pro_version;
Philipp Reisner813472c2011-05-03 16:47:02 +02003331 struct fifo_buffer *old_plan = NULL, *new_plan = NULL;
Philipp Reisner778f2712010-07-06 11:14:00 +02003332 int fifo_size = 0;
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01003333 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003334
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01003335 mdev = vnr_to_mdev(tconn, pi->vnr);
3336 if (!mdev)
3337 return config_unknown_volume(tconn, pi);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003338
3339 exp_max_sz = apv <= 87 ? sizeof(struct p_rs_param)
3340 : apv == 88 ? sizeof(struct p_rs_param)
3341 + SHARED_SECRET_MAX
Philipp Reisner8e26f9c2010-07-06 17:25:54 +02003342 : apv <= 94 ? sizeof(struct p_rs_param_89)
3343 : /* apv >= 95 */ sizeof(struct p_rs_param_95);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003344
Andreas Gruenbachere2857212011-03-25 00:57:38 +01003345 if (pi->size > exp_max_sz) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07003346 dev_err(DEV, "SyncParam packet too long: received %u, expected <= %u bytes\n",
Andreas Gruenbachere2857212011-03-25 00:57:38 +01003347 pi->size, exp_max_sz);
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01003348 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003349 }
3350
3351 if (apv <= 88) {
Andreas Gruenbachere6589832011-03-30 12:54:42 +02003352 header_size = sizeof(struct p_rs_param);
Andreas Gruenbachere2857212011-03-25 00:57:38 +01003353 data_size = pi->size - header_size;
Philipp Reisner8e26f9c2010-07-06 17:25:54 +02003354 } else if (apv <= 94) {
Andreas Gruenbachere6589832011-03-30 12:54:42 +02003355 header_size = sizeof(struct p_rs_param_89);
Andreas Gruenbachere2857212011-03-25 00:57:38 +01003356 data_size = pi->size - header_size;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003357 D_ASSERT(data_size == 0);
Philipp Reisner8e26f9c2010-07-06 17:25:54 +02003358 } else {
Andreas Gruenbachere6589832011-03-30 12:54:42 +02003359 header_size = sizeof(struct p_rs_param_95);
Andreas Gruenbachere2857212011-03-25 00:57:38 +01003360 data_size = pi->size - header_size;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003361 D_ASSERT(data_size == 0);
3362 }
3363
3364 /* initialize verify_alg and csums_alg */
Andreas Gruenbachere6589832011-03-30 12:54:42 +02003365 p = pi->data;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003366 memset(p->verify_alg, 0, 2 * SHARED_SECRET_MAX);
3367
Andreas Gruenbachere6589832011-03-30 12:54:42 +02003368 err = drbd_recv_all(mdev->tconn, p, header_size);
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01003369 if (err)
3370 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003371
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +02003372 mutex_lock(&mdev->tconn->conf_update);
3373 old_net_conf = mdev->tconn->net_conf;
Philipp Reisner813472c2011-05-03 16:47:02 +02003374 if (get_ldev(mdev)) {
3375 new_disk_conf = kzalloc(sizeof(struct disk_conf), GFP_KERNEL);
3376 if (!new_disk_conf) {
3377 put_ldev(mdev);
3378 mutex_unlock(&mdev->tconn->conf_update);
3379 dev_err(DEV, "Allocation of new disk_conf failed\n");
3380 return -ENOMEM;
3381 }
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +02003382
Philipp Reisner813472c2011-05-03 16:47:02 +02003383 old_disk_conf = mdev->ldev->disk_conf;
3384 *new_disk_conf = *old_disk_conf;
3385
Andreas Gruenbacher6394b932011-05-11 14:29:52 +02003386 new_disk_conf->resync_rate = be32_to_cpu(p->resync_rate);
Philipp Reisner813472c2011-05-03 16:47:02 +02003387 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07003388
3389 if (apv >= 88) {
3390 if (apv == 88) {
Philipp Reisner5de73822012-03-28 10:17:32 +02003391 if (data_size > SHARED_SECRET_MAX || data_size == 0) {
3392 dev_err(DEV, "verify-alg of wrong size, "
3393 "peer wants %u, accepting only up to %u byte\n",
3394 data_size, SHARED_SECRET_MAX);
Philipp Reisner813472c2011-05-03 16:47:02 +02003395 err = -EIO;
3396 goto reconnect;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003397 }
3398
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01003399 err = drbd_recv_all(mdev->tconn, p->verify_alg, data_size);
Philipp Reisner813472c2011-05-03 16:47:02 +02003400 if (err)
3401 goto reconnect;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003402 /* we expect NUL terminated string */
3403 /* but just in case someone tries to be evil */
3404 D_ASSERT(p->verify_alg[data_size-1] == 0);
3405 p->verify_alg[data_size-1] = 0;
3406
3407 } else /* apv >= 89 */ {
3408 /* we still expect NUL terminated strings */
3409 /* but just in case someone tries to be evil */
3410 D_ASSERT(p->verify_alg[SHARED_SECRET_MAX-1] == 0);
3411 D_ASSERT(p->csums_alg[SHARED_SECRET_MAX-1] == 0);
3412 p->verify_alg[SHARED_SECRET_MAX-1] = 0;
3413 p->csums_alg[SHARED_SECRET_MAX-1] = 0;
3414 }
3415
Philipp Reisner2ec91e02011-05-03 14:58:00 +02003416 if (strcmp(old_net_conf->verify_alg, p->verify_alg)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07003417 if (mdev->state.conn == C_WF_REPORT_PARAMS) {
3418 dev_err(DEV, "Different verify-alg settings. me=\"%s\" peer=\"%s\"\n",
Philipp Reisner2ec91e02011-05-03 14:58:00 +02003419 old_net_conf->verify_alg, p->verify_alg);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003420 goto disconnect;
3421 }
3422 verify_tfm = drbd_crypto_alloc_digest_safe(mdev,
3423 p->verify_alg, "verify-alg");
3424 if (IS_ERR(verify_tfm)) {
3425 verify_tfm = NULL;
3426 goto disconnect;
3427 }
3428 }
3429
Philipp Reisner2ec91e02011-05-03 14:58:00 +02003430 if (apv >= 89 && strcmp(old_net_conf->csums_alg, p->csums_alg)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07003431 if (mdev->state.conn == C_WF_REPORT_PARAMS) {
3432 dev_err(DEV, "Different csums-alg settings. me=\"%s\" peer=\"%s\"\n",
Philipp Reisner2ec91e02011-05-03 14:58:00 +02003433 old_net_conf->csums_alg, p->csums_alg);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003434 goto disconnect;
3435 }
3436 csums_tfm = drbd_crypto_alloc_digest_safe(mdev,
3437 p->csums_alg, "csums-alg");
3438 if (IS_ERR(csums_tfm)) {
3439 csums_tfm = NULL;
3440 goto disconnect;
3441 }
3442 }
3443
Philipp Reisner813472c2011-05-03 16:47:02 +02003444 if (apv > 94 && new_disk_conf) {
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +02003445 new_disk_conf->c_plan_ahead = be32_to_cpu(p->c_plan_ahead);
3446 new_disk_conf->c_delay_target = be32_to_cpu(p->c_delay_target);
3447 new_disk_conf->c_fill_target = be32_to_cpu(p->c_fill_target);
3448 new_disk_conf->c_max_rate = be32_to_cpu(p->c_max_rate);
Philipp Reisner778f2712010-07-06 11:14:00 +02003449
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +02003450 fifo_size = (new_disk_conf->c_plan_ahead * 10 * SLEEP_TIME) / HZ;
Philipp Reisner9958c852011-05-03 16:19:31 +02003451 if (fifo_size != mdev->rs_plan_s->size) {
Philipp Reisner813472c2011-05-03 16:47:02 +02003452 new_plan = fifo_alloc(fifo_size);
3453 if (!new_plan) {
Philipp Reisner778f2712010-07-06 11:14:00 +02003454 dev_err(DEV, "kmalloc of fifo_buffer failed");
Lars Ellenbergf3990022011-03-23 14:31:09 +01003455 put_ldev(mdev);
Philipp Reisner778f2712010-07-06 11:14:00 +02003456 goto disconnect;
3457 }
3458 }
Philipp Reisner8e26f9c2010-07-06 17:25:54 +02003459 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07003460
Philipp Reisner91fd4da2011-04-20 17:47:29 +02003461 if (verify_tfm || csums_tfm) {
Philipp Reisner2ec91e02011-05-03 14:58:00 +02003462 new_net_conf = kzalloc(sizeof(struct net_conf), GFP_KERNEL);
3463 if (!new_net_conf) {
Philipp Reisner91fd4da2011-04-20 17:47:29 +02003464 dev_err(DEV, "Allocation of new net_conf failed\n");
3465 goto disconnect;
3466 }
3467
Philipp Reisner2ec91e02011-05-03 14:58:00 +02003468 *new_net_conf = *old_net_conf;
Philipp Reisner91fd4da2011-04-20 17:47:29 +02003469
3470 if (verify_tfm) {
Philipp Reisner2ec91e02011-05-03 14:58:00 +02003471 strcpy(new_net_conf->verify_alg, p->verify_alg);
3472 new_net_conf->verify_alg_len = strlen(p->verify_alg) + 1;
Philipp Reisner91fd4da2011-04-20 17:47:29 +02003473 crypto_free_hash(mdev->tconn->verify_tfm);
3474 mdev->tconn->verify_tfm = verify_tfm;
3475 dev_info(DEV, "using verify-alg: \"%s\"\n", p->verify_alg);
3476 }
3477 if (csums_tfm) {
Philipp Reisner2ec91e02011-05-03 14:58:00 +02003478 strcpy(new_net_conf->csums_alg, p->csums_alg);
3479 new_net_conf->csums_alg_len = strlen(p->csums_alg) + 1;
Philipp Reisner91fd4da2011-04-20 17:47:29 +02003480 crypto_free_hash(mdev->tconn->csums_tfm);
3481 mdev->tconn->csums_tfm = csums_tfm;
3482 dev_info(DEV, "using csums-alg: \"%s\"\n", p->csums_alg);
3483 }
Philipp Reisner2ec91e02011-05-03 14:58:00 +02003484 rcu_assign_pointer(tconn->net_conf, new_net_conf);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003485 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07003486 }
3487
Philipp Reisner813472c2011-05-03 16:47:02 +02003488 if (new_disk_conf) {
3489 rcu_assign_pointer(mdev->ldev->disk_conf, new_disk_conf);
3490 put_ldev(mdev);
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +02003491 }
Philipp Reisner813472c2011-05-03 16:47:02 +02003492
3493 if (new_plan) {
3494 old_plan = mdev->rs_plan_s;
3495 rcu_assign_pointer(mdev->rs_plan_s, new_plan);
3496 }
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +02003497
3498 mutex_unlock(&mdev->tconn->conf_update);
3499 synchronize_rcu();
3500 if (new_net_conf)
3501 kfree(old_net_conf);
3502 kfree(old_disk_conf);
Philipp Reisner813472c2011-05-03 16:47:02 +02003503 kfree(old_plan);
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +02003504
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01003505 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003506
Philipp Reisner813472c2011-05-03 16:47:02 +02003507reconnect:
3508 if (new_disk_conf) {
3509 put_ldev(mdev);
3510 kfree(new_disk_conf);
3511 }
3512 mutex_unlock(&mdev->tconn->conf_update);
3513 return -EIO;
3514
Philipp Reisnerb411b362009-09-25 16:07:19 -07003515disconnect:
Philipp Reisner813472c2011-05-03 16:47:02 +02003516 kfree(new_plan);
3517 if (new_disk_conf) {
3518 put_ldev(mdev);
3519 kfree(new_disk_conf);
3520 }
Philipp Reisnera0095502011-05-03 13:14:15 +02003521 mutex_unlock(&mdev->tconn->conf_update);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003522 /* just for completeness: actually not needed,
3523 * as this is not reached if csums_tfm was ok. */
3524 crypto_free_hash(csums_tfm);
3525 /* but free the verify_tfm again, if csums_tfm did not work out */
3526 crypto_free_hash(verify_tfm);
Philipp Reisner38fa9982011-03-15 18:24:49 +01003527 conn_request_state(mdev->tconn, NS(conn, C_DISCONNECTING), CS_HARD);
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01003528 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003529}
3530
Philipp Reisnerb411b362009-09-25 16:07:19 -07003531/* warn if the arguments differ by more than 12.5% */
3532static void warn_if_differ_considerably(struct drbd_conf *mdev,
3533 const char *s, sector_t a, sector_t b)
3534{
3535 sector_t d;
3536 if (a == 0 || b == 0)
3537 return;
3538 d = (a > b) ? (a - b) : (b - a);
3539 if (d > (a>>3) || d > (b>>3))
3540 dev_warn(DEV, "Considerable difference in %s: %llus vs. %llus\n", s,
3541 (unsigned long long)a, (unsigned long long)b);
3542}
3543
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01003544static int receive_sizes(struct drbd_tconn *tconn, struct packet_info *pi)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003545{
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01003546 struct drbd_conf *mdev;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02003547 struct p_sizes *p = pi->data;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003548 enum determine_dev_size dd = unchanged;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003549 sector_t p_size, p_usize, my_usize;
3550 int ldsc = 0; /* local disk size changed */
Philipp Reisnere89b5912010-03-24 17:11:33 +01003551 enum dds_flags ddsf;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003552
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01003553 mdev = vnr_to_mdev(tconn, pi->vnr);
3554 if (!mdev)
3555 return config_unknown_volume(tconn, pi);
3556
Philipp Reisnerb411b362009-09-25 16:07:19 -07003557 p_size = be64_to_cpu(p->d_size);
3558 p_usize = be64_to_cpu(p->u_size);
3559
Philipp Reisnerb411b362009-09-25 16:07:19 -07003560 /* just store the peer's disk size for now.
3561 * we still need to figure out whether we accept that. */
3562 mdev->p_size = p_size;
3563
Philipp Reisnerb411b362009-09-25 16:07:19 -07003564 if (get_ldev(mdev)) {
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +02003565 rcu_read_lock();
3566 my_usize = rcu_dereference(mdev->ldev->disk_conf)->disk_size;
3567 rcu_read_unlock();
3568
Philipp Reisnerb411b362009-09-25 16:07:19 -07003569 warn_if_differ_considerably(mdev, "lower level device sizes",
3570 p_size, drbd_get_max_capacity(mdev->ldev));
3571 warn_if_differ_considerably(mdev, "user requested size",
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +02003572 p_usize, my_usize);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003573
3574 /* if this is the first connect, or an otherwise expected
3575 * param exchange, choose the minimum */
3576 if (mdev->state.conn == C_WF_REPORT_PARAMS)
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +02003577 p_usize = min_not_zero(my_usize, p_usize);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003578
3579 /* Never shrink a device with usable data during connect.
3580 But allow online shrinking if we are connected. */
Philipp Reisneref5e44a2011-05-03 13:27:43 +02003581 if (drbd_new_dev_size(mdev, mdev->ldev, p_usize, 0) <
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +02003582 drbd_get_capacity(mdev->this_bdev) &&
3583 mdev->state.disk >= D_OUTDATED &&
3584 mdev->state.conn < C_CONNECTED) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07003585 dev_err(DEV, "The peer's disk size is too small!\n");
Philipp Reisner38fa9982011-03-15 18:24:49 +01003586 conn_request_state(mdev->tconn, NS(conn, C_DISCONNECTING), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003587 put_ldev(mdev);
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01003588 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003589 }
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +02003590
3591 if (my_usize != p_usize) {
3592 struct disk_conf *old_disk_conf, *new_disk_conf = NULL;
3593
3594 new_disk_conf = kzalloc(sizeof(struct disk_conf), GFP_KERNEL);
3595 if (!new_disk_conf) {
3596 dev_err(DEV, "Allocation of new disk_conf failed\n");
3597 put_ldev(mdev);
3598 return -ENOMEM;
3599 }
3600
3601 mutex_lock(&mdev->tconn->conf_update);
3602 old_disk_conf = mdev->ldev->disk_conf;
3603 *new_disk_conf = *old_disk_conf;
3604 new_disk_conf->disk_size = p_usize;
3605
3606 rcu_assign_pointer(mdev->ldev->disk_conf, new_disk_conf);
3607 mutex_unlock(&mdev->tconn->conf_update);
3608 synchronize_rcu();
3609 kfree(old_disk_conf);
3610
3611 dev_info(DEV, "Peer sets u_size to %lu sectors\n",
3612 (unsigned long)my_usize);
3613 }
3614
Philipp Reisnerb411b362009-09-25 16:07:19 -07003615 put_ldev(mdev);
3616 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07003617
Philipp Reisnere89b5912010-03-24 17:11:33 +01003618 ddsf = be16_to_cpu(p->dds_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003619 if (get_ldev(mdev)) {
Bart Van Assche24c48302011-05-21 18:32:29 +02003620 dd = drbd_determine_dev_size(mdev, ddsf);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003621 put_ldev(mdev);
3622 if (dd == dev_size_error)
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01003623 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003624 drbd_md_sync(mdev);
3625 } else {
3626 /* I am diskless, need to accept the peer's size. */
3627 drbd_set_my_capacity(mdev, p_size);
3628 }
3629
Philipp Reisner99432fc2011-05-20 16:39:13 +02003630 mdev->peer_max_bio_size = be32_to_cpu(p->max_bio_size);
3631 drbd_reconsider_max_bio_size(mdev);
3632
Philipp Reisnerb411b362009-09-25 16:07:19 -07003633 if (get_ldev(mdev)) {
3634 if (mdev->ldev->known_size != drbd_get_capacity(mdev->ldev->backing_bdev)) {
3635 mdev->ldev->known_size = drbd_get_capacity(mdev->ldev->backing_bdev);
3636 ldsc = 1;
3637 }
3638
Philipp Reisnerb411b362009-09-25 16:07:19 -07003639 put_ldev(mdev);
3640 }
3641
3642 if (mdev->state.conn > C_WF_REPORT_PARAMS) {
3643 if (be64_to_cpu(p->c_size) !=
3644 drbd_get_capacity(mdev->this_bdev) || ldsc) {
3645 /* we have different sizes, probably peer
3646 * needs to know my new size... */
Philipp Reisnere89b5912010-03-24 17:11:33 +01003647 drbd_send_sizes(mdev, 0, ddsf);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003648 }
3649 if (test_and_clear_bit(RESIZE_PENDING, &mdev->flags) ||
3650 (dd == grew && mdev->state.conn == C_CONNECTED)) {
3651 if (mdev->state.pdsk >= D_INCONSISTENT &&
Philipp Reisnere89b5912010-03-24 17:11:33 +01003652 mdev->state.disk >= D_INCONSISTENT) {
3653 if (ddsf & DDSF_NO_RESYNC)
3654 dev_info(DEV, "Resync of new storage suppressed with --assume-clean\n");
3655 else
3656 resync_after_online_grow(mdev);
3657 } else
Philipp Reisnerb411b362009-09-25 16:07:19 -07003658 set_bit(RESYNC_AFTER_NEG, &mdev->flags);
3659 }
3660 }
3661
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01003662 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003663}
3664
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01003665static int receive_uuids(struct drbd_tconn *tconn, struct packet_info *pi)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003666{
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01003667 struct drbd_conf *mdev;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02003668 struct p_uuids *p = pi->data;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003669 u64 *p_uuid;
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003670 int i, updated_uuids = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003671
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01003672 mdev = vnr_to_mdev(tconn, pi->vnr);
3673 if (!mdev)
3674 return config_unknown_volume(tconn, pi);
3675
Philipp Reisnerb411b362009-09-25 16:07:19 -07003676 p_uuid = kmalloc(sizeof(u64)*UI_EXTENDED_SIZE, GFP_NOIO);
Jing Wang063eacf2012-10-25 15:00:56 +08003677 if (!p_uuid) {
3678 dev_err(DEV, "kmalloc of p_uuid failed\n");
3679 return false;
3680 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07003681
3682 for (i = UI_CURRENT; i < UI_EXTENDED_SIZE; i++)
3683 p_uuid[i] = be64_to_cpu(p->uuid[i]);
3684
3685 kfree(mdev->p_uuid);
3686 mdev->p_uuid = p_uuid;
3687
3688 if (mdev->state.conn < C_CONNECTED &&
3689 mdev->state.disk < D_INCONSISTENT &&
3690 mdev->state.role == R_PRIMARY &&
3691 (mdev->ed_uuid & ~((u64)1)) != (p_uuid[UI_CURRENT] & ~((u64)1))) {
3692 dev_err(DEV, "Can only connect to data with current UUID=%016llX\n",
3693 (unsigned long long)mdev->ed_uuid);
Philipp Reisner38fa9982011-03-15 18:24:49 +01003694 conn_request_state(mdev->tconn, NS(conn, C_DISCONNECTING), CS_HARD);
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01003695 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003696 }
3697
3698 if (get_ldev(mdev)) {
3699 int skip_initial_sync =
3700 mdev->state.conn == C_CONNECTED &&
Philipp Reisner31890f42011-01-19 14:12:51 +01003701 mdev->tconn->agreed_pro_version >= 90 &&
Philipp Reisnerb411b362009-09-25 16:07:19 -07003702 mdev->ldev->md.uuid[UI_CURRENT] == UUID_JUST_CREATED &&
3703 (p_uuid[UI_FLAGS] & 8);
3704 if (skip_initial_sync) {
3705 dev_info(DEV, "Accepted new current UUID, preparing to skip initial sync\n");
3706 drbd_bitmap_io(mdev, &drbd_bmio_clear_n_write,
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003707 "clear_n_write from receive_uuids",
3708 BM_LOCKED_TEST_ALLOWED);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003709 _drbd_uuid_set(mdev, UI_CURRENT, p_uuid[UI_CURRENT]);
3710 _drbd_uuid_set(mdev, UI_BITMAP, 0);
3711 _drbd_set_state(_NS2(mdev, disk, D_UP_TO_DATE, pdsk, D_UP_TO_DATE),
3712 CS_VERBOSE, NULL);
3713 drbd_md_sync(mdev);
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003714 updated_uuids = 1;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003715 }
3716 put_ldev(mdev);
Philipp Reisner18a50fa2010-06-21 14:14:15 +02003717 } else if (mdev->state.disk < D_INCONSISTENT &&
3718 mdev->state.role == R_PRIMARY) {
3719 /* I am a diskless primary, the peer just created a new current UUID
3720 for me. */
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003721 updated_uuids = drbd_set_ed_uuid(mdev, p_uuid[UI_CURRENT]);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003722 }
3723
3724 /* Before we test for the disk state, we should wait until an eventually
3725 ongoing cluster wide state change is finished. That is important if
3726 we are primary and are detaching from our disk. We need to see the
3727 new disk state... */
Philipp Reisner8410da82011-02-11 20:11:10 +01003728 mutex_lock(mdev->state_mutex);
3729 mutex_unlock(mdev->state_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003730 if (mdev->state.conn >= C_CONNECTED && mdev->state.disk < D_INCONSISTENT)
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003731 updated_uuids |= drbd_set_ed_uuid(mdev, p_uuid[UI_CURRENT]);
3732
3733 if (updated_uuids)
3734 drbd_print_uuids(mdev, "receiver updated UUIDs to");
Philipp Reisnerb411b362009-09-25 16:07:19 -07003735
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01003736 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003737}
3738
3739/**
3740 * convert_state() - Converts the peer's view of the cluster state to our point of view
3741 * @ps: The state as seen by the peer.
3742 */
3743static union drbd_state convert_state(union drbd_state ps)
3744{
3745 union drbd_state ms;
3746
3747 static enum drbd_conns c_tab[] = {
Philipp Reisner369bea62011-07-06 23:04:44 +02003748 [C_WF_REPORT_PARAMS] = C_WF_REPORT_PARAMS,
Philipp Reisnerb411b362009-09-25 16:07:19 -07003749 [C_CONNECTED] = C_CONNECTED,
3750
3751 [C_STARTING_SYNC_S] = C_STARTING_SYNC_T,
3752 [C_STARTING_SYNC_T] = C_STARTING_SYNC_S,
3753 [C_DISCONNECTING] = C_TEAR_DOWN, /* C_NETWORK_FAILURE, */
3754 [C_VERIFY_S] = C_VERIFY_T,
3755 [C_MASK] = C_MASK,
3756 };
3757
3758 ms.i = ps.i;
3759
3760 ms.conn = c_tab[ps.conn];
3761 ms.peer = ps.role;
3762 ms.role = ps.peer;
3763 ms.pdsk = ps.disk;
3764 ms.disk = ps.pdsk;
3765 ms.peer_isp = (ps.aftr_isp | ps.user_isp);
3766
3767 return ms;
3768}
3769
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01003770static int receive_req_state(struct drbd_tconn *tconn, struct packet_info *pi)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003771{
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01003772 struct drbd_conf *mdev;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02003773 struct p_req_state *p = pi->data;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003774 union drbd_state mask, val;
Andreas Gruenbacherbf885f82010-12-08 00:39:32 +01003775 enum drbd_state_rv rv;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003776
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01003777 mdev = vnr_to_mdev(tconn, pi->vnr);
3778 if (!mdev)
3779 return -EIO;
3780
Philipp Reisnerb411b362009-09-25 16:07:19 -07003781 mask.i = be32_to_cpu(p->mask);
3782 val.i = be32_to_cpu(p->val);
3783
Lars Ellenberg427c0432012-08-01 12:43:01 +02003784 if (test_bit(RESOLVE_CONFLICTS, &mdev->tconn->flags) &&
Philipp Reisner8410da82011-02-11 20:11:10 +01003785 mutex_is_locked(mdev->state_mutex)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07003786 drbd_send_sr_reply(mdev, SS_CONCURRENT_ST_CHG);
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01003787 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003788 }
3789
3790 mask = convert_state(mask);
3791 val = convert_state(val);
3792
3793 rv = drbd_change_state(mdev, CS_VERBOSE, mask, val);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003794 drbd_send_sr_reply(mdev, rv);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003795
Philipp Reisnerb411b362009-09-25 16:07:19 -07003796 drbd_md_sync(mdev);
3797
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01003798 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003799}
3800
Andreas Gruenbachere2857212011-03-25 00:57:38 +01003801static int receive_req_conn_state(struct drbd_tconn *tconn, struct packet_info *pi)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003802{
Andreas Gruenbachere6589832011-03-30 12:54:42 +02003803 struct p_req_state *p = pi->data;
Philipp Reisnerdfafcc82011-03-16 10:55:07 +01003804 union drbd_state mask, val;
3805 enum drbd_state_rv rv;
3806
3807 mask.i = be32_to_cpu(p->mask);
3808 val.i = be32_to_cpu(p->val);
3809
Lars Ellenberg427c0432012-08-01 12:43:01 +02003810 if (test_bit(RESOLVE_CONFLICTS, &tconn->flags) &&
Philipp Reisnerdfafcc82011-03-16 10:55:07 +01003811 mutex_is_locked(&tconn->cstate_mutex)) {
3812 conn_send_sr_reply(tconn, SS_CONCURRENT_ST_CHG);
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01003813 return 0;
Philipp Reisnerdfafcc82011-03-16 10:55:07 +01003814 }
3815
3816 mask = convert_state(mask);
3817 val = convert_state(val);
3818
Philipp Reisner778bcf22011-03-28 12:55:03 +02003819 rv = conn_request_state(tconn, mask, val, CS_VERBOSE | CS_LOCAL_ONLY | CS_IGN_OUTD_FAIL);
Philipp Reisnerdfafcc82011-03-16 10:55:07 +01003820 conn_send_sr_reply(tconn, rv);
3821
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01003822 return 0;
Philipp Reisnerdfafcc82011-03-16 10:55:07 +01003823}
3824
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01003825static int receive_state(struct drbd_tconn *tconn, struct packet_info *pi)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003826{
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01003827 struct drbd_conf *mdev;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02003828 struct p_state *p = pi->data;
Lars Ellenberg4ac4aad2010-07-22 17:39:26 +02003829 union drbd_state os, ns, peer_state;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003830 enum drbd_disk_state real_peer_disk;
Philipp Reisner65d922c2010-06-16 16:18:09 +02003831 enum chg_state_flags cs_flags;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003832 int rv;
3833
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01003834 mdev = vnr_to_mdev(tconn, pi->vnr);
3835 if (!mdev)
3836 return config_unknown_volume(tconn, pi);
3837
Philipp Reisnerb411b362009-09-25 16:07:19 -07003838 peer_state.i = be32_to_cpu(p->state);
3839
3840 real_peer_disk = peer_state.disk;
3841 if (peer_state.disk == D_NEGOTIATING) {
3842 real_peer_disk = mdev->p_uuid[UI_FLAGS] & 4 ? D_INCONSISTENT : D_CONSISTENT;
3843 dev_info(DEV, "real peer disk state = %s\n", drbd_disk_str(real_peer_disk));
3844 }
3845
Philipp Reisner87eeee42011-01-19 14:16:30 +01003846 spin_lock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003847 retry:
Philipp Reisner78bae592011-03-28 15:40:12 +02003848 os = ns = drbd_read_state(mdev);
Philipp Reisner87eeee42011-01-19 14:16:30 +01003849 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003850
Lars Ellenberg545752d2011-12-05 14:39:25 +01003851 /* If some other part of the code (asender thread, timeout)
3852 * already decided to close the connection again,
3853 * we must not "re-establish" it here. */
3854 if (os.conn <= C_TEAR_DOWN)
Lars Ellenberg58ffa582012-07-26 14:09:49 +02003855 return -ECONNRESET;
Lars Ellenberg545752d2011-12-05 14:39:25 +01003856
Lars Ellenberg40424e42011-09-26 15:24:56 +02003857 /* If this is the "end of sync" confirmation, usually the peer disk
3858 * transitions from D_INCONSISTENT to D_UP_TO_DATE. For empty (0 bits
3859 * set) resync started in PausedSyncT, or if the timing of pause-/
3860 * unpause-sync events has been "just right", the peer disk may
3861 * transition from D_CONSISTENT to D_UP_TO_DATE as well.
3862 */
3863 if ((os.pdsk == D_INCONSISTENT || os.pdsk == D_CONSISTENT) &&
3864 real_peer_disk == D_UP_TO_DATE &&
Lars Ellenberge9ef7bb2010-10-07 15:55:39 +02003865 os.conn > C_CONNECTED && os.disk == D_UP_TO_DATE) {
3866 /* If we are (becoming) SyncSource, but peer is still in sync
3867 * preparation, ignore its uptodate-ness to avoid flapping, it
3868 * will change to inconsistent once the peer reaches active
3869 * syncing states.
3870 * It may have changed syncer-paused flags, however, so we
3871 * cannot ignore this completely. */
3872 if (peer_state.conn > C_CONNECTED &&
3873 peer_state.conn < C_SYNC_SOURCE)
3874 real_peer_disk = D_INCONSISTENT;
3875
3876 /* if peer_state changes to connected at the same time,
3877 * it explicitly notifies us that it finished resync.
3878 * Maybe we should finish it up, too? */
3879 else if (os.conn >= C_SYNC_SOURCE &&
3880 peer_state.conn == C_CONNECTED) {
3881 if (drbd_bm_total_weight(mdev) <= mdev->rs_failed)
3882 drbd_resync_finished(mdev);
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01003883 return 0;
Lars Ellenberge9ef7bb2010-10-07 15:55:39 +02003884 }
3885 }
3886
Lars Ellenberg02b91b52012-06-28 18:26:52 +02003887 /* explicit verify finished notification, stop sector reached. */
3888 if (os.conn == C_VERIFY_T && os.disk == D_UP_TO_DATE &&
3889 peer_state.conn == C_CONNECTED && real_peer_disk == D_UP_TO_DATE) {
Lars Ellenberg58ffa582012-07-26 14:09:49 +02003890 ov_out_of_sync_print(mdev);
Lars Ellenberg02b91b52012-06-28 18:26:52 +02003891 drbd_resync_finished(mdev);
Lars Ellenberg58ffa582012-07-26 14:09:49 +02003892 return 0;
Lars Ellenberg02b91b52012-06-28 18:26:52 +02003893 }
3894
Lars Ellenberge9ef7bb2010-10-07 15:55:39 +02003895 /* peer says his disk is inconsistent, while we think it is uptodate,
3896 * and this happens while the peer still thinks we have a sync going on,
3897 * but we think we are already done with the sync.
3898 * We ignore this to avoid flapping pdsk.
3899 * This should not happen, if the peer is a recent version of drbd. */
3900 if (os.pdsk == D_UP_TO_DATE && real_peer_disk == D_INCONSISTENT &&
3901 os.conn == C_CONNECTED && peer_state.conn > C_SYNC_SOURCE)
3902 real_peer_disk = D_UP_TO_DATE;
3903
Lars Ellenberg4ac4aad2010-07-22 17:39:26 +02003904 if (ns.conn == C_WF_REPORT_PARAMS)
3905 ns.conn = C_CONNECTED;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003906
Philipp Reisner67531712010-10-27 12:21:30 +02003907 if (peer_state.conn == C_AHEAD)
3908 ns.conn = C_BEHIND;
3909
Philipp Reisnerb411b362009-09-25 16:07:19 -07003910 if (mdev->p_uuid && peer_state.disk >= D_NEGOTIATING &&
3911 get_ldev_if_state(mdev, D_NEGOTIATING)) {
3912 int cr; /* consider resync */
3913
3914 /* if we established a new connection */
Lars Ellenberg4ac4aad2010-07-22 17:39:26 +02003915 cr = (os.conn < C_CONNECTED);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003916 /* if we had an established connection
3917 * and one of the nodes newly attaches a disk */
Lars Ellenberg4ac4aad2010-07-22 17:39:26 +02003918 cr |= (os.conn == C_CONNECTED &&
Philipp Reisnerb411b362009-09-25 16:07:19 -07003919 (peer_state.disk == D_NEGOTIATING ||
Lars Ellenberg4ac4aad2010-07-22 17:39:26 +02003920 os.disk == D_NEGOTIATING));
Philipp Reisnerb411b362009-09-25 16:07:19 -07003921 /* if we have both been inconsistent, and the peer has been
3922 * forced to be UpToDate with --overwrite-data */
3923 cr |= test_bit(CONSIDER_RESYNC, &mdev->flags);
3924 /* if we had been plain connected, and the admin requested to
3925 * start a sync by "invalidate" or "invalidate-remote" */
Lars Ellenberg4ac4aad2010-07-22 17:39:26 +02003926 cr |= (os.conn == C_CONNECTED &&
Philipp Reisnerb411b362009-09-25 16:07:19 -07003927 (peer_state.conn >= C_STARTING_SYNC_S &&
3928 peer_state.conn <= C_WF_BITMAP_T));
3929
3930 if (cr)
Lars Ellenberg4ac4aad2010-07-22 17:39:26 +02003931 ns.conn = drbd_sync_handshake(mdev, peer_state.role, real_peer_disk);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003932
3933 put_ldev(mdev);
Lars Ellenberg4ac4aad2010-07-22 17:39:26 +02003934 if (ns.conn == C_MASK) {
3935 ns.conn = C_CONNECTED;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003936 if (mdev->state.disk == D_NEGOTIATING) {
Lars Ellenberg82f59cc2010-10-16 12:13:47 +02003937 drbd_force_state(mdev, NS(disk, D_FAILED));
Philipp Reisnerb411b362009-09-25 16:07:19 -07003938 } else if (peer_state.disk == D_NEGOTIATING) {
3939 dev_err(DEV, "Disk attach process on the peer node was aborted.\n");
3940 peer_state.disk = D_DISKLESS;
Lars Ellenberg580b9762010-02-26 23:15:23 +01003941 real_peer_disk = D_DISKLESS;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003942 } else {
Philipp Reisner8169e412011-03-15 18:40:27 +01003943 if (test_and_clear_bit(CONN_DRY_RUN, &mdev->tconn->flags))
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01003944 return -EIO;
Lars Ellenberg4ac4aad2010-07-22 17:39:26 +02003945 D_ASSERT(os.conn == C_WF_REPORT_PARAMS);
Philipp Reisner38fa9982011-03-15 18:24:49 +01003946 conn_request_state(mdev->tconn, NS(conn, C_DISCONNECTING), CS_HARD);
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01003947 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003948 }
3949 }
3950 }
3951
Philipp Reisner87eeee42011-01-19 14:16:30 +01003952 spin_lock_irq(&mdev->tconn->req_lock);
Philipp Reisner78bae592011-03-28 15:40:12 +02003953 if (os.i != drbd_read_state(mdev).i)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003954 goto retry;
3955 clear_bit(CONSIDER_RESYNC, &mdev->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003956 ns.peer = peer_state.role;
3957 ns.pdsk = real_peer_disk;
3958 ns.peer_isp = (peer_state.aftr_isp | peer_state.user_isp);
Lars Ellenberg4ac4aad2010-07-22 17:39:26 +02003959 if ((ns.conn == C_CONNECTED || ns.conn == C_WF_BITMAP_S) && ns.disk == D_NEGOTIATING)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003960 ns.disk = mdev->new_state_tmp.disk;
Lars Ellenberg4ac4aad2010-07-22 17:39:26 +02003961 cs_flags = CS_VERBOSE + (os.conn < C_CONNECTED && ns.conn >= C_CONNECTED ? 0 : CS_HARD);
Philipp Reisner2aebfab2011-03-28 16:48:11 +02003962 if (ns.pdsk == D_CONSISTENT && drbd_suspended(mdev) && ns.conn == C_CONNECTED && os.conn < C_CONNECTED &&
Philipp Reisner481c6f52010-06-22 14:03:27 +02003963 test_bit(NEW_CUR_UUID, &mdev->flags)) {
Andreas Gruenbacher8554df12011-01-25 15:37:43 +01003964 /* Do not allow tl_restart(RESEND) for a rebooted peer. We can only allow this
Philipp Reisner481c6f52010-06-22 14:03:27 +02003965 for temporal network outages! */
Philipp Reisner87eeee42011-01-19 14:16:30 +01003966 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisner481c6f52010-06-22 14:03:27 +02003967 dev_err(DEV, "Aborting Connect, can not thaw IO with an only Consistent peer\n");
Philipp Reisner2f5cdd02011-02-21 14:29:27 +01003968 tl_clear(mdev->tconn);
Philipp Reisner481c6f52010-06-22 14:03:27 +02003969 drbd_uuid_new_current(mdev);
3970 clear_bit(NEW_CUR_UUID, &mdev->flags);
Philipp Reisner38fa9982011-03-15 18:24:49 +01003971 conn_request_state(mdev->tconn, NS2(conn, C_PROTOCOL_ERROR, susp, 0), CS_HARD);
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01003972 return -EIO;
Philipp Reisner481c6f52010-06-22 14:03:27 +02003973 }
Philipp Reisner65d922c2010-06-16 16:18:09 +02003974 rv = _drbd_set_state(mdev, ns, cs_flags, NULL);
Philipp Reisner78bae592011-03-28 15:40:12 +02003975 ns = drbd_read_state(mdev);
Philipp Reisner87eeee42011-01-19 14:16:30 +01003976 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003977
3978 if (rv < SS_SUCCESS) {
Philipp Reisner38fa9982011-03-15 18:24:49 +01003979 conn_request_state(mdev->tconn, NS(conn, C_DISCONNECTING), CS_HARD);
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01003980 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003981 }
3982
Lars Ellenberg4ac4aad2010-07-22 17:39:26 +02003983 if (os.conn > C_WF_REPORT_PARAMS) {
3984 if (ns.conn > C_CONNECTED && peer_state.conn <= C_CONNECTED &&
Philipp Reisnerb411b362009-09-25 16:07:19 -07003985 peer_state.disk != D_NEGOTIATING ) {
3986 /* we want resync, peer has not yet decided to sync... */
3987 /* Nowadays only used when forcing a node into primary role and
3988 setting its disk to UpToDate with that */
3989 drbd_send_uuids(mdev);
Lars Ellenbergf479ea02011-10-27 16:52:30 +02003990 drbd_send_current_state(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003991 }
3992 }
3993
Philipp Reisner08b165b2011-09-05 16:22:33 +02003994 clear_bit(DISCARD_MY_DATA, &mdev->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003995
Lars Ellenbergcccac982013-03-19 18:16:46 +01003996 drbd_md_sync(mdev); /* update connected indicator, la_size_sect, ... */
Philipp Reisnerb411b362009-09-25 16:07:19 -07003997
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01003998 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003999}
4000
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01004001static int receive_sync_uuid(struct drbd_tconn *tconn, struct packet_info *pi)
Philipp Reisnerb411b362009-09-25 16:07:19 -07004002{
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01004003 struct drbd_conf *mdev;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02004004 struct p_rs_uuid *p = pi->data;
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01004005
4006 mdev = vnr_to_mdev(tconn, pi->vnr);
4007 if (!mdev)
4008 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004009
4010 wait_event(mdev->misc_wait,
4011 mdev->state.conn == C_WF_SYNC_UUID ||
Philipp Reisnerc4752ef2010-10-27 17:32:36 +02004012 mdev->state.conn == C_BEHIND ||
Philipp Reisnerb411b362009-09-25 16:07:19 -07004013 mdev->state.conn < C_CONNECTED ||
4014 mdev->state.disk < D_NEGOTIATING);
4015
4016 /* D_ASSERT( mdev->state.conn == C_WF_SYNC_UUID ); */
4017
Philipp Reisnerb411b362009-09-25 16:07:19 -07004018 /* Here the _drbd_uuid_ functions are right, current should
4019 _not_ be rotated into the history */
4020 if (get_ldev_if_state(mdev, D_NEGOTIATING)) {
4021 _drbd_uuid_set(mdev, UI_CURRENT, be64_to_cpu(p->uuid));
4022 _drbd_uuid_set(mdev, UI_BITMAP, 0UL);
4023
Lars Ellenberg62b0da32011-01-20 13:25:21 +01004024 drbd_print_uuids(mdev, "updated sync uuid");
Philipp Reisnerb411b362009-09-25 16:07:19 -07004025 drbd_start_resync(mdev, C_SYNC_TARGET);
4026
4027 put_ldev(mdev);
4028 } else
4029 dev_err(DEV, "Ignoring SyncUUID packet!\n");
4030
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01004031 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004032}
4033
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01004034/**
4035 * receive_bitmap_plain
4036 *
4037 * Return 0 when done, 1 when another iteration is needed, and a negative error
4038 * code upon failure.
4039 */
4040static int
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02004041receive_bitmap_plain(struct drbd_conf *mdev, unsigned int size,
Andreas Gruenbachere6589832011-03-30 12:54:42 +02004042 unsigned long *p, struct bm_xfer_ctx *c)
Philipp Reisnerb411b362009-09-25 16:07:19 -07004043{
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02004044 unsigned int data_size = DRBD_SOCKET_BUFFER_SIZE -
4045 drbd_header_size(mdev->tconn);
Andreas Gruenbachere6589832011-03-30 12:54:42 +02004046 unsigned int num_words = min_t(size_t, data_size / sizeof(*p),
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02004047 c->bm_words - c->word_offset);
Andreas Gruenbachere6589832011-03-30 12:54:42 +02004048 unsigned int want = num_words * sizeof(*p);
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01004049 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004050
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02004051 if (want != size) {
4052 dev_err(DEV, "%s:want (%u) != size (%u)\n", __func__, want, size);
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01004053 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004054 }
4055 if (want == 0)
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01004056 return 0;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02004057 err = drbd_recv_all(mdev->tconn, p, want);
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01004058 if (err)
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01004059 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004060
Andreas Gruenbachere6589832011-03-30 12:54:42 +02004061 drbd_bm_merge_lel(mdev, c->word_offset, num_words, p);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004062
4063 c->word_offset += num_words;
4064 c->bit_offset = c->word_offset * BITS_PER_LONG;
4065 if (c->bit_offset > c->bm_bits)
4066 c->bit_offset = c->bm_bits;
4067
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01004068 return 1;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004069}
4070
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01004071static enum drbd_bitmap_code dcbp_get_code(struct p_compressed_bm *p)
4072{
4073 return (enum drbd_bitmap_code)(p->encoding & 0x0f);
4074}
4075
4076static int dcbp_get_start(struct p_compressed_bm *p)
4077{
4078 return (p->encoding & 0x80) != 0;
4079}
4080
4081static int dcbp_get_pad_bits(struct p_compressed_bm *p)
4082{
4083 return (p->encoding >> 4) & 0x7;
4084}
4085
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01004086/**
4087 * recv_bm_rle_bits
4088 *
4089 * Return 0 when done, 1 when another iteration is needed, and a negative error
4090 * code upon failure.
4091 */
4092static int
Philipp Reisnerb411b362009-09-25 16:07:19 -07004093recv_bm_rle_bits(struct drbd_conf *mdev,
4094 struct p_compressed_bm *p,
Philipp Reisnerc6d25cf2011-01-19 16:13:06 +01004095 struct bm_xfer_ctx *c,
4096 unsigned int len)
Philipp Reisnerb411b362009-09-25 16:07:19 -07004097{
4098 struct bitstream bs;
4099 u64 look_ahead;
4100 u64 rl;
4101 u64 tmp;
4102 unsigned long s = c->bit_offset;
4103 unsigned long e;
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01004104 int toggle = dcbp_get_start(p);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004105 int have;
4106 int bits;
4107
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01004108 bitstream_init(&bs, p->code, len, dcbp_get_pad_bits(p));
Philipp Reisnerb411b362009-09-25 16:07:19 -07004109
4110 bits = bitstream_get_bits(&bs, &look_ahead, 64);
4111 if (bits < 0)
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01004112 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004113
4114 for (have = bits; have > 0; s += rl, toggle = !toggle) {
4115 bits = vli_decode_bits(&rl, look_ahead);
4116 if (bits <= 0)
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01004117 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004118
4119 if (toggle) {
4120 e = s + rl -1;
4121 if (e >= c->bm_bits) {
4122 dev_err(DEV, "bitmap overflow (e:%lu) while decoding bm RLE packet\n", e);
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01004123 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004124 }
4125 _drbd_bm_set_bits(mdev, s, e);
4126 }
4127
4128 if (have < bits) {
4129 dev_err(DEV, "bitmap decoding error: h:%d b:%d la:0x%08llx l:%u/%u\n",
4130 have, bits, look_ahead,
4131 (unsigned int)(bs.cur.b - p->code),
4132 (unsigned int)bs.buf_len);
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01004133 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004134 }
4135 look_ahead >>= bits;
4136 have -= bits;
4137
4138 bits = bitstream_get_bits(&bs, &tmp, 64 - have);
4139 if (bits < 0)
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01004140 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004141 look_ahead |= tmp << have;
4142 have += bits;
4143 }
4144
4145 c->bit_offset = s;
4146 bm_xfer_ctx_bit_to_word_offset(c);
4147
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01004148 return (s != c->bm_bits);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004149}
4150
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01004151/**
4152 * decode_bitmap_c
4153 *
4154 * Return 0 when done, 1 when another iteration is needed, and a negative error
4155 * code upon failure.
4156 */
4157static int
Philipp Reisnerb411b362009-09-25 16:07:19 -07004158decode_bitmap_c(struct drbd_conf *mdev,
4159 struct p_compressed_bm *p,
Philipp Reisnerc6d25cf2011-01-19 16:13:06 +01004160 struct bm_xfer_ctx *c,
4161 unsigned int len)
Philipp Reisnerb411b362009-09-25 16:07:19 -07004162{
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01004163 if (dcbp_get_code(p) == RLE_VLI_Bits)
Andreas Gruenbachere6589832011-03-30 12:54:42 +02004164 return recv_bm_rle_bits(mdev, p, c, len - sizeof(*p));
Philipp Reisnerb411b362009-09-25 16:07:19 -07004165
4166 /* other variants had been implemented for evaluation,
4167 * but have been dropped as this one turned out to be "best"
4168 * during all our tests. */
4169
4170 dev_err(DEV, "receive_bitmap_c: unknown encoding %u\n", p->encoding);
Philipp Reisner38fa9982011-03-15 18:24:49 +01004171 conn_request_state(mdev->tconn, NS(conn, C_PROTOCOL_ERROR), CS_HARD);
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01004172 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004173}
4174
4175void INFO_bm_xfer_stats(struct drbd_conf *mdev,
4176 const char *direction, struct bm_xfer_ctx *c)
4177{
4178 /* what would it take to transfer it "plaintext" */
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02004179 unsigned int header_size = drbd_header_size(mdev->tconn);
4180 unsigned int data_size = DRBD_SOCKET_BUFFER_SIZE - header_size;
4181 unsigned int plain =
4182 header_size * (DIV_ROUND_UP(c->bm_words, data_size) + 1) +
4183 c->bm_words * sizeof(unsigned long);
4184 unsigned int total = c->bytes[0] + c->bytes[1];
4185 unsigned int r;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004186
4187 /* total can not be zero. but just in case: */
4188 if (total == 0)
4189 return;
4190
4191 /* don't report if not compressed */
4192 if (total >= plain)
4193 return;
4194
4195 /* total < plain. check for overflow, still */
4196 r = (total > UINT_MAX/1000) ? (total / (plain/1000))
4197 : (1000 * total / plain);
4198
4199 if (r > 1000)
4200 r = 1000;
4201
4202 r = 1000 - r;
4203 dev_info(DEV, "%s bitmap stats [Bytes(packets)]: plain %u(%u), RLE %u(%u), "
4204 "total %u; compression: %u.%u%%\n",
4205 direction,
4206 c->bytes[1], c->packets[1],
4207 c->bytes[0], c->packets[0],
4208 total, r/10, r % 10);
4209}
4210
4211/* Since we are processing the bitfield from lower addresses to higher,
4212 it does not matter if the process it in 32 bit chunks or 64 bit
4213 chunks as long as it is little endian. (Understand it as byte stream,
4214 beginning with the lowest byte...) If we would use big endian
4215 we would need to process it from the highest address to the lowest,
4216 in order to be agnostic to the 32 vs 64 bits issue.
4217
4218 returns 0 on failure, 1 if we successfully received it. */
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01004219static int receive_bitmap(struct drbd_tconn *tconn, struct packet_info *pi)
Philipp Reisnerb411b362009-09-25 16:07:19 -07004220{
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01004221 struct drbd_conf *mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004222 struct bm_xfer_ctx c;
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01004223 int err;
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01004224
4225 mdev = vnr_to_mdev(tconn, pi->vnr);
4226 if (!mdev)
4227 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004228
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01004229 drbd_bm_lock(mdev, "receive bitmap", BM_LOCKED_SET_ALLOWED);
4230 /* you are supposed to send additional out-of-sync information
4231 * if you actually set bits during this phase */
Philipp Reisnerb411b362009-09-25 16:07:19 -07004232
Philipp Reisnerb411b362009-09-25 16:07:19 -07004233 c = (struct bm_xfer_ctx) {
4234 .bm_bits = drbd_bm_bits(mdev),
4235 .bm_words = drbd_bm_words(mdev),
4236 };
4237
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01004238 for(;;) {
Andreas Gruenbachere6589832011-03-30 12:54:42 +02004239 if (pi->cmd == P_BITMAP)
4240 err = receive_bitmap_plain(mdev, pi->size, pi->data, &c);
4241 else if (pi->cmd == P_COMPRESSED_BITMAP) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07004242 /* MAYBE: sanity check that we speak proto >= 90,
4243 * and the feature is enabled! */
Andreas Gruenbachere6589832011-03-30 12:54:42 +02004244 struct p_compressed_bm *p = pi->data;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004245
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02004246 if (pi->size > DRBD_SOCKET_BUFFER_SIZE - drbd_header_size(tconn)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07004247 dev_err(DEV, "ReportCBitmap packet too large\n");
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01004248 err = -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004249 goto out;
4250 }
Andreas Gruenbachere6589832011-03-30 12:54:42 +02004251 if (pi->size <= sizeof(*p)) {
Andreas Gruenbachere2857212011-03-25 00:57:38 +01004252 dev_err(DEV, "ReportCBitmap packet too small (l:%u)\n", pi->size);
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01004253 err = -EIO;
Andreas Gruenbacher78fcbda2010-12-10 22:18:27 +01004254 goto out;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004255 }
Andreas Gruenbachere6589832011-03-30 12:54:42 +02004256 err = drbd_recv_all(mdev->tconn, p, pi->size);
4257 if (err)
4258 goto out;
Andreas Gruenbachere2857212011-03-25 00:57:38 +01004259 err = decode_bitmap_c(mdev, p, &c, pi->size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004260 } else {
Andreas Gruenbachere2857212011-03-25 00:57:38 +01004261 dev_warn(DEV, "receive_bitmap: cmd neither ReportBitMap nor ReportCBitMap (is 0x%x)", pi->cmd);
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01004262 err = -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004263 goto out;
4264 }
4265
Andreas Gruenbachere2857212011-03-25 00:57:38 +01004266 c.packets[pi->cmd == P_BITMAP]++;
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02004267 c.bytes[pi->cmd == P_BITMAP] += drbd_header_size(tconn) + pi->size;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004268
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01004269 if (err <= 0) {
4270 if (err < 0)
4271 goto out;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004272 break;
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01004273 }
Andreas Gruenbachere2857212011-03-25 00:57:38 +01004274 err = drbd_recv_header(mdev->tconn, pi);
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01004275 if (err)
Philipp Reisnerb411b362009-09-25 16:07:19 -07004276 goto out;
Andreas Gruenbacher2c464072010-12-11 21:53:12 +01004277 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07004278
4279 INFO_bm_xfer_stats(mdev, "receive", &c);
4280
4281 if (mdev->state.conn == C_WF_BITMAP_T) {
Andreas Gruenbacherde1f8e42010-12-10 21:04:00 +01004282 enum drbd_state_rv rv;
4283
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01004284 err = drbd_send_bitmap(mdev);
4285 if (err)
Philipp Reisnerb411b362009-09-25 16:07:19 -07004286 goto out;
4287 /* Omit CS_ORDERED with this state transition to avoid deadlocks. */
Andreas Gruenbacherde1f8e42010-12-10 21:04:00 +01004288 rv = _drbd_request_state(mdev, NS(conn, C_WF_SYNC_UUID), CS_VERBOSE);
4289 D_ASSERT(rv == SS_SUCCESS);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004290 } else if (mdev->state.conn != C_WF_BITMAP_S) {
4291 /* admin may have requested C_DISCONNECTING,
4292 * other threads may have noticed network errors */
4293 dev_info(DEV, "unexpected cstate (%s) in receive_bitmap\n",
4294 drbd_conn_str(mdev->state.conn));
4295 }
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01004296 err = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004297
Philipp Reisnerb411b362009-09-25 16:07:19 -07004298 out:
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01004299 drbd_bm_unlock(mdev);
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01004300 if (!err && mdev->state.conn == C_WF_BITMAP_S)
Philipp Reisnerb411b362009-09-25 16:07:19 -07004301 drbd_start_resync(mdev, C_SYNC_SOURCE);
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01004302 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004303}
4304
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01004305static int receive_skip(struct drbd_tconn *tconn, struct packet_info *pi)
Philipp Reisnerb411b362009-09-25 16:07:19 -07004306{
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01004307 conn_warn(tconn, "skipping unknown optional packet type %d, l: %d!\n",
Andreas Gruenbachere2857212011-03-25 00:57:38 +01004308 pi->cmd, pi->size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004309
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01004310 return ignore_remaining_packet(tconn, pi);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004311}
4312
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01004313static int receive_UnplugRemote(struct drbd_tconn *tconn, struct packet_info *pi)
Philipp Reisnerb411b362009-09-25 16:07:19 -07004314{
Philipp Reisnerb411b362009-09-25 16:07:19 -07004315 /* Make sure we've acked all the TCP data associated
4316 * with the data requests being unplugged */
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01004317 drbd_tcp_quickack(tconn->data.socket);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004318
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01004319 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004320}
4321
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01004322static int receive_out_of_sync(struct drbd_tconn *tconn, struct packet_info *pi)
Philipp Reisner73a01a12010-10-27 14:33:00 +02004323{
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01004324 struct drbd_conf *mdev;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02004325 struct p_block_desc *p = pi->data;
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01004326
4327 mdev = vnr_to_mdev(tconn, pi->vnr);
4328 if (!mdev)
4329 return -EIO;
Philipp Reisner73a01a12010-10-27 14:33:00 +02004330
Lars Ellenbergf735e3632010-12-17 21:06:18 +01004331 switch (mdev->state.conn) {
4332 case C_WF_SYNC_UUID:
4333 case C_WF_BITMAP_T:
4334 case C_BEHIND:
4335 break;
4336 default:
4337 dev_err(DEV, "ASSERT FAILED cstate = %s, expected: WFSyncUUID|WFBitMapT|Behind\n",
4338 drbd_conn_str(mdev->state.conn));
4339 }
4340
Philipp Reisner73a01a12010-10-27 14:33:00 +02004341 drbd_set_out_of_sync(mdev, be64_to_cpu(p->sector), be32_to_cpu(p->blksize));
4342
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01004343 return 0;
Philipp Reisner73a01a12010-10-27 14:33:00 +02004344}
4345
Philipp Reisner02918be2010-08-20 14:35:10 +02004346struct data_cmd {
4347 int expect_payload;
4348 size_t pkt_size;
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01004349 int (*fn)(struct drbd_tconn *, struct packet_info *);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004350};
4351
Philipp Reisner02918be2010-08-20 14:35:10 +02004352static struct data_cmd drbd_cmd_handler[] = {
4353 [P_DATA] = { 1, sizeof(struct p_data), receive_Data },
4354 [P_DATA_REPLY] = { 1, sizeof(struct p_data), receive_DataReply },
4355 [P_RS_DATA_REPLY] = { 1, sizeof(struct p_data), receive_RSDataReply } ,
4356 [P_BARRIER] = { 0, sizeof(struct p_barrier), receive_Barrier } ,
Andreas Gruenbachere6589832011-03-30 12:54:42 +02004357 [P_BITMAP] = { 1, 0, receive_bitmap } ,
4358 [P_COMPRESSED_BITMAP] = { 1, 0, receive_bitmap } ,
4359 [P_UNPLUG_REMOTE] = { 0, 0, receive_UnplugRemote },
Philipp Reisner02918be2010-08-20 14:35:10 +02004360 [P_DATA_REQUEST] = { 0, sizeof(struct p_block_req), receive_DataRequest },
4361 [P_RS_DATA_REQUEST] = { 0, sizeof(struct p_block_req), receive_DataRequest },
Andreas Gruenbachere6589832011-03-30 12:54:42 +02004362 [P_SYNC_PARAM] = { 1, 0, receive_SyncParam },
4363 [P_SYNC_PARAM89] = { 1, 0, receive_SyncParam },
Philipp Reisner02918be2010-08-20 14:35:10 +02004364 [P_PROTOCOL] = { 1, sizeof(struct p_protocol), receive_protocol },
4365 [P_UUIDS] = { 0, sizeof(struct p_uuids), receive_uuids },
4366 [P_SIZES] = { 0, sizeof(struct p_sizes), receive_sizes },
4367 [P_STATE] = { 0, sizeof(struct p_state), receive_state },
4368 [P_STATE_CHG_REQ] = { 0, sizeof(struct p_req_state), receive_req_state },
4369 [P_SYNC_UUID] = { 0, sizeof(struct p_rs_uuid), receive_sync_uuid },
4370 [P_OV_REQUEST] = { 0, sizeof(struct p_block_req), receive_DataRequest },
4371 [P_OV_REPLY] = { 1, sizeof(struct p_block_req), receive_DataRequest },
4372 [P_CSUM_RS_REQUEST] = { 1, sizeof(struct p_block_req), receive_DataRequest },
4373 [P_DELAY_PROBE] = { 0, sizeof(struct p_delay_probe93), receive_skip },
Philipp Reisner73a01a12010-10-27 14:33:00 +02004374 [P_OUT_OF_SYNC] = { 0, sizeof(struct p_block_desc), receive_out_of_sync },
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01004375 [P_CONN_ST_CHG_REQ] = { 0, sizeof(struct p_req_state), receive_req_conn_state },
Philipp Reisner036b17e2011-05-16 17:38:11 +02004376 [P_PROTOCOL_UPDATE] = { 1, sizeof(struct p_protocol), receive_protocol },
Philipp Reisner02918be2010-08-20 14:35:10 +02004377};
4378
Philipp Reisnereefc2f72011-02-08 12:55:24 +01004379static void drbdd(struct drbd_tconn *tconn)
Philipp Reisnerb411b362009-09-25 16:07:19 -07004380{
Philipp Reisner77351055b2011-02-07 17:24:26 +01004381 struct packet_info pi;
Philipp Reisner02918be2010-08-20 14:35:10 +02004382 size_t shs; /* sub header size */
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01004383 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004384
Philipp Reisnereefc2f72011-02-08 12:55:24 +01004385 while (get_t_state(&tconn->receiver) == RUNNING) {
Andreas Gruenbacherdeebe192011-03-25 00:01:04 +01004386 struct data_cmd *cmd;
4387
Philipp Reisnereefc2f72011-02-08 12:55:24 +01004388 drbd_thread_current_set_cpu(&tconn->receiver);
Andreas Gruenbacher69bc7bc2011-03-16 17:31:52 +01004389 if (drbd_recv_header(tconn, &pi))
Philipp Reisner02918be2010-08-20 14:35:10 +02004390 goto err_out;
4391
Andreas Gruenbacherdeebe192011-03-25 00:01:04 +01004392 cmd = &drbd_cmd_handler[pi.cmd];
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01004393 if (unlikely(pi.cmd >= ARRAY_SIZE(drbd_cmd_handler) || !cmd->fn)) {
Andreas Gruenbacher2fcb8f32011-07-03 11:41:08 +02004394 conn_err(tconn, "Unexpected data packet %s (0x%04x)",
4395 cmdname(pi.cmd), pi.cmd);
Philipp Reisner02918be2010-08-20 14:35:10 +02004396 goto err_out;
Lars Ellenberg0b33a912009-11-16 15:58:04 +01004397 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07004398
Andreas Gruenbachere6589832011-03-30 12:54:42 +02004399 shs = cmd->pkt_size;
4400 if (pi.size > shs && !cmd->expect_payload) {
Andreas Gruenbacher2fcb8f32011-07-03 11:41:08 +02004401 conn_err(tconn, "No payload expected %s l:%d\n",
4402 cmdname(pi.cmd), pi.size);
Philipp Reisner02918be2010-08-20 14:35:10 +02004403 goto err_out;
4404 }
4405
Lars Ellenbergc13f7e12010-10-29 23:32:01 +02004406 if (shs) {
Andreas Gruenbachere6589832011-03-30 12:54:42 +02004407 err = drbd_recv_all_warn(tconn, pi.data, shs);
Andreas Gruenbachera5c31902011-03-24 03:28:04 +01004408 if (err)
Lars Ellenbergc13f7e12010-10-29 23:32:01 +02004409 goto err_out;
Andreas Gruenbachere2857212011-03-25 00:57:38 +01004410 pi.size -= shs;
Lars Ellenbergc13f7e12010-10-29 23:32:01 +02004411 }
4412
Andreas Gruenbacher4a76b162011-03-25 02:43:51 +01004413 err = cmd->fn(tconn, &pi);
4414 if (err) {
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02004415 conn_err(tconn, "error receiving %s, e: %d l: %d!\n",
4416 cmdname(pi.cmd), err, pi.size);
Philipp Reisner02918be2010-08-20 14:35:10 +02004417 goto err_out;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004418 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07004419 }
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01004420 return;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004421
Andreas Gruenbacher82bc0192011-03-17 12:10:19 +01004422 err_out:
4423 conn_request_state(tconn, NS(conn, C_PROTOCOL_ERROR), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004424}
4425
Philipp Reisner0e29d162011-02-18 14:23:11 +01004426void conn_flush_workqueue(struct drbd_tconn *tconn)
Philipp Reisnerb411b362009-09-25 16:07:19 -07004427{
4428 struct drbd_wq_barrier barr;
4429
4430 barr.w.cb = w_prev_work_done;
Philipp Reisner0e29d162011-02-18 14:23:11 +01004431 barr.w.tconn = tconn;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004432 init_completion(&barr.done);
Lars Ellenbergd5b27b02011-11-14 15:42:37 +01004433 drbd_queue_work(&tconn->sender_work, &barr.w);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004434 wait_for_completion(&barr.done);
4435}
4436
Philipp Reisner81fa2e62011-05-04 15:10:30 +02004437static void conn_disconnect(struct drbd_tconn *tconn)
Philipp Reisnerf70b35112010-06-24 14:34:40 +02004438{
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02004439 struct drbd_conf *mdev;
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01004440 enum drbd_conns oc;
Philipp Reisner376694a2011-11-07 10:54:28 +01004441 int vnr;
Philipp Reisnerf70b35112010-06-24 14:34:40 +02004442
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01004443 if (tconn->cstate == C_STANDALONE)
Philipp Reisnerb411b362009-09-25 16:07:19 -07004444 return;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004445
Lars Ellenberg545752d2011-12-05 14:39:25 +01004446 /* We are about to start the cleanup after connection loss.
4447 * Make sure drbd_make_request knows about that.
4448 * Usually we should be in some network failure state already,
4449 * but just in case we are not, we fix it up here.
4450 */
Philipp Reisnerb8853db2011-12-13 11:09:16 +01004451 conn_request_state(tconn, NS(conn, C_NETWORK_FAILURE), CS_HARD);
Lars Ellenberg545752d2011-12-05 14:39:25 +01004452
Philipp Reisnerb411b362009-09-25 16:07:19 -07004453 /* asender does not clean up anything. it must not interfere, either */
Philipp Reisner360cc742011-02-08 14:29:53 +01004454 drbd_thread_stop(&tconn->asender);
4455 drbd_free_sock(tconn);
4456
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02004457 rcu_read_lock();
4458 idr_for_each_entry(&tconn->volumes, mdev, vnr) {
4459 kref_get(&mdev->kref);
4460 rcu_read_unlock();
4461 drbd_disconnected(mdev);
4462 kref_put(&mdev->kref, &drbd_minor_destroy);
4463 rcu_read_lock();
4464 }
4465 rcu_read_unlock();
4466
Philipp Reisner12038a32011-11-09 19:18:00 +01004467 if (!list_empty(&tconn->current_epoch->list))
4468 conn_err(tconn, "ASSERTION FAILED: tconn->current_epoch->list not empty\n");
4469 /* ok, no more ee's on the fly, it is safe to reset the epoch_size */
4470 atomic_set(&tconn->current_epoch->epoch_size, 0);
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01004471 tconn->send.seen_any_write_yet = false;
Philipp Reisner12038a32011-11-09 19:18:00 +01004472
Philipp Reisner360cc742011-02-08 14:29:53 +01004473 conn_info(tconn, "Connection closed\n");
4474
Philipp Reisnercb703452011-03-24 11:03:07 +01004475 if (conn_highest_role(tconn) == R_PRIMARY && conn_highest_pdsk(tconn) >= D_UNKNOWN)
4476 conn_try_outdate_peer_async(tconn);
4477
Philipp Reisner360cc742011-02-08 14:29:53 +01004478 spin_lock_irq(&tconn->req_lock);
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01004479 oc = tconn->cstate;
4480 if (oc >= C_UNCONNECTED)
Philipp Reisner376694a2011-11-07 10:54:28 +01004481 _conn_request_state(tconn, NS(conn, C_UNCONNECTED), CS_VERBOSE);
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01004482
Philipp Reisner360cc742011-02-08 14:29:53 +01004483 spin_unlock_irq(&tconn->req_lock);
4484
Lars Ellenbergf3dfa402011-05-02 10:45:05 +02004485 if (oc == C_DISCONNECTING)
Lars Ellenbergd9cc6e22011-04-27 10:25:28 +02004486 conn_request_state(tconn, NS(conn, C_STANDALONE), CS_VERBOSE | CS_HARD);
Philipp Reisner360cc742011-02-08 14:29:53 +01004487}
4488
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02004489static int drbd_disconnected(struct drbd_conf *mdev)
Philipp Reisner360cc742011-02-08 14:29:53 +01004490{
Philipp Reisner360cc742011-02-08 14:29:53 +01004491 unsigned int i;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004492
Philipp Reisner85719572010-07-21 10:20:17 +02004493 /* wait for current activity to cease. */
Philipp Reisner87eeee42011-01-19 14:16:30 +01004494 spin_lock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004495 _drbd_wait_ee_list_empty(mdev, &mdev->active_ee);
4496 _drbd_wait_ee_list_empty(mdev, &mdev->sync_ee);
4497 _drbd_wait_ee_list_empty(mdev, &mdev->read_ee);
Philipp Reisner87eeee42011-01-19 14:16:30 +01004498 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004499
4500 /* We do not have data structures that would allow us to
4501 * get the rs_pending_cnt down to 0 again.
4502 * * On C_SYNC_TARGET we do not have any data structures describing
4503 * the pending RSDataRequest's we have sent.
4504 * * On C_SYNC_SOURCE there is no data structure that tracks
4505 * the P_RS_DATA_REPLY blocks that we sent to the SyncTarget.
4506 * And no, it is not the sum of the reference counts in the
4507 * resync_LRU. The resync_LRU tracks the whole operation including
4508 * the disk-IO, while the rs_pending_cnt only tracks the blocks
4509 * on the fly. */
4510 drbd_rs_cancel_all(mdev);
4511 mdev->rs_total = 0;
4512 mdev->rs_failed = 0;
4513 atomic_set(&mdev->rs_pending_cnt, 0);
4514 wake_up(&mdev->misc_wait);
4515
Philipp Reisnerb411b362009-09-25 16:07:19 -07004516 del_timer_sync(&mdev->resync_timer);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004517 resync_timer_fn((unsigned long)mdev);
4518
Philipp Reisnerb411b362009-09-25 16:07:19 -07004519 /* wait for all w_e_end_data_req, w_e_end_rsdata_req, w_send_barrier,
4520 * w_make_resync_request etc. which may still be on the worker queue
4521 * to be "canceled" */
4522 drbd_flush_workqueue(mdev);
4523
Andreas Gruenbachera990be42011-04-06 17:56:48 +02004524 drbd_finish_peer_reqs(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004525
Philipp Reisnerd10b4ea2011-11-30 23:25:36 +01004526 /* This second workqueue flush is necessary, since drbd_finish_peer_reqs()
4527 might have issued a work again. The one before drbd_finish_peer_reqs() is
4528 necessary to reclain net_ee in drbd_finish_peer_reqs(). */
4529 drbd_flush_workqueue(mdev);
4530
Lars Ellenberg08332d72012-08-17 15:09:13 +02004531 /* need to do it again, drbd_finish_peer_reqs() may have populated it
4532 * again via drbd_try_clear_on_disk_bm(). */
4533 drbd_rs_cancel_all(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004534
4535 kfree(mdev->p_uuid);
4536 mdev->p_uuid = NULL;
4537
Philipp Reisner2aebfab2011-03-28 16:48:11 +02004538 if (!drbd_suspended(mdev))
Philipp Reisner2f5cdd02011-02-21 14:29:27 +01004539 tl_clear(mdev->tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004540
4541 drbd_md_sync(mdev);
4542
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01004543 /* serialize with bitmap writeout triggered by the state change,
4544 * if any. */
4545 wait_event(mdev->misc_wait, !test_bit(BITMAP_IO, &mdev->flags));
4546
Philipp Reisnerb411b362009-09-25 16:07:19 -07004547 /* tcp_close and release of sendpage pages can be deferred. I don't
4548 * want to use SO_LINGER, because apparently it can be deferred for
4549 * more than 20 seconds (longest time I checked).
4550 *
4551 * Actually we don't care for exactly when the network stack does its
4552 * put_page(), but release our reference on these pages right here.
4553 */
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02004554 i = drbd_free_peer_reqs(mdev, &mdev->net_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004555 if (i)
4556 dev_info(DEV, "net_ee not empty, killed %u entries\n", i);
Lars Ellenberg435f0742010-09-06 12:30:25 +02004557 i = atomic_read(&mdev->pp_in_use_by_net);
4558 if (i)
4559 dev_info(DEV, "pp_in_use_by_net = %d, expected 0\n", i);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004560 i = atomic_read(&mdev->pp_in_use);
4561 if (i)
Lars Ellenberg45bb9122010-05-14 17:10:48 +02004562 dev_info(DEV, "pp_in_use = %d, expected 0\n", i);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004563
4564 D_ASSERT(list_empty(&mdev->read_ee));
4565 D_ASSERT(list_empty(&mdev->active_ee));
4566 D_ASSERT(list_empty(&mdev->sync_ee));
4567 D_ASSERT(list_empty(&mdev->done_ee));
4568
Philipp Reisner360cc742011-02-08 14:29:53 +01004569 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004570}
4571
4572/*
4573 * We support PRO_VERSION_MIN to PRO_VERSION_MAX. The protocol version
4574 * we can agree on is stored in agreed_pro_version.
4575 *
4576 * feature flags and the reserved array should be enough room for future
4577 * enhancements of the handshake protocol, and possible plugins...
4578 *
4579 * for now, they are expected to be zero, but ignored.
4580 */
Andreas Gruenbacher60381782011-03-28 17:05:50 +02004581static int drbd_send_features(struct drbd_tconn *tconn)
Philipp Reisnerb411b362009-09-25 16:07:19 -07004582{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02004583 struct drbd_socket *sock;
4584 struct p_connection_features *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004585
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02004586 sock = &tconn->data;
4587 p = conn_prepare_command(tconn, sock);
4588 if (!p)
Andreas Gruenbachere8d17b02011-03-16 00:54:19 +01004589 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004590 memset(p, 0, sizeof(*p));
4591 p->protocol_min = cpu_to_be32(PRO_VERSION_MIN);
4592 p->protocol_max = cpu_to_be32(PRO_VERSION_MAX);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02004593 return conn_send_command(tconn, sock, P_CONNECTION_FEATURES, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004594}
4595
4596/*
4597 * return values:
4598 * 1 yes, we have a valid connection
4599 * 0 oops, did not work out, please try again
4600 * -1 peer talks different language,
4601 * no point in trying again, please go standalone.
4602 */
Andreas Gruenbacher60381782011-03-28 17:05:50 +02004603static int drbd_do_features(struct drbd_tconn *tconn)
Philipp Reisnerb411b362009-09-25 16:07:19 -07004604{
Philipp Reisner65d11ed2011-02-07 17:35:59 +01004605 /* ASSERT current == tconn->receiver ... */
Andreas Gruenbachere6589832011-03-30 12:54:42 +02004606 struct p_connection_features *p;
4607 const int expect = sizeof(struct p_connection_features);
Philipp Reisner77351055b2011-02-07 17:24:26 +01004608 struct packet_info pi;
Andreas Gruenbachera5c31902011-03-24 03:28:04 +01004609 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004610
Andreas Gruenbacher60381782011-03-28 17:05:50 +02004611 err = drbd_send_features(tconn);
Andreas Gruenbachere8d17b02011-03-16 00:54:19 +01004612 if (err)
Philipp Reisnerb411b362009-09-25 16:07:19 -07004613 return 0;
4614
Andreas Gruenbacher69bc7bc2011-03-16 17:31:52 +01004615 err = drbd_recv_header(tconn, &pi);
4616 if (err)
Philipp Reisnerb411b362009-09-25 16:07:19 -07004617 return 0;
4618
Andreas Gruenbacher60381782011-03-28 17:05:50 +02004619 if (pi.cmd != P_CONNECTION_FEATURES) {
4620 conn_err(tconn, "expected ConnectionFeatures packet, received: %s (0x%04x)\n",
Andreas Gruenbacher2fcb8f32011-07-03 11:41:08 +02004621 cmdname(pi.cmd), pi.cmd);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004622 return -1;
4623 }
4624
Philipp Reisner77351055b2011-02-07 17:24:26 +01004625 if (pi.size != expect) {
Andreas Gruenbacher60381782011-03-28 17:05:50 +02004626 conn_err(tconn, "expected ConnectionFeatures length: %u, received: %u\n",
Philipp Reisner77351055b2011-02-07 17:24:26 +01004627 expect, pi.size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004628 return -1;
4629 }
4630
Andreas Gruenbachere6589832011-03-30 12:54:42 +02004631 p = pi.data;
4632 err = drbd_recv_all_warn(tconn, p, expect);
Andreas Gruenbachera5c31902011-03-24 03:28:04 +01004633 if (err)
Philipp Reisnerb411b362009-09-25 16:07:19 -07004634 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004635
Philipp Reisnerb411b362009-09-25 16:07:19 -07004636 p->protocol_min = be32_to_cpu(p->protocol_min);
4637 p->protocol_max = be32_to_cpu(p->protocol_max);
4638 if (p->protocol_max == 0)
4639 p->protocol_max = p->protocol_min;
4640
4641 if (PRO_VERSION_MAX < p->protocol_min ||
4642 PRO_VERSION_MIN > p->protocol_max)
4643 goto incompat;
4644
Philipp Reisner65d11ed2011-02-07 17:35:59 +01004645 tconn->agreed_pro_version = min_t(int, PRO_VERSION_MAX, p->protocol_max);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004646
Philipp Reisner65d11ed2011-02-07 17:35:59 +01004647 conn_info(tconn, "Handshake successful: "
4648 "Agreed network protocol version %d\n", tconn->agreed_pro_version);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004649
4650 return 1;
4651
4652 incompat:
Philipp Reisner65d11ed2011-02-07 17:35:59 +01004653 conn_err(tconn, "incompatible DRBD dialects: "
Philipp Reisnerb411b362009-09-25 16:07:19 -07004654 "I support %d-%d, peer supports %d-%d\n",
4655 PRO_VERSION_MIN, PRO_VERSION_MAX,
4656 p->protocol_min, p->protocol_max);
4657 return -1;
4658}
4659
4660#if !defined(CONFIG_CRYPTO_HMAC) && !defined(CONFIG_CRYPTO_HMAC_MODULE)
Philipp Reisner13e60372011-02-08 09:54:40 +01004661static int drbd_do_auth(struct drbd_tconn *tconn)
Philipp Reisnerb411b362009-09-25 16:07:19 -07004662{
Philipp Reisneref57f9e2013-03-27 14:08:44 +01004663 conn_err(tconn, "This kernel was build without CONFIG_CRYPTO_HMAC.\n");
4664 conn_err(tconn, "You need to disable 'cram-hmac-alg' in drbd.conf.\n");
Johannes Thomab10d96c2010-01-07 16:02:50 +01004665 return -1;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004666}
4667#else
4668#define CHALLENGE_LEN 64
Johannes Thomab10d96c2010-01-07 16:02:50 +01004669
4670/* Return value:
4671 1 - auth succeeded,
4672 0 - failed, try again (network error),
4673 -1 - auth failed, don't try again.
4674*/
4675
Philipp Reisner13e60372011-02-08 09:54:40 +01004676static int drbd_do_auth(struct drbd_tconn *tconn)
Philipp Reisnerb411b362009-09-25 16:07:19 -07004677{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02004678 struct drbd_socket *sock;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004679 char my_challenge[CHALLENGE_LEN]; /* 64 Bytes... */
4680 struct scatterlist sg;
4681 char *response = NULL;
4682 char *right_response = NULL;
4683 char *peers_ch = NULL;
Philipp Reisner44ed1672011-04-19 17:10:19 +02004684 unsigned int key_len;
4685 char secret[SHARED_SECRET_MAX]; /* 64 byte */
Philipp Reisnerb411b362009-09-25 16:07:19 -07004686 unsigned int resp_size;
4687 struct hash_desc desc;
Philipp Reisner77351055b2011-02-07 17:24:26 +01004688 struct packet_info pi;
Philipp Reisner44ed1672011-04-19 17:10:19 +02004689 struct net_conf *nc;
Andreas Gruenbacher69bc7bc2011-03-16 17:31:52 +01004690 int err, rv;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004691
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02004692 /* FIXME: Put the challenge/response into the preallocated socket buffer. */
4693
Philipp Reisner44ed1672011-04-19 17:10:19 +02004694 rcu_read_lock();
4695 nc = rcu_dereference(tconn->net_conf);
4696 key_len = strlen(nc->shared_secret);
4697 memcpy(secret, nc->shared_secret, key_len);
4698 rcu_read_unlock();
4699
Philipp Reisner13e60372011-02-08 09:54:40 +01004700 desc.tfm = tconn->cram_hmac_tfm;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004701 desc.flags = 0;
4702
Philipp Reisner44ed1672011-04-19 17:10:19 +02004703 rv = crypto_hash_setkey(tconn->cram_hmac_tfm, (u8 *)secret, key_len);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004704 if (rv) {
Philipp Reisner13e60372011-02-08 09:54:40 +01004705 conn_err(tconn, "crypto_hash_setkey() failed with %d\n", rv);
Johannes Thomab10d96c2010-01-07 16:02:50 +01004706 rv = -1;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004707 goto fail;
4708 }
4709
4710 get_random_bytes(my_challenge, CHALLENGE_LEN);
4711
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02004712 sock = &tconn->data;
4713 if (!conn_prepare_command(tconn, sock)) {
4714 rv = 0;
4715 goto fail;
4716 }
Andreas Gruenbachere6589832011-03-30 12:54:42 +02004717 rv = !conn_send_command(tconn, sock, P_AUTH_CHALLENGE, 0,
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02004718 my_challenge, CHALLENGE_LEN);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004719 if (!rv)
4720 goto fail;
4721
Andreas Gruenbacher69bc7bc2011-03-16 17:31:52 +01004722 err = drbd_recv_header(tconn, &pi);
4723 if (err) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07004724 rv = 0;
4725 goto fail;
4726 }
4727
Philipp Reisner77351055b2011-02-07 17:24:26 +01004728 if (pi.cmd != P_AUTH_CHALLENGE) {
Philipp Reisner13e60372011-02-08 09:54:40 +01004729 conn_err(tconn, "expected AuthChallenge packet, received: %s (0x%04x)\n",
Andreas Gruenbacher2fcb8f32011-07-03 11:41:08 +02004730 cmdname(pi.cmd), pi.cmd);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004731 rv = 0;
4732 goto fail;
4733 }
4734
Philipp Reisner77351055b2011-02-07 17:24:26 +01004735 if (pi.size > CHALLENGE_LEN * 2) {
Philipp Reisner13e60372011-02-08 09:54:40 +01004736 conn_err(tconn, "expected AuthChallenge payload too big.\n");
Johannes Thomab10d96c2010-01-07 16:02:50 +01004737 rv = -1;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004738 goto fail;
4739 }
4740
Philipp Reisner77351055b2011-02-07 17:24:26 +01004741 peers_ch = kmalloc(pi.size, GFP_NOIO);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004742 if (peers_ch == NULL) {
Philipp Reisner13e60372011-02-08 09:54:40 +01004743 conn_err(tconn, "kmalloc of peers_ch failed\n");
Johannes Thomab10d96c2010-01-07 16:02:50 +01004744 rv = -1;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004745 goto fail;
4746 }
4747
Andreas Gruenbachera5c31902011-03-24 03:28:04 +01004748 err = drbd_recv_all_warn(tconn, peers_ch, pi.size);
4749 if (err) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07004750 rv = 0;
4751 goto fail;
4752 }
4753
Philipp Reisner13e60372011-02-08 09:54:40 +01004754 resp_size = crypto_hash_digestsize(tconn->cram_hmac_tfm);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004755 response = kmalloc(resp_size, GFP_NOIO);
4756 if (response == NULL) {
Philipp Reisner13e60372011-02-08 09:54:40 +01004757 conn_err(tconn, "kmalloc of response failed\n");
Johannes Thomab10d96c2010-01-07 16:02:50 +01004758 rv = -1;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004759 goto fail;
4760 }
4761
4762 sg_init_table(&sg, 1);
Philipp Reisner77351055b2011-02-07 17:24:26 +01004763 sg_set_buf(&sg, peers_ch, pi.size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004764
4765 rv = crypto_hash_digest(&desc, &sg, sg.length, response);
4766 if (rv) {
Philipp Reisner13e60372011-02-08 09:54:40 +01004767 conn_err(tconn, "crypto_hash_digest() failed with %d\n", rv);
Johannes Thomab10d96c2010-01-07 16:02:50 +01004768 rv = -1;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004769 goto fail;
4770 }
4771
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02004772 if (!conn_prepare_command(tconn, sock)) {
4773 rv = 0;
4774 goto fail;
4775 }
Andreas Gruenbachere6589832011-03-30 12:54:42 +02004776 rv = !conn_send_command(tconn, sock, P_AUTH_RESPONSE, 0,
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02004777 response, resp_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004778 if (!rv)
4779 goto fail;
4780
Andreas Gruenbacher69bc7bc2011-03-16 17:31:52 +01004781 err = drbd_recv_header(tconn, &pi);
4782 if (err) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07004783 rv = 0;
4784 goto fail;
4785 }
4786
Philipp Reisner77351055b2011-02-07 17:24:26 +01004787 if (pi.cmd != P_AUTH_RESPONSE) {
Philipp Reisner13e60372011-02-08 09:54:40 +01004788 conn_err(tconn, "expected AuthResponse packet, received: %s (0x%04x)\n",
Andreas Gruenbacher2fcb8f32011-07-03 11:41:08 +02004789 cmdname(pi.cmd), pi.cmd);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004790 rv = 0;
4791 goto fail;
4792 }
4793
Philipp Reisner77351055b2011-02-07 17:24:26 +01004794 if (pi.size != resp_size) {
Philipp Reisner13e60372011-02-08 09:54:40 +01004795 conn_err(tconn, "expected AuthResponse payload of wrong size\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07004796 rv = 0;
4797 goto fail;
4798 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07004799
Andreas Gruenbachera5c31902011-03-24 03:28:04 +01004800 err = drbd_recv_all_warn(tconn, response , resp_size);
4801 if (err) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07004802 rv = 0;
4803 goto fail;
4804 }
4805
4806 right_response = kmalloc(resp_size, GFP_NOIO);
Julia Lawall2d1ee872009-12-27 22:27:11 +01004807 if (right_response == NULL) {
Philipp Reisner13e60372011-02-08 09:54:40 +01004808 conn_err(tconn, "kmalloc of right_response failed\n");
Johannes Thomab10d96c2010-01-07 16:02:50 +01004809 rv = -1;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004810 goto fail;
4811 }
4812
4813 sg_set_buf(&sg, my_challenge, CHALLENGE_LEN);
4814
4815 rv = crypto_hash_digest(&desc, &sg, sg.length, right_response);
4816 if (rv) {
Philipp Reisner13e60372011-02-08 09:54:40 +01004817 conn_err(tconn, "crypto_hash_digest() failed with %d\n", rv);
Johannes Thomab10d96c2010-01-07 16:02:50 +01004818 rv = -1;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004819 goto fail;
4820 }
4821
4822 rv = !memcmp(response, right_response, resp_size);
4823
4824 if (rv)
Philipp Reisner44ed1672011-04-19 17:10:19 +02004825 conn_info(tconn, "Peer authenticated using %d bytes HMAC\n",
4826 resp_size);
Johannes Thomab10d96c2010-01-07 16:02:50 +01004827 else
4828 rv = -1;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004829
4830 fail:
4831 kfree(peers_ch);
4832 kfree(response);
4833 kfree(right_response);
4834
4835 return rv;
4836}
4837#endif
4838
4839int drbdd_init(struct drbd_thread *thi)
4840{
Philipp Reisner392c8802011-02-09 10:33:31 +01004841 struct drbd_tconn *tconn = thi->tconn;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004842 int h;
4843
Philipp Reisner4d641dd2011-02-08 15:40:24 +01004844 conn_info(tconn, "receiver (re)started\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07004845
4846 do {
Philipp Reisner81fa2e62011-05-04 15:10:30 +02004847 h = conn_connect(tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004848 if (h == 0) {
Philipp Reisner81fa2e62011-05-04 15:10:30 +02004849 conn_disconnect(tconn);
Philipp Reisner20ee6392011-01-18 15:28:59 +01004850 schedule_timeout_interruptible(HZ);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004851 }
4852 if (h == -1) {
Philipp Reisner4d641dd2011-02-08 15:40:24 +01004853 conn_warn(tconn, "Discarding network configuration.\n");
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01004854 conn_request_state(tconn, NS(conn, C_DISCONNECTING), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004855 }
4856 } while (h == 0);
4857
Philipp Reisner91fd4da2011-04-20 17:47:29 +02004858 if (h > 0)
4859 drbdd(tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004860
Philipp Reisner81fa2e62011-05-04 15:10:30 +02004861 conn_disconnect(tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004862
Philipp Reisner4d641dd2011-02-08 15:40:24 +01004863 conn_info(tconn, "receiver terminated\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07004864 return 0;
4865}
4866
4867/* ********* acknowledge sender ******** */
4868
Andreas Gruenbachere05e1e52011-03-25 15:16:26 +01004869static int got_conn_RqSReply(struct drbd_tconn *tconn, struct packet_info *pi)
Philipp Reisnerb411b362009-09-25 16:07:19 -07004870{
Andreas Gruenbachere6589832011-03-30 12:54:42 +02004871 struct p_req_state_reply *p = pi->data;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004872 int retcode = be32_to_cpu(p->retcode);
4873
4874 if (retcode >= SS_SUCCESS) {
Philipp Reisnere4f78ed2011-03-16 11:27:48 +01004875 set_bit(CONN_WD_ST_CHG_OKAY, &tconn->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004876 } else {
Philipp Reisnere4f78ed2011-03-16 11:27:48 +01004877 set_bit(CONN_WD_ST_CHG_FAIL, &tconn->flags);
4878 conn_err(tconn, "Requested state change failed by peer: %s (%d)\n",
4879 drbd_set_st_err_str(retcode), retcode);
4880 }
4881 wake_up(&tconn->ping_wait);
4882
Andreas Gruenbacher2735a592011-04-04 15:30:24 +02004883 return 0;
Philipp Reisnere4f78ed2011-03-16 11:27:48 +01004884}
4885
Andreas Gruenbacher1952e912011-03-25 15:37:43 +01004886static int got_RqSReply(struct drbd_tconn *tconn, struct packet_info *pi)
Philipp Reisnerb411b362009-09-25 16:07:19 -07004887{
Andreas Gruenbacher1952e912011-03-25 15:37:43 +01004888 struct drbd_conf *mdev;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02004889 struct p_req_state_reply *p = pi->data;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004890 int retcode = be32_to_cpu(p->retcode);
4891
Andreas Gruenbacher1952e912011-03-25 15:37:43 +01004892 mdev = vnr_to_mdev(tconn, pi->vnr);
4893 if (!mdev)
Andreas Gruenbacher2735a592011-04-04 15:30:24 +02004894 return -EIO;
Andreas Gruenbacher1952e912011-03-25 15:37:43 +01004895
Philipp Reisner4d0fc3f2012-01-20 13:52:27 +01004896 if (test_bit(CONN_WD_ST_CHG_REQ, &tconn->flags)) {
4897 D_ASSERT(tconn->agreed_pro_version < 100);
4898 return got_conn_RqSReply(tconn, pi);
4899 }
4900
Philipp Reisnere4f78ed2011-03-16 11:27:48 +01004901 if (retcode >= SS_SUCCESS) {
4902 set_bit(CL_ST_CHG_SUCCESS, &mdev->flags);
4903 } else {
4904 set_bit(CL_ST_CHG_FAIL, &mdev->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004905 dev_err(DEV, "Requested state change failed by peer: %s (%d)\n",
Philipp Reisnere4f78ed2011-03-16 11:27:48 +01004906 drbd_set_st_err_str(retcode), retcode);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004907 }
4908 wake_up(&mdev->state_wait);
4909
Andreas Gruenbacher2735a592011-04-04 15:30:24 +02004910 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004911}
4912
Andreas Gruenbachere05e1e52011-03-25 15:16:26 +01004913static int got_Ping(struct drbd_tconn *tconn, struct packet_info *pi)
Philipp Reisnerb411b362009-09-25 16:07:19 -07004914{
Andreas Gruenbacher2735a592011-04-04 15:30:24 +02004915 return drbd_send_ping_ack(tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004916
4917}
4918
Andreas Gruenbachere05e1e52011-03-25 15:16:26 +01004919static int got_PingAck(struct drbd_tconn *tconn, struct packet_info *pi)
Philipp Reisnerb411b362009-09-25 16:07:19 -07004920{
4921 /* restore idle timeout */
Philipp Reisner2a67d8b2011-02-09 14:10:32 +01004922 tconn->meta.socket->sk->sk_rcvtimeo = tconn->net_conf->ping_int*HZ;
4923 if (!test_and_set_bit(GOT_PING_ACK, &tconn->flags))
4924 wake_up(&tconn->ping_wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004925
Andreas Gruenbacher2735a592011-04-04 15:30:24 +02004926 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004927}
4928
Andreas Gruenbacher1952e912011-03-25 15:37:43 +01004929static int got_IsInSync(struct drbd_tconn *tconn, struct packet_info *pi)
Philipp Reisnerb411b362009-09-25 16:07:19 -07004930{
Andreas Gruenbacher1952e912011-03-25 15:37:43 +01004931 struct drbd_conf *mdev;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02004932 struct p_block_ack *p = pi->data;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004933 sector_t sector = be64_to_cpu(p->sector);
4934 int blksize = be32_to_cpu(p->blksize);
4935
Andreas Gruenbacher1952e912011-03-25 15:37:43 +01004936 mdev = vnr_to_mdev(tconn, pi->vnr);
4937 if (!mdev)
Andreas Gruenbacher2735a592011-04-04 15:30:24 +02004938 return -EIO;
Andreas Gruenbacher1952e912011-03-25 15:37:43 +01004939
Philipp Reisner31890f42011-01-19 14:12:51 +01004940 D_ASSERT(mdev->tconn->agreed_pro_version >= 89);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004941
4942 update_peer_seq(mdev, be32_to_cpu(p->seq_num));
4943
Lars Ellenberg1d53f092010-09-05 01:13:24 +02004944 if (get_ldev(mdev)) {
4945 drbd_rs_complete_io(mdev, sector);
4946 drbd_set_in_sync(mdev, sector, blksize);
4947 /* rs_same_csums is supposed to count in units of BM_BLOCK_SIZE */
4948 mdev->rs_same_csum += (blksize >> BM_BLOCK_SHIFT);
4949 put_ldev(mdev);
4950 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07004951 dec_rs_pending(mdev);
Philipp Reisner778f2712010-07-06 11:14:00 +02004952 atomic_add(blksize >> 9, &mdev->rs_sect_in);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004953
Andreas Gruenbacher2735a592011-04-04 15:30:24 +02004954 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004955}
4956
Andreas Gruenbacherbc9c5c42011-01-21 18:00:55 +01004957static int
4958validate_req_change_req_state(struct drbd_conf *mdev, u64 id, sector_t sector,
4959 struct rb_root *root, const char *func,
4960 enum drbd_req_event what, bool missing_ok)
Philipp Reisnerb411b362009-09-25 16:07:19 -07004961{
4962 struct drbd_request *req;
4963 struct bio_and_error m;
4964
Philipp Reisner87eeee42011-01-19 14:16:30 +01004965 spin_lock_irq(&mdev->tconn->req_lock);
Andreas Gruenbacherbc9c5c42011-01-21 18:00:55 +01004966 req = find_request(mdev, root, id, sector, missing_ok, func);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004967 if (unlikely(!req)) {
Philipp Reisner87eeee42011-01-19 14:16:30 +01004968 spin_unlock_irq(&mdev->tconn->req_lock);
Andreas Gruenbacher85997672011-04-04 13:09:15 +02004969 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004970 }
4971 __req_mod(req, what, &m);
Philipp Reisner87eeee42011-01-19 14:16:30 +01004972 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07004973
4974 if (m.bio)
4975 complete_master_bio(mdev, &m);
Andreas Gruenbacher85997672011-04-04 13:09:15 +02004976 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004977}
4978
Andreas Gruenbacher1952e912011-03-25 15:37:43 +01004979static int got_BlockAck(struct drbd_tconn *tconn, struct packet_info *pi)
Philipp Reisnerb411b362009-09-25 16:07:19 -07004980{
Andreas Gruenbacher1952e912011-03-25 15:37:43 +01004981 struct drbd_conf *mdev;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02004982 struct p_block_ack *p = pi->data;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004983 sector_t sector = be64_to_cpu(p->sector);
4984 int blksize = be32_to_cpu(p->blksize);
4985 enum drbd_req_event what;
4986
Andreas Gruenbacher1952e912011-03-25 15:37:43 +01004987 mdev = vnr_to_mdev(tconn, pi->vnr);
4988 if (!mdev)
Andreas Gruenbacher2735a592011-04-04 15:30:24 +02004989 return -EIO;
Andreas Gruenbacher1952e912011-03-25 15:37:43 +01004990
Philipp Reisnerb411b362009-09-25 16:07:19 -07004991 update_peer_seq(mdev, be32_to_cpu(p->seq_num));
4992
Andreas Gruenbacher579b57e2011-01-13 18:40:57 +01004993 if (p->block_id == ID_SYNCER) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07004994 drbd_set_in_sync(mdev, sector, blksize);
4995 dec_rs_pending(mdev);
Andreas Gruenbacher2735a592011-04-04 15:30:24 +02004996 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07004997 }
Andreas Gruenbachere05e1e52011-03-25 15:16:26 +01004998 switch (pi->cmd) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07004999 case P_RS_WRITE_ACK:
Andreas Gruenbacher8554df12011-01-25 15:37:43 +01005000 what = WRITE_ACKED_BY_PEER_AND_SIS;
Philipp Reisnerb411b362009-09-25 16:07:19 -07005001 break;
5002 case P_WRITE_ACK:
Andreas Gruenbacher8554df12011-01-25 15:37:43 +01005003 what = WRITE_ACKED_BY_PEER;
Philipp Reisnerb411b362009-09-25 16:07:19 -07005004 break;
5005 case P_RECV_ACK:
Andreas Gruenbacher8554df12011-01-25 15:37:43 +01005006 what = RECV_ACKED_BY_PEER;
Philipp Reisnerb411b362009-09-25 16:07:19 -07005007 break;
Lars Ellenbergd4dabbe2012-08-01 12:33:51 +02005008 case P_SUPERSEDED:
5009 what = CONFLICT_RESOLVED;
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01005010 break;
5011 case P_RETRY_WRITE:
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01005012 what = POSTPONE_WRITE;
Philipp Reisnerb411b362009-09-25 16:07:19 -07005013 break;
5014 default:
Andreas Gruenbacher2735a592011-04-04 15:30:24 +02005015 BUG();
Philipp Reisnerb411b362009-09-25 16:07:19 -07005016 }
5017
5018 return validate_req_change_req_state(mdev, p->block_id, sector,
Andreas Gruenbacher2735a592011-04-04 15:30:24 +02005019 &mdev->write_requests, __func__,
5020 what, false);
Philipp Reisnerb411b362009-09-25 16:07:19 -07005021}
5022
Andreas Gruenbacher1952e912011-03-25 15:37:43 +01005023static int got_NegAck(struct drbd_tconn *tconn, struct packet_info *pi)
Philipp Reisnerb411b362009-09-25 16:07:19 -07005024{
Andreas Gruenbacher1952e912011-03-25 15:37:43 +01005025 struct drbd_conf *mdev;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02005026 struct p_block_ack *p = pi->data;
Philipp Reisnerb411b362009-09-25 16:07:19 -07005027 sector_t sector = be64_to_cpu(p->sector);
Philipp Reisner2deb8332011-01-17 18:39:18 +01005028 int size = be32_to_cpu(p->blksize);
Andreas Gruenbacher85997672011-04-04 13:09:15 +02005029 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07005030
Andreas Gruenbacher1952e912011-03-25 15:37:43 +01005031 mdev = vnr_to_mdev(tconn, pi->vnr);
5032 if (!mdev)
Andreas Gruenbacher2735a592011-04-04 15:30:24 +02005033 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07005034
5035 update_peer_seq(mdev, be32_to_cpu(p->seq_num));
5036
Andreas Gruenbacher579b57e2011-01-13 18:40:57 +01005037 if (p->block_id == ID_SYNCER) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07005038 dec_rs_pending(mdev);
5039 drbd_rs_failed_io(mdev, sector, size);
Andreas Gruenbacher2735a592011-04-04 15:30:24 +02005040 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07005041 }
Philipp Reisner2deb8332011-01-17 18:39:18 +01005042
Andreas Gruenbacher85997672011-04-04 13:09:15 +02005043 err = validate_req_change_req_state(mdev, p->block_id, sector,
5044 &mdev->write_requests, __func__,
Philipp Reisner303d1442011-04-13 16:24:47 -07005045 NEG_ACKED, true);
Andreas Gruenbacher85997672011-04-04 13:09:15 +02005046 if (err) {
Andreas Gruenbacherc3afd8f2011-01-20 22:25:40 +01005047 /* Protocol A has no P_WRITE_ACKs, but has P_NEG_ACKs.
5048 The master bio might already be completed, therefore the
5049 request is no longer in the collision hash. */
5050 /* In Protocol B we might already have got a P_RECV_ACK
5051 but then get a P_NEG_ACK afterwards. */
Andreas Gruenbacherc3afd8f2011-01-20 22:25:40 +01005052 drbd_set_out_of_sync(mdev, sector, size);
Philipp Reisner2deb8332011-01-17 18:39:18 +01005053 }
Andreas Gruenbacher2735a592011-04-04 15:30:24 +02005054 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07005055}
5056
Andreas Gruenbacher1952e912011-03-25 15:37:43 +01005057static int got_NegDReply(struct drbd_tconn *tconn, struct packet_info *pi)
Philipp Reisnerb411b362009-09-25 16:07:19 -07005058{
Andreas Gruenbacher1952e912011-03-25 15:37:43 +01005059 struct drbd_conf *mdev;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02005060 struct p_block_ack *p = pi->data;
Philipp Reisnerb411b362009-09-25 16:07:19 -07005061 sector_t sector = be64_to_cpu(p->sector);
5062
Andreas Gruenbacher1952e912011-03-25 15:37:43 +01005063 mdev = vnr_to_mdev(tconn, pi->vnr);
5064 if (!mdev)
Andreas Gruenbacher2735a592011-04-04 15:30:24 +02005065 return -EIO;
Andreas Gruenbacher1952e912011-03-25 15:37:43 +01005066
Philipp Reisnerb411b362009-09-25 16:07:19 -07005067 update_peer_seq(mdev, be32_to_cpu(p->seq_num));
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01005068
Philipp Reisner380207d2011-11-11 12:31:20 +01005069 dev_err(DEV, "Got NegDReply; Sector %llus, len %u.\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -07005070 (unsigned long long)sector, be32_to_cpu(p->blksize));
5071
5072 return validate_req_change_req_state(mdev, p->block_id, sector,
Andreas Gruenbacher2735a592011-04-04 15:30:24 +02005073 &mdev->read_requests, __func__,
5074 NEG_ACKED, false);
Philipp Reisnerb411b362009-09-25 16:07:19 -07005075}
5076
Andreas Gruenbacher1952e912011-03-25 15:37:43 +01005077static int got_NegRSDReply(struct drbd_tconn *tconn, struct packet_info *pi)
Philipp Reisnerb411b362009-09-25 16:07:19 -07005078{
Andreas Gruenbacher1952e912011-03-25 15:37:43 +01005079 struct drbd_conf *mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -07005080 sector_t sector;
5081 int size;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02005082 struct p_block_ack *p = pi->data;
Andreas Gruenbacher1952e912011-03-25 15:37:43 +01005083
5084 mdev = vnr_to_mdev(tconn, pi->vnr);
5085 if (!mdev)
Andreas Gruenbacher2735a592011-04-04 15:30:24 +02005086 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07005087
5088 sector = be64_to_cpu(p->sector);
5089 size = be32_to_cpu(p->blksize);
Philipp Reisnerb411b362009-09-25 16:07:19 -07005090
5091 update_peer_seq(mdev, be32_to_cpu(p->seq_num));
5092
5093 dec_rs_pending(mdev);
5094
5095 if (get_ldev_if_state(mdev, D_FAILED)) {
5096 drbd_rs_complete_io(mdev, sector);
Andreas Gruenbachere05e1e52011-03-25 15:16:26 +01005097 switch (pi->cmd) {
Philipp Reisnerd612d302010-12-27 10:53:28 +01005098 case P_NEG_RS_DREPLY:
5099 drbd_rs_failed_io(mdev, sector, size);
5100 case P_RS_CANCEL:
5101 break;
5102 default:
Andreas Gruenbacher2735a592011-04-04 15:30:24 +02005103 BUG();
Philipp Reisnerd612d302010-12-27 10:53:28 +01005104 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07005105 put_ldev(mdev);
5106 }
5107
Andreas Gruenbacher2735a592011-04-04 15:30:24 +02005108 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07005109}
5110
Andreas Gruenbacher1952e912011-03-25 15:37:43 +01005111static int got_BarrierAck(struct drbd_tconn *tconn, struct packet_info *pi)
Philipp Reisnerb411b362009-09-25 16:07:19 -07005112{
Andreas Gruenbachere6589832011-03-30 12:54:42 +02005113 struct p_barrier_ack *p = pi->data;
Lars Ellenberg9ed57dc2012-03-26 20:55:17 +02005114 struct drbd_conf *mdev;
5115 int vnr;
Philipp Reisnerb411b362009-09-25 16:07:19 -07005116
Lars Ellenberg9ed57dc2012-03-26 20:55:17 +02005117 tl_release(tconn, p->barrier, be32_to_cpu(p->set_size));
Philipp Reisnerb411b362009-09-25 16:07:19 -07005118
Lars Ellenberg9ed57dc2012-03-26 20:55:17 +02005119 rcu_read_lock();
5120 idr_for_each_entry(&tconn->volumes, mdev, vnr) {
5121 if (mdev->state.conn == C_AHEAD &&
5122 atomic_read(&mdev->ap_in_flight) == 0 &&
5123 !test_and_set_bit(AHEAD_TO_SYNC_SOURCE, &mdev->flags)) {
5124 mdev->start_resync_timer.expires = jiffies + HZ;
5125 add_timer(&mdev->start_resync_timer);
5126 }
Philipp Reisnerc4752ef2010-10-27 17:32:36 +02005127 }
Lars Ellenberg9ed57dc2012-03-26 20:55:17 +02005128 rcu_read_unlock();
Philipp Reisnerc4752ef2010-10-27 17:32:36 +02005129
Andreas Gruenbacher2735a592011-04-04 15:30:24 +02005130 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07005131}
5132
Andreas Gruenbacher1952e912011-03-25 15:37:43 +01005133static int got_OVResult(struct drbd_tconn *tconn, struct packet_info *pi)
Philipp Reisnerb411b362009-09-25 16:07:19 -07005134{
Andreas Gruenbacher1952e912011-03-25 15:37:43 +01005135 struct drbd_conf *mdev;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02005136 struct p_block_ack *p = pi->data;
Philipp Reisnerb411b362009-09-25 16:07:19 -07005137 struct drbd_work *w;
5138 sector_t sector;
5139 int size;
5140
Andreas Gruenbacher1952e912011-03-25 15:37:43 +01005141 mdev = vnr_to_mdev(tconn, pi->vnr);
5142 if (!mdev)
Andreas Gruenbacher2735a592011-04-04 15:30:24 +02005143 return -EIO;
Andreas Gruenbacher1952e912011-03-25 15:37:43 +01005144
Philipp Reisnerb411b362009-09-25 16:07:19 -07005145 sector = be64_to_cpu(p->sector);
5146 size = be32_to_cpu(p->blksize);
5147
5148 update_peer_seq(mdev, be32_to_cpu(p->seq_num));
5149
5150 if (be64_to_cpu(p->block_id) == ID_OUT_OF_SYNC)
Andreas Gruenbacher8f7bed72010-12-19 23:53:14 +01005151 drbd_ov_out_of_sync_found(mdev, sector, size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07005152 else
Andreas Gruenbacher8f7bed72010-12-19 23:53:14 +01005153 ov_out_of_sync_print(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07005154
Lars Ellenberg1d53f092010-09-05 01:13:24 +02005155 if (!get_ldev(mdev))
Andreas Gruenbacher2735a592011-04-04 15:30:24 +02005156 return 0;
Lars Ellenberg1d53f092010-09-05 01:13:24 +02005157
Philipp Reisnerb411b362009-09-25 16:07:19 -07005158 drbd_rs_complete_io(mdev, sector);
5159 dec_rs_pending(mdev);
5160
Lars Ellenbergea5442a2010-11-05 09:48:01 +01005161 --mdev->ov_left;
5162
5163 /* let's advance progress step marks only for every other megabyte */
5164 if ((mdev->ov_left & 0x200) == 0x200)
5165 drbd_advance_rs_marks(mdev, mdev->ov_left);
5166
5167 if (mdev->ov_left == 0) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07005168 w = kmalloc(sizeof(*w), GFP_NOIO);
5169 if (w) {
5170 w->cb = w_ov_finished;
Philipp Reisnera21e9292011-02-08 15:08:49 +01005171 w->mdev = mdev;
Lars Ellenbergd5b27b02011-11-14 15:42:37 +01005172 drbd_queue_work(&mdev->tconn->sender_work, w);
Philipp Reisnerb411b362009-09-25 16:07:19 -07005173 } else {
5174 dev_err(DEV, "kmalloc(w) failed.");
Andreas Gruenbacher8f7bed72010-12-19 23:53:14 +01005175 ov_out_of_sync_print(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07005176 drbd_resync_finished(mdev);
5177 }
5178 }
Lars Ellenberg1d53f092010-09-05 01:13:24 +02005179 put_ldev(mdev);
Andreas Gruenbacher2735a592011-04-04 15:30:24 +02005180 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07005181}
5182
Andreas Gruenbacher1952e912011-03-25 15:37:43 +01005183static int got_skip(struct drbd_tconn *tconn, struct packet_info *pi)
Philipp Reisner0ced55a2010-04-30 15:26:20 +02005184{
Andreas Gruenbacher2735a592011-04-04 15:30:24 +02005185 return 0;
Philipp Reisner0ced55a2010-04-30 15:26:20 +02005186}
5187
Andreas Gruenbachera990be42011-04-06 17:56:48 +02005188static int tconn_finish_peer_reqs(struct drbd_tconn *tconn)
Philipp Reisner32862ec2011-02-08 16:41:01 +01005189{
Philipp Reisner082a3432011-03-15 16:05:42 +01005190 struct drbd_conf *mdev;
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02005191 int vnr, not_empty = 0;
Philipp Reisner32862ec2011-02-08 16:41:01 +01005192
5193 do {
5194 clear_bit(SIGNAL_ASENDER, &tconn->flags);
5195 flush_signals(current);
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02005196
5197 rcu_read_lock();
5198 idr_for_each_entry(&tconn->volumes, mdev, vnr) {
5199 kref_get(&mdev->kref);
5200 rcu_read_unlock();
Philipp Reisnerd3fcb492011-04-13 14:46:05 -07005201 if (drbd_finish_peer_reqs(mdev)) {
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02005202 kref_put(&mdev->kref, &drbd_minor_destroy);
5203 return 1;
Philipp Reisnerd3fcb492011-04-13 14:46:05 -07005204 }
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02005205 kref_put(&mdev->kref, &drbd_minor_destroy);
5206 rcu_read_lock();
Philipp Reisner082a3432011-03-15 16:05:42 +01005207 }
Philipp Reisner32862ec2011-02-08 16:41:01 +01005208 set_bit(SIGNAL_ASENDER, &tconn->flags);
Philipp Reisner082a3432011-03-15 16:05:42 +01005209
5210 spin_lock_irq(&tconn->req_lock);
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02005211 idr_for_each_entry(&tconn->volumes, mdev, vnr) {
Philipp Reisner082a3432011-03-15 16:05:42 +01005212 not_empty = !list_empty(&mdev->done_ee);
5213 if (not_empty)
5214 break;
5215 }
5216 spin_unlock_irq(&tconn->req_lock);
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02005217 rcu_read_unlock();
Philipp Reisner32862ec2011-02-08 16:41:01 +01005218 } while (not_empty);
5219
5220 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07005221}
5222
5223struct asender_cmd {
5224 size_t pkt_size;
Andreas Gruenbacher1952e912011-03-25 15:37:43 +01005225 int (*fn)(struct drbd_tconn *tconn, struct packet_info *);
Philipp Reisnerb411b362009-09-25 16:07:19 -07005226};
5227
Andreas Gruenbacher7201b972011-03-14 18:23:00 +01005228static struct asender_cmd asender_tbl[] = {
Andreas Gruenbachere6589832011-03-30 12:54:42 +02005229 [P_PING] = { 0, got_Ping },
5230 [P_PING_ACK] = { 0, got_PingAck },
Philipp Reisnerb411b362009-09-25 16:07:19 -07005231 [P_RECV_ACK] = { sizeof(struct p_block_ack), got_BlockAck },
5232 [P_WRITE_ACK] = { sizeof(struct p_block_ack), got_BlockAck },
5233 [P_RS_WRITE_ACK] = { sizeof(struct p_block_ack), got_BlockAck },
Lars Ellenbergd4dabbe2012-08-01 12:33:51 +02005234 [P_SUPERSEDED] = { sizeof(struct p_block_ack), got_BlockAck },
Philipp Reisnerb411b362009-09-25 16:07:19 -07005235 [P_NEG_ACK] = { sizeof(struct p_block_ack), got_NegAck },
5236 [P_NEG_DREPLY] = { sizeof(struct p_block_ack), got_NegDReply },
Andreas Gruenbacher1952e912011-03-25 15:37:43 +01005237 [P_NEG_RS_DREPLY] = { sizeof(struct p_block_ack), got_NegRSDReply },
Philipp Reisnerb411b362009-09-25 16:07:19 -07005238 [P_OV_RESULT] = { sizeof(struct p_block_ack), got_OVResult },
5239 [P_BARRIER_ACK] = { sizeof(struct p_barrier_ack), got_BarrierAck },
5240 [P_STATE_CHG_REPLY] = { sizeof(struct p_req_state_reply), got_RqSReply },
5241 [P_RS_IS_IN_SYNC] = { sizeof(struct p_block_ack), got_IsInSync },
Philipp Reisner02918be2010-08-20 14:35:10 +02005242 [P_DELAY_PROBE] = { sizeof(struct p_delay_probe93), got_skip },
Andreas Gruenbacher1952e912011-03-25 15:37:43 +01005243 [P_RS_CANCEL] = { sizeof(struct p_block_ack), got_NegRSDReply },
5244 [P_CONN_ST_CHG_REPLY]={ sizeof(struct p_req_state_reply), got_conn_RqSReply },
5245 [P_RETRY_WRITE] = { sizeof(struct p_block_ack), got_BlockAck },
Andreas Gruenbacher7201b972011-03-14 18:23:00 +01005246};
Philipp Reisnerb411b362009-09-25 16:07:19 -07005247
5248int drbd_asender(struct drbd_thread *thi)
5249{
Philipp Reisner392c8802011-02-09 10:33:31 +01005250 struct drbd_tconn *tconn = thi->tconn;
Philipp Reisnerb411b362009-09-25 16:07:19 -07005251 struct asender_cmd *cmd = NULL;
Philipp Reisner77351055b2011-02-07 17:24:26 +01005252 struct packet_info pi;
Philipp Reisner257d0af2011-01-26 12:15:29 +01005253 int rv;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02005254 void *buf = tconn->meta.rbuf;
Philipp Reisnerb411b362009-09-25 16:07:19 -07005255 int received = 0;
Andreas Gruenbacher52b061a2011-03-30 11:38:49 +02005256 unsigned int header_size = drbd_header_size(tconn);
5257 int expect = header_size;
Philipp Reisner44ed1672011-04-19 17:10:19 +02005258 bool ping_timeout_active = false;
5259 struct net_conf *nc;
Andreas Gruenbacherbb77d342011-05-04 15:25:35 +02005260 int ping_timeo, tcp_cork, ping_int;
Philipp Reisner3990e042013-03-27 14:08:48 +01005261 struct sched_param param = { .sched_priority = 2 };
Philipp Reisnerb411b362009-09-25 16:07:19 -07005262
Philipp Reisner3990e042013-03-27 14:08:48 +01005263 rv = sched_setscheduler(current, SCHED_RR, &param);
5264 if (rv < 0)
5265 conn_err(tconn, "drbd_asender: ERROR set priority, ret=%d\n", rv);
Philipp Reisnerb411b362009-09-25 16:07:19 -07005266
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +01005267 while (get_t_state(thi) == RUNNING) {
Philipp Reisner80822282011-02-08 12:46:30 +01005268 drbd_thread_current_set_cpu(thi);
Philipp Reisner44ed1672011-04-19 17:10:19 +02005269
5270 rcu_read_lock();
5271 nc = rcu_dereference(tconn->net_conf);
5272 ping_timeo = nc->ping_timeo;
Andreas Gruenbacherbb77d342011-05-04 15:25:35 +02005273 tcp_cork = nc->tcp_cork;
Philipp Reisner44ed1672011-04-19 17:10:19 +02005274 ping_int = nc->ping_int;
5275 rcu_read_unlock();
5276
Philipp Reisner32862ec2011-02-08 16:41:01 +01005277 if (test_and_clear_bit(SEND_PING, &tconn->flags)) {
Andreas Gruenbachera17647a2011-04-01 12:49:42 +02005278 if (drbd_send_ping(tconn)) {
Philipp Reisner32862ec2011-02-08 16:41:01 +01005279 conn_err(tconn, "drbd_send_ping has failed\n");
Andreas Gruenbacher841ce242010-12-15 19:31:20 +01005280 goto reconnect;
5281 }
Philipp Reisner44ed1672011-04-19 17:10:19 +02005282 tconn->meta.socket->sk->sk_rcvtimeo = ping_timeo * HZ / 10;
5283 ping_timeout_active = true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07005284 }
5285
Philipp Reisner32862ec2011-02-08 16:41:01 +01005286 /* TODO: conditionally cork; it may hurt latency if we cork without
5287 much to send */
Andreas Gruenbacherbb77d342011-05-04 15:25:35 +02005288 if (tcp_cork)
Philipp Reisner32862ec2011-02-08 16:41:01 +01005289 drbd_tcp_cork(tconn->meta.socket);
Andreas Gruenbachera990be42011-04-06 17:56:48 +02005290 if (tconn_finish_peer_reqs(tconn)) {
5291 conn_err(tconn, "tconn_finish_peer_reqs() failed\n");
Philipp Reisner32862ec2011-02-08 16:41:01 +01005292 goto reconnect;
Philipp Reisnerb411b362009-09-25 16:07:19 -07005293 }
5294 /* but unconditionally uncork unless disabled */
Andreas Gruenbacherbb77d342011-05-04 15:25:35 +02005295 if (tcp_cork)
Philipp Reisner32862ec2011-02-08 16:41:01 +01005296 drbd_tcp_uncork(tconn->meta.socket);
Philipp Reisnerb411b362009-09-25 16:07:19 -07005297
5298 /* short circuit, recv_msg would return EINTR anyways. */
5299 if (signal_pending(current))
5300 continue;
5301
Philipp Reisner32862ec2011-02-08 16:41:01 +01005302 rv = drbd_recv_short(tconn->meta.socket, buf, expect-received, 0);
5303 clear_bit(SIGNAL_ASENDER, &tconn->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07005304
5305 flush_signals(current);
5306
5307 /* Note:
5308 * -EINTR (on meta) we got a signal
5309 * -EAGAIN (on meta) rcvtimeo expired
5310 * -ECONNRESET other side closed the connection
5311 * -ERESTARTSYS (on data) we got a signal
5312 * rv < 0 other than above: unexpected error!
5313 * rv == expected: full header or command
5314 * rv < expected: "woken" by signal during receive
5315 * rv == 0 : "connection shut down by peer"
5316 */
5317 if (likely(rv > 0)) {
5318 received += rv;
5319 buf += rv;
5320 } else if (rv == 0) {
Philipp Reisnerb66623e2012-08-08 21:19:09 +02005321 if (test_bit(DISCONNECT_SENT, &tconn->flags)) {
5322 long t;
5323 rcu_read_lock();
5324 t = rcu_dereference(tconn->net_conf)->ping_timeo * HZ/10;
5325 rcu_read_unlock();
5326
5327 t = wait_event_timeout(tconn->ping_wait,
5328 tconn->cstate < C_WF_REPORT_PARAMS,
5329 t);
Philipp Reisner599377a2012-08-17 14:50:22 +02005330 if (t)
5331 break;
5332 }
Philipp Reisner32862ec2011-02-08 16:41:01 +01005333 conn_err(tconn, "meta connection shut down by peer.\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07005334 goto reconnect;
5335 } else if (rv == -EAGAIN) {
Lars Ellenbergcb6518c2011-06-20 14:44:45 +02005336 /* If the data socket received something meanwhile,
5337 * that is good enough: peer is still alive. */
Philipp Reisner32862ec2011-02-08 16:41:01 +01005338 if (time_after(tconn->last_received,
5339 jiffies - tconn->meta.socket->sk->sk_rcvtimeo))
Lars Ellenbergcb6518c2011-06-20 14:44:45 +02005340 continue;
Lars Ellenbergf36af182011-03-09 22:44:55 +01005341 if (ping_timeout_active) {
Philipp Reisner32862ec2011-02-08 16:41:01 +01005342 conn_err(tconn, "PingAck did not arrive in time.\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07005343 goto reconnect;
5344 }
Philipp Reisner32862ec2011-02-08 16:41:01 +01005345 set_bit(SEND_PING, &tconn->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07005346 continue;
5347 } else if (rv == -EINTR) {
5348 continue;
5349 } else {
Philipp Reisner32862ec2011-02-08 16:41:01 +01005350 conn_err(tconn, "sock_recvmsg returned %d\n", rv);
Philipp Reisnerb411b362009-09-25 16:07:19 -07005351 goto reconnect;
5352 }
5353
5354 if (received == expect && cmd == NULL) {
Andreas Gruenbachere6589832011-03-30 12:54:42 +02005355 if (decode_header(tconn, tconn->meta.rbuf, &pi))
Philipp Reisnerb411b362009-09-25 16:07:19 -07005356 goto reconnect;
Andreas Gruenbacher7201b972011-03-14 18:23:00 +01005357 cmd = &asender_tbl[pi.cmd];
Andreas Gruenbacher1952e912011-03-25 15:37:43 +01005358 if (pi.cmd >= ARRAY_SIZE(asender_tbl) || !cmd->fn) {
Andreas Gruenbacher2fcb8f32011-07-03 11:41:08 +02005359 conn_err(tconn, "Unexpected meta packet %s (0x%04x)\n",
5360 cmdname(pi.cmd), pi.cmd);
Philipp Reisnerb411b362009-09-25 16:07:19 -07005361 goto disconnect;
5362 }
Andreas Gruenbachere6589832011-03-30 12:54:42 +02005363 expect = header_size + cmd->pkt_size;
Andreas Gruenbacher52b061a2011-03-30 11:38:49 +02005364 if (pi.size != expect - header_size) {
Philipp Reisner32862ec2011-02-08 16:41:01 +01005365 conn_err(tconn, "Wrong packet size on meta (c: %d, l: %d)\n",
Philipp Reisner77351055b2011-02-07 17:24:26 +01005366 pi.cmd, pi.size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07005367 goto reconnect;
Philipp Reisner257d0af2011-01-26 12:15:29 +01005368 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07005369 }
5370 if (received == expect) {
Andreas Gruenbacher2735a592011-04-04 15:30:24 +02005371 bool err;
Philipp Reisnera4fbda82011-03-16 11:13:17 +01005372
Andreas Gruenbacher2735a592011-04-04 15:30:24 +02005373 err = cmd->fn(tconn, &pi);
5374 if (err) {
Andreas Gruenbacher1952e912011-03-25 15:37:43 +01005375 conn_err(tconn, "%pf failed\n", cmd->fn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07005376 goto reconnect;
Andreas Gruenbacher1952e912011-03-25 15:37:43 +01005377 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07005378
Philipp Reisnera4fbda82011-03-16 11:13:17 +01005379 tconn->last_received = jiffies;
Lars Ellenbergf36af182011-03-09 22:44:55 +01005380
Philipp Reisner44ed1672011-04-19 17:10:19 +02005381 if (cmd == &asender_tbl[P_PING_ACK]) {
5382 /* restore idle timeout */
5383 tconn->meta.socket->sk->sk_rcvtimeo = ping_int * HZ;
5384 ping_timeout_active = false;
5385 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07005386
Andreas Gruenbachere6589832011-03-30 12:54:42 +02005387 buf = tconn->meta.rbuf;
Philipp Reisnerb411b362009-09-25 16:07:19 -07005388 received = 0;
Andreas Gruenbacher52b061a2011-03-30 11:38:49 +02005389 expect = header_size;
Philipp Reisnerb411b362009-09-25 16:07:19 -07005390 cmd = NULL;
5391 }
5392 }
5393
5394 if (0) {
5395reconnect:
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01005396 conn_request_state(tconn, NS(conn, C_NETWORK_FAILURE), CS_HARD);
Philipp Reisner19fffd72012-08-28 16:48:03 +02005397 conn_md_sync(tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07005398 }
5399 if (0) {
5400disconnect:
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01005401 conn_request_state(tconn, NS(conn, C_DISCONNECTING), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -07005402 }
Philipp Reisner32862ec2011-02-08 16:41:01 +01005403 clear_bit(SIGNAL_ASENDER, &tconn->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07005404
Philipp Reisner32862ec2011-02-08 16:41:01 +01005405 conn_info(tconn, "asender terminated\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07005406
5407 return 0;
5408}