4 This file is part of DRBD by Philipp Reisner and Lars Ellenberg.
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>.
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)
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.
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.
26 #include <linux/module.h>
28 #include <asm/uaccess.h>
31 #include <linux/drbd.h>
33 #include <linux/file.h>
36 #include <linux/memcontrol.h>
37 #include <linux/mm_inline.h>
38 #include <linux/slab.h>
39 #include <linux/smp_lock.h>
40 #include <linux/pkt_sched.h>
41 #define __KERNEL_SYSCALLS__
42 #include <linux/unistd.h>
43 #include <linux/vmalloc.h>
44 #include <linux/random.h>
45 #include <linux/string.h>
46 #include <linux/scatterlist.h>
54 struct drbd_epoch
*epoch
;
63 static int drbd_do_handshake(struct drbd_conf
*mdev
);
64 static int drbd_do_auth(struct drbd_conf
*mdev
);
66 static enum finish_epoch
drbd_may_finish_epoch(struct drbd_conf
*, struct drbd_epoch
*, enum epoch_event
);
67 static int e_end_block(struct drbd_conf
*, struct drbd_work
*, int);
69 static struct drbd_epoch
*previous_epoch(struct drbd_conf
*mdev
, struct drbd_epoch
*epoch
)
71 struct drbd_epoch
*prev
;
72 spin_lock(&mdev
->epoch_lock
);
73 prev
= list_entry(epoch
->list
.prev
, struct drbd_epoch
, list
);
74 if (prev
== epoch
|| prev
== mdev
->current_epoch
)
76 spin_unlock(&mdev
->epoch_lock
);
80 #define GFP_TRY (__GFP_HIGHMEM | __GFP_NOWARN)
83 * some helper functions to deal with single linked page lists,
84 * page->private being our "next" pointer.
87 /* If at least n pages are linked at head, get n pages off.
88 * Otherwise, don't modify head, and return NULL.
89 * Locking is the responsibility of the caller.
91 static struct page
*page_chain_del(struct page
**head
, int n
)
105 tmp
= page_chain_next(page
);
107 break; /* found sufficient pages */
109 /* insufficient pages, don't use any of them. */
114 /* add end of list marker for the returned list */
115 set_page_private(page
, 0);
116 /* actual return value, and adjustment of head */
122 /* may be used outside of locks to find the tail of a (usually short)
123 * "private" page chain, before adding it back to a global chain head
124 * with page_chain_add() under a spinlock. */
125 static struct page
*page_chain_tail(struct page
*page
, int *len
)
129 while ((tmp
= page_chain_next(page
)))
136 static int page_chain_free(struct page
*page
)
140 page_chain_for_each_safe(page
, tmp
) {
147 static void page_chain_add(struct page
**head
,
148 struct page
*chain_first
, struct page
*chain_last
)
152 tmp
= page_chain_tail(chain_first
, NULL
);
153 BUG_ON(tmp
!= chain_last
);
156 /* add chain to head */
157 set_page_private(chain_last
, (unsigned long)*head
);
161 static struct page
*drbd_pp_first_pages_or_try_alloc(struct drbd_conf
*mdev
, int number
)
163 struct page
*page
= NULL
;
164 struct page
*tmp
= NULL
;
167 /* Yes, testing drbd_pp_vacant outside the lock is racy.
168 * So what. It saves a spin_lock. */
169 if (drbd_pp_vacant
>= number
) {
170 spin_lock(&drbd_pp_lock
);
171 page
= page_chain_del(&drbd_pp_pool
, number
);
173 drbd_pp_vacant
-= number
;
174 spin_unlock(&drbd_pp_lock
);
179 /* GFP_TRY, because we must not cause arbitrary write-out: in a DRBD
180 * "criss-cross" setup, that might cause write-out on some other DRBD,
181 * which in turn might block on the other node at this very place. */
182 for (i
= 0; i
< number
; i
++) {
183 tmp
= alloc_page(GFP_TRY
);
186 set_page_private(tmp
, (unsigned long)page
);
193 /* Not enough pages immediately available this time.
194 * No need to jump around here, drbd_pp_alloc will retry this
195 * function "soon". */
197 tmp
= page_chain_tail(page
, NULL
);
198 spin_lock(&drbd_pp_lock
);
199 page_chain_add(&drbd_pp_pool
, page
, tmp
);
201 spin_unlock(&drbd_pp_lock
);
206 /* kick lower level device, if we have more than (arbitrary number)
207 * reference counts on it, which typically are locally submitted io
208 * requests. don't use unacked_cnt, so we speed up proto A and B, too. */
209 static void maybe_kick_lo(struct drbd_conf
*mdev
)
211 if (atomic_read(&mdev
->local_cnt
) >= mdev
->net_conf
->unplug_watermark
)
215 static void reclaim_net_ee(struct drbd_conf
*mdev
, struct list_head
*to_be_freed
)
217 struct drbd_epoch_entry
*e
;
218 struct list_head
*le
, *tle
;
220 /* The EEs are always appended to the end of the list. Since
221 they are sent in order over the wire, they have to finish
222 in order. As soon as we see the first not finished we can
223 stop to examine the list... */
225 list_for_each_safe(le
, tle
, &mdev
->net_ee
) {
226 e
= list_entry(le
, struct drbd_epoch_entry
, w
.list
);
227 if (drbd_ee_has_active_page(e
))
229 list_move(le
, to_be_freed
);
233 static void drbd_kick_lo_and_reclaim_net(struct drbd_conf
*mdev
)
235 LIST_HEAD(reclaimed
);
236 struct drbd_epoch_entry
*e
, *t
;
239 spin_lock_irq(&mdev
->req_lock
);
240 reclaim_net_ee(mdev
, &reclaimed
);
241 spin_unlock_irq(&mdev
->req_lock
);
243 list_for_each_entry_safe(e
, t
, &reclaimed
, w
.list
)
244 drbd_free_ee(mdev
, e
);
248 * drbd_pp_alloc() - Returns @number pages, retries forever (or until signalled)
249 * @mdev: DRBD device.
250 * @number: number of pages requested
251 * @retry: whether to retry, if not enough pages are available right now
253 * Tries to allocate number pages, first from our own page pool, then from
254 * the kernel, unless this allocation would exceed the max_buffers setting.
255 * Possibly retry until DRBD frees sufficient pages somewhere else.
257 * Returns a page chain linked via page->private.
259 static struct page
*drbd_pp_alloc(struct drbd_conf
*mdev
, unsigned number
, bool retry
)
261 struct page
*page
= NULL
;
264 /* Yes, we may run up to @number over max_buffers. If we
265 * follow it strictly, the admin will get it wrong anyways. */
266 if (atomic_read(&mdev
->pp_in_use
) < mdev
->net_conf
->max_buffers
)
267 page
= drbd_pp_first_pages_or_try_alloc(mdev
, number
);
269 while (page
== NULL
) {
270 prepare_to_wait(&drbd_pp_wait
, &wait
, TASK_INTERRUPTIBLE
);
272 drbd_kick_lo_and_reclaim_net(mdev
);
274 if (atomic_read(&mdev
->pp_in_use
) < mdev
->net_conf
->max_buffers
) {
275 page
= drbd_pp_first_pages_or_try_alloc(mdev
, number
);
283 if (signal_pending(current
)) {
284 dev_warn(DEV
, "drbd_pp_alloc interrupted!\n");
290 finish_wait(&drbd_pp_wait
, &wait
);
293 atomic_add(number
, &mdev
->pp_in_use
);
297 /* Must not be used from irq, as that may deadlock: see drbd_pp_alloc.
298 * Is also used from inside an other spin_lock_irq(&mdev->req_lock);
299 * Either links the page chain back to the global pool,
300 * or returns all pages to the system. */
301 static void drbd_pp_free(struct drbd_conf
*mdev
, struct page
*page
)
304 if (drbd_pp_vacant
> (DRBD_MAX_SEGMENT_SIZE
/PAGE_SIZE
)*minor_count
)
305 i
= page_chain_free(page
);
308 tmp
= page_chain_tail(page
, &i
);
309 spin_lock(&drbd_pp_lock
);
310 page_chain_add(&drbd_pp_pool
, page
, tmp
);
312 spin_unlock(&drbd_pp_lock
);
314 atomic_sub(i
, &mdev
->pp_in_use
);
315 i
= atomic_read(&mdev
->pp_in_use
);
317 dev_warn(DEV
, "ASSERTION FAILED: pp_in_use: %d < 0\n", i
);
318 wake_up(&drbd_pp_wait
);
322 You need to hold the req_lock:
323 _drbd_wait_ee_list_empty()
325 You must not have the req_lock:
331 drbd_process_done_ee()
333 drbd_wait_ee_list_empty()
336 struct drbd_epoch_entry
*drbd_alloc_ee(struct drbd_conf
*mdev
,
339 unsigned int data_size
,
340 gfp_t gfp_mask
) __must_hold(local
)
342 struct drbd_epoch_entry
*e
;
344 unsigned nr_pages
= (data_size
+ PAGE_SIZE
-1) >> PAGE_SHIFT
;
346 if (FAULT_ACTIVE(mdev
, DRBD_FAULT_AL_EE
))
349 e
= mempool_alloc(drbd_ee_mempool
, gfp_mask
& ~__GFP_HIGHMEM
);
351 if (!(gfp_mask
& __GFP_NOWARN
))
352 dev_err(DEV
, "alloc_ee: Allocation of an EE failed\n");
356 page
= drbd_pp_alloc(mdev
, nr_pages
, (gfp_mask
& __GFP_WAIT
));
360 INIT_HLIST_NODE(&e
->colision
);
364 atomic_set(&e
->pending_bios
, 0);
374 mempool_free(e
, drbd_ee_mempool
);
378 void drbd_free_ee(struct drbd_conf
*mdev
, struct drbd_epoch_entry
*e
)
380 drbd_pp_free(mdev
, e
->pages
);
381 D_ASSERT(atomic_read(&e
->pending_bios
) == 0);
382 D_ASSERT(hlist_unhashed(&e
->colision
));
383 mempool_free(e
, drbd_ee_mempool
);
386 int drbd_release_ee(struct drbd_conf
*mdev
, struct list_head
*list
)
388 LIST_HEAD(work_list
);
389 struct drbd_epoch_entry
*e
, *t
;
392 spin_lock_irq(&mdev
->req_lock
);
393 list_splice_init(list
, &work_list
);
394 spin_unlock_irq(&mdev
->req_lock
);
396 list_for_each_entry_safe(e
, t
, &work_list
, w
.list
) {
397 drbd_free_ee(mdev
, e
);
405 * This function is called from _asender only_
406 * but see also comments in _req_mod(,barrier_acked)
407 * and receive_Barrier.
409 * Move entries from net_ee to done_ee, if ready.
410 * Grab done_ee, call all callbacks, free the entries.
411 * The callbacks typically send out ACKs.
413 static int drbd_process_done_ee(struct drbd_conf
*mdev
)
415 LIST_HEAD(work_list
);
416 LIST_HEAD(reclaimed
);
417 struct drbd_epoch_entry
*e
, *t
;
418 int ok
= (mdev
->state
.conn
>= C_WF_REPORT_PARAMS
);
420 spin_lock_irq(&mdev
->req_lock
);
421 reclaim_net_ee(mdev
, &reclaimed
);
422 list_splice_init(&mdev
->done_ee
, &work_list
);
423 spin_unlock_irq(&mdev
->req_lock
);
425 list_for_each_entry_safe(e
, t
, &reclaimed
, w
.list
)
426 drbd_free_ee(mdev
, e
);
428 /* possible callbacks here:
429 * e_end_block, and e_end_resync_block, e_send_discard_ack.
430 * all ignore the last argument.
432 list_for_each_entry_safe(e
, t
, &work_list
, w
.list
) {
433 /* list_del not necessary, next/prev members not touched */
434 ok
= e
->w
.cb(mdev
, &e
->w
, !ok
) && ok
;
435 drbd_free_ee(mdev
, e
);
437 wake_up(&mdev
->ee_wait
);
442 void _drbd_wait_ee_list_empty(struct drbd_conf
*mdev
, struct list_head
*head
)
446 /* avoids spin_lock/unlock
447 * and calling prepare_to_wait in the fast path */
448 while (!list_empty(head
)) {
449 prepare_to_wait(&mdev
->ee_wait
, &wait
, TASK_UNINTERRUPTIBLE
);
450 spin_unlock_irq(&mdev
->req_lock
);
453 finish_wait(&mdev
->ee_wait
, &wait
);
454 spin_lock_irq(&mdev
->req_lock
);
458 void drbd_wait_ee_list_empty(struct drbd_conf
*mdev
, struct list_head
*head
)
460 spin_lock_irq(&mdev
->req_lock
);
461 _drbd_wait_ee_list_empty(mdev
, head
);
462 spin_unlock_irq(&mdev
->req_lock
);
465 /* see also kernel_accept; which is only present since 2.6.18.
466 * also we want to log which part of it failed, exactly */
467 static int drbd_accept(struct drbd_conf
*mdev
, const char **what
,
468 struct socket
*sock
, struct socket
**newsock
)
470 struct sock
*sk
= sock
->sk
;
474 err
= sock
->ops
->listen(sock
, 5);
478 *what
= "sock_create_lite";
479 err
= sock_create_lite(sk
->sk_family
, sk
->sk_type
, sk
->sk_protocol
,
485 err
= sock
->ops
->accept(sock
, *newsock
, 0);
487 sock_release(*newsock
);
491 (*newsock
)->ops
= sock
->ops
;
497 static int drbd_recv_short(struct drbd_conf
*mdev
, struct socket
*sock
,
498 void *buf
, size_t size
, int flags
)
505 struct msghdr msg
= {
507 .msg_iov
= (struct iovec
*)&iov
,
508 .msg_flags
= (flags
? flags
: MSG_WAITALL
| MSG_NOSIGNAL
)
514 rv
= sock_recvmsg(sock
, &msg
, size
, msg
.msg_flags
);
520 static int drbd_recv(struct drbd_conf
*mdev
, void *buf
, size_t size
)
527 struct msghdr msg
= {
529 .msg_iov
= (struct iovec
*)&iov
,
530 .msg_flags
= MSG_WAITALL
| MSG_NOSIGNAL
538 rv
= sock_recvmsg(mdev
->data
.socket
, &msg
, size
, msg
.msg_flags
);
543 * ECONNRESET other side closed the connection
544 * ERESTARTSYS (on sock) we got a signal
548 if (rv
== -ECONNRESET
)
549 dev_info(DEV
, "sock was reset by peer\n");
550 else if (rv
!= -ERESTARTSYS
)
551 dev_err(DEV
, "sock_recvmsg returned %d\n", rv
);
553 } else if (rv
== 0) {
554 dev_info(DEV
, "sock was shut down by peer\n");
557 /* signal came in, or peer/link went down,
558 * after we read a partial message
560 /* D_ASSERT(signal_pending(current)); */
568 drbd_force_state(mdev
, NS(conn
, C_BROKEN_PIPE
));
574 * On individual connections, the socket buffer size must be set prior to the
575 * listen(2) or connect(2) calls in order to have it take effect.
576 * This is our wrapper to do so.
578 static void drbd_setbufsize(struct socket
*sock
, unsigned int snd
,
581 /* open coded SO_SNDBUF, SO_RCVBUF */
583 sock
->sk
->sk_sndbuf
= snd
;
584 sock
->sk
->sk_userlocks
|= SOCK_SNDBUF_LOCK
;
587 sock
->sk
->sk_rcvbuf
= rcv
;
588 sock
->sk
->sk_userlocks
|= SOCK_RCVBUF_LOCK
;
592 static struct socket
*drbd_try_connect(struct drbd_conf
*mdev
)
596 struct sockaddr_in6 src_in6
;
598 int disconnect_on_error
= 1;
600 if (!get_net_conf(mdev
))
603 what
= "sock_create_kern";
604 err
= sock_create_kern(((struct sockaddr
*)mdev
->net_conf
->my_addr
)->sa_family
,
605 SOCK_STREAM
, IPPROTO_TCP
, &sock
);
611 sock
->sk
->sk_rcvtimeo
=
612 sock
->sk
->sk_sndtimeo
= mdev
->net_conf
->try_connect_int
*HZ
;
613 drbd_setbufsize(sock
, mdev
->net_conf
->sndbuf_size
,
614 mdev
->net_conf
->rcvbuf_size
);
616 /* explicitly bind to the configured IP as source IP
617 * for the outgoing connections.
618 * This is needed for multihomed hosts and to be
619 * able to use lo: interfaces for drbd.
620 * Make sure to use 0 as port number, so linux selects
621 * a free one dynamically.
623 memcpy(&src_in6
, mdev
->net_conf
->my_addr
,
624 min_t(int, mdev
->net_conf
->my_addr_len
, sizeof(src_in6
)));
625 if (((struct sockaddr
*)mdev
->net_conf
->my_addr
)->sa_family
== AF_INET6
)
626 src_in6
.sin6_port
= 0;
628 ((struct sockaddr_in
*)&src_in6
)->sin_port
= 0; /* AF_INET & AF_SCI */
630 what
= "bind before connect";
631 err
= sock
->ops
->bind(sock
,
632 (struct sockaddr
*) &src_in6
,
633 mdev
->net_conf
->my_addr_len
);
637 /* connect may fail, peer not yet available.
638 * stay C_WF_CONNECTION, don't go Disconnecting! */
639 disconnect_on_error
= 0;
641 err
= sock
->ops
->connect(sock
,
642 (struct sockaddr
*)mdev
->net_conf
->peer_addr
,
643 mdev
->net_conf
->peer_addr_len
, 0);
652 /* timeout, busy, signal pending */
653 case ETIMEDOUT
: case EAGAIN
: case EINPROGRESS
:
654 case EINTR
: case ERESTARTSYS
:
655 /* peer not (yet) available, network problem */
656 case ECONNREFUSED
: case ENETUNREACH
:
657 case EHOSTDOWN
: case EHOSTUNREACH
:
658 disconnect_on_error
= 0;
661 dev_err(DEV
, "%s failed, err = %d\n", what
, err
);
663 if (disconnect_on_error
)
664 drbd_force_state(mdev
, NS(conn
, C_DISCONNECTING
));
670 static struct socket
*drbd_wait_for_connect(struct drbd_conf
*mdev
)
673 struct socket
*s_estab
= NULL
, *s_listen
;
676 if (!get_net_conf(mdev
))
679 what
= "sock_create_kern";
680 err
= sock_create_kern(((struct sockaddr
*)mdev
->net_conf
->my_addr
)->sa_family
,
681 SOCK_STREAM
, IPPROTO_TCP
, &s_listen
);
687 timeo
= mdev
->net_conf
->try_connect_int
* HZ
;
688 timeo
+= (random32() & 1) ? timeo
/ 7 : -timeo
/ 7; /* 28.5% random jitter */
690 s_listen
->sk
->sk_reuse
= 1; /* SO_REUSEADDR */
691 s_listen
->sk
->sk_rcvtimeo
= timeo
;
692 s_listen
->sk
->sk_sndtimeo
= timeo
;
693 drbd_setbufsize(s_listen
, mdev
->net_conf
->sndbuf_size
,
694 mdev
->net_conf
->rcvbuf_size
);
696 what
= "bind before listen";
697 err
= s_listen
->ops
->bind(s_listen
,
698 (struct sockaddr
*) mdev
->net_conf
->my_addr
,
699 mdev
->net_conf
->my_addr_len
);
703 err
= drbd_accept(mdev
, &what
, s_listen
, &s_estab
);
707 sock_release(s_listen
);
709 if (err
!= -EAGAIN
&& err
!= -EINTR
&& err
!= -ERESTARTSYS
) {
710 dev_err(DEV
, "%s failed, err = %d\n", what
, err
);
711 drbd_force_state(mdev
, NS(conn
, C_DISCONNECTING
));
719 static int drbd_send_fp(struct drbd_conf
*mdev
,
720 struct socket
*sock
, enum drbd_packets cmd
)
722 struct p_header
*h
= (struct p_header
*) &mdev
->data
.sbuf
.header
;
724 return _drbd_send_cmd(mdev
, sock
, cmd
, h
, sizeof(*h
), 0);
727 static enum drbd_packets
drbd_recv_fp(struct drbd_conf
*mdev
, struct socket
*sock
)
729 struct p_header
*h
= (struct p_header
*) &mdev
->data
.sbuf
.header
;
732 rr
= drbd_recv_short(mdev
, sock
, h
, sizeof(*h
), 0);
734 if (rr
== sizeof(*h
) && h
->magic
== BE_DRBD_MAGIC
)
735 return be16_to_cpu(h
->command
);
741 * drbd_socket_okay() - Free the socket if its connection is not okay
742 * @mdev: DRBD device.
743 * @sock: pointer to the pointer to the socket.
745 static int drbd_socket_okay(struct drbd_conf
*mdev
, struct socket
**sock
)
753 rr
= drbd_recv_short(mdev
, *sock
, tb
, 4, MSG_DONTWAIT
| MSG_PEEK
);
755 if (rr
> 0 || rr
== -EAGAIN
) {
766 * 1 yes, we have a valid connection
767 * 0 oops, did not work out, please try again
768 * -1 peer talks different language,
769 * no point in trying again, please go standalone.
770 * -2 We do not have a network config...
772 static int drbd_connect(struct drbd_conf
*mdev
)
774 struct socket
*s
, *sock
, *msock
;
777 D_ASSERT(!mdev
->data
.socket
);
779 if (test_and_clear_bit(CREATE_BARRIER
, &mdev
->flags
))
780 dev_err(DEV
, "CREATE_BARRIER flag was set in drbd_connect - now cleared!\n");
782 if (drbd_request_state(mdev
, NS(conn
, C_WF_CONNECTION
)) < SS_SUCCESS
)
785 clear_bit(DISCARD_CONCURRENT
, &mdev
->flags
);
792 /* 3 tries, this should take less than a second! */
793 s
= drbd_try_connect(mdev
);
796 /* give the other side time to call bind() & listen() */
797 __set_current_state(TASK_INTERRUPTIBLE
);
798 schedule_timeout(HZ
/ 10);
803 drbd_send_fp(mdev
, s
, P_HAND_SHAKE_S
);
807 drbd_send_fp(mdev
, s
, P_HAND_SHAKE_M
);
811 dev_err(DEV
, "Logic error in drbd_connect()\n");
812 goto out_release_sockets
;
817 __set_current_state(TASK_INTERRUPTIBLE
);
818 schedule_timeout(HZ
/ 10);
819 ok
= drbd_socket_okay(mdev
, &sock
);
820 ok
= drbd_socket_okay(mdev
, &msock
) && ok
;
826 s
= drbd_wait_for_connect(mdev
);
828 try = drbd_recv_fp(mdev
, s
);
829 drbd_socket_okay(mdev
, &sock
);
830 drbd_socket_okay(mdev
, &msock
);
834 dev_warn(DEV
, "initial packet S crossed\n");
841 dev_warn(DEV
, "initial packet M crossed\n");
845 set_bit(DISCARD_CONCURRENT
, &mdev
->flags
);
848 dev_warn(DEV
, "Error receiving initial packet\n");
855 if (mdev
->state
.conn
<= C_DISCONNECTING
)
856 goto out_release_sockets
;
857 if (signal_pending(current
)) {
858 flush_signals(current
);
860 if (get_t_state(&mdev
->receiver
) == Exiting
)
861 goto out_release_sockets
;
865 ok
= drbd_socket_okay(mdev
, &sock
);
866 ok
= drbd_socket_okay(mdev
, &msock
) && ok
;
872 msock
->sk
->sk_reuse
= 1; /* SO_REUSEADDR */
873 sock
->sk
->sk_reuse
= 1; /* SO_REUSEADDR */
875 sock
->sk
->sk_allocation
= GFP_NOIO
;
876 msock
->sk
->sk_allocation
= GFP_NOIO
;
878 sock
->sk
->sk_priority
= TC_PRIO_INTERACTIVE_BULK
;
879 msock
->sk
->sk_priority
= TC_PRIO_INTERACTIVE
;
882 * sock->sk->sk_sndtimeo = mdev->net_conf->timeout*HZ/10;
883 * sock->sk->sk_rcvtimeo = MAX_SCHEDULE_TIMEOUT;
884 * first set it to the P_HAND_SHAKE timeout,
885 * which we set to 4x the configured ping_timeout. */
886 sock
->sk
->sk_sndtimeo
=
887 sock
->sk
->sk_rcvtimeo
= mdev
->net_conf
->ping_timeo
*4*HZ
/10;
889 msock
->sk
->sk_sndtimeo
= mdev
->net_conf
->timeout
*HZ
/10;
890 msock
->sk
->sk_rcvtimeo
= mdev
->net_conf
->ping_int
*HZ
;
892 /* we don't want delays.
893 * we use TCP_CORK where apropriate, though */
894 drbd_tcp_nodelay(sock
);
895 drbd_tcp_nodelay(msock
);
897 mdev
->data
.socket
= sock
;
898 mdev
->meta
.socket
= msock
;
899 mdev
->last_received
= jiffies
;
901 D_ASSERT(mdev
->asender
.task
== NULL
);
903 h
= drbd_do_handshake(mdev
);
907 if (mdev
->cram_hmac_tfm
) {
908 /* drbd_request_state(mdev, NS(conn, WFAuth)); */
909 switch (drbd_do_auth(mdev
)) {
911 dev_err(DEV
, "Authentication of peer failed\n");
914 dev_err(DEV
, "Authentication of peer failed, trying again.\n");
919 if (drbd_request_state(mdev
, NS(conn
, C_WF_REPORT_PARAMS
)) < SS_SUCCESS
)
922 sock
->sk
->sk_sndtimeo
= mdev
->net_conf
->timeout
*HZ
/10;
923 sock
->sk
->sk_rcvtimeo
= MAX_SCHEDULE_TIMEOUT
;
925 atomic_set(&mdev
->packet_seq
, 0);
928 drbd_thread_start(&mdev
->asender
);
930 if (!drbd_send_protocol(mdev
))
932 drbd_send_sync_param(mdev
, &mdev
->sync_conf
);
933 drbd_send_sizes(mdev
, 0, 0);
934 drbd_send_uuids(mdev
);
935 drbd_send_state(mdev
);
936 clear_bit(USE_DEGR_WFC_T
, &mdev
->flags
);
937 clear_bit(RESIZE_PENDING
, &mdev
->flags
);
949 static int drbd_recv_header(struct drbd_conf
*mdev
, struct p_header
*h
)
953 r
= drbd_recv(mdev
, h
, sizeof(*h
));
955 if (unlikely(r
!= sizeof(*h
))) {
956 dev_err(DEV
, "short read expecting header on sock: r=%d\n", r
);
959 h
->command
= be16_to_cpu(h
->command
);
960 h
->length
= be16_to_cpu(h
->length
);
961 if (unlikely(h
->magic
!= BE_DRBD_MAGIC
)) {
962 dev_err(DEV
, "magic?? on data m: 0x%lx c: %d l: %d\n",
963 (long)be32_to_cpu(h
->magic
),
964 h
->command
, h
->length
);
967 mdev
->last_received
= jiffies
;
972 static enum finish_epoch
drbd_flush_after_epoch(struct drbd_conf
*mdev
, struct drbd_epoch
*epoch
)
976 if (mdev
->write_ordering
>= WO_bdev_flush
&& get_ldev(mdev
)) {
977 rv
= blkdev_issue_flush(mdev
->ldev
->backing_bdev
, GFP_KERNEL
,
978 NULL
, BLKDEV_IFL_WAIT
);
980 dev_err(DEV
, "local disk flush failed with status %d\n", rv
);
981 /* would rather check on EOPNOTSUPP, but that is not reliable.
982 * don't try again for ANY return value != 0
983 * if (rv == -EOPNOTSUPP) */
984 drbd_bump_write_ordering(mdev
, WO_drain_io
);
989 return drbd_may_finish_epoch(mdev
, epoch
, EV_BARRIER_DONE
);
992 static int w_flush(struct drbd_conf
*mdev
, struct drbd_work
*w
, int cancel
)
994 struct flush_work
*fw
= (struct flush_work
*)w
;
995 struct drbd_epoch
*epoch
= fw
->epoch
;
999 if (!test_and_set_bit(DE_BARRIER_IN_NEXT_EPOCH_ISSUED
, &epoch
->flags
))
1000 drbd_flush_after_epoch(mdev
, epoch
);
1002 drbd_may_finish_epoch(mdev
, epoch
, EV_PUT
|
1003 (mdev
->state
.conn
< C_CONNECTED
? EV_CLEANUP
: 0));
1009 * drbd_may_finish_epoch() - Applies an epoch_event to the epoch's state, eventually finishes it.
1010 * @mdev: DRBD device.
1011 * @epoch: Epoch object.
1014 static enum finish_epoch
drbd_may_finish_epoch(struct drbd_conf
*mdev
,
1015 struct drbd_epoch
*epoch
,
1016 enum epoch_event ev
)
1018 int finish
, epoch_size
;
1019 struct drbd_epoch
*next_epoch
;
1020 int schedule_flush
= 0;
1021 enum finish_epoch rv
= FE_STILL_LIVE
;
1023 spin_lock(&mdev
->epoch_lock
);
1028 epoch_size
= atomic_read(&epoch
->epoch_size
);
1030 switch (ev
& ~EV_CLEANUP
) {
1032 atomic_dec(&epoch
->active
);
1034 case EV_GOT_BARRIER_NR
:
1035 set_bit(DE_HAVE_BARRIER_NUMBER
, &epoch
->flags
);
1037 /* Special case: If we just switched from WO_bio_barrier to
1038 WO_bdev_flush we should not finish the current epoch */
1039 if (test_bit(DE_CONTAINS_A_BARRIER
, &epoch
->flags
) && epoch_size
== 1 &&
1040 mdev
->write_ordering
!= WO_bio_barrier
&&
1041 epoch
== mdev
->current_epoch
)
1042 clear_bit(DE_CONTAINS_A_BARRIER
, &epoch
->flags
);
1044 case EV_BARRIER_DONE
:
1045 set_bit(DE_BARRIER_IN_NEXT_EPOCH_DONE
, &epoch
->flags
);
1047 case EV_BECAME_LAST
:
1052 if (epoch_size
!= 0 &&
1053 atomic_read(&epoch
->active
) == 0 &&
1054 test_bit(DE_HAVE_BARRIER_NUMBER
, &epoch
->flags
) &&
1055 epoch
->list
.prev
== &mdev
->current_epoch
->list
&&
1056 !test_bit(DE_IS_FINISHING
, &epoch
->flags
)) {
1057 /* Nearly all conditions are met to finish that epoch... */
1058 if (test_bit(DE_BARRIER_IN_NEXT_EPOCH_DONE
, &epoch
->flags
) ||
1059 mdev
->write_ordering
== WO_none
||
1060 (epoch_size
== 1 && test_bit(DE_CONTAINS_A_BARRIER
, &epoch
->flags
)) ||
1063 set_bit(DE_IS_FINISHING
, &epoch
->flags
);
1064 } else if (!test_bit(DE_BARRIER_IN_NEXT_EPOCH_ISSUED
, &epoch
->flags
) &&
1065 mdev
->write_ordering
== WO_bio_barrier
) {
1066 atomic_inc(&epoch
->active
);
1071 if (!(ev
& EV_CLEANUP
)) {
1072 spin_unlock(&mdev
->epoch_lock
);
1073 drbd_send_b_ack(mdev
, epoch
->barrier_nr
, epoch_size
);
1074 spin_lock(&mdev
->epoch_lock
);
1078 if (mdev
->current_epoch
!= epoch
) {
1079 next_epoch
= list_entry(epoch
->list
.next
, struct drbd_epoch
, list
);
1080 list_del(&epoch
->list
);
1081 ev
= EV_BECAME_LAST
| (ev
& EV_CLEANUP
);
1085 if (rv
== FE_STILL_LIVE
)
1089 atomic_set(&epoch
->epoch_size
, 0);
1090 /* atomic_set(&epoch->active, 0); is already zero */
1091 if (rv
== FE_STILL_LIVE
)
1102 spin_unlock(&mdev
->epoch_lock
);
1104 if (schedule_flush
) {
1105 struct flush_work
*fw
;
1106 fw
= kmalloc(sizeof(*fw
), GFP_ATOMIC
);
1110 drbd_queue_work(&mdev
->data
.work
, &fw
->w
);
1112 dev_warn(DEV
, "Could not kmalloc a flush_work obj\n");
1113 set_bit(DE_BARRIER_IN_NEXT_EPOCH_ISSUED
, &epoch
->flags
);
1114 /* That is not a recursion, only one level */
1115 drbd_may_finish_epoch(mdev
, epoch
, EV_BARRIER_DONE
);
1116 drbd_may_finish_epoch(mdev
, epoch
, EV_PUT
);
1124 * drbd_bump_write_ordering() - Fall back to an other write ordering method
1125 * @mdev: DRBD device.
1126 * @wo: Write ordering method to try.
1128 void drbd_bump_write_ordering(struct drbd_conf
*mdev
, enum write_ordering_e wo
) __must_hold(local
)
1130 enum write_ordering_e pwo
;
1131 static char *write_ordering_str
[] = {
1133 [WO_drain_io
] = "drain",
1134 [WO_bdev_flush
] = "flush",
1135 [WO_bio_barrier
] = "barrier",
1138 pwo
= mdev
->write_ordering
;
1140 if (wo
== WO_bio_barrier
&& mdev
->ldev
->dc
.no_disk_barrier
)
1142 if (wo
== WO_bdev_flush
&& mdev
->ldev
->dc
.no_disk_flush
)
1144 if (wo
== WO_drain_io
&& mdev
->ldev
->dc
.no_disk_drain
)
1146 mdev
->write_ordering
= wo
;
1147 if (pwo
!= mdev
->write_ordering
|| wo
== WO_bio_barrier
)
1148 dev_info(DEV
, "Method to ensure write ordering: %s\n", write_ordering_str
[mdev
->write_ordering
]);
1153 * @mdev: DRBD device.
1155 * @rw: flag field, see bio->bi_rw
1157 /* TODO allocate from our own bio_set. */
1158 int drbd_submit_ee(struct drbd_conf
*mdev
, struct drbd_epoch_entry
*e
,
1159 const unsigned rw
, const int fault_type
)
1161 struct bio
*bios
= NULL
;
1163 struct page
*page
= e
->pages
;
1164 sector_t sector
= e
->sector
;
1165 unsigned ds
= e
->size
;
1166 unsigned n_bios
= 0;
1167 unsigned nr_pages
= (ds
+ PAGE_SIZE
-1) >> PAGE_SHIFT
;
1169 /* In most cases, we will only need one bio. But in case the lower
1170 * level restrictions happen to be different at this offset on this
1171 * side than those of the sending peer, we may need to submit the
1172 * request in more than one bio. */
1174 bio
= bio_alloc(GFP_NOIO
, nr_pages
);
1176 dev_err(DEV
, "submit_ee: Allocation of a bio failed\n");
1179 /* > e->sector, unless this is the first bio */
1180 bio
->bi_sector
= sector
;
1181 bio
->bi_bdev
= mdev
->ldev
->backing_bdev
;
1182 /* we special case some flags in the multi-bio case, see below
1183 * (REQ_UNPLUG, REQ_HARDBARRIER) */
1185 bio
->bi_private
= e
;
1186 bio
->bi_end_io
= drbd_endio_sec
;
1188 bio
->bi_next
= bios
;
1192 page_chain_for_each(page
) {
1193 unsigned len
= min_t(unsigned, ds
, PAGE_SIZE
);
1194 if (!bio_add_page(bio
, page
, len
, 0)) {
1195 /* a single page must always be possible! */
1196 BUG_ON(bio
->bi_vcnt
== 0);
1203 D_ASSERT(page
== NULL
);
1206 atomic_set(&e
->pending_bios
, n_bios
);
1209 bios
= bios
->bi_next
;
1210 bio
->bi_next
= NULL
;
1212 /* strip off REQ_UNPLUG unless it is the last bio */
1214 bio
->bi_rw
&= ~REQ_UNPLUG
;
1216 drbd_generic_make_request(mdev
, fault_type
, bio
);
1218 /* strip off REQ_HARDBARRIER,
1219 * unless it is the first or last bio */
1220 if (bios
&& bios
->bi_next
)
1221 bios
->bi_rw
&= ~REQ_HARDBARRIER
;
1223 maybe_kick_lo(mdev
);
1229 bios
= bios
->bi_next
;
1236 * w_e_reissue() - Worker callback; Resubmit a bio, without REQ_HARDBARRIER set
1237 * @mdev: DRBD device.
1239 * @cancel: The connection will be closed anyways (unused in this callback)
1241 int w_e_reissue(struct drbd_conf
*mdev
, struct drbd_work
*w
, int cancel
) __releases(local
)
1243 struct drbd_epoch_entry
*e
= (struct drbd_epoch_entry
*)w
;
1244 /* We leave DE_CONTAINS_A_BARRIER and EE_IS_BARRIER in place,
1245 (and DE_BARRIER_IN_NEXT_EPOCH_ISSUED in the previous Epoch)
1246 so that we can finish that epoch in drbd_may_finish_epoch().
1247 That is necessary if we already have a long chain of Epochs, before
1248 we realize that REQ_HARDBARRIER is actually not supported */
1250 /* As long as the -ENOTSUPP on the barrier is reported immediately
1251 that will never trigger. If it is reported late, we will just
1252 print that warning and continue correctly for all future requests
1253 with WO_bdev_flush */
1254 if (previous_epoch(mdev
, e
->epoch
))
1255 dev_warn(DEV
, "Write ordering was not enforced (one time event)\n");
1257 /* we still have a local reference,
1258 * get_ldev was done in receive_Data. */
1260 e
->w
.cb
= e_end_block
;
1261 if (drbd_submit_ee(mdev
, e
, WRITE
, DRBD_FAULT_DT_WR
) != 0) {
1262 /* drbd_submit_ee fails for one reason only:
1263 * if was not able to allocate sufficient bios.
1264 * requeue, try again later. */
1265 e
->w
.cb
= w_e_reissue
;
1266 drbd_queue_work(&mdev
->data
.work
, &e
->w
);
1271 static int receive_Barrier(struct drbd_conf
*mdev
, struct p_header
*h
)
1273 int rv
, issue_flush
;
1274 struct p_barrier
*p
= (struct p_barrier
*)h
;
1275 struct drbd_epoch
*epoch
;
1277 ERR_IF(h
->length
!= (sizeof(*p
)-sizeof(*h
))) return FALSE
;
1279 rv
= drbd_recv(mdev
, h
->payload
, h
->length
);
1280 ERR_IF(rv
!= h
->length
) return FALSE
;
1284 if (mdev
->net_conf
->wire_protocol
!= DRBD_PROT_C
)
1287 mdev
->current_epoch
->barrier_nr
= p
->barrier
;
1288 rv
= drbd_may_finish_epoch(mdev
, mdev
->current_epoch
, EV_GOT_BARRIER_NR
);
1290 /* P_BARRIER_ACK may imply that the corresponding extent is dropped from
1291 * the activity log, which means it would not be resynced in case the
1292 * R_PRIMARY crashes now.
1293 * Therefore we must send the barrier_ack after the barrier request was
1295 switch (mdev
->write_ordering
) {
1296 case WO_bio_barrier
:
1298 if (rv
== FE_RECYCLED
)
1304 if (rv
== FE_STILL_LIVE
) {
1305 set_bit(DE_BARRIER_IN_NEXT_EPOCH_ISSUED
, &mdev
->current_epoch
->flags
);
1306 drbd_wait_ee_list_empty(mdev
, &mdev
->active_ee
);
1307 rv
= drbd_flush_after_epoch(mdev
, mdev
->current_epoch
);
1309 if (rv
== FE_RECYCLED
)
1312 /* The asender will send all the ACKs and barrier ACKs out, since
1313 all EEs moved from the active_ee to the done_ee. We need to
1314 provide a new epoch object for the EEs that come in soon */
1318 /* receiver context, in the writeout path of the other node.
1319 * avoid potential distributed deadlock */
1320 epoch
= kmalloc(sizeof(struct drbd_epoch
), GFP_NOIO
);
1322 dev_warn(DEV
, "Allocation of an epoch failed, slowing down\n");
1323 issue_flush
= !test_and_set_bit(DE_BARRIER_IN_NEXT_EPOCH_ISSUED
, &mdev
->current_epoch
->flags
);
1324 drbd_wait_ee_list_empty(mdev
, &mdev
->active_ee
);
1326 rv
= drbd_flush_after_epoch(mdev
, mdev
->current_epoch
);
1327 if (rv
== FE_RECYCLED
)
1331 drbd_wait_ee_list_empty(mdev
, &mdev
->done_ee
);
1337 atomic_set(&epoch
->epoch_size
, 0);
1338 atomic_set(&epoch
->active
, 0);
1340 spin_lock(&mdev
->epoch_lock
);
1341 if (atomic_read(&mdev
->current_epoch
->epoch_size
)) {
1342 list_add(&epoch
->list
, &mdev
->current_epoch
->list
);
1343 mdev
->current_epoch
= epoch
;
1346 /* The current_epoch got recycled while we allocated this one... */
1349 spin_unlock(&mdev
->epoch_lock
);
1354 /* used from receive_RSDataReply (recv_resync_read)
1355 * and from receive_Data */
1356 static struct drbd_epoch_entry
*
1357 read_in_block(struct drbd_conf
*mdev
, u64 id
, sector_t sector
, int data_size
) __must_hold(local
)
1359 const sector_t capacity
= drbd_get_capacity(mdev
->this_bdev
);
1360 struct drbd_epoch_entry
*e
;
1363 void *dig_in
= mdev
->int_dig_in
;
1364 void *dig_vv
= mdev
->int_dig_vv
;
1365 unsigned long *data
;
1367 dgs
= (mdev
->agreed_pro_version
>= 87 && mdev
->integrity_r_tfm
) ?
1368 crypto_hash_digestsize(mdev
->integrity_r_tfm
) : 0;
1371 rr
= drbd_recv(mdev
, dig_in
, dgs
);
1373 dev_warn(DEV
, "short read receiving data digest: read %d expected %d\n",
1381 ERR_IF(data_size
& 0x1ff) return NULL
;
1382 ERR_IF(data_size
> DRBD_MAX_SEGMENT_SIZE
) return NULL
;
1384 /* even though we trust out peer,
1385 * we sometimes have to double check. */
1386 if (sector
+ (data_size
>>9) > capacity
) {
1387 dev_err(DEV
, "capacity: %llus < sector: %llus + size: %u\n",
1388 (unsigned long long)capacity
,
1389 (unsigned long long)sector
, data_size
);
1393 /* GFP_NOIO, because we must not cause arbitrary write-out: in a DRBD
1394 * "criss-cross" setup, that might cause write-out on some other DRBD,
1395 * which in turn might block on the other node at this very place. */
1396 e
= drbd_alloc_ee(mdev
, id
, sector
, data_size
, GFP_NOIO
);
1402 page_chain_for_each(page
) {
1403 unsigned len
= min_t(int, ds
, PAGE_SIZE
);
1405 rr
= drbd_recv(mdev
, data
, len
);
1406 if (FAULT_ACTIVE(mdev
, DRBD_FAULT_RECEIVE
)) {
1407 dev_err(DEV
, "Fault injection: Corrupting data on receive\n");
1408 data
[0] = data
[0] ^ (unsigned long)-1;
1412 drbd_free_ee(mdev
, e
);
1413 dev_warn(DEV
, "short read receiving data: read %d expected %d\n",
1421 drbd_csum_ee(mdev
, mdev
->integrity_r_tfm
, e
, dig_vv
);
1422 if (memcmp(dig_in
, dig_vv
, dgs
)) {
1423 dev_err(DEV
, "Digest integrity check FAILED.\n");
1424 drbd_bcast_ee(mdev
, "digest failed",
1425 dgs
, dig_in
, dig_vv
, e
);
1426 drbd_free_ee(mdev
, e
);
1430 mdev
->recv_cnt
+= data_size
>>9;
1434 /* drbd_drain_block() just takes a data block
1435 * out of the socket input buffer, and discards it.
1437 static int drbd_drain_block(struct drbd_conf
*mdev
, int data_size
)
1446 page
= drbd_pp_alloc(mdev
, 1, 1);
1450 rr
= drbd_recv(mdev
, data
, min_t(int, data_size
, PAGE_SIZE
));
1451 if (rr
!= min_t(int, data_size
, PAGE_SIZE
)) {
1453 dev_warn(DEV
, "short read receiving data: read %d expected %d\n",
1454 rr
, min_t(int, data_size
, PAGE_SIZE
));
1460 drbd_pp_free(mdev
, page
);
1464 static int recv_dless_read(struct drbd_conf
*mdev
, struct drbd_request
*req
,
1465 sector_t sector
, int data_size
)
1467 struct bio_vec
*bvec
;
1469 int dgs
, rr
, i
, expect
;
1470 void *dig_in
= mdev
->int_dig_in
;
1471 void *dig_vv
= mdev
->int_dig_vv
;
1473 dgs
= (mdev
->agreed_pro_version
>= 87 && mdev
->integrity_r_tfm
) ?
1474 crypto_hash_digestsize(mdev
->integrity_r_tfm
) : 0;
1477 rr
= drbd_recv(mdev
, dig_in
, dgs
);
1479 dev_warn(DEV
, "short read receiving data reply digest: read %d expected %d\n",
1487 /* optimistically update recv_cnt. if receiving fails below,
1488 * we disconnect anyways, and counters will be reset. */
1489 mdev
->recv_cnt
+= data_size
>>9;
1491 bio
= req
->master_bio
;
1492 D_ASSERT(sector
== bio
->bi_sector
);
1494 bio_for_each_segment(bvec
, bio
, i
) {
1495 expect
= min_t(int, data_size
, bvec
->bv_len
);
1496 rr
= drbd_recv(mdev
,
1497 kmap(bvec
->bv_page
)+bvec
->bv_offset
,
1499 kunmap(bvec
->bv_page
);
1501 dev_warn(DEV
, "short read receiving data reply: "
1502 "read %d expected %d\n",
1510 drbd_csum_bio(mdev
, mdev
->integrity_r_tfm
, bio
, dig_vv
);
1511 if (memcmp(dig_in
, dig_vv
, dgs
)) {
1512 dev_err(DEV
, "Digest integrity check FAILED. Broken NICs?\n");
1517 D_ASSERT(data_size
== 0);
1521 /* e_end_resync_block() is called via
1522 * drbd_process_done_ee() by asender only */
1523 static int e_end_resync_block(struct drbd_conf
*mdev
, struct drbd_work
*w
, int unused
)
1525 struct drbd_epoch_entry
*e
= (struct drbd_epoch_entry
*)w
;
1526 sector_t sector
= e
->sector
;
1529 D_ASSERT(hlist_unhashed(&e
->colision
));
1531 if (likely((e
->flags
& EE_WAS_ERROR
) == 0)) {
1532 drbd_set_in_sync(mdev
, sector
, e
->size
);
1533 ok
= drbd_send_ack(mdev
, P_RS_WRITE_ACK
, e
);
1535 /* Record failure to sync */
1536 drbd_rs_failed_io(mdev
, sector
, e
->size
);
1538 ok
= drbd_send_ack(mdev
, P_NEG_ACK
, e
);
1545 static int recv_resync_read(struct drbd_conf
*mdev
, sector_t sector
, int data_size
) __releases(local
)
1547 struct drbd_epoch_entry
*e
;
1549 e
= read_in_block(mdev
, ID_SYNCER
, sector
, data_size
);
1553 dec_rs_pending(mdev
);
1556 /* corresponding dec_unacked() in e_end_resync_block()
1557 * respective _drbd_clear_done_ee */
1559 e
->w
.cb
= e_end_resync_block
;
1561 spin_lock_irq(&mdev
->req_lock
);
1562 list_add(&e
->w
.list
, &mdev
->sync_ee
);
1563 spin_unlock_irq(&mdev
->req_lock
);
1565 if (drbd_submit_ee(mdev
, e
, WRITE
, DRBD_FAULT_RS_WR
) == 0)
1568 drbd_free_ee(mdev
, e
);
1574 static int receive_DataReply(struct drbd_conf
*mdev
, struct p_header
*h
)
1576 struct drbd_request
*req
;
1578 unsigned int header_size
, data_size
;
1580 struct p_data
*p
= (struct p_data
*)h
;
1582 header_size
= sizeof(*p
) - sizeof(*h
);
1583 data_size
= h
->length
- header_size
;
1585 ERR_IF(data_size
== 0) return FALSE
;
1587 if (drbd_recv(mdev
, h
->payload
, header_size
) != header_size
)
1590 sector
= be64_to_cpu(p
->sector
);
1592 spin_lock_irq(&mdev
->req_lock
);
1593 req
= _ar_id_to_req(mdev
, p
->block_id
, sector
);
1594 spin_unlock_irq(&mdev
->req_lock
);
1595 if (unlikely(!req
)) {
1596 dev_err(DEV
, "Got a corrupt block_id/sector pair(1).\n");
1600 /* hlist_del(&req->colision) is done in _req_may_be_done, to avoid
1601 * special casing it there for the various failure cases.
1602 * still no race with drbd_fail_pending_reads */
1603 ok
= recv_dless_read(mdev
, req
, sector
, data_size
);
1606 req_mod(req
, data_received
);
1607 /* else: nothing. handled from drbd_disconnect...
1608 * I don't think we may complete this just yet
1609 * in case we are "on-disconnect: freeze" */
1614 static int receive_RSDataReply(struct drbd_conf
*mdev
, struct p_header
*h
)
1617 unsigned int header_size
, data_size
;
1619 struct p_data
*p
= (struct p_data
*)h
;
1621 header_size
= sizeof(*p
) - sizeof(*h
);
1622 data_size
= h
->length
- header_size
;
1624 ERR_IF(data_size
== 0) return FALSE
;
1626 if (drbd_recv(mdev
, h
->payload
, header_size
) != header_size
)
1629 sector
= be64_to_cpu(p
->sector
);
1630 D_ASSERT(p
->block_id
== ID_SYNCER
);
1632 if (get_ldev(mdev
)) {
1633 /* data is submitted to disk within recv_resync_read.
1634 * corresponding put_ldev done below on error,
1635 * or in drbd_endio_write_sec. */
1636 ok
= recv_resync_read(mdev
, sector
, data_size
);
1638 if (__ratelimit(&drbd_ratelimit_state
))
1639 dev_err(DEV
, "Can not write resync data to local disk.\n");
1641 ok
= drbd_drain_block(mdev
, data_size
);
1643 drbd_send_ack_dp(mdev
, P_NEG_ACK
, p
);
1649 /* e_end_block() is called via drbd_process_done_ee().
1650 * this means this function only runs in the asender thread
1652 static int e_end_block(struct drbd_conf
*mdev
, struct drbd_work
*w
, int cancel
)
1654 struct drbd_epoch_entry
*e
= (struct drbd_epoch_entry
*)w
;
1655 sector_t sector
= e
->sector
;
1656 struct drbd_epoch
*epoch
;
1659 if (e
->flags
& EE_IS_BARRIER
) {
1660 epoch
= previous_epoch(mdev
, e
->epoch
);
1662 drbd_may_finish_epoch(mdev
, epoch
, EV_BARRIER_DONE
+ (cancel
? EV_CLEANUP
: 0));
1665 if (mdev
->net_conf
->wire_protocol
== DRBD_PROT_C
) {
1666 if (likely((e
->flags
& EE_WAS_ERROR
) == 0)) {
1667 pcmd
= (mdev
->state
.conn
>= C_SYNC_SOURCE
&&
1668 mdev
->state
.conn
<= C_PAUSED_SYNC_T
&&
1669 e
->flags
& EE_MAY_SET_IN_SYNC
) ?
1670 P_RS_WRITE_ACK
: P_WRITE_ACK
;
1671 ok
&= drbd_send_ack(mdev
, pcmd
, e
);
1672 if (pcmd
== P_RS_WRITE_ACK
)
1673 drbd_set_in_sync(mdev
, sector
, e
->size
);
1675 ok
= drbd_send_ack(mdev
, P_NEG_ACK
, e
);
1676 /* we expect it to be marked out of sync anyways...
1677 * maybe assert this? */
1681 /* we delete from the conflict detection hash _after_ we sent out the
1682 * P_WRITE_ACK / P_NEG_ACK, to get the sequence number right. */
1683 if (mdev
->net_conf
->two_primaries
) {
1684 spin_lock_irq(&mdev
->req_lock
);
1685 D_ASSERT(!hlist_unhashed(&e
->colision
));
1686 hlist_del_init(&e
->colision
);
1687 spin_unlock_irq(&mdev
->req_lock
);
1689 D_ASSERT(hlist_unhashed(&e
->colision
));
1692 drbd_may_finish_epoch(mdev
, e
->epoch
, EV_PUT
+ (cancel
? EV_CLEANUP
: 0));
1697 static int e_send_discard_ack(struct drbd_conf
*mdev
, struct drbd_work
*w
, int unused
)
1699 struct drbd_epoch_entry
*e
= (struct drbd_epoch_entry
*)w
;
1702 D_ASSERT(mdev
->net_conf
->wire_protocol
== DRBD_PROT_C
);
1703 ok
= drbd_send_ack(mdev
, P_DISCARD_ACK
, e
);
1705 spin_lock_irq(&mdev
->req_lock
);
1706 D_ASSERT(!hlist_unhashed(&e
->colision
));
1707 hlist_del_init(&e
->colision
);
1708 spin_unlock_irq(&mdev
->req_lock
);
1715 /* Called from receive_Data.
1716 * Synchronize packets on sock with packets on msock.
1718 * This is here so even when a P_DATA packet traveling via sock overtook an Ack
1719 * packet traveling on msock, they are still processed in the order they have
1722 * Note: we don't care for Ack packets overtaking P_DATA packets.
1724 * In case packet_seq is larger than mdev->peer_seq number, there are
1725 * outstanding packets on the msock. We wait for them to arrive.
1726 * In case we are the logically next packet, we update mdev->peer_seq
1727 * ourselves. Correctly handles 32bit wrap around.
1729 * Assume we have a 10 GBit connection, that is about 1<<30 byte per second,
1730 * about 1<<21 sectors per second. So "worst" case, we have 1<<3 == 8 seconds
1731 * for the 24bit wrap (historical atomic_t guarantee on some archs), and we have
1732 * 1<<9 == 512 seconds aka ages for the 32bit wrap around...
1734 * returns 0 if we may process the packet,
1735 * -ERESTARTSYS if we were interrupted (by disconnect signal). */
1736 static int drbd_wait_peer_seq(struct drbd_conf
*mdev
, const u32 packet_seq
)
1742 spin_lock(&mdev
->peer_seq_lock
);
1744 prepare_to_wait(&mdev
->seq_wait
, &wait
, TASK_INTERRUPTIBLE
);
1745 if (seq_le(packet_seq
, mdev
->peer_seq
+1))
1747 if (signal_pending(current
)) {
1751 p_seq
= mdev
->peer_seq
;
1752 spin_unlock(&mdev
->peer_seq_lock
);
1753 timeout
= schedule_timeout(30*HZ
);
1754 spin_lock(&mdev
->peer_seq_lock
);
1755 if (timeout
== 0 && p_seq
== mdev
->peer_seq
) {
1757 dev_err(DEV
, "ASSERT FAILED waited 30 seconds for sequence update, forcing reconnect\n");
1761 finish_wait(&mdev
->seq_wait
, &wait
);
1762 if (mdev
->peer_seq
+1 == packet_seq
)
1764 spin_unlock(&mdev
->peer_seq_lock
);
1768 /* mirrored write */
1769 static int receive_Data(struct drbd_conf
*mdev
, struct p_header
*h
)
1772 struct drbd_epoch_entry
*e
;
1773 struct p_data
*p
= (struct p_data
*)h
;
1774 int header_size
, data_size
;
1778 header_size
= sizeof(*p
) - sizeof(*h
);
1779 data_size
= h
->length
- header_size
;
1781 ERR_IF(data_size
== 0) return FALSE
;
1783 if (drbd_recv(mdev
, h
->payload
, header_size
) != header_size
)
1786 if (!get_ldev(mdev
)) {
1787 if (__ratelimit(&drbd_ratelimit_state
))
1788 dev_err(DEV
, "Can not write mirrored data block "
1789 "to local disk.\n");
1790 spin_lock(&mdev
->peer_seq_lock
);
1791 if (mdev
->peer_seq
+1 == be32_to_cpu(p
->seq_num
))
1793 spin_unlock(&mdev
->peer_seq_lock
);
1795 drbd_send_ack_dp(mdev
, P_NEG_ACK
, p
);
1796 atomic_inc(&mdev
->current_epoch
->epoch_size
);
1797 return drbd_drain_block(mdev
, data_size
);
1800 /* get_ldev(mdev) successful.
1801 * Corresponding put_ldev done either below (on various errors),
1802 * or in drbd_endio_write_sec, if we successfully submit the data at
1803 * the end of this function. */
1805 sector
= be64_to_cpu(p
->sector
);
1806 e
= read_in_block(mdev
, p
->block_id
, sector
, data_size
);
1812 e
->w
.cb
= e_end_block
;
1814 spin_lock(&mdev
->epoch_lock
);
1815 e
->epoch
= mdev
->current_epoch
;
1816 atomic_inc(&e
->epoch
->epoch_size
);
1817 atomic_inc(&e
->epoch
->active
);
1819 if (mdev
->write_ordering
== WO_bio_barrier
&& atomic_read(&e
->epoch
->epoch_size
) == 1) {
1820 struct drbd_epoch
*epoch
;
1821 /* Issue a barrier if we start a new epoch, and the previous epoch
1822 was not a epoch containing a single request which already was
1824 epoch
= list_entry(e
->epoch
->list
.prev
, struct drbd_epoch
, list
);
1825 if (epoch
== e
->epoch
) {
1826 set_bit(DE_CONTAINS_A_BARRIER
, &e
->epoch
->flags
);
1827 rw
|= REQ_HARDBARRIER
;
1828 e
->flags
|= EE_IS_BARRIER
;
1830 if (atomic_read(&epoch
->epoch_size
) > 1 ||
1831 !test_bit(DE_CONTAINS_A_BARRIER
, &epoch
->flags
)) {
1832 set_bit(DE_BARRIER_IN_NEXT_EPOCH_ISSUED
, &epoch
->flags
);
1833 set_bit(DE_CONTAINS_A_BARRIER
, &e
->epoch
->flags
);
1834 rw
|= REQ_HARDBARRIER
;
1835 e
->flags
|= EE_IS_BARRIER
;
1839 spin_unlock(&mdev
->epoch_lock
);
1841 dp_flags
= be32_to_cpu(p
->dp_flags
);
1842 if (dp_flags
& DP_HARDBARRIER
) {
1843 dev_err(DEV
, "ASSERT FAILED would have submitted barrier request\n");
1844 /* rw |= REQ_HARDBARRIER; */
1846 if (dp_flags
& DP_RW_SYNC
)
1847 rw
|= REQ_SYNC
| REQ_UNPLUG
;
1848 if (dp_flags
& DP_MAY_SET_IN_SYNC
)
1849 e
->flags
|= EE_MAY_SET_IN_SYNC
;
1851 /* I'm the receiver, I do hold a net_cnt reference. */
1852 if (!mdev
->net_conf
->two_primaries
) {
1853 spin_lock_irq(&mdev
->req_lock
);
1855 /* don't get the req_lock yet,
1856 * we may sleep in drbd_wait_peer_seq */
1857 const int size
= e
->size
;
1858 const int discard
= test_bit(DISCARD_CONCURRENT
, &mdev
->flags
);
1860 struct drbd_request
*i
;
1861 struct hlist_node
*n
;
1862 struct hlist_head
*slot
;
1865 D_ASSERT(mdev
->net_conf
->wire_protocol
== DRBD_PROT_C
);
1866 BUG_ON(mdev
->ee_hash
== NULL
);
1867 BUG_ON(mdev
->tl_hash
== NULL
);
1869 /* conflict detection and handling:
1870 * 1. wait on the sequence number,
1871 * in case this data packet overtook ACK packets.
1872 * 2. check our hash tables for conflicting requests.
1873 * we only need to walk the tl_hash, since an ee can not
1874 * have a conflict with an other ee: on the submitting
1875 * node, the corresponding req had already been conflicting,
1876 * and a conflicting req is never sent.
1878 * Note: for two_primaries, we are protocol C,
1879 * so there cannot be any request that is DONE
1880 * but still on the transfer log.
1882 * unconditionally add to the ee_hash.
1884 * if no conflicting request is found:
1887 * if any conflicting request is found
1888 * that has not yet been acked,
1889 * AND I have the "discard concurrent writes" flag:
1890 * queue (via done_ee) the P_DISCARD_ACK; OUT.
1892 * if any conflicting request is found:
1893 * block the receiver, waiting on misc_wait
1894 * until no more conflicting requests are there,
1895 * or we get interrupted (disconnect).
1897 * we do not just write after local io completion of those
1898 * requests, but only after req is done completely, i.e.
1899 * we wait for the P_DISCARD_ACK to arrive!
1901 * then proceed normally, i.e. submit.
1903 if (drbd_wait_peer_seq(mdev
, be32_to_cpu(p
->seq_num
)))
1904 goto out_interrupted
;
1906 spin_lock_irq(&mdev
->req_lock
);
1908 hlist_add_head(&e
->colision
, ee_hash_slot(mdev
, sector
));
1910 #define OVERLAPS overlaps(i->sector, i->size, sector, size)
1911 slot
= tl_hash_slot(mdev
, sector
);
1914 int have_unacked
= 0;
1915 int have_conflict
= 0;
1916 prepare_to_wait(&mdev
->misc_wait
, &wait
,
1917 TASK_INTERRUPTIBLE
);
1918 hlist_for_each_entry(i
, n
, slot
, colision
) {
1920 /* only ALERT on first iteration,
1921 * we may be woken up early... */
1923 dev_alert(DEV
, "%s[%u] Concurrent local write detected!"
1924 " new: %llus +%u; pending: %llus +%u\n",
1925 current
->comm
, current
->pid
,
1926 (unsigned long long)sector
, size
,
1927 (unsigned long long)i
->sector
, i
->size
);
1928 if (i
->rq_state
& RQ_NET_PENDING
)
1937 /* Discard Ack only for the _first_ iteration */
1938 if (first
&& discard
&& have_unacked
) {
1939 dev_alert(DEV
, "Concurrent write! [DISCARD BY FLAG] sec=%llus\n",
1940 (unsigned long long)sector
);
1942 e
->w
.cb
= e_send_discard_ack
;
1943 list_add_tail(&e
->w
.list
, &mdev
->done_ee
);
1945 spin_unlock_irq(&mdev
->req_lock
);
1947 /* we could probably send that P_DISCARD_ACK ourselves,
1948 * but I don't like the receiver using the msock */
1952 finish_wait(&mdev
->misc_wait
, &wait
);
1956 if (signal_pending(current
)) {
1957 hlist_del_init(&e
->colision
);
1959 spin_unlock_irq(&mdev
->req_lock
);
1961 finish_wait(&mdev
->misc_wait
, &wait
);
1962 goto out_interrupted
;
1965 spin_unlock_irq(&mdev
->req_lock
);
1968 dev_alert(DEV
, "Concurrent write! [W AFTERWARDS] "
1969 "sec=%llus\n", (unsigned long long)sector
);
1970 } else if (discard
) {
1971 /* we had none on the first iteration.
1972 * there must be none now. */
1973 D_ASSERT(have_unacked
== 0);
1976 spin_lock_irq(&mdev
->req_lock
);
1978 finish_wait(&mdev
->misc_wait
, &wait
);
1981 list_add(&e
->w
.list
, &mdev
->active_ee
);
1982 spin_unlock_irq(&mdev
->req_lock
);
1984 switch (mdev
->net_conf
->wire_protocol
) {
1987 /* corresponding dec_unacked() in e_end_block()
1988 * respective _drbd_clear_done_ee */
1991 /* I really don't like it that the receiver thread
1992 * sends on the msock, but anyways */
1993 drbd_send_ack(mdev
, P_RECV_ACK
, e
);
2000 if (mdev
->state
.pdsk
== D_DISKLESS
) {
2001 /* In case we have the only disk of the cluster, */
2002 drbd_set_out_of_sync(mdev
, e
->sector
, e
->size
);
2003 e
->flags
|= EE_CALL_AL_COMPLETE_IO
;
2004 drbd_al_begin_io(mdev
, e
->sector
);
2007 if (drbd_submit_ee(mdev
, e
, rw
, DRBD_FAULT_DT_WR
) == 0)
2011 /* yes, the epoch_size now is imbalanced.
2012 * but we drop the connection anyways, so we don't have a chance to
2013 * receive a barrier... atomic_inc(&mdev->epoch_size); */
2015 drbd_free_ee(mdev
, e
);
2019 static int receive_DataRequest(struct drbd_conf
*mdev
, struct p_header
*h
)
2022 const sector_t capacity
= drbd_get_capacity(mdev
->this_bdev
);
2023 struct drbd_epoch_entry
*e
;
2024 struct digest_info
*di
= NULL
;
2025 int size
, digest_size
;
2026 unsigned int fault_type
;
2027 struct p_block_req
*p
=
2028 (struct p_block_req
*)h
;
2029 const int brps
= sizeof(*p
)-sizeof(*h
);
2031 if (drbd_recv(mdev
, h
->payload
, brps
) != brps
)
2034 sector
= be64_to_cpu(p
->sector
);
2035 size
= be32_to_cpu(p
->blksize
);
2037 if (size
<= 0 || (size
& 0x1ff) != 0 || size
> DRBD_MAX_SEGMENT_SIZE
) {
2038 dev_err(DEV
, "%s:%d: sector: %llus, size: %u\n", __FILE__
, __LINE__
,
2039 (unsigned long long)sector
, size
);
2042 if (sector
+ (size
>>9) > capacity
) {
2043 dev_err(DEV
, "%s:%d: sector: %llus, size: %u\n", __FILE__
, __LINE__
,
2044 (unsigned long long)sector
, size
);
2048 if (!get_ldev_if_state(mdev
, D_UP_TO_DATE
)) {
2049 if (__ratelimit(&drbd_ratelimit_state
))
2050 dev_err(DEV
, "Can not satisfy peer's read request, "
2051 "no local data.\n");
2052 drbd_send_ack_rp(mdev
, h
->command
== P_DATA_REQUEST
? P_NEG_DREPLY
:
2053 P_NEG_RS_DREPLY
, p
);
2054 return drbd_drain_block(mdev
, h
->length
- brps
);
2057 /* GFP_NOIO, because we must not cause arbitrary write-out: in a DRBD
2058 * "criss-cross" setup, that might cause write-out on some other DRBD,
2059 * which in turn might block on the other node at this very place. */
2060 e
= drbd_alloc_ee(mdev
, p
->block_id
, sector
, size
, GFP_NOIO
);
2066 switch (h
->command
) {
2067 case P_DATA_REQUEST
:
2068 e
->w
.cb
= w_e_end_data_req
;
2069 fault_type
= DRBD_FAULT_DT_RD
;
2071 case P_RS_DATA_REQUEST
:
2072 e
->w
.cb
= w_e_end_rsdata_req
;
2073 fault_type
= DRBD_FAULT_RS_RD
;
2074 /* Eventually this should become asynchronously. Currently it
2075 * blocks the whole receiver just to delay the reading of a
2076 * resync data block.
2077 * the drbd_work_queue mechanism is made for this...
2079 if (!drbd_rs_begin_io(mdev
, sector
)) {
2080 /* we have been interrupted,
2081 * probably connection lost! */
2082 D_ASSERT(signal_pending(current
));
2088 case P_CSUM_RS_REQUEST
:
2089 fault_type
= DRBD_FAULT_RS_RD
;
2090 digest_size
= h
->length
- brps
;
2091 di
= kmalloc(sizeof(*di
) + digest_size
, GFP_NOIO
);
2095 di
->digest_size
= digest_size
;
2096 di
->digest
= (((char *)di
)+sizeof(struct digest_info
));
2098 if (drbd_recv(mdev
, di
->digest
, digest_size
) != digest_size
)
2101 e
->block_id
= (u64
)(unsigned long)di
;
2102 if (h
->command
== P_CSUM_RS_REQUEST
) {
2103 D_ASSERT(mdev
->agreed_pro_version
>= 89);
2104 e
->w
.cb
= w_e_end_csum_rs_req
;
2105 } else if (h
->command
== P_OV_REPLY
) {
2106 e
->w
.cb
= w_e_end_ov_reply
;
2107 dec_rs_pending(mdev
);
2111 if (!drbd_rs_begin_io(mdev
, sector
)) {
2112 /* we have been interrupted, probably connection lost! */
2113 D_ASSERT(signal_pending(current
));
2119 if (mdev
->state
.conn
>= C_CONNECTED
&&
2120 mdev
->state
.conn
!= C_VERIFY_T
)
2121 dev_warn(DEV
, "ASSERT FAILED: got P_OV_REQUEST while being %s\n",
2122 drbd_conn_str(mdev
->state
.conn
));
2123 if (mdev
->ov_start_sector
== ~(sector_t
)0 &&
2124 mdev
->agreed_pro_version
>= 90) {
2125 mdev
->ov_start_sector
= sector
;
2126 mdev
->ov_position
= sector
;
2127 mdev
->ov_left
= mdev
->rs_total
- BM_SECT_TO_BIT(sector
);
2128 dev_info(DEV
, "Online Verify start sector: %llu\n",
2129 (unsigned long long)sector
);
2131 e
->w
.cb
= w_e_end_ov_req
;
2132 fault_type
= DRBD_FAULT_RS_RD
;
2133 /* Eventually this should become asynchronous. Currently it
2134 * blocks the whole receiver just to delay the reading of a
2135 * resync data block.
2136 * the drbd_work_queue mechanism is made for this...
2138 if (!drbd_rs_begin_io(mdev
, sector
)) {
2139 /* we have been interrupted,
2140 * probably connection lost! */
2141 D_ASSERT(signal_pending(current
));
2148 dev_err(DEV
, "unexpected command (%s) in receive_DataRequest\n",
2149 cmdname(h
->command
));
2150 fault_type
= DRBD_FAULT_MAX
;
2153 spin_lock_irq(&mdev
->req_lock
);
2154 list_add(&e
->w
.list
, &mdev
->read_ee
);
2155 spin_unlock_irq(&mdev
->req_lock
);
2159 if (drbd_submit_ee(mdev
, e
, READ
, fault_type
) == 0)
2165 drbd_free_ee(mdev
, e
);
2169 static int drbd_asb_recover_0p(struct drbd_conf
*mdev
) __must_hold(local
)
2171 int self
, peer
, rv
= -100;
2172 unsigned long ch_self
, ch_peer
;
2174 self
= mdev
->ldev
->md
.uuid
[UI_BITMAP
] & 1;
2175 peer
= mdev
->p_uuid
[UI_BITMAP
] & 1;
2177 ch_peer
= mdev
->p_uuid
[UI_SIZE
];
2178 ch_self
= mdev
->comm_bm_set
;
2180 switch (mdev
->net_conf
->after_sb_0p
) {
2182 case ASB_DISCARD_SECONDARY
:
2183 case ASB_CALL_HELPER
:
2184 dev_err(DEV
, "Configuration error.\n");
2186 case ASB_DISCONNECT
:
2188 case ASB_DISCARD_YOUNGER_PRI
:
2189 if (self
== 0 && peer
== 1) {
2193 if (self
== 1 && peer
== 0) {
2197 /* Else fall through to one of the other strategies... */
2198 case ASB_DISCARD_OLDER_PRI
:
2199 if (self
== 0 && peer
== 1) {
2203 if (self
== 1 && peer
== 0) {
2207 /* Else fall through to one of the other strategies... */
2208 dev_warn(DEV
, "Discard younger/older primary did not find a decision\n"
2209 "Using discard-least-changes instead\n");
2210 case ASB_DISCARD_ZERO_CHG
:
2211 if (ch_peer
== 0 && ch_self
== 0) {
2212 rv
= test_bit(DISCARD_CONCURRENT
, &mdev
->flags
)
2216 if (ch_peer
== 0) { rv
= 1; break; }
2217 if (ch_self
== 0) { rv
= -1; break; }
2219 if (mdev
->net_conf
->after_sb_0p
== ASB_DISCARD_ZERO_CHG
)
2221 case ASB_DISCARD_LEAST_CHG
:
2222 if (ch_self
< ch_peer
)
2224 else if (ch_self
> ch_peer
)
2226 else /* ( ch_self == ch_peer ) */
2227 /* Well, then use something else. */
2228 rv
= test_bit(DISCARD_CONCURRENT
, &mdev
->flags
)
2231 case ASB_DISCARD_LOCAL
:
2234 case ASB_DISCARD_REMOTE
:
2241 static int drbd_asb_recover_1p(struct drbd_conf
*mdev
) __must_hold(local
)
2243 int self
, peer
, hg
, rv
= -100;
2245 self
= mdev
->ldev
->md
.uuid
[UI_BITMAP
] & 1;
2246 peer
= mdev
->p_uuid
[UI_BITMAP
] & 1;
2248 switch (mdev
->net_conf
->after_sb_1p
) {
2249 case ASB_DISCARD_YOUNGER_PRI
:
2250 case ASB_DISCARD_OLDER_PRI
:
2251 case ASB_DISCARD_LEAST_CHG
:
2252 case ASB_DISCARD_LOCAL
:
2253 case ASB_DISCARD_REMOTE
:
2254 dev_err(DEV
, "Configuration error.\n");
2256 case ASB_DISCONNECT
:
2259 hg
= drbd_asb_recover_0p(mdev
);
2260 if (hg
== -1 && mdev
->state
.role
== R_SECONDARY
)
2262 if (hg
== 1 && mdev
->state
.role
== R_PRIMARY
)
2266 rv
= drbd_asb_recover_0p(mdev
);
2268 case ASB_DISCARD_SECONDARY
:
2269 return mdev
->state
.role
== R_PRIMARY
? 1 : -1;
2270 case ASB_CALL_HELPER
:
2271 hg
= drbd_asb_recover_0p(mdev
);
2272 if (hg
== -1 && mdev
->state
.role
== R_PRIMARY
) {
2273 self
= drbd_set_role(mdev
, R_SECONDARY
, 0);
2274 /* drbd_change_state() does not sleep while in SS_IN_TRANSIENT_STATE,
2275 * we might be here in C_WF_REPORT_PARAMS which is transient.
2276 * we do not need to wait for the after state change work either. */
2277 self
= drbd_change_state(mdev
, CS_VERBOSE
, NS(role
, R_SECONDARY
));
2278 if (self
!= SS_SUCCESS
) {
2279 drbd_khelper(mdev
, "pri-lost-after-sb");
2281 dev_warn(DEV
, "Successfully gave up primary role.\n");
2291 static int drbd_asb_recover_2p(struct drbd_conf
*mdev
) __must_hold(local
)
2293 int self
, peer
, hg
, rv
= -100;
2295 self
= mdev
->ldev
->md
.uuid
[UI_BITMAP
] & 1;
2296 peer
= mdev
->p_uuid
[UI_BITMAP
] & 1;
2298 switch (mdev
->net_conf
->after_sb_2p
) {
2299 case ASB_DISCARD_YOUNGER_PRI
:
2300 case ASB_DISCARD_OLDER_PRI
:
2301 case ASB_DISCARD_LEAST_CHG
:
2302 case ASB_DISCARD_LOCAL
:
2303 case ASB_DISCARD_REMOTE
:
2305 case ASB_DISCARD_SECONDARY
:
2306 dev_err(DEV
, "Configuration error.\n");
2309 rv
= drbd_asb_recover_0p(mdev
);
2311 case ASB_DISCONNECT
:
2313 case ASB_CALL_HELPER
:
2314 hg
= drbd_asb_recover_0p(mdev
);
2316 /* drbd_change_state() does not sleep while in SS_IN_TRANSIENT_STATE,
2317 * we might be here in C_WF_REPORT_PARAMS which is transient.
2318 * we do not need to wait for the after state change work either. */
2319 self
= drbd_change_state(mdev
, CS_VERBOSE
, NS(role
, R_SECONDARY
));
2320 if (self
!= SS_SUCCESS
) {
2321 drbd_khelper(mdev
, "pri-lost-after-sb");
2323 dev_warn(DEV
, "Successfully gave up primary role.\n");
2333 static void drbd_uuid_dump(struct drbd_conf
*mdev
, char *text
, u64
*uuid
,
2334 u64 bits
, u64 flags
)
2337 dev_info(DEV
, "%s uuid info vanished while I was looking!\n", text
);
2340 dev_info(DEV
, "%s %016llX:%016llX:%016llX:%016llX bits:%llu flags:%llX\n",
2342 (unsigned long long)uuid
[UI_CURRENT
],
2343 (unsigned long long)uuid
[UI_BITMAP
],
2344 (unsigned long long)uuid
[UI_HISTORY_START
],
2345 (unsigned long long)uuid
[UI_HISTORY_END
],
2346 (unsigned long long)bits
,
2347 (unsigned long long)flags
);
2351 100 after split brain try auto recover
2352 2 C_SYNC_SOURCE set BitMap
2353 1 C_SYNC_SOURCE use BitMap
2355 -1 C_SYNC_TARGET use BitMap
2356 -2 C_SYNC_TARGET set BitMap
2357 -100 after split brain, disconnect
2358 -1000 unrelated data
2360 static int drbd_uuid_compare(struct drbd_conf
*mdev
, int *rule_nr
) __must_hold(local
)
2365 self
= mdev
->ldev
->md
.uuid
[UI_CURRENT
] & ~((u64
)1);
2366 peer
= mdev
->p_uuid
[UI_CURRENT
] & ~((u64
)1);
2369 if (self
== UUID_JUST_CREATED
&& peer
== UUID_JUST_CREATED
)
2373 if ((self
== UUID_JUST_CREATED
|| self
== (u64
)0) &&
2374 peer
!= UUID_JUST_CREATED
)
2378 if (self
!= UUID_JUST_CREATED
&&
2379 (peer
== UUID_JUST_CREATED
|| peer
== (u64
)0))
2383 int rct
, dc
; /* roles at crash time */
2385 if (mdev
->p_uuid
[UI_BITMAP
] == (u64
)0 && mdev
->ldev
->md
.uuid
[UI_BITMAP
] != (u64
)0) {
2387 if (mdev
->agreed_pro_version
< 91)
2390 if ((mdev
->ldev
->md
.uuid
[UI_BITMAP
] & ~((u64
)1)) == (mdev
->p_uuid
[UI_HISTORY_START
] & ~((u64
)1)) &&
2391 (mdev
->ldev
->md
.uuid
[UI_HISTORY_START
] & ~((u64
)1)) == (mdev
->p_uuid
[UI_HISTORY_START
+ 1] & ~((u64
)1))) {
2392 dev_info(DEV
, "was SyncSource, missed the resync finished event, corrected myself:\n");
2393 drbd_uuid_set_bm(mdev
, 0UL);
2395 drbd_uuid_dump(mdev
, "self", mdev
->ldev
->md
.uuid
,
2396 mdev
->state
.disk
>= D_NEGOTIATING
? drbd_bm_total_weight(mdev
) : 0, 0);
2399 dev_info(DEV
, "was SyncSource (peer failed to write sync_uuid)\n");
2406 if (mdev
->ldev
->md
.uuid
[UI_BITMAP
] == (u64
)0 && mdev
->p_uuid
[UI_BITMAP
] != (u64
)0) {
2408 if (mdev
->agreed_pro_version
< 91)
2411 if ((mdev
->ldev
->md
.uuid
[UI_HISTORY_START
] & ~((u64
)1)) == (mdev
->p_uuid
[UI_BITMAP
] & ~((u64
)1)) &&
2412 (mdev
->ldev
->md
.uuid
[UI_HISTORY_START
+ 1] & ~((u64
)1)) == (mdev
->p_uuid
[UI_HISTORY_START
] & ~((u64
)1))) {
2413 dev_info(DEV
, "was SyncTarget, peer missed the resync finished event, corrected peer:\n");
2415 mdev
->p_uuid
[UI_HISTORY_START
+ 1] = mdev
->p_uuid
[UI_HISTORY_START
];
2416 mdev
->p_uuid
[UI_HISTORY_START
] = mdev
->p_uuid
[UI_BITMAP
];
2417 mdev
->p_uuid
[UI_BITMAP
] = 0UL;
2419 drbd_uuid_dump(mdev
, "peer", mdev
->p_uuid
, mdev
->p_uuid
[UI_SIZE
], mdev
->p_uuid
[UI_FLAGS
]);
2422 dev_info(DEV
, "was SyncTarget (failed to write sync_uuid)\n");
2429 /* Common power [off|failure] */
2430 rct
= (test_bit(CRASHED_PRIMARY
, &mdev
->flags
) ? 1 : 0) +
2431 (mdev
->p_uuid
[UI_FLAGS
] & 2);
2432 /* lowest bit is set when we were primary,
2433 * next bit (weight 2) is set when peer was primary */
2437 case 0: /* !self_pri && !peer_pri */ return 0;
2438 case 1: /* self_pri && !peer_pri */ return 1;
2439 case 2: /* !self_pri && peer_pri */ return -1;
2440 case 3: /* self_pri && peer_pri */
2441 dc
= test_bit(DISCARD_CONCURRENT
, &mdev
->flags
);
2447 peer
= mdev
->p_uuid
[UI_BITMAP
] & ~((u64
)1);
2452 peer
= mdev
->p_uuid
[UI_HISTORY_START
] & ~((u64
)1);
2454 self
= mdev
->ldev
->md
.uuid
[UI_HISTORY_START
] & ~((u64
)1);
2455 peer
= mdev
->p_uuid
[UI_HISTORY_START
+ 1] & ~((u64
)1);
2457 /* The last P_SYNC_UUID did not get though. Undo the last start of
2458 resync as sync source modifications of the peer's UUIDs. */
2460 if (mdev
->agreed_pro_version
< 91)
2463 mdev
->p_uuid
[UI_BITMAP
] = mdev
->p_uuid
[UI_HISTORY_START
];
2464 mdev
->p_uuid
[UI_HISTORY_START
] = mdev
->p_uuid
[UI_HISTORY_START
+ 1];
2470 self
= mdev
->ldev
->md
.uuid
[UI_CURRENT
] & ~((u64
)1);
2471 for (i
= UI_HISTORY_START
; i
<= UI_HISTORY_END
; i
++) {
2472 peer
= mdev
->p_uuid
[i
] & ~((u64
)1);
2478 self
= mdev
->ldev
->md
.uuid
[UI_BITMAP
] & ~((u64
)1);
2479 peer
= mdev
->p_uuid
[UI_CURRENT
] & ~((u64
)1);
2484 self
= mdev
->ldev
->md
.uuid
[UI_HISTORY_START
] & ~((u64
)1);
2486 self
= mdev
->ldev
->md
.uuid
[UI_HISTORY_START
+ 1] & ~((u64
)1);
2487 peer
= mdev
->p_uuid
[UI_HISTORY_START
] & ~((u64
)1);
2489 /* The last P_SYNC_UUID did not get though. Undo the last start of
2490 resync as sync source modifications of our UUIDs. */
2492 if (mdev
->agreed_pro_version
< 91)
2495 _drbd_uuid_set(mdev
, UI_BITMAP
, mdev
->ldev
->md
.uuid
[UI_HISTORY_START
]);
2496 _drbd_uuid_set(mdev
, UI_HISTORY_START
, mdev
->ldev
->md
.uuid
[UI_HISTORY_START
+ 1]);
2498 dev_info(DEV
, "Undid last start of resync:\n");
2500 drbd_uuid_dump(mdev
, "self", mdev
->ldev
->md
.uuid
,
2501 mdev
->state
.disk
>= D_NEGOTIATING
? drbd_bm_total_weight(mdev
) : 0, 0);
2509 peer
= mdev
->p_uuid
[UI_CURRENT
] & ~((u64
)1);
2510 for (i
= UI_HISTORY_START
; i
<= UI_HISTORY_END
; i
++) {
2511 self
= mdev
->ldev
->md
.uuid
[i
] & ~((u64
)1);
2517 self
= mdev
->ldev
->md
.uuid
[UI_BITMAP
] & ~((u64
)1);
2518 peer
= mdev
->p_uuid
[UI_BITMAP
] & ~((u64
)1);
2519 if (self
== peer
&& self
!= ((u64
)0))
2523 for (i
= UI_HISTORY_START
; i
<= UI_HISTORY_END
; i
++) {
2524 self
= mdev
->ldev
->md
.uuid
[i
] & ~((u64
)1);
2525 for (j
= UI_HISTORY_START
; j
<= UI_HISTORY_END
; j
++) {
2526 peer
= mdev
->p_uuid
[j
] & ~((u64
)1);
2535 /* drbd_sync_handshake() returns the new conn state on success, or
2536 CONN_MASK (-1) on failure.
2538 static enum drbd_conns
drbd_sync_handshake(struct drbd_conf
*mdev
, enum drbd_role peer_role
,
2539 enum drbd_disk_state peer_disk
) __must_hold(local
)
2542 enum drbd_conns rv
= C_MASK
;
2543 enum drbd_disk_state mydisk
;
2545 mydisk
= mdev
->state
.disk
;
2546 if (mydisk
== D_NEGOTIATING
)
2547 mydisk
= mdev
->new_state_tmp
.disk
;
2549 dev_info(DEV
, "drbd_sync_handshake:\n");
2550 drbd_uuid_dump(mdev
, "self", mdev
->ldev
->md
.uuid
, mdev
->comm_bm_set
, 0);
2551 drbd_uuid_dump(mdev
, "peer", mdev
->p_uuid
,
2552 mdev
->p_uuid
[UI_SIZE
], mdev
->p_uuid
[UI_FLAGS
]);
2554 hg
= drbd_uuid_compare(mdev
, &rule_nr
);
2556 dev_info(DEV
, "uuid_compare()=%d by rule %d\n", hg
, rule_nr
);
2559 dev_alert(DEV
, "Unrelated data, aborting!\n");
2563 dev_alert(DEV
, "To resolve this both sides have to support at least protocol\n");
2567 if ((mydisk
== D_INCONSISTENT
&& peer_disk
> D_INCONSISTENT
) ||
2568 (peer_disk
== D_INCONSISTENT
&& mydisk
> D_INCONSISTENT
)) {
2569 int f
= (hg
== -100) || abs(hg
) == 2;
2570 hg
= mydisk
> D_INCONSISTENT
? 1 : -1;
2573 dev_info(DEV
, "Becoming sync %s due to disk states.\n",
2574 hg
> 0 ? "source" : "target");
2578 drbd_khelper(mdev
, "initial-split-brain");
2580 if (hg
== 100 || (hg
== -100 && mdev
->net_conf
->always_asbp
)) {
2581 int pcount
= (mdev
->state
.role
== R_PRIMARY
)
2582 + (peer_role
== R_PRIMARY
);
2583 int forced
= (hg
== -100);
2587 hg
= drbd_asb_recover_0p(mdev
);
2590 hg
= drbd_asb_recover_1p(mdev
);
2593 hg
= drbd_asb_recover_2p(mdev
);
2596 if (abs(hg
) < 100) {
2597 dev_warn(DEV
, "Split-Brain detected, %d primaries, "
2598 "automatically solved. Sync from %s node\n",
2599 pcount
, (hg
< 0) ? "peer" : "this");
2601 dev_warn(DEV
, "Doing a full sync, since"
2602 " UUIDs where ambiguous.\n");
2609 if (mdev
->net_conf
->want_lose
&& !(mdev
->p_uuid
[UI_FLAGS
]&1))
2611 if (!mdev
->net_conf
->want_lose
&& (mdev
->p_uuid
[UI_FLAGS
]&1))
2615 dev_warn(DEV
, "Split-Brain detected, manually solved. "
2616 "Sync from %s node\n",
2617 (hg
< 0) ? "peer" : "this");
2621 /* FIXME this log message is not correct if we end up here
2622 * after an attempted attach on a diskless node.
2623 * We just refuse to attach -- well, we drop the "connection"
2624 * to that disk, in a way... */
2625 dev_alert(DEV
, "Split-Brain detected but unresolved, dropping connection!\n");
2626 drbd_khelper(mdev
, "split-brain");
2630 if (hg
> 0 && mydisk
<= D_INCONSISTENT
) {
2631 dev_err(DEV
, "I shall become SyncSource, but I am inconsistent!\n");
2635 if (hg
< 0 && /* by intention we do not use mydisk here. */
2636 mdev
->state
.role
== R_PRIMARY
&& mdev
->state
.disk
>= D_CONSISTENT
) {
2637 switch (mdev
->net_conf
->rr_conflict
) {
2638 case ASB_CALL_HELPER
:
2639 drbd_khelper(mdev
, "pri-lost");
2641 case ASB_DISCONNECT
:
2642 dev_err(DEV
, "I shall become SyncTarget, but I am primary!\n");
2645 dev_warn(DEV
, "Becoming SyncTarget, violating the stable-data"
2650 if (mdev
->net_conf
->dry_run
|| test_bit(CONN_DRY_RUN
, &mdev
->flags
)) {
2652 dev_info(DEV
, "dry-run connect: No resync, would become Connected immediately.\n");
2654 dev_info(DEV
, "dry-run connect: Would become %s, doing a %s resync.",
2655 drbd_conn_str(hg
> 0 ? C_SYNC_SOURCE
: C_SYNC_TARGET
),
2656 abs(hg
) >= 2 ? "full" : "bit-map based");
2661 dev_info(DEV
, "Writing the whole bitmap, full sync required after drbd_sync_handshake.\n");
2662 if (drbd_bitmap_io(mdev
, &drbd_bmio_set_n_write
, "set_n_write from sync_handshake"))
2666 if (hg
> 0) { /* become sync source. */
2668 } else if (hg
< 0) { /* become sync target */
2672 if (drbd_bm_total_weight(mdev
)) {
2673 dev_info(DEV
, "No resync, but %lu bits in bitmap!\n",
2674 drbd_bm_total_weight(mdev
));
2681 /* returns 1 if invalid */
2682 static int cmp_after_sb(enum drbd_after_sb_p peer
, enum drbd_after_sb_p self
)
2684 /* ASB_DISCARD_REMOTE - ASB_DISCARD_LOCAL is valid */
2685 if ((peer
== ASB_DISCARD_REMOTE
&& self
== ASB_DISCARD_LOCAL
) ||
2686 (self
== ASB_DISCARD_REMOTE
&& peer
== ASB_DISCARD_LOCAL
))
2689 /* any other things with ASB_DISCARD_REMOTE or ASB_DISCARD_LOCAL are invalid */
2690 if (peer
== ASB_DISCARD_REMOTE
|| peer
== ASB_DISCARD_LOCAL
||
2691 self
== ASB_DISCARD_REMOTE
|| self
== ASB_DISCARD_LOCAL
)
2694 /* everything else is valid if they are equal on both sides. */
2698 /* everything es is invalid. */
2702 static int receive_protocol(struct drbd_conf
*mdev
, struct p_header
*h
)
2704 struct p_protocol
*p
= (struct p_protocol
*)h
;
2705 int header_size
, data_size
;
2706 int p_proto
, p_after_sb_0p
, p_after_sb_1p
, p_after_sb_2p
;
2707 int p_want_lose
, p_two_primaries
, cf
;
2708 char p_integrity_alg
[SHARED_SECRET_MAX
] = "";
2710 header_size
= sizeof(*p
) - sizeof(*h
);
2711 data_size
= h
->length
- header_size
;
2713 if (drbd_recv(mdev
, h
->payload
, header_size
) != header_size
)
2716 p_proto
= be32_to_cpu(p
->protocol
);
2717 p_after_sb_0p
= be32_to_cpu(p
->after_sb_0p
);
2718 p_after_sb_1p
= be32_to_cpu(p
->after_sb_1p
);
2719 p_after_sb_2p
= be32_to_cpu(p
->after_sb_2p
);
2720 p_two_primaries
= be32_to_cpu(p
->two_primaries
);
2721 cf
= be32_to_cpu(p
->conn_flags
);
2722 p_want_lose
= cf
& CF_WANT_LOSE
;
2724 clear_bit(CONN_DRY_RUN
, &mdev
->flags
);
2726 if (cf
& CF_DRY_RUN
)
2727 set_bit(CONN_DRY_RUN
, &mdev
->flags
);
2729 if (p_proto
!= mdev
->net_conf
->wire_protocol
) {
2730 dev_err(DEV
, "incompatible communication protocols\n");
2734 if (cmp_after_sb(p_after_sb_0p
, mdev
->net_conf
->after_sb_0p
)) {
2735 dev_err(DEV
, "incompatible after-sb-0pri settings\n");
2739 if (cmp_after_sb(p_after_sb_1p
, mdev
->net_conf
->after_sb_1p
)) {
2740 dev_err(DEV
, "incompatible after-sb-1pri settings\n");
2744 if (cmp_after_sb(p_after_sb_2p
, mdev
->net_conf
->after_sb_2p
)) {
2745 dev_err(DEV
, "incompatible after-sb-2pri settings\n");
2749 if (p_want_lose
&& mdev
->net_conf
->want_lose
) {
2750 dev_err(DEV
, "both sides have the 'want_lose' flag set\n");
2754 if (p_two_primaries
!= mdev
->net_conf
->two_primaries
) {
2755 dev_err(DEV
, "incompatible setting of the two-primaries options\n");
2759 if (mdev
->agreed_pro_version
>= 87) {
2760 unsigned char *my_alg
= mdev
->net_conf
->integrity_alg
;
2762 if (drbd_recv(mdev
, p_integrity_alg
, data_size
) != data_size
)
2765 p_integrity_alg
[SHARED_SECRET_MAX
-1] = 0;
2766 if (strcmp(p_integrity_alg
, my_alg
)) {
2767 dev_err(DEV
, "incompatible setting of the data-integrity-alg\n");
2770 dev_info(DEV
, "data-integrity-alg: %s\n",
2771 my_alg
[0] ? my_alg
: (unsigned char *)"<not-used>");
2777 drbd_force_state(mdev
, NS(conn
, C_DISCONNECTING
));
2782 * input: alg name, feature name
2783 * return: NULL (alg name was "")
2784 * ERR_PTR(error) if something goes wrong
2785 * or the crypto hash ptr, if it worked out ok. */
2786 struct crypto_hash
*drbd_crypto_alloc_digest_safe(const struct drbd_conf
*mdev
,
2787 const char *alg
, const char *name
)
2789 struct crypto_hash
*tfm
;
2794 tfm
= crypto_alloc_hash(alg
, 0, CRYPTO_ALG_ASYNC
);
2796 dev_err(DEV
, "Can not allocate \"%s\" as %s (reason: %ld)\n",
2797 alg
, name
, PTR_ERR(tfm
));
2800 if (!drbd_crypto_is_hash(crypto_hash_tfm(tfm
))) {
2801 crypto_free_hash(tfm
);
2802 dev_err(DEV
, "\"%s\" is not a digest (%s)\n", alg
, name
);
2803 return ERR_PTR(-EINVAL
);
2808 static int receive_SyncParam(struct drbd_conf
*mdev
, struct p_header
*h
)
2811 struct p_rs_param_89
*p
= (struct p_rs_param_89
*)h
;
2812 unsigned int header_size
, data_size
, exp_max_sz
;
2813 struct crypto_hash
*verify_tfm
= NULL
;
2814 struct crypto_hash
*csums_tfm
= NULL
;
2815 const int apv
= mdev
->agreed_pro_version
;
2817 exp_max_sz
= apv
<= 87 ? sizeof(struct p_rs_param
)
2818 : apv
== 88 ? sizeof(struct p_rs_param
)
2820 : /* 89 */ sizeof(struct p_rs_param_89
);
2822 if (h
->length
> exp_max_sz
) {
2823 dev_err(DEV
, "SyncParam packet too long: received %u, expected <= %u bytes\n",
2824 h
->length
, exp_max_sz
);
2829 header_size
= sizeof(struct p_rs_param
) - sizeof(*h
);
2830 data_size
= h
->length
- header_size
;
2831 } else /* apv >= 89 */ {
2832 header_size
= sizeof(struct p_rs_param_89
) - sizeof(*h
);
2833 data_size
= h
->length
- header_size
;
2834 D_ASSERT(data_size
== 0);
2837 /* initialize verify_alg and csums_alg */
2838 memset(p
->verify_alg
, 0, 2 * SHARED_SECRET_MAX
);
2840 if (drbd_recv(mdev
, h
->payload
, header_size
) != header_size
)
2843 mdev
->sync_conf
.rate
= be32_to_cpu(p
->rate
);
2847 if (data_size
> SHARED_SECRET_MAX
) {
2848 dev_err(DEV
, "verify-alg too long, "
2849 "peer wants %u, accepting only %u byte\n",
2850 data_size
, SHARED_SECRET_MAX
);
2854 if (drbd_recv(mdev
, p
->verify_alg
, data_size
) != data_size
)
2857 /* we expect NUL terminated string */
2858 /* but just in case someone tries to be evil */
2859 D_ASSERT(p
->verify_alg
[data_size
-1] == 0);
2860 p
->verify_alg
[data_size
-1] = 0;
2862 } else /* apv >= 89 */ {
2863 /* we still expect NUL terminated strings */
2864 /* but just in case someone tries to be evil */
2865 D_ASSERT(p
->verify_alg
[SHARED_SECRET_MAX
-1] == 0);
2866 D_ASSERT(p
->csums_alg
[SHARED_SECRET_MAX
-1] == 0);
2867 p
->verify_alg
[SHARED_SECRET_MAX
-1] = 0;
2868 p
->csums_alg
[SHARED_SECRET_MAX
-1] = 0;
2871 if (strcmp(mdev
->sync_conf
.verify_alg
, p
->verify_alg
)) {
2872 if (mdev
->state
.conn
== C_WF_REPORT_PARAMS
) {
2873 dev_err(DEV
, "Different verify-alg settings. me=\"%s\" peer=\"%s\"\n",
2874 mdev
->sync_conf
.verify_alg
, p
->verify_alg
);
2877 verify_tfm
= drbd_crypto_alloc_digest_safe(mdev
,
2878 p
->verify_alg
, "verify-alg");
2879 if (IS_ERR(verify_tfm
)) {
2885 if (apv
>= 89 && strcmp(mdev
->sync_conf
.csums_alg
, p
->csums_alg
)) {
2886 if (mdev
->state
.conn
== C_WF_REPORT_PARAMS
) {
2887 dev_err(DEV
, "Different csums-alg settings. me=\"%s\" peer=\"%s\"\n",
2888 mdev
->sync_conf
.csums_alg
, p
->csums_alg
);
2891 csums_tfm
= drbd_crypto_alloc_digest_safe(mdev
,
2892 p
->csums_alg
, "csums-alg");
2893 if (IS_ERR(csums_tfm
)) {
2900 spin_lock(&mdev
->peer_seq_lock
);
2901 /* lock against drbd_nl_syncer_conf() */
2903 strcpy(mdev
->sync_conf
.verify_alg
, p
->verify_alg
);
2904 mdev
->sync_conf
.verify_alg_len
= strlen(p
->verify_alg
) + 1;
2905 crypto_free_hash(mdev
->verify_tfm
);
2906 mdev
->verify_tfm
= verify_tfm
;
2907 dev_info(DEV
, "using verify-alg: \"%s\"\n", p
->verify_alg
);
2910 strcpy(mdev
->sync_conf
.csums_alg
, p
->csums_alg
);
2911 mdev
->sync_conf
.csums_alg_len
= strlen(p
->csums_alg
) + 1;
2912 crypto_free_hash(mdev
->csums_tfm
);
2913 mdev
->csums_tfm
= csums_tfm
;
2914 dev_info(DEV
, "using csums-alg: \"%s\"\n", p
->csums_alg
);
2916 spin_unlock(&mdev
->peer_seq_lock
);
2921 /* just for completeness: actually not needed,
2922 * as this is not reached if csums_tfm was ok. */
2923 crypto_free_hash(csums_tfm
);
2924 /* but free the verify_tfm again, if csums_tfm did not work out */
2925 crypto_free_hash(verify_tfm
);
2926 drbd_force_state(mdev
, NS(conn
, C_DISCONNECTING
));
2930 static void drbd_setup_order_type(struct drbd_conf
*mdev
, int peer
)
2932 /* sorry, we currently have no working implementation
2933 * of distributed TCQ */
2936 /* warn if the arguments differ by more than 12.5% */
2937 static void warn_if_differ_considerably(struct drbd_conf
*mdev
,
2938 const char *s
, sector_t a
, sector_t b
)
2941 if (a
== 0 || b
== 0)
2943 d
= (a
> b
) ? (a
- b
) : (b
- a
);
2944 if (d
> (a
>>3) || d
> (b
>>3))
2945 dev_warn(DEV
, "Considerable difference in %s: %llus vs. %llus\n", s
,
2946 (unsigned long long)a
, (unsigned long long)b
);
2949 static int receive_sizes(struct drbd_conf
*mdev
, struct p_header
*h
)
2951 struct p_sizes
*p
= (struct p_sizes
*)h
;
2952 enum determine_dev_size dd
= unchanged
;
2953 unsigned int max_seg_s
;
2954 sector_t p_size
, p_usize
, my_usize
;
2955 int ldsc
= 0; /* local disk size changed */
2956 enum dds_flags ddsf
;
2958 ERR_IF(h
->length
!= (sizeof(*p
)-sizeof(*h
))) return FALSE
;
2959 if (drbd_recv(mdev
, h
->payload
, h
->length
) != h
->length
)
2962 p_size
= be64_to_cpu(p
->d_size
);
2963 p_usize
= be64_to_cpu(p
->u_size
);
2965 if (p_size
== 0 && mdev
->state
.disk
== D_DISKLESS
) {
2966 dev_err(DEV
, "some backing storage is needed\n");
2967 drbd_force_state(mdev
, NS(conn
, C_DISCONNECTING
));
2971 /* just store the peer's disk size for now.
2972 * we still need to figure out whether we accept that. */
2973 mdev
->p_size
= p_size
;
2975 #define min_not_zero(l, r) (l == 0) ? r : ((r == 0) ? l : min(l, r))
2976 if (get_ldev(mdev
)) {
2977 warn_if_differ_considerably(mdev
, "lower level device sizes",
2978 p_size
, drbd_get_max_capacity(mdev
->ldev
));
2979 warn_if_differ_considerably(mdev
, "user requested size",
2980 p_usize
, mdev
->ldev
->dc
.disk_size
);
2982 /* if this is the first connect, or an otherwise expected
2983 * param exchange, choose the minimum */
2984 if (mdev
->state
.conn
== C_WF_REPORT_PARAMS
)
2985 p_usize
= min_not_zero((sector_t
)mdev
->ldev
->dc
.disk_size
,
2988 my_usize
= mdev
->ldev
->dc
.disk_size
;
2990 if (mdev
->ldev
->dc
.disk_size
!= p_usize
) {
2991 mdev
->ldev
->dc
.disk_size
= p_usize
;
2992 dev_info(DEV
, "Peer sets u_size to %lu sectors\n",
2993 (unsigned long)mdev
->ldev
->dc
.disk_size
);
2996 /* Never shrink a device with usable data during connect.
2997 But allow online shrinking if we are connected. */
2998 if (drbd_new_dev_size(mdev
, mdev
->ldev
, 0) <
2999 drbd_get_capacity(mdev
->this_bdev
) &&
3000 mdev
->state
.disk
>= D_OUTDATED
&&
3001 mdev
->state
.conn
< C_CONNECTED
) {
3002 dev_err(DEV
, "The peer's disk size is too small!\n");
3003 drbd_force_state(mdev
, NS(conn
, C_DISCONNECTING
));
3004 mdev
->ldev
->dc
.disk_size
= my_usize
;
3012 ddsf
= be16_to_cpu(p
->dds_flags
);
3013 if (get_ldev(mdev
)) {
3014 dd
= drbd_determin_dev_size(mdev
, ddsf
);
3016 if (dd
== dev_size_error
)
3020 /* I am diskless, need to accept the peer's size. */
3021 drbd_set_my_capacity(mdev
, p_size
);
3024 if (get_ldev(mdev
)) {
3025 if (mdev
->ldev
->known_size
!= drbd_get_capacity(mdev
->ldev
->backing_bdev
)) {
3026 mdev
->ldev
->known_size
= drbd_get_capacity(mdev
->ldev
->backing_bdev
);
3030 if (mdev
->agreed_pro_version
< 94)
3031 max_seg_s
= be32_to_cpu(p
->max_segment_size
);
3032 else /* drbd 8.3.8 onwards */
3033 max_seg_s
= DRBD_MAX_SEGMENT_SIZE
;
3035 if (max_seg_s
!= queue_max_segment_size(mdev
->rq_queue
))
3036 drbd_setup_queue_param(mdev
, max_seg_s
);
3038 drbd_setup_order_type(mdev
, be16_to_cpu(p
->queue_order_type
));
3042 if (mdev
->state
.conn
> C_WF_REPORT_PARAMS
) {
3043 if (be64_to_cpu(p
->c_size
) !=
3044 drbd_get_capacity(mdev
->this_bdev
) || ldsc
) {
3045 /* we have different sizes, probably peer
3046 * needs to know my new size... */
3047 drbd_send_sizes(mdev
, 0, ddsf
);
3049 if (test_and_clear_bit(RESIZE_PENDING
, &mdev
->flags
) ||
3050 (dd
== grew
&& mdev
->state
.conn
== C_CONNECTED
)) {
3051 if (mdev
->state
.pdsk
>= D_INCONSISTENT
&&
3052 mdev
->state
.disk
>= D_INCONSISTENT
) {
3053 if (ddsf
& DDSF_NO_RESYNC
)
3054 dev_info(DEV
, "Resync of new storage suppressed with --assume-clean\n");
3056 resync_after_online_grow(mdev
);
3058 set_bit(RESYNC_AFTER_NEG
, &mdev
->flags
);
3065 static int receive_uuids(struct drbd_conf
*mdev
, struct p_header
*h
)
3067 struct p_uuids
*p
= (struct p_uuids
*)h
;
3071 ERR_IF(h
->length
!= (sizeof(*p
)-sizeof(*h
))) return FALSE
;
3072 if (drbd_recv(mdev
, h
->payload
, h
->length
) != h
->length
)
3075 p_uuid
= kmalloc(sizeof(u64
)*UI_EXTENDED_SIZE
, GFP_NOIO
);
3077 for (i
= UI_CURRENT
; i
< UI_EXTENDED_SIZE
; i
++)
3078 p_uuid
[i
] = be64_to_cpu(p
->uuid
[i
]);
3080 kfree(mdev
->p_uuid
);
3081 mdev
->p_uuid
= p_uuid
;
3083 if (mdev
->state
.conn
< C_CONNECTED
&&
3084 mdev
->state
.disk
< D_INCONSISTENT
&&
3085 mdev
->state
.role
== R_PRIMARY
&&
3086 (mdev
->ed_uuid
& ~((u64
)1)) != (p_uuid
[UI_CURRENT
] & ~((u64
)1))) {
3087 dev_err(DEV
, "Can only connect to data with current UUID=%016llX\n",
3088 (unsigned long long)mdev
->ed_uuid
);
3089 drbd_force_state(mdev
, NS(conn
, C_DISCONNECTING
));
3093 if (get_ldev(mdev
)) {
3094 int skip_initial_sync
=
3095 mdev
->state
.conn
== C_CONNECTED
&&
3096 mdev
->agreed_pro_version
>= 90 &&
3097 mdev
->ldev
->md
.uuid
[UI_CURRENT
] == UUID_JUST_CREATED
&&
3098 (p_uuid
[UI_FLAGS
] & 8);
3099 if (skip_initial_sync
) {
3100 dev_info(DEV
, "Accepted new current UUID, preparing to skip initial sync\n");
3101 drbd_bitmap_io(mdev
, &drbd_bmio_clear_n_write
,
3102 "clear_n_write from receive_uuids");
3103 _drbd_uuid_set(mdev
, UI_CURRENT
, p_uuid
[UI_CURRENT
]);
3104 _drbd_uuid_set(mdev
, UI_BITMAP
, 0);
3105 _drbd_set_state(_NS2(mdev
, disk
, D_UP_TO_DATE
, pdsk
, D_UP_TO_DATE
),
3112 /* Before we test for the disk state, we should wait until an eventually
3113 ongoing cluster wide state change is finished. That is important if
3114 we are primary and are detaching from our disk. We need to see the
3115 new disk state... */
3116 wait_event(mdev
->misc_wait
, !test_bit(CLUSTER_ST_CHANGE
, &mdev
->flags
));
3117 if (mdev
->state
.conn
>= C_CONNECTED
&& mdev
->state
.disk
< D_INCONSISTENT
)
3118 drbd_set_ed_uuid(mdev
, p_uuid
[UI_CURRENT
]);
3124 * convert_state() - Converts the peer's view of the cluster state to our point of view
3125 * @ps: The state as seen by the peer.
3127 static union drbd_state
convert_state(union drbd_state ps
)
3129 union drbd_state ms
;
3131 static enum drbd_conns c_tab
[] = {
3132 [C_CONNECTED
] = C_CONNECTED
,
3134 [C_STARTING_SYNC_S
] = C_STARTING_SYNC_T
,
3135 [C_STARTING_SYNC_T
] = C_STARTING_SYNC_S
,
3136 [C_DISCONNECTING
] = C_TEAR_DOWN
, /* C_NETWORK_FAILURE, */
3137 [C_VERIFY_S
] = C_VERIFY_T
,
3143 ms
.conn
= c_tab
[ps
.conn
];
3148 ms
.peer_isp
= (ps
.aftr_isp
| ps
.user_isp
);
3153 static int receive_req_state(struct drbd_conf
*mdev
, struct p_header
*h
)
3155 struct p_req_state
*p
= (struct p_req_state
*)h
;
3156 union drbd_state mask
, val
;
3159 ERR_IF(h
->length
!= (sizeof(*p
)-sizeof(*h
))) return FALSE
;
3160 if (drbd_recv(mdev
, h
->payload
, h
->length
) != h
->length
)
3163 mask
.i
= be32_to_cpu(p
->mask
);
3164 val
.i
= be32_to_cpu(p
->val
);
3166 if (test_bit(DISCARD_CONCURRENT
, &mdev
->flags
) &&
3167 test_bit(CLUSTER_ST_CHANGE
, &mdev
->flags
)) {
3168 drbd_send_sr_reply(mdev
, SS_CONCURRENT_ST_CHG
);
3172 mask
= convert_state(mask
);
3173 val
= convert_state(val
);
3175 rv
= drbd_change_state(mdev
, CS_VERBOSE
, mask
, val
);
3177 drbd_send_sr_reply(mdev
, rv
);
3183 static int receive_state(struct drbd_conf
*mdev
, struct p_header
*h
)
3185 struct p_state
*p
= (struct p_state
*)h
;
3186 enum drbd_conns nconn
, oconn
;
3187 union drbd_state ns
, peer_state
;
3188 enum drbd_disk_state real_peer_disk
;
3191 ERR_IF(h
->length
!= (sizeof(*p
)-sizeof(*h
)))
3194 if (drbd_recv(mdev
, h
->payload
, h
->length
) != h
->length
)
3197 peer_state
.i
= be32_to_cpu(p
->state
);
3199 real_peer_disk
= peer_state
.disk
;
3200 if (peer_state
.disk
== D_NEGOTIATING
) {
3201 real_peer_disk
= mdev
->p_uuid
[UI_FLAGS
] & 4 ? D_INCONSISTENT
: D_CONSISTENT
;
3202 dev_info(DEV
, "real peer disk state = %s\n", drbd_disk_str(real_peer_disk
));
3205 spin_lock_irq(&mdev
->req_lock
);
3207 oconn
= nconn
= mdev
->state
.conn
;
3208 spin_unlock_irq(&mdev
->req_lock
);
3210 if (nconn
== C_WF_REPORT_PARAMS
)
3211 nconn
= C_CONNECTED
;
3213 if (mdev
->p_uuid
&& peer_state
.disk
>= D_NEGOTIATING
&&
3214 get_ldev_if_state(mdev
, D_NEGOTIATING
)) {
3215 int cr
; /* consider resync */
3217 /* if we established a new connection */
3218 cr
= (oconn
< C_CONNECTED
);
3219 /* if we had an established connection
3220 * and one of the nodes newly attaches a disk */
3221 cr
|= (oconn
== C_CONNECTED
&&
3222 (peer_state
.disk
== D_NEGOTIATING
||
3223 mdev
->state
.disk
== D_NEGOTIATING
));
3224 /* if we have both been inconsistent, and the peer has been
3225 * forced to be UpToDate with --overwrite-data */
3226 cr
|= test_bit(CONSIDER_RESYNC
, &mdev
->flags
);
3227 /* if we had been plain connected, and the admin requested to
3228 * start a sync by "invalidate" or "invalidate-remote" */
3229 cr
|= (oconn
== C_CONNECTED
&&
3230 (peer_state
.conn
>= C_STARTING_SYNC_S
&&
3231 peer_state
.conn
<= C_WF_BITMAP_T
));
3234 nconn
= drbd_sync_handshake(mdev
, peer_state
.role
, real_peer_disk
);
3237 if (nconn
== C_MASK
) {
3238 nconn
= C_CONNECTED
;
3239 if (mdev
->state
.disk
== D_NEGOTIATING
) {
3240 drbd_force_state(mdev
, NS(disk
, D_DISKLESS
));
3241 } else if (peer_state
.disk
== D_NEGOTIATING
) {
3242 dev_err(DEV
, "Disk attach process on the peer node was aborted.\n");
3243 peer_state
.disk
= D_DISKLESS
;
3244 real_peer_disk
= D_DISKLESS
;
3246 if (test_and_clear_bit(CONN_DRY_RUN
, &mdev
->flags
))
3248 D_ASSERT(oconn
== C_WF_REPORT_PARAMS
);
3249 drbd_force_state(mdev
, NS(conn
, C_DISCONNECTING
));
3255 spin_lock_irq(&mdev
->req_lock
);
3256 if (mdev
->state
.conn
!= oconn
)
3258 clear_bit(CONSIDER_RESYNC
, &mdev
->flags
);
3259 ns
.i
= mdev
->state
.i
;
3261 ns
.peer
= peer_state
.role
;
3262 ns
.pdsk
= real_peer_disk
;
3263 ns
.peer_isp
= (peer_state
.aftr_isp
| peer_state
.user_isp
);
3264 if ((nconn
== C_CONNECTED
|| nconn
== C_WF_BITMAP_S
) && ns
.disk
== D_NEGOTIATING
)
3265 ns
.disk
= mdev
->new_state_tmp
.disk
;
3267 rv
= _drbd_set_state(mdev
, ns
, CS_VERBOSE
| CS_HARD
, NULL
);
3269 spin_unlock_irq(&mdev
->req_lock
);
3271 if (rv
< SS_SUCCESS
) {
3272 drbd_force_state(mdev
, NS(conn
, C_DISCONNECTING
));
3276 if (oconn
> C_WF_REPORT_PARAMS
) {
3277 if (nconn
> C_CONNECTED
&& peer_state
.conn
<= C_CONNECTED
&&
3278 peer_state
.disk
!= D_NEGOTIATING
) {
3279 /* we want resync, peer has not yet decided to sync... */
3280 /* Nowadays only used when forcing a node into primary role and
3281 setting its disk to UpToDate with that */
3282 drbd_send_uuids(mdev
);
3283 drbd_send_state(mdev
);
3287 mdev
->net_conf
->want_lose
= 0;
3289 drbd_md_sync(mdev
); /* update connected indicator, la_size, ... */
3294 static int receive_sync_uuid(struct drbd_conf
*mdev
, struct p_header
*h
)
3296 struct p_rs_uuid
*p
= (struct p_rs_uuid
*)h
;
3298 wait_event(mdev
->misc_wait
,
3299 mdev
->state
.conn
== C_WF_SYNC_UUID
||
3300 mdev
->state
.conn
< C_CONNECTED
||
3301 mdev
->state
.disk
< D_NEGOTIATING
);
3303 /* D_ASSERT( mdev->state.conn == C_WF_SYNC_UUID ); */
3305 ERR_IF(h
->length
!= (sizeof(*p
)-sizeof(*h
))) return FALSE
;
3306 if (drbd_recv(mdev
, h
->payload
, h
->length
) != h
->length
)
3309 /* Here the _drbd_uuid_ functions are right, current should
3310 _not_ be rotated into the history */
3311 if (get_ldev_if_state(mdev
, D_NEGOTIATING
)) {
3312 _drbd_uuid_set(mdev
, UI_CURRENT
, be64_to_cpu(p
->uuid
));
3313 _drbd_uuid_set(mdev
, UI_BITMAP
, 0UL);
3315 drbd_start_resync(mdev
, C_SYNC_TARGET
);
3319 dev_err(DEV
, "Ignoring SyncUUID packet!\n");
3324 enum receive_bitmap_ret
{ OK
, DONE
, FAILED
};
3326 static enum receive_bitmap_ret
3327 receive_bitmap_plain(struct drbd_conf
*mdev
, struct p_header
*h
,
3328 unsigned long *buffer
, struct bm_xfer_ctx
*c
)
3330 unsigned num_words
= min_t(size_t, BM_PACKET_WORDS
, c
->bm_words
- c
->word_offset
);
3331 unsigned want
= num_words
* sizeof(long);
3333 if (want
!= h
->length
) {
3334 dev_err(DEV
, "%s:want (%u) != h->length (%u)\n", __func__
, want
, h
->length
);
3339 if (drbd_recv(mdev
, buffer
, want
) != want
)
3342 drbd_bm_merge_lel(mdev
, c
->word_offset
, num_words
, buffer
);
3344 c
->word_offset
+= num_words
;
3345 c
->bit_offset
= c
->word_offset
* BITS_PER_LONG
;
3346 if (c
->bit_offset
> c
->bm_bits
)
3347 c
->bit_offset
= c
->bm_bits
;
3352 static enum receive_bitmap_ret
3353 recv_bm_rle_bits(struct drbd_conf
*mdev
,
3354 struct p_compressed_bm
*p
,
3355 struct bm_xfer_ctx
*c
)
3357 struct bitstream bs
;
3361 unsigned long s
= c
->bit_offset
;
3363 int len
= p
->head
.length
- (sizeof(*p
) - sizeof(p
->head
));
3364 int toggle
= DCBP_get_start(p
);
3368 bitstream_init(&bs
, p
->code
, len
, DCBP_get_pad_bits(p
));
3370 bits
= bitstream_get_bits(&bs
, &look_ahead
, 64);
3374 for (have
= bits
; have
> 0; s
+= rl
, toggle
= !toggle
) {
3375 bits
= vli_decode_bits(&rl
, look_ahead
);
3381 if (e
>= c
->bm_bits
) {
3382 dev_err(DEV
, "bitmap overflow (e:%lu) while decoding bm RLE packet\n", e
);
3385 _drbd_bm_set_bits(mdev
, s
, e
);
3389 dev_err(DEV
, "bitmap decoding error: h:%d b:%d la:0x%08llx l:%u/%u\n",
3390 have
, bits
, look_ahead
,
3391 (unsigned int)(bs
.cur
.b
- p
->code
),
3392 (unsigned int)bs
.buf_len
);
3395 look_ahead
>>= bits
;
3398 bits
= bitstream_get_bits(&bs
, &tmp
, 64 - have
);
3401 look_ahead
|= tmp
<< have
;
3406 bm_xfer_ctx_bit_to_word_offset(c
);
3408 return (s
== c
->bm_bits
) ? DONE
: OK
;
3411 static enum receive_bitmap_ret
3412 decode_bitmap_c(struct drbd_conf
*mdev
,
3413 struct p_compressed_bm
*p
,
3414 struct bm_xfer_ctx
*c
)
3416 if (DCBP_get_code(p
) == RLE_VLI_Bits
)
3417 return recv_bm_rle_bits(mdev
, p
, c
);
3419 /* other variants had been implemented for evaluation,
3420 * but have been dropped as this one turned out to be "best"
3421 * during all our tests. */
3423 dev_err(DEV
, "receive_bitmap_c: unknown encoding %u\n", p
->encoding
);
3424 drbd_force_state(mdev
, NS(conn
, C_PROTOCOL_ERROR
));
3428 void INFO_bm_xfer_stats(struct drbd_conf
*mdev
,
3429 const char *direction
, struct bm_xfer_ctx
*c
)
3431 /* what would it take to transfer it "plaintext" */
3432 unsigned plain
= sizeof(struct p_header
) *
3433 ((c
->bm_words
+BM_PACKET_WORDS
-1)/BM_PACKET_WORDS
+1)
3434 + c
->bm_words
* sizeof(long);
3435 unsigned total
= c
->bytes
[0] + c
->bytes
[1];
3438 /* total can not be zero. but just in case: */
3442 /* don't report if not compressed */
3446 /* total < plain. check for overflow, still */
3447 r
= (total
> UINT_MAX
/1000) ? (total
/ (plain
/1000))
3448 : (1000 * total
/ plain
);
3454 dev_info(DEV
, "%s bitmap stats [Bytes(packets)]: plain %u(%u), RLE %u(%u), "
3455 "total %u; compression: %u.%u%%\n",
3457 c
->bytes
[1], c
->packets
[1],
3458 c
->bytes
[0], c
->packets
[0],
3459 total
, r
/10, r
% 10);
3462 /* Since we are processing the bitfield from lower addresses to higher,
3463 it does not matter if the process it in 32 bit chunks or 64 bit
3464 chunks as long as it is little endian. (Understand it as byte stream,
3465 beginning with the lowest byte...) If we would use big endian
3466 we would need to process it from the highest address to the lowest,
3467 in order to be agnostic to the 32 vs 64 bits issue.
3469 returns 0 on failure, 1 if we successfully received it. */
3470 static int receive_bitmap(struct drbd_conf
*mdev
, struct p_header
*h
)
3472 struct bm_xfer_ctx c
;
3474 enum receive_bitmap_ret ret
;
3477 wait_event(mdev
->misc_wait
, !atomic_read(&mdev
->ap_bio_cnt
));
3479 drbd_bm_lock(mdev
, "receive bitmap");
3481 /* maybe we should use some per thread scratch page,
3482 * and allocate that during initial device creation? */
3483 buffer
= (unsigned long *) __get_free_page(GFP_NOIO
);
3485 dev_err(DEV
, "failed to allocate one page buffer in %s\n", __func__
);
3489 c
= (struct bm_xfer_ctx
) {
3490 .bm_bits
= drbd_bm_bits(mdev
),
3491 .bm_words
= drbd_bm_words(mdev
),
3495 if (h
->command
== P_BITMAP
) {
3496 ret
= receive_bitmap_plain(mdev
, h
, buffer
, &c
);
3497 } else if (h
->command
== P_COMPRESSED_BITMAP
) {
3498 /* MAYBE: sanity check that we speak proto >= 90,
3499 * and the feature is enabled! */
3500 struct p_compressed_bm
*p
;
3502 if (h
->length
> BM_PACKET_PAYLOAD_BYTES
) {
3503 dev_err(DEV
, "ReportCBitmap packet too large\n");
3506 /* use the page buff */
3508 memcpy(p
, h
, sizeof(*h
));
3509 if (drbd_recv(mdev
, p
->head
.payload
, h
->length
) != h
->length
)
3511 if (p
->head
.length
<= (sizeof(*p
) - sizeof(p
->head
))) {
3512 dev_err(DEV
, "ReportCBitmap packet too small (l:%u)\n", p
->head
.length
);
3515 ret
= decode_bitmap_c(mdev
, p
, &c
);
3517 dev_warn(DEV
, "receive_bitmap: h->command neither ReportBitMap nor ReportCBitMap (is 0x%x)", h
->command
);
3521 c
.packets
[h
->command
== P_BITMAP
]++;
3522 c
.bytes
[h
->command
== P_BITMAP
] += sizeof(struct p_header
) + h
->length
;
3527 if (!drbd_recv_header(mdev
, h
))
3529 } while (ret
== OK
);
3533 INFO_bm_xfer_stats(mdev
, "receive", &c
);
3535 if (mdev
->state
.conn
== C_WF_BITMAP_T
) {
3536 ok
= !drbd_send_bitmap(mdev
);
3539 /* Omit CS_ORDERED with this state transition to avoid deadlocks. */
3540 ok
= _drbd_request_state(mdev
, NS(conn
, C_WF_SYNC_UUID
), CS_VERBOSE
);
3541 D_ASSERT(ok
== SS_SUCCESS
);
3542 } else if (mdev
->state
.conn
!= C_WF_BITMAP_S
) {
3543 /* admin may have requested C_DISCONNECTING,
3544 * other threads may have noticed network errors */
3545 dev_info(DEV
, "unexpected cstate (%s) in receive_bitmap\n",
3546 drbd_conn_str(mdev
->state
.conn
));
3551 drbd_bm_unlock(mdev
);
3552 if (ok
&& mdev
->state
.conn
== C_WF_BITMAP_S
)
3553 drbd_start_resync(mdev
, C_SYNC_SOURCE
);
3554 free_page((unsigned long) buffer
);
3558 static int receive_skip_(struct drbd_conf
*mdev
, struct p_header
*h
, int silent
)
3560 /* TODO zero copy sink :) */
3561 static char sink
[128];
3565 dev_warn(DEV
, "skipping unknown optional packet type %d, l: %d!\n",
3566 h
->command
, h
->length
);
3570 want
= min_t(int, size
, sizeof(sink
));
3571 r
= drbd_recv(mdev
, sink
, want
);
3572 ERR_IF(r
<= 0) break;
3578 static int receive_skip(struct drbd_conf
*mdev
, struct p_header
*h
)
3580 return receive_skip_(mdev
, h
, 0);
3583 static int receive_skip_silent(struct drbd_conf
*mdev
, struct p_header
*h
)
3585 return receive_skip_(mdev
, h
, 1);
3588 static int receive_UnplugRemote(struct drbd_conf
*mdev
, struct p_header
*h
)
3590 if (mdev
->state
.disk
>= D_INCONSISTENT
)
3593 /* Make sure we've acked all the TCP data associated
3594 * with the data requests being unplugged */
3595 drbd_tcp_quickack(mdev
->data
.socket
);
3600 typedef int (*drbd_cmd_handler_f
)(struct drbd_conf
*, struct p_header
*);
3602 static drbd_cmd_handler_f drbd_default_handler
[] = {
3603 [P_DATA
] = receive_Data
,
3604 [P_DATA_REPLY
] = receive_DataReply
,
3605 [P_RS_DATA_REPLY
] = receive_RSDataReply
,
3606 [P_BARRIER
] = receive_Barrier
,
3607 [P_BITMAP
] = receive_bitmap
,
3608 [P_COMPRESSED_BITMAP
] = receive_bitmap
,
3609 [P_UNPLUG_REMOTE
] = receive_UnplugRemote
,
3610 [P_DATA_REQUEST
] = receive_DataRequest
,
3611 [P_RS_DATA_REQUEST
] = receive_DataRequest
,
3612 [P_SYNC_PARAM
] = receive_SyncParam
,
3613 [P_SYNC_PARAM89
] = receive_SyncParam
,
3614 [P_PROTOCOL
] = receive_protocol
,
3615 [P_UUIDS
] = receive_uuids
,
3616 [P_SIZES
] = receive_sizes
,
3617 [P_STATE
] = receive_state
,
3618 [P_STATE_CHG_REQ
] = receive_req_state
,
3619 [P_SYNC_UUID
] = receive_sync_uuid
,
3620 [P_OV_REQUEST
] = receive_DataRequest
,
3621 [P_OV_REPLY
] = receive_DataRequest
,
3622 [P_CSUM_RS_REQUEST
] = receive_DataRequest
,
3623 [P_DELAY_PROBE
] = receive_skip_silent
,
3624 /* anything missing from this table is in
3625 * the asender_tbl, see get_asender_cmd */
3629 static drbd_cmd_handler_f
*drbd_cmd_handler
= drbd_default_handler
;
3630 static drbd_cmd_handler_f
*drbd_opt_cmd_handler
;
3632 static void drbdd(struct drbd_conf
*mdev
)
3634 drbd_cmd_handler_f handler
;
3635 struct p_header
*header
= &mdev
->data
.rbuf
.header
;
3637 while (get_t_state(&mdev
->receiver
) == Running
) {
3638 drbd_thread_current_set_cpu(mdev
);
3639 if (!drbd_recv_header(mdev
, header
)) {
3640 drbd_force_state(mdev
, NS(conn
, C_PROTOCOL_ERROR
));
3644 if (header
->command
< P_MAX_CMD
)
3645 handler
= drbd_cmd_handler
[header
->command
];
3646 else if (P_MAY_IGNORE
< header
->command
3647 && header
->command
< P_MAX_OPT_CMD
)
3648 handler
= drbd_opt_cmd_handler
[header
->command
-P_MAY_IGNORE
];
3649 else if (header
->command
> P_MAX_OPT_CMD
)
3650 handler
= receive_skip
;
3654 if (unlikely(!handler
)) {
3655 dev_err(DEV
, "unknown packet type %d, l: %d!\n",
3656 header
->command
, header
->length
);
3657 drbd_force_state(mdev
, NS(conn
, C_PROTOCOL_ERROR
));
3660 if (unlikely(!handler(mdev
, header
))) {
3661 dev_err(DEV
, "error receiving %s, l: %d!\n",
3662 cmdname(header
->command
), header
->length
);
3663 drbd_force_state(mdev
, NS(conn
, C_PROTOCOL_ERROR
));
3669 static void drbd_fail_pending_reads(struct drbd_conf
*mdev
)
3671 struct hlist_head
*slot
;
3672 struct hlist_node
*pos
;
3673 struct hlist_node
*tmp
;
3674 struct drbd_request
*req
;
3678 * Application READ requests
3680 spin_lock_irq(&mdev
->req_lock
);
3681 for (i
= 0; i
< APP_R_HSIZE
; i
++) {
3682 slot
= mdev
->app_reads_hash
+i
;
3683 hlist_for_each_entry_safe(req
, pos
, tmp
, slot
, colision
) {
3684 /* it may (but should not any longer!)
3685 * be on the work queue; if that assert triggers,
3686 * we need to also grab the
3687 * spin_lock_irq(&mdev->data.work.q_lock);
3688 * and list_del_init here. */
3689 D_ASSERT(list_empty(&req
->w
.list
));
3690 /* It would be nice to complete outside of spinlock.
3691 * But this is easier for now. */
3692 _req_mod(req
, connection_lost_while_pending
);
3695 for (i
= 0; i
< APP_R_HSIZE
; i
++)
3696 if (!hlist_empty(mdev
->app_reads_hash
+i
))
3697 dev_warn(DEV
, "ASSERT FAILED: app_reads_hash[%d].first: "
3698 "%p, should be NULL\n", i
, mdev
->app_reads_hash
[i
].first
);
3700 memset(mdev
->app_reads_hash
, 0, APP_R_HSIZE
*sizeof(void *));
3701 spin_unlock_irq(&mdev
->req_lock
);
3704 void drbd_flush_workqueue(struct drbd_conf
*mdev
)
3706 struct drbd_wq_barrier barr
;
3708 barr
.w
.cb
= w_prev_work_done
;
3709 init_completion(&barr
.done
);
3710 drbd_queue_work(&mdev
->data
.work
, &barr
.w
);
3711 wait_for_completion(&barr
.done
);
3714 static void drbd_disconnect(struct drbd_conf
*mdev
)
3716 enum drbd_fencing_p fp
;
3717 union drbd_state os
, ns
;
3718 int rv
= SS_UNKNOWN_ERROR
;
3721 if (mdev
->state
.conn
== C_STANDALONE
)
3723 if (mdev
->state
.conn
>= C_WF_CONNECTION
)
3724 dev_err(DEV
, "ASSERT FAILED cstate = %s, expected < WFConnection\n",
3725 drbd_conn_str(mdev
->state
.conn
));
3727 /* asender does not clean up anything. it must not interfere, either */
3728 drbd_thread_stop(&mdev
->asender
);
3729 drbd_free_sock(mdev
);
3731 spin_lock_irq(&mdev
->req_lock
);
3732 _drbd_wait_ee_list_empty(mdev
, &mdev
->active_ee
);
3733 _drbd_wait_ee_list_empty(mdev
, &mdev
->sync_ee
);
3734 _drbd_wait_ee_list_empty(mdev
, &mdev
->read_ee
);
3735 spin_unlock_irq(&mdev
->req_lock
);
3737 /* We do not have data structures that would allow us to
3738 * get the rs_pending_cnt down to 0 again.
3739 * * On C_SYNC_TARGET we do not have any data structures describing
3740 * the pending RSDataRequest's we have sent.
3741 * * On C_SYNC_SOURCE there is no data structure that tracks
3742 * the P_RS_DATA_REPLY blocks that we sent to the SyncTarget.
3743 * And no, it is not the sum of the reference counts in the
3744 * resync_LRU. The resync_LRU tracks the whole operation including
3745 * the disk-IO, while the rs_pending_cnt only tracks the blocks
3747 drbd_rs_cancel_all(mdev
);
3749 mdev
->rs_failed
= 0;
3750 atomic_set(&mdev
->rs_pending_cnt
, 0);
3751 wake_up(&mdev
->misc_wait
);
3753 /* make sure syncer is stopped and w_resume_next_sg queued */
3754 del_timer_sync(&mdev
->resync_timer
);
3755 set_bit(STOP_SYNC_TIMER
, &mdev
->flags
);
3756 resync_timer_fn((unsigned long)mdev
);
3758 /* wait for all w_e_end_data_req, w_e_end_rsdata_req, w_send_barrier,
3759 * w_make_resync_request etc. which may still be on the worker queue
3760 * to be "canceled" */
3761 drbd_flush_workqueue(mdev
);
3763 /* This also does reclaim_net_ee(). If we do this too early, we might
3764 * miss some resync ee and pages.*/
3765 drbd_process_done_ee(mdev
);
3767 kfree(mdev
->p_uuid
);
3768 mdev
->p_uuid
= NULL
;
3770 if (!mdev
->state
.susp
)
3773 drbd_fail_pending_reads(mdev
);
3775 dev_info(DEV
, "Connection closed\n");
3780 if (get_ldev(mdev
)) {
3781 fp
= mdev
->ldev
->dc
.fencing
;
3785 if (mdev
->state
.role
== R_PRIMARY
) {
3786 if (fp
>= FP_RESOURCE
&& mdev
->state
.pdsk
>= D_UNKNOWN
) {
3787 enum drbd_disk_state nps
= drbd_try_outdate_peer(mdev
);
3788 drbd_request_state(mdev
, NS(pdsk
, nps
));
3792 spin_lock_irq(&mdev
->req_lock
);
3794 if (os
.conn
>= C_UNCONNECTED
) {
3795 /* Do not restart in case we are C_DISCONNECTING */
3797 ns
.conn
= C_UNCONNECTED
;
3798 rv
= _drbd_set_state(mdev
, ns
, CS_VERBOSE
, NULL
);
3800 spin_unlock_irq(&mdev
->req_lock
);
3802 if (os
.conn
== C_DISCONNECTING
) {
3803 struct hlist_head
*h
;
3804 wait_event(mdev
->misc_wait
, atomic_read(&mdev
->net_cnt
) == 0);
3806 /* we must not free the tl_hash
3807 * while application io is still on the fly */
3808 wait_event(mdev
->misc_wait
, atomic_read(&mdev
->ap_bio_cnt
) == 0);
3810 spin_lock_irq(&mdev
->req_lock
);
3812 for (h
= mdev
->ee_hash
; h
< mdev
->ee_hash
+ mdev
->ee_hash_s
; h
++)
3814 dev_err(DEV
, "ASSERT FAILED ee_hash[%u].first == %p, expected NULL\n",
3815 (int)(h
- mdev
->ee_hash
), h
->first
);
3816 kfree(mdev
->ee_hash
);
3817 mdev
->ee_hash
= NULL
;
3818 mdev
->ee_hash_s
= 0;
3821 for (h
= mdev
->tl_hash
; h
< mdev
->tl_hash
+ mdev
->tl_hash_s
; h
++)
3823 dev_err(DEV
, "ASSERT FAILED tl_hash[%u] == %p, expected NULL\n",
3824 (int)(h
- mdev
->tl_hash
), h
->first
);
3825 kfree(mdev
->tl_hash
);
3826 mdev
->tl_hash
= NULL
;
3827 mdev
->tl_hash_s
= 0;
3828 spin_unlock_irq(&mdev
->req_lock
);
3830 crypto_free_hash(mdev
->cram_hmac_tfm
);
3831 mdev
->cram_hmac_tfm
= NULL
;
3833 kfree(mdev
->net_conf
);
3834 mdev
->net_conf
= NULL
;
3835 drbd_request_state(mdev
, NS(conn
, C_STANDALONE
));
3838 /* tcp_close and release of sendpage pages can be deferred. I don't
3839 * want to use SO_LINGER, because apparently it can be deferred for
3840 * more than 20 seconds (longest time I checked).
3842 * Actually we don't care for exactly when the network stack does its
3843 * put_page(), but release our reference on these pages right here.
3845 i
= drbd_release_ee(mdev
, &mdev
->net_ee
);
3847 dev_info(DEV
, "net_ee not empty, killed %u entries\n", i
);
3848 i
= atomic_read(&mdev
->pp_in_use
);
3850 dev_info(DEV
, "pp_in_use = %d, expected 0\n", i
);
3852 D_ASSERT(list_empty(&mdev
->read_ee
));
3853 D_ASSERT(list_empty(&mdev
->active_ee
));
3854 D_ASSERT(list_empty(&mdev
->sync_ee
));
3855 D_ASSERT(list_empty(&mdev
->done_ee
));
3857 /* ok, no more ee's on the fly, it is safe to reset the epoch_size */
3858 atomic_set(&mdev
->current_epoch
->epoch_size
, 0);
3859 D_ASSERT(list_empty(&mdev
->current_epoch
->list
));
3863 * We support PRO_VERSION_MIN to PRO_VERSION_MAX. The protocol version
3864 * we can agree on is stored in agreed_pro_version.
3866 * feature flags and the reserved array should be enough room for future
3867 * enhancements of the handshake protocol, and possible plugins...
3869 * for now, they are expected to be zero, but ignored.
3871 static int drbd_send_handshake(struct drbd_conf
*mdev
)
3873 /* ASSERT current == mdev->receiver ... */
3874 struct p_handshake
*p
= &mdev
->data
.sbuf
.handshake
;
3877 if (mutex_lock_interruptible(&mdev
->data
.mutex
)) {
3878 dev_err(DEV
, "interrupted during initial handshake\n");
3879 return 0; /* interrupted. not ok. */
3882 if (mdev
->data
.socket
== NULL
) {
3883 mutex_unlock(&mdev
->data
.mutex
);
3887 memset(p
, 0, sizeof(*p
));
3888 p
->protocol_min
= cpu_to_be32(PRO_VERSION_MIN
);
3889 p
->protocol_max
= cpu_to_be32(PRO_VERSION_MAX
);
3890 ok
= _drbd_send_cmd( mdev
, mdev
->data
.socket
, P_HAND_SHAKE
,
3891 (struct p_header
*)p
, sizeof(*p
), 0 );
3892 mutex_unlock(&mdev
->data
.mutex
);
3898 * 1 yes, we have a valid connection
3899 * 0 oops, did not work out, please try again
3900 * -1 peer talks different language,
3901 * no point in trying again, please go standalone.
3903 static int drbd_do_handshake(struct drbd_conf
*mdev
)
3905 /* ASSERT current == mdev->receiver ... */
3906 struct p_handshake
*p
= &mdev
->data
.rbuf
.handshake
;
3907 const int expect
= sizeof(struct p_handshake
)
3908 -sizeof(struct p_header
);
3911 rv
= drbd_send_handshake(mdev
);
3915 rv
= drbd_recv_header(mdev
, &p
->head
);
3919 if (p
->head
.command
!= P_HAND_SHAKE
) {
3920 dev_err(DEV
, "expected HandShake packet, received: %s (0x%04x)\n",
3921 cmdname(p
->head
.command
), p
->head
.command
);
3925 if (p
->head
.length
!= expect
) {
3926 dev_err(DEV
, "expected HandShake length: %u, received: %u\n",
3927 expect
, p
->head
.length
);
3931 rv
= drbd_recv(mdev
, &p
->head
.payload
, expect
);
3934 dev_err(DEV
, "short read receiving handshake packet: l=%u\n", rv
);
3938 p
->protocol_min
= be32_to_cpu(p
->protocol_min
);
3939 p
->protocol_max
= be32_to_cpu(p
->protocol_max
);
3940 if (p
->protocol_max
== 0)
3941 p
->protocol_max
= p
->protocol_min
;
3943 if (PRO_VERSION_MAX
< p
->protocol_min
||
3944 PRO_VERSION_MIN
> p
->protocol_max
)
3947 mdev
->agreed_pro_version
= min_t(int, PRO_VERSION_MAX
, p
->protocol_max
);
3949 dev_info(DEV
, "Handshake successful: "
3950 "Agreed network protocol version %d\n", mdev
->agreed_pro_version
);
3955 dev_err(DEV
, "incompatible DRBD dialects: "
3956 "I support %d-%d, peer supports %d-%d\n",
3957 PRO_VERSION_MIN
, PRO_VERSION_MAX
,
3958 p
->protocol_min
, p
->protocol_max
);
3962 #if !defined(CONFIG_CRYPTO_HMAC) && !defined(CONFIG_CRYPTO_HMAC_MODULE)
3963 static int drbd_do_auth(struct drbd_conf
*mdev
)
3965 dev_err(DEV
, "This kernel was build without CONFIG_CRYPTO_HMAC.\n");
3966 dev_err(DEV
, "You need to disable 'cram-hmac-alg' in drbd.conf.\n");
3970 #define CHALLENGE_LEN 64
3974 0 - failed, try again (network error),
3975 -1 - auth failed, don't try again.
3978 static int drbd_do_auth(struct drbd_conf
*mdev
)
3980 char my_challenge
[CHALLENGE_LEN
]; /* 64 Bytes... */
3981 struct scatterlist sg
;
3982 char *response
= NULL
;
3983 char *right_response
= NULL
;
3984 char *peers_ch
= NULL
;
3986 unsigned int key_len
= strlen(mdev
->net_conf
->shared_secret
);
3987 unsigned int resp_size
;
3988 struct hash_desc desc
;
3991 desc
.tfm
= mdev
->cram_hmac_tfm
;
3994 rv
= crypto_hash_setkey(mdev
->cram_hmac_tfm
,
3995 (u8
*)mdev
->net_conf
->shared_secret
, key_len
);
3997 dev_err(DEV
, "crypto_hash_setkey() failed with %d\n", rv
);
4002 get_random_bytes(my_challenge
, CHALLENGE_LEN
);
4004 rv
= drbd_send_cmd2(mdev
, P_AUTH_CHALLENGE
, my_challenge
, CHALLENGE_LEN
);
4008 rv
= drbd_recv_header(mdev
, &p
);
4012 if (p
.command
!= P_AUTH_CHALLENGE
) {
4013 dev_err(DEV
, "expected AuthChallenge packet, received: %s (0x%04x)\n",
4014 cmdname(p
.command
), p
.command
);
4019 if (p
.length
> CHALLENGE_LEN
*2) {
4020 dev_err(DEV
, "expected AuthChallenge payload too big.\n");
4025 peers_ch
= kmalloc(p
.length
, GFP_NOIO
);
4026 if (peers_ch
== NULL
) {
4027 dev_err(DEV
, "kmalloc of peers_ch failed\n");
4032 rv
= drbd_recv(mdev
, peers_ch
, p
.length
);
4034 if (rv
!= p
.length
) {
4035 dev_err(DEV
, "short read AuthChallenge: l=%u\n", rv
);
4040 resp_size
= crypto_hash_digestsize(mdev
->cram_hmac_tfm
);
4041 response
= kmalloc(resp_size
, GFP_NOIO
);
4042 if (response
== NULL
) {
4043 dev_err(DEV
, "kmalloc of response failed\n");
4048 sg_init_table(&sg
, 1);
4049 sg_set_buf(&sg
, peers_ch
, p
.length
);
4051 rv
= crypto_hash_digest(&desc
, &sg
, sg
.length
, response
);
4053 dev_err(DEV
, "crypto_hash_digest() failed with %d\n", rv
);
4058 rv
= drbd_send_cmd2(mdev
, P_AUTH_RESPONSE
, response
, resp_size
);
4062 rv
= drbd_recv_header(mdev
, &p
);
4066 if (p
.command
!= P_AUTH_RESPONSE
) {
4067 dev_err(DEV
, "expected AuthResponse packet, received: %s (0x%04x)\n",
4068 cmdname(p
.command
), p
.command
);
4073 if (p
.length
!= resp_size
) {
4074 dev_err(DEV
, "expected AuthResponse payload of wrong size\n");
4079 rv
= drbd_recv(mdev
, response
, resp_size
);
4081 if (rv
!= resp_size
) {
4082 dev_err(DEV
, "short read receiving AuthResponse: l=%u\n", rv
);
4087 right_response
= kmalloc(resp_size
, GFP_NOIO
);
4088 if (right_response
== NULL
) {
4089 dev_err(DEV
, "kmalloc of right_response failed\n");
4094 sg_set_buf(&sg
, my_challenge
, CHALLENGE_LEN
);
4096 rv
= crypto_hash_digest(&desc
, &sg
, sg
.length
, right_response
);
4098 dev_err(DEV
, "crypto_hash_digest() failed with %d\n", rv
);
4103 rv
= !memcmp(response
, right_response
, resp_size
);
4106 dev_info(DEV
, "Peer authenticated using %d bytes of '%s' HMAC\n",
4107 resp_size
, mdev
->net_conf
->cram_hmac_alg
);
4114 kfree(right_response
);
4120 int drbdd_init(struct drbd_thread
*thi
)
4122 struct drbd_conf
*mdev
= thi
->mdev
;
4123 unsigned int minor
= mdev_to_minor(mdev
);
4126 sprintf(current
->comm
, "drbd%d_receiver", minor
);
4128 dev_info(DEV
, "receiver (re)started\n");
4131 h
= drbd_connect(mdev
);
4133 drbd_disconnect(mdev
);
4134 __set_current_state(TASK_INTERRUPTIBLE
);
4135 schedule_timeout(HZ
);
4138 dev_warn(DEV
, "Discarding network configuration.\n");
4139 drbd_force_state(mdev
, NS(conn
, C_DISCONNECTING
));
4144 if (get_net_conf(mdev
)) {
4150 drbd_disconnect(mdev
);
4152 dev_info(DEV
, "receiver terminated\n");
4156 /* ********* acknowledge sender ******** */
4158 static int got_RqSReply(struct drbd_conf
*mdev
, struct p_header
*h
)
4160 struct p_req_state_reply
*p
= (struct p_req_state_reply
*)h
;
4162 int retcode
= be32_to_cpu(p
->retcode
);
4164 if (retcode
>= SS_SUCCESS
) {
4165 set_bit(CL_ST_CHG_SUCCESS
, &mdev
->flags
);
4167 set_bit(CL_ST_CHG_FAIL
, &mdev
->flags
);
4168 dev_err(DEV
, "Requested state change failed by peer: %s (%d)\n",
4169 drbd_set_st_err_str(retcode
), retcode
);
4171 wake_up(&mdev
->state_wait
);
4176 static int got_Ping(struct drbd_conf
*mdev
, struct p_header
*h
)
4178 return drbd_send_ping_ack(mdev
);
4182 static int got_PingAck(struct drbd_conf
*mdev
, struct p_header
*h
)
4184 /* restore idle timeout */
4185 mdev
->meta
.socket
->sk
->sk_rcvtimeo
= mdev
->net_conf
->ping_int
*HZ
;
4186 if (!test_and_set_bit(GOT_PING_ACK
, &mdev
->flags
))
4187 wake_up(&mdev
->misc_wait
);
4192 static int got_IsInSync(struct drbd_conf
*mdev
, struct p_header
*h
)
4194 struct p_block_ack
*p
= (struct p_block_ack
*)h
;
4195 sector_t sector
= be64_to_cpu(p
->sector
);
4196 int blksize
= be32_to_cpu(p
->blksize
);
4198 D_ASSERT(mdev
->agreed_pro_version
>= 89);
4200 update_peer_seq(mdev
, be32_to_cpu(p
->seq_num
));
4202 drbd_rs_complete_io(mdev
, sector
);
4203 drbd_set_in_sync(mdev
, sector
, blksize
);
4204 /* rs_same_csums is supposed to count in units of BM_BLOCK_SIZE */
4205 mdev
->rs_same_csum
+= (blksize
>> BM_BLOCK_SHIFT
);
4206 dec_rs_pending(mdev
);
4211 /* when we receive the ACK for a write request,
4212 * verify that we actually know about it */
4213 static struct drbd_request
*_ack_id_to_req(struct drbd_conf
*mdev
,
4214 u64 id
, sector_t sector
)
4216 struct hlist_head
*slot
= tl_hash_slot(mdev
, sector
);
4217 struct hlist_node
*n
;
4218 struct drbd_request
*req
;
4220 hlist_for_each_entry(req
, n
, slot
, colision
) {
4221 if ((unsigned long)req
== (unsigned long)id
) {
4222 if (req
->sector
!= sector
) {
4223 dev_err(DEV
, "_ack_id_to_req: found req %p but it has "
4224 "wrong sector (%llus versus %llus)\n", req
,
4225 (unsigned long long)req
->sector
,
4226 (unsigned long long)sector
);
4232 dev_err(DEV
, "_ack_id_to_req: failed to find req %p, sector %llus in list\n",
4233 (void *)(unsigned long)id
, (unsigned long long)sector
);
4237 typedef struct drbd_request
*(req_validator_fn
)
4238 (struct drbd_conf
*mdev
, u64 id
, sector_t sector
);
4240 static int validate_req_change_req_state(struct drbd_conf
*mdev
,
4241 u64 id
, sector_t sector
, req_validator_fn validator
,
4242 const char *func
, enum drbd_req_event what
)
4244 struct drbd_request
*req
;
4245 struct bio_and_error m
;
4247 spin_lock_irq(&mdev
->req_lock
);
4248 req
= validator(mdev
, id
, sector
);
4249 if (unlikely(!req
)) {
4250 spin_unlock_irq(&mdev
->req_lock
);
4251 dev_err(DEV
, "%s: got a corrupt block_id/sector pair\n", func
);
4254 __req_mod(req
, what
, &m
);
4255 spin_unlock_irq(&mdev
->req_lock
);
4258 complete_master_bio(mdev
, &m
);
4262 static int got_BlockAck(struct drbd_conf
*mdev
, struct p_header
*h
)
4264 struct p_block_ack
*p
= (struct p_block_ack
*)h
;
4265 sector_t sector
= be64_to_cpu(p
->sector
);
4266 int blksize
= be32_to_cpu(p
->blksize
);
4267 enum drbd_req_event what
;
4269 update_peer_seq(mdev
, be32_to_cpu(p
->seq_num
));
4271 if (is_syncer_block_id(p
->block_id
)) {
4272 drbd_set_in_sync(mdev
, sector
, blksize
);
4273 dec_rs_pending(mdev
);
4276 switch (be16_to_cpu(h
->command
)) {
4277 case P_RS_WRITE_ACK
:
4278 D_ASSERT(mdev
->net_conf
->wire_protocol
== DRBD_PROT_C
);
4279 what
= write_acked_by_peer_and_sis
;
4282 D_ASSERT(mdev
->net_conf
->wire_protocol
== DRBD_PROT_C
);
4283 what
= write_acked_by_peer
;
4286 D_ASSERT(mdev
->net_conf
->wire_protocol
== DRBD_PROT_B
);
4287 what
= recv_acked_by_peer
;
4290 D_ASSERT(mdev
->net_conf
->wire_protocol
== DRBD_PROT_C
);
4291 what
= conflict_discarded_by_peer
;
4298 return validate_req_change_req_state(mdev
, p
->block_id
, sector
,
4299 _ack_id_to_req
, __func__
, what
);
4302 static int got_NegAck(struct drbd_conf
*mdev
, struct p_header
*h
)
4304 struct p_block_ack
*p
= (struct p_block_ack
*)h
;
4305 sector_t sector
= be64_to_cpu(p
->sector
);
4307 if (__ratelimit(&drbd_ratelimit_state
))
4308 dev_warn(DEV
, "Got NegAck packet. Peer is in troubles?\n");
4310 update_peer_seq(mdev
, be32_to_cpu(p
->seq_num
));
4312 if (is_syncer_block_id(p
->block_id
)) {
4313 int size
= be32_to_cpu(p
->blksize
);
4314 dec_rs_pending(mdev
);
4315 drbd_rs_failed_io(mdev
, sector
, size
);
4318 return validate_req_change_req_state(mdev
, p
->block_id
, sector
,
4319 _ack_id_to_req
, __func__
, neg_acked
);
4322 static int got_NegDReply(struct drbd_conf
*mdev
, struct p_header
*h
)
4324 struct p_block_ack
*p
= (struct p_block_ack
*)h
;
4325 sector_t sector
= be64_to_cpu(p
->sector
);
4327 update_peer_seq(mdev
, be32_to_cpu(p
->seq_num
));
4328 dev_err(DEV
, "Got NegDReply; Sector %llus, len %u; Fail original request.\n",
4329 (unsigned long long)sector
, be32_to_cpu(p
->blksize
));
4331 return validate_req_change_req_state(mdev
, p
->block_id
, sector
,
4332 _ar_id_to_req
, __func__
, neg_acked
);
4335 static int got_NegRSDReply(struct drbd_conf
*mdev
, struct p_header
*h
)
4339 struct p_block_ack
*p
= (struct p_block_ack
*)h
;
4341 sector
= be64_to_cpu(p
->sector
);
4342 size
= be32_to_cpu(p
->blksize
);
4344 update_peer_seq(mdev
, be32_to_cpu(p
->seq_num
));
4346 dec_rs_pending(mdev
);
4348 if (get_ldev_if_state(mdev
, D_FAILED
)) {
4349 drbd_rs_complete_io(mdev
, sector
);
4350 drbd_rs_failed_io(mdev
, sector
, size
);
4357 static int got_BarrierAck(struct drbd_conf
*mdev
, struct p_header
*h
)
4359 struct p_barrier_ack
*p
= (struct p_barrier_ack
*)h
;
4361 tl_release(mdev
, p
->barrier
, be32_to_cpu(p
->set_size
));
4366 static int got_OVResult(struct drbd_conf
*mdev
, struct p_header
*h
)
4368 struct p_block_ack
*p
= (struct p_block_ack
*)h
;
4369 struct drbd_work
*w
;
4373 sector
= be64_to_cpu(p
->sector
);
4374 size
= be32_to_cpu(p
->blksize
);
4376 update_peer_seq(mdev
, be32_to_cpu(p
->seq_num
));
4378 if (be64_to_cpu(p
->block_id
) == ID_OUT_OF_SYNC
)
4379 drbd_ov_oos_found(mdev
, sector
, size
);
4383 drbd_rs_complete_io(mdev
, sector
);
4384 dec_rs_pending(mdev
);
4386 if (--mdev
->ov_left
== 0) {
4387 w
= kmalloc(sizeof(*w
), GFP_NOIO
);
4389 w
->cb
= w_ov_finished
;
4390 drbd_queue_work_front(&mdev
->data
.work
, w
);
4392 dev_err(DEV
, "kmalloc(w) failed.");
4394 drbd_resync_finished(mdev
);
4400 static int got_something_to_ignore_m(struct drbd_conf
*mdev
, struct p_header
*h
)
4406 struct asender_cmd
{
4408 int (*process
)(struct drbd_conf
*mdev
, struct p_header
*h
);
4411 static struct asender_cmd
*get_asender_cmd(int cmd
)
4413 static struct asender_cmd asender_tbl
[] = {
4414 /* anything missing from this table is in
4415 * the drbd_cmd_handler (drbd_default_handler) table,
4416 * see the beginning of drbdd() */
4417 [P_PING
] = { sizeof(struct p_header
), got_Ping
},
4418 [P_PING_ACK
] = { sizeof(struct p_header
), got_PingAck
},
4419 [P_RECV_ACK
] = { sizeof(struct p_block_ack
), got_BlockAck
},
4420 [P_WRITE_ACK
] = { sizeof(struct p_block_ack
), got_BlockAck
},
4421 [P_RS_WRITE_ACK
] = { sizeof(struct p_block_ack
), got_BlockAck
},
4422 [P_DISCARD_ACK
] = { sizeof(struct p_block_ack
), got_BlockAck
},
4423 [P_NEG_ACK
] = { sizeof(struct p_block_ack
), got_NegAck
},
4424 [P_NEG_DREPLY
] = { sizeof(struct p_block_ack
), got_NegDReply
},
4425 [P_NEG_RS_DREPLY
] = { sizeof(struct p_block_ack
), got_NegRSDReply
},
4426 [P_OV_RESULT
] = { sizeof(struct p_block_ack
), got_OVResult
},
4427 [P_BARRIER_ACK
] = { sizeof(struct p_barrier_ack
), got_BarrierAck
},
4428 [P_STATE_CHG_REPLY
] = { sizeof(struct p_req_state_reply
), got_RqSReply
},
4429 [P_RS_IS_IN_SYNC
] = { sizeof(struct p_block_ack
), got_IsInSync
},
4430 [P_DELAY_PROBE
] = { sizeof(struct p_delay_probe
), got_something_to_ignore_m
},
4431 [P_MAX_CMD
] = { 0, NULL
},
4433 if (cmd
> P_MAX_CMD
|| asender_tbl
[cmd
].process
== NULL
)
4435 return &asender_tbl
[cmd
];
4438 int drbd_asender(struct drbd_thread
*thi
)
4440 struct drbd_conf
*mdev
= thi
->mdev
;
4441 struct p_header
*h
= &mdev
->meta
.rbuf
.header
;
4442 struct asender_cmd
*cmd
= NULL
;
4447 int expect
= sizeof(struct p_header
);
4450 sprintf(current
->comm
, "drbd%d_asender", mdev_to_minor(mdev
));
4452 current
->policy
= SCHED_RR
; /* Make this a realtime task! */
4453 current
->rt_priority
= 2; /* more important than all other tasks */
4455 while (get_t_state(thi
) == Running
) {
4456 drbd_thread_current_set_cpu(mdev
);
4457 if (test_and_clear_bit(SEND_PING
, &mdev
->flags
)) {
4458 ERR_IF(!drbd_send_ping(mdev
)) goto reconnect
;
4459 mdev
->meta
.socket
->sk
->sk_rcvtimeo
=
4460 mdev
->net_conf
->ping_timeo
*HZ
/10;
4463 /* conditionally cork;
4464 * it may hurt latency if we cork without much to send */
4465 if (!mdev
->net_conf
->no_cork
&&
4466 3 < atomic_read(&mdev
->unacked_cnt
))
4467 drbd_tcp_cork(mdev
->meta
.socket
);
4469 clear_bit(SIGNAL_ASENDER
, &mdev
->flags
);
4470 flush_signals(current
);
4471 if (!drbd_process_done_ee(mdev
)) {
4472 dev_err(DEV
, "process_done_ee() = NOT_OK\n");
4475 /* to avoid race with newly queued ACKs */
4476 set_bit(SIGNAL_ASENDER
, &mdev
->flags
);
4477 spin_lock_irq(&mdev
->req_lock
);
4478 empty
= list_empty(&mdev
->done_ee
);
4479 spin_unlock_irq(&mdev
->req_lock
);
4480 /* new ack may have been queued right here,
4481 * but then there is also a signal pending,
4482 * and we start over... */
4486 /* but unconditionally uncork unless disabled */
4487 if (!mdev
->net_conf
->no_cork
)
4488 drbd_tcp_uncork(mdev
->meta
.socket
);
4490 /* short circuit, recv_msg would return EINTR anyways. */
4491 if (signal_pending(current
))
4494 rv
= drbd_recv_short(mdev
, mdev
->meta
.socket
,
4495 buf
, expect
-received
, 0);
4496 clear_bit(SIGNAL_ASENDER
, &mdev
->flags
);
4498 flush_signals(current
);
4501 * -EINTR (on meta) we got a signal
4502 * -EAGAIN (on meta) rcvtimeo expired
4503 * -ECONNRESET other side closed the connection
4504 * -ERESTARTSYS (on data) we got a signal
4505 * rv < 0 other than above: unexpected error!
4506 * rv == expected: full header or command
4507 * rv < expected: "woken" by signal during receive
4508 * rv == 0 : "connection shut down by peer"
4510 if (likely(rv
> 0)) {
4513 } else if (rv
== 0) {
4514 dev_err(DEV
, "meta connection shut down by peer.\n");
4516 } else if (rv
== -EAGAIN
) {
4517 if (mdev
->meta
.socket
->sk
->sk_rcvtimeo
==
4518 mdev
->net_conf
->ping_timeo
*HZ
/10) {
4519 dev_err(DEV
, "PingAck did not arrive in time.\n");
4522 set_bit(SEND_PING
, &mdev
->flags
);
4524 } else if (rv
== -EINTR
) {
4527 dev_err(DEV
, "sock_recvmsg returned %d\n", rv
);
4531 if (received
== expect
&& cmd
== NULL
) {
4532 if (unlikely(h
->magic
!= BE_DRBD_MAGIC
)) {
4533 dev_err(DEV
, "magic?? on meta m: 0x%lx c: %d l: %d\n",
4534 (long)be32_to_cpu(h
->magic
),
4535 h
->command
, h
->length
);
4538 cmd
= get_asender_cmd(be16_to_cpu(h
->command
));
4539 len
= be16_to_cpu(h
->length
);
4540 if (unlikely(cmd
== NULL
)) {
4541 dev_err(DEV
, "unknown command?? on meta m: 0x%lx c: %d l: %d\n",
4542 (long)be32_to_cpu(h
->magic
),
4543 h
->command
, h
->length
);
4546 expect
= cmd
->pkt_size
;
4547 ERR_IF(len
!= expect
-sizeof(struct p_header
))
4550 if (received
== expect
) {
4551 D_ASSERT(cmd
!= NULL
);
4552 if (!cmd
->process(mdev
, h
))
4557 expect
= sizeof(struct p_header
);
4564 drbd_force_state(mdev
, NS(conn
, C_NETWORK_FAILURE
));
4568 drbd_force_state(mdev
, NS(conn
, C_DISCONNECTING
));
4570 clear_bit(SIGNAL_ASENDER
, &mdev
->flags
);
4572 D_ASSERT(mdev
->state
.conn
< C_CONNECTED
);
4573 dev_info(DEV
, "asender terminated\n");