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>
46 #include <linux/string.h>
47 #include <linux/scatterlist.h>
55 struct drbd_epoch *epoch;
64 static int drbd_do_handshake(struct drbd_conf *mdev);
65 static int drbd_do_auth(struct drbd_conf *mdev);
67 static enum finish_epoch drbd_may_finish_epoch(struct drbd_conf *, struct drbd_epoch *, enum epoch_event);
68 static int e_end_block(struct drbd_conf *, struct drbd_work *, int);
70 static struct drbd_epoch *previous_epoch(struct drbd_conf *mdev, struct drbd_epoch *epoch)
72 struct drbd_epoch *prev;
73 spin_lock(&mdev->epoch_lock);
74 prev = list_entry(epoch->list.prev, struct drbd_epoch, list);
75 if (prev == epoch || prev == mdev->current_epoch)
77 spin_unlock(&mdev->epoch_lock);
81 #define GFP_TRY (__GFP_HIGHMEM | __GFP_NOWARN)
83 static struct page *drbd_pp_first_page_or_try_alloc(struct drbd_conf *mdev)
85 struct page *page = NULL;
87 /* Yes, testing drbd_pp_vacant outside the lock is racy.
88 * So what. It saves a spin_lock. */
89 if (drbd_pp_vacant > 0) {
90 spin_lock(&drbd_pp_lock);
93 drbd_pp_pool = (struct page *)page_private(page);
94 set_page_private(page, 0); /* just to be polite */
97 spin_unlock(&drbd_pp_lock);
99 /* GFP_TRY, because we must not cause arbitrary write-out: in a DRBD
100 * "criss-cross" setup, that might cause write-out on some other DRBD,
101 * which in turn might block on the other node at this very place. */
103 page = alloc_page(GFP_TRY);
105 atomic_inc(&mdev->pp_in_use);
109 /* kick lower level device, if we have more than (arbitrary number)
110 * reference counts on it, which typically are locally submitted io
111 * requests. don't use unacked_cnt, so we speed up proto A and B, too. */
112 static void maybe_kick_lo(struct drbd_conf *mdev)
114 if (atomic_read(&mdev->local_cnt) >= mdev->net_conf->unplug_watermark)
118 static void reclaim_net_ee(struct drbd_conf *mdev, struct list_head *to_be_freed)
120 struct drbd_epoch_entry *e;
121 struct list_head *le, *tle;
123 /* The EEs are always appended to the end of the list. Since
124 they are sent in order over the wire, they have to finish
125 in order. As soon as we see the first not finished we can
126 stop to examine the list... */
128 list_for_each_safe(le, tle, &mdev->net_ee) {
129 e = list_entry(le, struct drbd_epoch_entry, w.list);
130 if (drbd_bio_has_active_page(e->private_bio))
132 list_move(le, to_be_freed);
136 static void drbd_kick_lo_and_reclaim_net(struct drbd_conf *mdev)
138 LIST_HEAD(reclaimed);
139 struct drbd_epoch_entry *e, *t;
142 spin_lock_irq(&mdev->req_lock);
143 reclaim_net_ee(mdev, &reclaimed);
144 spin_unlock_irq(&mdev->req_lock);
146 list_for_each_entry_safe(e, t, &reclaimed, w.list)
147 drbd_free_ee(mdev, e);
151 * drbd_pp_alloc() - Returns a page, fails only if a signal comes in
152 * @mdev: DRBD device.
153 * @retry: whether or not to retry allocation forever (or until signalled)
155 * Tries to allocate a page, first from our own page pool, then from the
156 * kernel, unless this allocation would exceed the max_buffers setting.
157 * If @retry is non-zero, retry until DRBD frees a page somewhere else.
159 static struct page *drbd_pp_alloc(struct drbd_conf *mdev, int retry)
161 struct page *page = NULL;
164 if (atomic_read(&mdev->pp_in_use) < mdev->net_conf->max_buffers) {
165 page = drbd_pp_first_page_or_try_alloc(mdev);
171 prepare_to_wait(&drbd_pp_wait, &wait, TASK_INTERRUPTIBLE);
173 drbd_kick_lo_and_reclaim_net(mdev);
175 if (atomic_read(&mdev->pp_in_use) < mdev->net_conf->max_buffers) {
176 page = drbd_pp_first_page_or_try_alloc(mdev);
184 if (signal_pending(current)) {
185 dev_warn(DEV, "drbd_pp_alloc interrupted!\n");
191 finish_wait(&drbd_pp_wait, &wait);
196 /* Must not be used from irq, as that may deadlock: see drbd_pp_alloc.
197 * Is also used from inside an other spin_lock_irq(&mdev->req_lock) */
198 static void drbd_pp_free(struct drbd_conf *mdev, struct page *page)
202 spin_lock(&drbd_pp_lock);
203 if (drbd_pp_vacant > (DRBD_MAX_SEGMENT_SIZE/PAGE_SIZE)*minor_count) {
206 set_page_private(page, (unsigned long)drbd_pp_pool);
211 spin_unlock(&drbd_pp_lock);
213 atomic_dec(&mdev->pp_in_use);
218 wake_up(&drbd_pp_wait);
221 static void drbd_pp_free_bio_pages(struct drbd_conf *mdev, struct bio *bio)
223 struct page *p_to_be_freed = NULL;
225 struct bio_vec *bvec;
228 spin_lock(&drbd_pp_lock);
229 __bio_for_each_segment(bvec, bio, i, 0) {
230 if (drbd_pp_vacant > (DRBD_MAX_SEGMENT_SIZE/PAGE_SIZE)*minor_count) {
231 set_page_private(bvec->bv_page, (unsigned long)p_to_be_freed);
232 p_to_be_freed = bvec->bv_page;
234 set_page_private(bvec->bv_page, (unsigned long)drbd_pp_pool);
235 drbd_pp_pool = bvec->bv_page;
239 spin_unlock(&drbd_pp_lock);
240 atomic_sub(bio->bi_vcnt, &mdev->pp_in_use);
242 while (p_to_be_freed) {
243 page = p_to_be_freed;
244 p_to_be_freed = (struct page *)page_private(page);
245 set_page_private(page, 0); /* just to be polite */
249 wake_up(&drbd_pp_wait);
253 You need to hold the req_lock:
254 _drbd_wait_ee_list_empty()
256 You must not have the req_lock:
262 drbd_process_done_ee()
264 drbd_wait_ee_list_empty()
267 struct drbd_epoch_entry *drbd_alloc_ee(struct drbd_conf *mdev,
270 unsigned int data_size,
271 gfp_t gfp_mask) __must_hold(local)
273 struct request_queue *q;
274 struct drbd_epoch_entry *e;
279 if (FAULT_ACTIVE(mdev, DRBD_FAULT_AL_EE))
282 e = mempool_alloc(drbd_ee_mempool, gfp_mask & ~__GFP_HIGHMEM);
284 if (!(gfp_mask & __GFP_NOWARN))
285 dev_err(DEV, "alloc_ee: Allocation of an EE failed\n");
289 bio = bio_alloc(gfp_mask & ~__GFP_HIGHMEM, div_ceil(data_size, PAGE_SIZE));
291 if (!(gfp_mask & __GFP_NOWARN))
292 dev_err(DEV, "alloc_ee: Allocation of a bio failed\n");
296 bio->bi_bdev = mdev->ldev->backing_bdev;
297 bio->bi_sector = sector;
301 page = drbd_pp_alloc(mdev, (gfp_mask & __GFP_WAIT));
303 if (!(gfp_mask & __GFP_NOWARN))
304 dev_err(DEV, "alloc_ee: Allocation of a page failed\n");
307 if (!bio_add_page(bio, page, min_t(int, ds, PAGE_SIZE), 0)) {
308 drbd_pp_free(mdev, page);
309 dev_err(DEV, "alloc_ee: bio_add_page(s=%llu,"
310 "data_size=%u,ds=%u) failed\n",
311 (unsigned long long)sector, data_size, ds);
313 q = bdev_get_queue(bio->bi_bdev);
314 if (q->merge_bvec_fn) {
315 struct bvec_merge_data bvm = {
316 .bi_bdev = bio->bi_bdev,
317 .bi_sector = bio->bi_sector,
318 .bi_size = bio->bi_size,
321 int l = q->merge_bvec_fn(q, &bvm,
322 &bio->bi_io_vec[bio->bi_vcnt]);
323 dev_err(DEV, "merge_bvec_fn() = %d\n", l);
326 /* dump more of the bio. */
327 dev_err(DEV, "bio->bi_max_vecs = %d\n", bio->bi_max_vecs);
328 dev_err(DEV, "bio->bi_vcnt = %d\n", bio->bi_vcnt);
329 dev_err(DEV, "bio->bi_size = %d\n", bio->bi_size);
330 dev_err(DEV, "bio->bi_phys_segments = %d\n", bio->bi_phys_segments);
335 ds -= min_t(int, ds, PAGE_SIZE);
338 D_ASSERT(data_size == bio->bi_size);
343 e->size = bio->bi_size;
345 e->private_bio = bio;
347 INIT_HLIST_NODE(&e->colision);
354 drbd_pp_free_bio_pages(mdev, bio);
357 mempool_free(e, drbd_ee_mempool);
362 void drbd_free_ee(struct drbd_conf *mdev, struct drbd_epoch_entry *e)
364 struct bio *bio = e->private_bio;
365 drbd_pp_free_bio_pages(mdev, bio);
367 D_ASSERT(hlist_unhashed(&e->colision));
368 mempool_free(e, drbd_ee_mempool);
371 int drbd_release_ee(struct drbd_conf *mdev, struct list_head *list)
373 LIST_HEAD(work_list);
374 struct drbd_epoch_entry *e, *t;
377 spin_lock_irq(&mdev->req_lock);
378 list_splice_init(list, &work_list);
379 spin_unlock_irq(&mdev->req_lock);
381 list_for_each_entry_safe(e, t, &work_list, w.list) {
382 drbd_free_ee(mdev, e);
390 * This function is called from _asender only_
391 * but see also comments in _req_mod(,barrier_acked)
392 * and receive_Barrier.
394 * Move entries from net_ee to done_ee, if ready.
395 * Grab done_ee, call all callbacks, free the entries.
396 * The callbacks typically send out ACKs.
398 static int drbd_process_done_ee(struct drbd_conf *mdev)
400 LIST_HEAD(work_list);
401 LIST_HEAD(reclaimed);
402 struct drbd_epoch_entry *e, *t;
403 int ok = (mdev->state.conn >= C_WF_REPORT_PARAMS);
405 spin_lock_irq(&mdev->req_lock);
406 reclaim_net_ee(mdev, &reclaimed);
407 list_splice_init(&mdev->done_ee, &work_list);
408 spin_unlock_irq(&mdev->req_lock);
410 list_for_each_entry_safe(e, t, &reclaimed, w.list)
411 drbd_free_ee(mdev, e);
413 /* possible callbacks here:
414 * e_end_block, and e_end_resync_block, e_send_discard_ack.
415 * all ignore the last argument.
417 list_for_each_entry_safe(e, t, &work_list, w.list) {
418 /* list_del not necessary, next/prev members not touched */
419 ok = e->w.cb(mdev, &e->w, !ok) && ok;
420 drbd_free_ee(mdev, e);
422 wake_up(&mdev->ee_wait);
427 void _drbd_wait_ee_list_empty(struct drbd_conf *mdev, struct list_head *head)
431 /* avoids spin_lock/unlock
432 * and calling prepare_to_wait in the fast path */
433 while (!list_empty(head)) {
434 prepare_to_wait(&mdev->ee_wait, &wait, TASK_UNINTERRUPTIBLE);
435 spin_unlock_irq(&mdev->req_lock);
438 finish_wait(&mdev->ee_wait, &wait);
439 spin_lock_irq(&mdev->req_lock);
443 void drbd_wait_ee_list_empty(struct drbd_conf *mdev, struct list_head *head)
445 spin_lock_irq(&mdev->req_lock);
446 _drbd_wait_ee_list_empty(mdev, head);
447 spin_unlock_irq(&mdev->req_lock);
450 /* see also kernel_accept; which is only present since 2.6.18.
451 * also we want to log which part of it failed, exactly */
452 static int drbd_accept(struct drbd_conf *mdev, const char **what,
453 struct socket *sock, struct socket **newsock)
455 struct sock *sk = sock->sk;
459 err = sock->ops->listen(sock, 5);
463 *what = "sock_create_lite";
464 err = sock_create_lite(sk->sk_family, sk->sk_type, sk->sk_protocol,
470 err = sock->ops->accept(sock, *newsock, 0);
472 sock_release(*newsock);
476 (*newsock)->ops = sock->ops;
482 static int drbd_recv_short(struct drbd_conf *mdev, struct socket *sock,
483 void *buf, size_t size, int flags)
490 struct msghdr msg = {
492 .msg_iov = (struct iovec *)&iov,
493 .msg_flags = (flags ? flags : MSG_WAITALL | MSG_NOSIGNAL)
499 rv = sock_recvmsg(sock, &msg, size, msg.msg_flags);
505 static int drbd_recv(struct drbd_conf *mdev, void *buf, size_t size)
512 struct msghdr msg = {
514 .msg_iov = (struct iovec *)&iov,
515 .msg_flags = MSG_WAITALL | MSG_NOSIGNAL
523 rv = sock_recvmsg(mdev->data.socket, &msg, size, msg.msg_flags);
528 * ECONNRESET other side closed the connection
529 * ERESTARTSYS (on sock) we got a signal
533 if (rv == -ECONNRESET)
534 dev_info(DEV, "sock was reset by peer\n");
535 else if (rv != -ERESTARTSYS)
536 dev_err(DEV, "sock_recvmsg returned %d\n", rv);
538 } else if (rv == 0) {
539 dev_info(DEV, "sock was shut down by peer\n");
542 /* signal came in, or peer/link went down,
543 * after we read a partial message
545 /* D_ASSERT(signal_pending(current)); */
553 drbd_force_state(mdev, NS(conn, C_BROKEN_PIPE));
558 static struct socket *drbd_try_connect(struct drbd_conf *mdev)
562 struct sockaddr_in6 src_in6;
564 int disconnect_on_error = 1;
566 if (!get_net_conf(mdev))
569 what = "sock_create_kern";
570 err = sock_create_kern(((struct sockaddr *)mdev->net_conf->my_addr)->sa_family,
571 SOCK_STREAM, IPPROTO_TCP, &sock);
577 sock->sk->sk_rcvtimeo =
578 sock->sk->sk_sndtimeo = mdev->net_conf->try_connect_int*HZ;
580 /* explicitly bind to the configured IP as source IP
581 * for the outgoing connections.
582 * This is needed for multihomed hosts and to be
583 * able to use lo: interfaces for drbd.
584 * Make sure to use 0 as port number, so linux selects
585 * a free one dynamically.
587 memcpy(&src_in6, mdev->net_conf->my_addr,
588 min_t(int, mdev->net_conf->my_addr_len, sizeof(src_in6)));
589 if (((struct sockaddr *)mdev->net_conf->my_addr)->sa_family == AF_INET6)
590 src_in6.sin6_port = 0;
592 ((struct sockaddr_in *)&src_in6)->sin_port = 0; /* AF_INET & AF_SCI */
594 what = "bind before connect";
595 err = sock->ops->bind(sock,
596 (struct sockaddr *) &src_in6,
597 mdev->net_conf->my_addr_len);
601 /* connect may fail, peer not yet available.
602 * stay C_WF_CONNECTION, don't go Disconnecting! */
603 disconnect_on_error = 0;
605 err = sock->ops->connect(sock,
606 (struct sockaddr *)mdev->net_conf->peer_addr,
607 mdev->net_conf->peer_addr_len, 0);
616 /* timeout, busy, signal pending */
617 case ETIMEDOUT: case EAGAIN: case EINPROGRESS:
618 case EINTR: case ERESTARTSYS:
619 /* peer not (yet) available, network problem */
620 case ECONNREFUSED: case ENETUNREACH:
621 case EHOSTDOWN: case EHOSTUNREACH:
622 disconnect_on_error = 0;
625 dev_err(DEV, "%s failed, err = %d\n", what, err);
627 if (disconnect_on_error)
628 drbd_force_state(mdev, NS(conn, C_DISCONNECTING));
634 static struct socket *drbd_wait_for_connect(struct drbd_conf *mdev)
637 struct socket *s_estab = NULL, *s_listen;
640 if (!get_net_conf(mdev))
643 what = "sock_create_kern";
644 err = sock_create_kern(((struct sockaddr *)mdev->net_conf->my_addr)->sa_family,
645 SOCK_STREAM, IPPROTO_TCP, &s_listen);
651 timeo = mdev->net_conf->try_connect_int * HZ;
652 timeo += (random32() & 1) ? timeo / 7 : -timeo / 7; /* 28.5% random jitter */
654 s_listen->sk->sk_reuse = 1; /* SO_REUSEADDR */
655 s_listen->sk->sk_rcvtimeo = timeo;
656 s_listen->sk->sk_sndtimeo = timeo;
658 what = "bind before listen";
659 err = s_listen->ops->bind(s_listen,
660 (struct sockaddr *) mdev->net_conf->my_addr,
661 mdev->net_conf->my_addr_len);
665 err = drbd_accept(mdev, &what, s_listen, &s_estab);
669 sock_release(s_listen);
671 if (err != -EAGAIN && err != -EINTR && err != -ERESTARTSYS) {
672 dev_err(DEV, "%s failed, err = %d\n", what, err);
673 drbd_force_state(mdev, NS(conn, C_DISCONNECTING));
681 static int drbd_send_fp(struct drbd_conf *mdev,
682 struct socket *sock, enum drbd_packets cmd)
684 struct p_header *h = (struct p_header *) &mdev->data.sbuf.header;
686 return _drbd_send_cmd(mdev, sock, cmd, h, sizeof(*h), 0);
689 static enum drbd_packets drbd_recv_fp(struct drbd_conf *mdev, struct socket *sock)
691 struct p_header *h = (struct p_header *) &mdev->data.sbuf.header;
694 rr = drbd_recv_short(mdev, sock, h, sizeof(*h), 0);
696 if (rr == sizeof(*h) && h->magic == BE_DRBD_MAGIC)
697 return be16_to_cpu(h->command);
703 * drbd_socket_okay() - Free the socket if its connection is not okay
704 * @mdev: DRBD device.
705 * @sock: pointer to the pointer to the socket.
707 static int drbd_socket_okay(struct drbd_conf *mdev, struct socket **sock)
715 rr = drbd_recv_short(mdev, *sock, tb, 4, MSG_DONTWAIT | MSG_PEEK);
717 if (rr > 0 || rr == -EAGAIN) {
728 * 1 yes, we have a valid connection
729 * 0 oops, did not work out, please try again
730 * -1 peer talks different language,
731 * no point in trying again, please go standalone.
732 * -2 We do not have a network config...
734 static int drbd_connect(struct drbd_conf *mdev)
736 struct socket *s, *sock, *msock;
739 D_ASSERT(!mdev->data.socket);
741 if (test_and_clear_bit(CREATE_BARRIER, &mdev->flags))
742 dev_err(DEV, "CREATE_BARRIER flag was set in drbd_connect - now cleared!\n");
744 if (drbd_request_state(mdev, NS(conn, C_WF_CONNECTION)) < SS_SUCCESS)
747 clear_bit(DISCARD_CONCURRENT, &mdev->flags);
754 /* 3 tries, this should take less than a second! */
755 s = drbd_try_connect(mdev);
758 /* give the other side time to call bind() & listen() */
759 __set_current_state(TASK_INTERRUPTIBLE);
760 schedule_timeout(HZ / 10);
765 drbd_send_fp(mdev, s, P_HAND_SHAKE_S);
769 drbd_send_fp(mdev, s, P_HAND_SHAKE_M);
773 dev_err(DEV, "Logic error in drbd_connect()\n");
774 goto out_release_sockets;
779 __set_current_state(TASK_INTERRUPTIBLE);
780 schedule_timeout(HZ / 10);
781 ok = drbd_socket_okay(mdev, &sock);
782 ok = drbd_socket_okay(mdev, &msock) && ok;
788 s = drbd_wait_for_connect(mdev);
790 try = drbd_recv_fp(mdev, s);
791 drbd_socket_okay(mdev, &sock);
792 drbd_socket_okay(mdev, &msock);
796 dev_warn(DEV, "initial packet S crossed\n");
803 dev_warn(DEV, "initial packet M crossed\n");
807 set_bit(DISCARD_CONCURRENT, &mdev->flags);
810 dev_warn(DEV, "Error receiving initial packet\n");
817 if (mdev->state.conn <= C_DISCONNECTING)
818 goto out_release_sockets;
819 if (signal_pending(current)) {
820 flush_signals(current);
822 if (get_t_state(&mdev->receiver) == Exiting)
823 goto out_release_sockets;
827 ok = drbd_socket_okay(mdev, &sock);
828 ok = drbd_socket_okay(mdev, &msock) && ok;
834 msock->sk->sk_reuse = 1; /* SO_REUSEADDR */
835 sock->sk->sk_reuse = 1; /* SO_REUSEADDR */
837 sock->sk->sk_allocation = GFP_NOIO;
838 msock->sk->sk_allocation = GFP_NOIO;
840 sock->sk->sk_priority = TC_PRIO_INTERACTIVE_BULK;
841 msock->sk->sk_priority = TC_PRIO_INTERACTIVE;
843 if (mdev->net_conf->sndbuf_size) {
844 sock->sk->sk_sndbuf = mdev->net_conf->sndbuf_size;
845 sock->sk->sk_userlocks |= SOCK_SNDBUF_LOCK;
848 if (mdev->net_conf->rcvbuf_size) {
849 sock->sk->sk_rcvbuf = mdev->net_conf->rcvbuf_size;
850 sock->sk->sk_userlocks |= SOCK_RCVBUF_LOCK;
854 * sock->sk->sk_sndtimeo = mdev->net_conf->timeout*HZ/10;
855 * sock->sk->sk_rcvtimeo = MAX_SCHEDULE_TIMEOUT;
856 * first set it to the P_HAND_SHAKE timeout,
857 * which we set to 4x the configured ping_timeout. */
858 sock->sk->sk_sndtimeo =
859 sock->sk->sk_rcvtimeo = mdev->net_conf->ping_timeo*4*HZ/10;
861 msock->sk->sk_sndtimeo = mdev->net_conf->timeout*HZ/10;
862 msock->sk->sk_rcvtimeo = mdev->net_conf->ping_int*HZ;
864 /* we don't want delays.
865 * we use TCP_CORK where apropriate, though */
866 drbd_tcp_nodelay(sock);
867 drbd_tcp_nodelay(msock);
869 mdev->data.socket = sock;
870 mdev->meta.socket = msock;
871 mdev->last_received = jiffies;
873 D_ASSERT(mdev->asender.task == NULL);
875 h = drbd_do_handshake(mdev);
879 if (mdev->cram_hmac_tfm) {
880 /* drbd_request_state(mdev, NS(conn, WFAuth)); */
881 switch (drbd_do_auth(mdev)) {
883 dev_err(DEV, "Authentication of peer failed\n");
886 dev_err(DEV, "Authentication of peer failed, trying again.\n");
891 if (drbd_request_state(mdev, NS(conn, C_WF_REPORT_PARAMS)) < SS_SUCCESS)
894 sock->sk->sk_sndtimeo = mdev->net_conf->timeout*HZ/10;
895 sock->sk->sk_rcvtimeo = MAX_SCHEDULE_TIMEOUT;
897 atomic_set(&mdev->packet_seq, 0);
900 drbd_thread_start(&mdev->asender);
902 if (!drbd_send_protocol(mdev))
904 drbd_send_sync_param(mdev, &mdev->sync_conf);
905 drbd_send_sizes(mdev, 0);
906 drbd_send_uuids(mdev);
907 drbd_send_state(mdev);
908 clear_bit(USE_DEGR_WFC_T, &mdev->flags);
909 clear_bit(RESIZE_PENDING, &mdev->flags);
921 static int drbd_recv_header(struct drbd_conf *mdev, struct p_header *h)
925 r = drbd_recv(mdev, h, sizeof(*h));
927 if (unlikely(r != sizeof(*h))) {
928 dev_err(DEV, "short read expecting header on sock: r=%d\n", r);
931 h->command = be16_to_cpu(h->command);
932 h->length = be16_to_cpu(h->length);
933 if (unlikely(h->magic != BE_DRBD_MAGIC)) {
934 dev_err(DEV, "magic?? on data m: 0x%lx c: %d l: %d\n",
935 (long)be32_to_cpu(h->magic),
936 h->command, h->length);
939 mdev->last_received = jiffies;
944 static enum finish_epoch drbd_flush_after_epoch(struct drbd_conf *mdev, struct drbd_epoch *epoch)
948 if (mdev->write_ordering >= WO_bdev_flush && get_ldev(mdev)) {
949 rv = blkdev_issue_flush(mdev->ldev->backing_bdev, NULL);
951 dev_err(DEV, "local disk flush failed with status %d\n", rv);
952 /* would rather check on EOPNOTSUPP, but that is not reliable.
953 * don't try again for ANY return value != 0
954 * if (rv == -EOPNOTSUPP) */
955 drbd_bump_write_ordering(mdev, WO_drain_io);
960 return drbd_may_finish_epoch(mdev, epoch, EV_BARRIER_DONE);
963 static int w_flush(struct drbd_conf *mdev, struct drbd_work *w, int cancel)
965 struct flush_work *fw = (struct flush_work *)w;
966 struct drbd_epoch *epoch = fw->epoch;
970 if (!test_and_set_bit(DE_BARRIER_IN_NEXT_EPOCH_ISSUED, &epoch->flags))
971 drbd_flush_after_epoch(mdev, epoch);
973 drbd_may_finish_epoch(mdev, epoch, EV_PUT |
974 (mdev->state.conn < C_CONNECTED ? EV_CLEANUP : 0));
980 * drbd_may_finish_epoch() - Applies an epoch_event to the epoch's state, eventually finishes it.
981 * @mdev: DRBD device.
982 * @epoch: Epoch object.
985 static enum finish_epoch drbd_may_finish_epoch(struct drbd_conf *mdev,
986 struct drbd_epoch *epoch,
989 int finish, epoch_size;
990 struct drbd_epoch *next_epoch;
991 int schedule_flush = 0;
992 enum finish_epoch rv = FE_STILL_LIVE;
994 spin_lock(&mdev->epoch_lock);
999 epoch_size = atomic_read(&epoch->epoch_size);
1001 switch (ev & ~EV_CLEANUP) {
1003 atomic_dec(&epoch->active);
1005 case EV_GOT_BARRIER_NR:
1006 set_bit(DE_HAVE_BARRIER_NUMBER, &epoch->flags);
1008 /* Special case: If we just switched from WO_bio_barrier to
1009 WO_bdev_flush we should not finish the current epoch */
1010 if (test_bit(DE_CONTAINS_A_BARRIER, &epoch->flags) && epoch_size == 1 &&
1011 mdev->write_ordering != WO_bio_barrier &&
1012 epoch == mdev->current_epoch)
1013 clear_bit(DE_CONTAINS_A_BARRIER, &epoch->flags);
1015 case EV_BARRIER_DONE:
1016 set_bit(DE_BARRIER_IN_NEXT_EPOCH_DONE, &epoch->flags);
1018 case EV_BECAME_LAST:
1023 if (epoch_size != 0 &&
1024 atomic_read(&epoch->active) == 0 &&
1025 test_bit(DE_HAVE_BARRIER_NUMBER, &epoch->flags) &&
1026 epoch->list.prev == &mdev->current_epoch->list &&
1027 !test_bit(DE_IS_FINISHING, &epoch->flags)) {
1028 /* Nearly all conditions are met to finish that epoch... */
1029 if (test_bit(DE_BARRIER_IN_NEXT_EPOCH_DONE, &epoch->flags) ||
1030 mdev->write_ordering == WO_none ||
1031 (epoch_size == 1 && test_bit(DE_CONTAINS_A_BARRIER, &epoch->flags)) ||
1034 set_bit(DE_IS_FINISHING, &epoch->flags);
1035 } else if (!test_bit(DE_BARRIER_IN_NEXT_EPOCH_ISSUED, &epoch->flags) &&
1036 mdev->write_ordering == WO_bio_barrier) {
1037 atomic_inc(&epoch->active);
1042 if (!(ev & EV_CLEANUP)) {
1043 spin_unlock(&mdev->epoch_lock);
1044 drbd_send_b_ack(mdev, epoch->barrier_nr, epoch_size);
1045 spin_lock(&mdev->epoch_lock);
1049 if (mdev->current_epoch != epoch) {
1050 next_epoch = list_entry(epoch->list.next, struct drbd_epoch, list);
1051 list_del(&epoch->list);
1052 ev = EV_BECAME_LAST | (ev & EV_CLEANUP);
1056 if (rv == FE_STILL_LIVE)
1060 atomic_set(&epoch->epoch_size, 0);
1061 /* atomic_set(&epoch->active, 0); is alrady zero */
1062 if (rv == FE_STILL_LIVE)
1073 spin_unlock(&mdev->epoch_lock);
1075 if (schedule_flush) {
1076 struct flush_work *fw;
1077 fw = kmalloc(sizeof(*fw), GFP_ATOMIC);
1081 drbd_queue_work(&mdev->data.work, &fw->w);
1083 dev_warn(DEV, "Could not kmalloc a flush_work obj\n");
1084 set_bit(DE_BARRIER_IN_NEXT_EPOCH_ISSUED, &epoch->flags);
1085 /* That is not a recursion, only one level */
1086 drbd_may_finish_epoch(mdev, epoch, EV_BARRIER_DONE);
1087 drbd_may_finish_epoch(mdev, epoch, EV_PUT);
1095 * drbd_bump_write_ordering() - Fall back to an other write ordering method
1096 * @mdev: DRBD device.
1097 * @wo: Write ordering method to try.
1099 void drbd_bump_write_ordering(struct drbd_conf *mdev, enum write_ordering_e wo) __must_hold(local)
1101 enum write_ordering_e pwo;
1102 static char *write_ordering_str[] = {
1104 [WO_drain_io] = "drain",
1105 [WO_bdev_flush] = "flush",
1106 [WO_bio_barrier] = "barrier",
1109 pwo = mdev->write_ordering;
1111 if (wo == WO_bio_barrier && mdev->ldev->dc.no_disk_barrier)
1113 if (wo == WO_bdev_flush && mdev->ldev->dc.no_disk_flush)
1115 if (wo == WO_drain_io && mdev->ldev->dc.no_disk_drain)
1117 mdev->write_ordering = wo;
1118 if (pwo != mdev->write_ordering || wo == WO_bio_barrier)
1119 dev_info(DEV, "Method to ensure write ordering: %s\n", write_ordering_str[mdev->write_ordering]);
1123 * w_e_reissue() - Worker callback; Resubmit a bio, without BIO_RW_BARRIER set
1124 * @mdev: DRBD device.
1126 * @cancel: The connection will be closed anyways (unused in this callback)
1128 int w_e_reissue(struct drbd_conf *mdev, struct drbd_work *w, int cancel) __releases(local)
1130 struct drbd_epoch_entry *e = (struct drbd_epoch_entry *)w;
1131 struct bio *bio = e->private_bio;
1133 /* We leave DE_CONTAINS_A_BARRIER and EE_IS_BARRIER in place,
1134 (and DE_BARRIER_IN_NEXT_EPOCH_ISSUED in the previous Epoch)
1135 so that we can finish that epoch in drbd_may_finish_epoch().
1136 That is necessary if we already have a long chain of Epochs, before
1137 we realize that BIO_RW_BARRIER is actually not supported */
1139 /* As long as the -ENOTSUPP on the barrier is reported immediately
1140 that will never trigger. If it is reported late, we will just
1141 print that warning and continue correctly for all future requests
1142 with WO_bdev_flush */
1143 if (previous_epoch(mdev, e->epoch))
1144 dev_warn(DEV, "Write ordering was not enforced (one time event)\n");
1146 /* prepare bio for re-submit,
1147 * re-init volatile members */
1148 /* we still have a local reference,
1149 * get_ldev was done in receive_Data. */
1150 bio->bi_bdev = mdev->ldev->backing_bdev;
1151 bio->bi_sector = e->sector;
1152 bio->bi_size = e->size;
1155 bio->bi_flags &= ~(BIO_POOL_MASK - 1);
1156 bio->bi_flags |= 1 << BIO_UPTODATE;
1158 /* don't know whether this is necessary: */
1159 bio->bi_phys_segments = 0;
1160 bio->bi_next = NULL;
1162 /* these should be unchanged: */
1163 /* bio->bi_end_io = drbd_endio_write_sec; */
1164 /* bio->bi_vcnt = whatever; */
1166 e->w.cb = e_end_block;
1168 /* This is no longer a barrier request. */
1169 bio->bi_rw &= ~(1UL << BIO_RW_BARRIER);
1171 drbd_generic_make_request(mdev, DRBD_FAULT_DT_WR, bio);
1176 static int receive_Barrier(struct drbd_conf *mdev, struct p_header *h)
1178 int rv, issue_flush;
1179 struct p_barrier *p = (struct p_barrier *)h;
1180 struct drbd_epoch *epoch;
1182 ERR_IF(h->length != (sizeof(*p)-sizeof(*h))) return FALSE;
1184 rv = drbd_recv(mdev, h->payload, h->length);
1185 ERR_IF(rv != h->length) return FALSE;
1189 if (mdev->net_conf->wire_protocol != DRBD_PROT_C)
1192 mdev->current_epoch->barrier_nr = p->barrier;
1193 rv = drbd_may_finish_epoch(mdev, mdev->current_epoch, EV_GOT_BARRIER_NR);
1195 /* P_BARRIER_ACK may imply that the corresponding extent is dropped from
1196 * the activity log, which means it would not be resynced in case the
1197 * R_PRIMARY crashes now.
1198 * Therefore we must send the barrier_ack after the barrier request was
1200 switch (mdev->write_ordering) {
1201 case WO_bio_barrier:
1203 if (rv == FE_RECYCLED)
1209 if (rv == FE_STILL_LIVE) {
1210 set_bit(DE_BARRIER_IN_NEXT_EPOCH_ISSUED, &mdev->current_epoch->flags);
1211 drbd_wait_ee_list_empty(mdev, &mdev->active_ee);
1212 rv = drbd_flush_after_epoch(mdev, mdev->current_epoch);
1214 if (rv == FE_RECYCLED)
1217 /* The asender will send all the ACKs and barrier ACKs out, since
1218 all EEs moved from the active_ee to the done_ee. We need to
1219 provide a new epoch object for the EEs that come in soon */
1223 /* receiver context, in the writeout path of the other node.
1224 * avoid potential distributed deadlock */
1225 epoch = kmalloc(sizeof(struct drbd_epoch), GFP_NOIO);
1227 dev_warn(DEV, "Allocation of an epoch failed, slowing down\n");
1228 issue_flush = !test_and_set_bit(DE_BARRIER_IN_NEXT_EPOCH_ISSUED, &mdev->current_epoch->flags);
1229 drbd_wait_ee_list_empty(mdev, &mdev->active_ee);
1231 rv = drbd_flush_after_epoch(mdev, mdev->current_epoch);
1232 if (rv == FE_RECYCLED)
1236 drbd_wait_ee_list_empty(mdev, &mdev->done_ee);
1242 atomic_set(&epoch->epoch_size, 0);
1243 atomic_set(&epoch->active, 0);
1245 spin_lock(&mdev->epoch_lock);
1246 if (atomic_read(&mdev->current_epoch->epoch_size)) {
1247 list_add(&epoch->list, &mdev->current_epoch->list);
1248 mdev->current_epoch = epoch;
1251 /* The current_epoch got recycled while we allocated this one... */
1254 spin_unlock(&mdev->epoch_lock);
1259 /* used from receive_RSDataReply (recv_resync_read)
1260 * and from receive_Data */
1261 static struct drbd_epoch_entry *
1262 read_in_block(struct drbd_conf *mdev, u64 id, sector_t sector, int data_size) __must_hold(local)
1264 struct drbd_epoch_entry *e;
1265 struct bio_vec *bvec;
1269 void *dig_in = mdev->int_dig_in;
1270 void *dig_vv = mdev->int_dig_vv;
1272 dgs = (mdev->agreed_pro_version >= 87 && mdev->integrity_r_tfm) ?
1273 crypto_hash_digestsize(mdev->integrity_r_tfm) : 0;
1276 rr = drbd_recv(mdev, dig_in, dgs);
1278 dev_warn(DEV, "short read receiving data digest: read %d expected %d\n",
1286 ERR_IF(data_size & 0x1ff) return NULL;
1287 ERR_IF(data_size > DRBD_MAX_SEGMENT_SIZE) return NULL;
1289 /* GFP_NOIO, because we must not cause arbitrary write-out: in a DRBD
1290 * "criss-cross" setup, that might cause write-out on some other DRBD,
1291 * which in turn might block on the other node at this very place. */
1292 e = drbd_alloc_ee(mdev, id, sector, data_size, GFP_NOIO);
1295 bio = e->private_bio;
1297 bio_for_each_segment(bvec, bio, i) {
1298 page = bvec->bv_page;
1299 rr = drbd_recv(mdev, kmap(page), min_t(int, ds, PAGE_SIZE));
1301 if (rr != min_t(int, ds, PAGE_SIZE)) {
1302 drbd_free_ee(mdev, e);
1303 dev_warn(DEV, "short read receiving data: read %d expected %d\n",
1304 rr, min_t(int, ds, PAGE_SIZE));
1311 drbd_csum(mdev, mdev->integrity_r_tfm, bio, dig_vv);
1312 if (memcmp(dig_in, dig_vv, dgs)) {
1313 dev_err(DEV, "Digest integrity check FAILED.\n");
1314 drbd_bcast_ee(mdev, "digest failed",
1315 dgs, dig_in, dig_vv, e);
1316 drbd_free_ee(mdev, e);
1320 mdev->recv_cnt += data_size>>9;
1324 /* drbd_drain_block() just takes a data block
1325 * out of the socket input buffer, and discards it.
1327 static int drbd_drain_block(struct drbd_conf *mdev, int data_size)
1333 page = drbd_pp_alloc(mdev, 1);
1337 rr = drbd_recv(mdev, data, min_t(int, data_size, PAGE_SIZE));
1338 if (rr != min_t(int, data_size, PAGE_SIZE)) {
1340 dev_warn(DEV, "short read receiving data: read %d expected %d\n",
1341 rr, min_t(int, data_size, PAGE_SIZE));
1347 drbd_pp_free(mdev, page);
1351 static int recv_dless_read(struct drbd_conf *mdev, struct drbd_request *req,
1352 sector_t sector, int data_size)
1354 struct bio_vec *bvec;
1356 int dgs, rr, i, expect;
1357 void *dig_in = mdev->int_dig_in;
1358 void *dig_vv = mdev->int_dig_vv;
1360 dgs = (mdev->agreed_pro_version >= 87 && mdev->integrity_r_tfm) ?
1361 crypto_hash_digestsize(mdev->integrity_r_tfm) : 0;
1364 rr = drbd_recv(mdev, dig_in, dgs);
1366 dev_warn(DEV, "short read receiving data reply digest: read %d expected %d\n",
1374 /* optimistically update recv_cnt. if receiving fails below,
1375 * we disconnect anyways, and counters will be reset. */
1376 mdev->recv_cnt += data_size>>9;
1378 bio = req->master_bio;
1379 D_ASSERT(sector == bio->bi_sector);
1381 bio_for_each_segment(bvec, bio, i) {
1382 expect = min_t(int, data_size, bvec->bv_len);
1383 rr = drbd_recv(mdev,
1384 kmap(bvec->bv_page)+bvec->bv_offset,
1386 kunmap(bvec->bv_page);
1388 dev_warn(DEV, "short read receiving data reply: "
1389 "read %d expected %d\n",
1397 drbd_csum(mdev, mdev->integrity_r_tfm, bio, dig_vv);
1398 if (memcmp(dig_in, dig_vv, dgs)) {
1399 dev_err(DEV, "Digest integrity check FAILED. Broken NICs?\n");
1404 D_ASSERT(data_size == 0);
1408 /* e_end_resync_block() is called via
1409 * drbd_process_done_ee() by asender only */
1410 static int e_end_resync_block(struct drbd_conf *mdev, struct drbd_work *w, int unused)
1412 struct drbd_epoch_entry *e = (struct drbd_epoch_entry *)w;
1413 sector_t sector = e->sector;
1416 D_ASSERT(hlist_unhashed(&e->colision));
1418 if (likely(drbd_bio_uptodate(e->private_bio))) {
1419 drbd_set_in_sync(mdev, sector, e->size);
1420 ok = drbd_send_ack(mdev, P_RS_WRITE_ACK, e);
1422 /* Record failure to sync */
1423 drbd_rs_failed_io(mdev, sector, e->size);
1425 ok = drbd_send_ack(mdev, P_NEG_ACK, e);
1432 static int recv_resync_read(struct drbd_conf *mdev, sector_t sector, int data_size) __releases(local)
1434 struct drbd_epoch_entry *e;
1436 e = read_in_block(mdev, ID_SYNCER, sector, data_size);
1442 dec_rs_pending(mdev);
1444 e->private_bio->bi_end_io = drbd_endio_write_sec;
1445 e->private_bio->bi_rw = WRITE;
1446 e->w.cb = e_end_resync_block;
1449 /* corresponding dec_unacked() in e_end_resync_block()
1450 * respective _drbd_clear_done_ee */
1452 spin_lock_irq(&mdev->req_lock);
1453 list_add(&e->w.list, &mdev->sync_ee);
1454 spin_unlock_irq(&mdev->req_lock);
1456 drbd_generic_make_request(mdev, DRBD_FAULT_RS_WR, e->private_bio);
1457 /* accounting done in endio */
1459 maybe_kick_lo(mdev);
1463 static int receive_DataReply(struct drbd_conf *mdev, struct p_header *h)
1465 struct drbd_request *req;
1467 unsigned int header_size, data_size;
1469 struct p_data *p = (struct p_data *)h;
1471 header_size = sizeof(*p) - sizeof(*h);
1472 data_size = h->length - header_size;
1474 ERR_IF(data_size == 0) return FALSE;
1476 if (drbd_recv(mdev, h->payload, header_size) != header_size)
1479 sector = be64_to_cpu(p->sector);
1481 spin_lock_irq(&mdev->req_lock);
1482 req = _ar_id_to_req(mdev, p->block_id, sector);
1483 spin_unlock_irq(&mdev->req_lock);
1484 if (unlikely(!req)) {
1485 dev_err(DEV, "Got a corrupt block_id/sector pair(1).\n");
1489 /* hlist_del(&req->colision) is done in _req_may_be_done, to avoid
1490 * special casing it there for the various failure cases.
1491 * still no race with drbd_fail_pending_reads */
1492 ok = recv_dless_read(mdev, req, sector, data_size);
1495 req_mod(req, data_received);
1496 /* else: nothing. handled from drbd_disconnect...
1497 * I don't think we may complete this just yet
1498 * in case we are "on-disconnect: freeze" */
1503 static int receive_RSDataReply(struct drbd_conf *mdev, struct p_header *h)
1506 unsigned int header_size, data_size;
1508 struct p_data *p = (struct p_data *)h;
1510 header_size = sizeof(*p) - sizeof(*h);
1511 data_size = h->length - header_size;
1513 ERR_IF(data_size == 0) return FALSE;
1515 if (drbd_recv(mdev, h->payload, header_size) != header_size)
1518 sector = be64_to_cpu(p->sector);
1519 D_ASSERT(p->block_id == ID_SYNCER);
1521 if (get_ldev(mdev)) {
1522 /* data is submitted to disk within recv_resync_read.
1523 * corresponding put_ldev done below on error,
1524 * or in drbd_endio_write_sec. */
1525 ok = recv_resync_read(mdev, sector, data_size);
1527 if (__ratelimit(&drbd_ratelimit_state))
1528 dev_err(DEV, "Can not write resync data to local disk.\n");
1530 ok = drbd_drain_block(mdev, data_size);
1532 drbd_send_ack_dp(mdev, P_NEG_ACK, p);
1538 /* e_end_block() is called via drbd_process_done_ee().
1539 * this means this function only runs in the asender thread
1541 static int e_end_block(struct drbd_conf *mdev, struct drbd_work *w, int cancel)
1543 struct drbd_epoch_entry *e = (struct drbd_epoch_entry *)w;
1544 sector_t sector = e->sector;
1545 struct drbd_epoch *epoch;
1548 if (e->flags & EE_IS_BARRIER) {
1549 epoch = previous_epoch(mdev, e->epoch);
1551 drbd_may_finish_epoch(mdev, epoch, EV_BARRIER_DONE + (cancel ? EV_CLEANUP : 0));
1554 if (mdev->net_conf->wire_protocol == DRBD_PROT_C) {
1555 if (likely(drbd_bio_uptodate(e->private_bio))) {
1556 pcmd = (mdev->state.conn >= C_SYNC_SOURCE &&
1557 mdev->state.conn <= C_PAUSED_SYNC_T &&
1558 e->flags & EE_MAY_SET_IN_SYNC) ?
1559 P_RS_WRITE_ACK : P_WRITE_ACK;
1560 ok &= drbd_send_ack(mdev, pcmd, e);
1561 if (pcmd == P_RS_WRITE_ACK)
1562 drbd_set_in_sync(mdev, sector, e->size);
1564 ok = drbd_send_ack(mdev, P_NEG_ACK, e);
1565 /* we expect it to be marked out of sync anyways...
1566 * maybe assert this? */
1570 /* we delete from the conflict detection hash _after_ we sent out the
1571 * P_WRITE_ACK / P_NEG_ACK, to get the sequence number right. */
1572 if (mdev->net_conf->two_primaries) {
1573 spin_lock_irq(&mdev->req_lock);
1574 D_ASSERT(!hlist_unhashed(&e->colision));
1575 hlist_del_init(&e->colision);
1576 spin_unlock_irq(&mdev->req_lock);
1578 D_ASSERT(hlist_unhashed(&e->colision));
1581 drbd_may_finish_epoch(mdev, e->epoch, EV_PUT + (cancel ? EV_CLEANUP : 0));
1586 static int e_send_discard_ack(struct drbd_conf *mdev, struct drbd_work *w, int unused)
1588 struct drbd_epoch_entry *e = (struct drbd_epoch_entry *)w;
1591 D_ASSERT(mdev->net_conf->wire_protocol == DRBD_PROT_C);
1592 ok = drbd_send_ack(mdev, P_DISCARD_ACK, e);
1594 spin_lock_irq(&mdev->req_lock);
1595 D_ASSERT(!hlist_unhashed(&e->colision));
1596 hlist_del_init(&e->colision);
1597 spin_unlock_irq(&mdev->req_lock);
1604 /* Called from receive_Data.
1605 * Synchronize packets on sock with packets on msock.
1607 * This is here so even when a P_DATA packet traveling via sock overtook an Ack
1608 * packet traveling on msock, they are still processed in the order they have
1611 * Note: we don't care for Ack packets overtaking P_DATA packets.
1613 * In case packet_seq is larger than mdev->peer_seq number, there are
1614 * outstanding packets on the msock. We wait for them to arrive.
1615 * In case we are the logically next packet, we update mdev->peer_seq
1616 * ourselves. Correctly handles 32bit wrap around.
1618 * Assume we have a 10 GBit connection, that is about 1<<30 byte per second,
1619 * about 1<<21 sectors per second. So "worst" case, we have 1<<3 == 8 seconds
1620 * for the 24bit wrap (historical atomic_t guarantee on some archs), and we have
1621 * 1<<9 == 512 seconds aka ages for the 32bit wrap around...
1623 * returns 0 if we may process the packet,
1624 * -ERESTARTSYS if we were interrupted (by disconnect signal). */
1625 static int drbd_wait_peer_seq(struct drbd_conf *mdev, const u32 packet_seq)
1631 spin_lock(&mdev->peer_seq_lock);
1633 prepare_to_wait(&mdev->seq_wait, &wait, TASK_INTERRUPTIBLE);
1634 if (seq_le(packet_seq, mdev->peer_seq+1))
1636 if (signal_pending(current)) {
1640 p_seq = mdev->peer_seq;
1641 spin_unlock(&mdev->peer_seq_lock);
1642 timeout = schedule_timeout(30*HZ);
1643 spin_lock(&mdev->peer_seq_lock);
1644 if (timeout == 0 && p_seq == mdev->peer_seq) {
1646 dev_err(DEV, "ASSERT FAILED waited 30 seconds for sequence update, forcing reconnect\n");
1650 finish_wait(&mdev->seq_wait, &wait);
1651 if (mdev->peer_seq+1 == packet_seq)
1653 spin_unlock(&mdev->peer_seq_lock);
1657 /* mirrored write */
1658 static int receive_Data(struct drbd_conf *mdev, struct p_header *h)
1661 struct drbd_epoch_entry *e;
1662 struct p_data *p = (struct p_data *)h;
1663 int header_size, data_size;
1667 header_size = sizeof(*p) - sizeof(*h);
1668 data_size = h->length - header_size;
1670 ERR_IF(data_size == 0) return FALSE;
1672 if (drbd_recv(mdev, h->payload, header_size) != header_size)
1675 if (!get_ldev(mdev)) {
1676 if (__ratelimit(&drbd_ratelimit_state))
1677 dev_err(DEV, "Can not write mirrored data block "
1678 "to local disk.\n");
1679 spin_lock(&mdev->peer_seq_lock);
1680 if (mdev->peer_seq+1 == be32_to_cpu(p->seq_num))
1682 spin_unlock(&mdev->peer_seq_lock);
1684 drbd_send_ack_dp(mdev, P_NEG_ACK, p);
1685 atomic_inc(&mdev->current_epoch->epoch_size);
1686 return drbd_drain_block(mdev, data_size);
1689 /* get_ldev(mdev) successful.
1690 * Corresponding put_ldev done either below (on various errors),
1691 * or in drbd_endio_write_sec, if we successfully submit the data at
1692 * the end of this function. */
1694 sector = be64_to_cpu(p->sector);
1695 e = read_in_block(mdev, p->block_id, sector, data_size);
1701 e->private_bio->bi_end_io = drbd_endio_write_sec;
1702 e->w.cb = e_end_block;
1704 spin_lock(&mdev->epoch_lock);
1705 e->epoch = mdev->current_epoch;
1706 atomic_inc(&e->epoch->epoch_size);
1707 atomic_inc(&e->epoch->active);
1709 if (mdev->write_ordering == WO_bio_barrier && atomic_read(&e->epoch->epoch_size) == 1) {
1710 struct drbd_epoch *epoch;
1711 /* Issue a barrier if we start a new epoch, and the previous epoch
1712 was not a epoch containing a single request which already was
1714 epoch = list_entry(e->epoch->list.prev, struct drbd_epoch, list);
1715 if (epoch == e->epoch) {
1716 set_bit(DE_CONTAINS_A_BARRIER, &e->epoch->flags);
1717 rw |= (1<<BIO_RW_BARRIER);
1718 e->flags |= EE_IS_BARRIER;
1720 if (atomic_read(&epoch->epoch_size) > 1 ||
1721 !test_bit(DE_CONTAINS_A_BARRIER, &epoch->flags)) {
1722 set_bit(DE_BARRIER_IN_NEXT_EPOCH_ISSUED, &epoch->flags);
1723 set_bit(DE_CONTAINS_A_BARRIER, &e->epoch->flags);
1724 rw |= (1<<BIO_RW_BARRIER);
1725 e->flags |= EE_IS_BARRIER;
1729 spin_unlock(&mdev->epoch_lock);
1731 dp_flags = be32_to_cpu(p->dp_flags);
1732 if (dp_flags & DP_HARDBARRIER) {
1733 dev_err(DEV, "ASSERT FAILED would have submitted barrier request\n");
1734 /* rw |= (1<<BIO_RW_BARRIER); */
1736 if (dp_flags & DP_RW_SYNC)
1737 rw |= (1<<BIO_RW_SYNCIO) | (1<<BIO_RW_UNPLUG);
1738 if (dp_flags & DP_MAY_SET_IN_SYNC)
1739 e->flags |= EE_MAY_SET_IN_SYNC;
1741 /* I'm the receiver, I do hold a net_cnt reference. */
1742 if (!mdev->net_conf->two_primaries) {
1743 spin_lock_irq(&mdev->req_lock);
1745 /* don't get the req_lock yet,
1746 * we may sleep in drbd_wait_peer_seq */
1747 const int size = e->size;
1748 const int discard = test_bit(DISCARD_CONCURRENT, &mdev->flags);
1750 struct drbd_request *i;
1751 struct hlist_node *n;
1752 struct hlist_head *slot;
1755 D_ASSERT(mdev->net_conf->wire_protocol == DRBD_PROT_C);
1756 BUG_ON(mdev->ee_hash == NULL);
1757 BUG_ON(mdev->tl_hash == NULL);
1759 /* conflict detection and handling:
1760 * 1. wait on the sequence number,
1761 * in case this data packet overtook ACK packets.
1762 * 2. check our hash tables for conflicting requests.
1763 * we only need to walk the tl_hash, since an ee can not
1764 * have a conflict with an other ee: on the submitting
1765 * node, the corresponding req had already been conflicting,
1766 * and a conflicting req is never sent.
1768 * Note: for two_primaries, we are protocol C,
1769 * so there cannot be any request that is DONE
1770 * but still on the transfer log.
1772 * unconditionally add to the ee_hash.
1774 * if no conflicting request is found:
1777 * if any conflicting request is found
1778 * that has not yet been acked,
1779 * AND I have the "discard concurrent writes" flag:
1780 * queue (via done_ee) the P_DISCARD_ACK; OUT.
1782 * if any conflicting request is found:
1783 * block the receiver, waiting on misc_wait
1784 * until no more conflicting requests are there,
1785 * or we get interrupted (disconnect).
1787 * we do not just write after local io completion of those
1788 * requests, but only after req is done completely, i.e.
1789 * we wait for the P_DISCARD_ACK to arrive!
1791 * then proceed normally, i.e. submit.
1793 if (drbd_wait_peer_seq(mdev, be32_to_cpu(p->seq_num)))
1794 goto out_interrupted;
1796 spin_lock_irq(&mdev->req_lock);
1798 hlist_add_head(&e->colision, ee_hash_slot(mdev, sector));
1800 #define OVERLAPS overlaps(i->sector, i->size, sector, size)
1801 slot = tl_hash_slot(mdev, sector);
1804 int have_unacked = 0;
1805 int have_conflict = 0;
1806 prepare_to_wait(&mdev->misc_wait, &wait,
1807 TASK_INTERRUPTIBLE);
1808 hlist_for_each_entry(i, n, slot, colision) {
1810 /* only ALERT on first iteration,
1811 * we may be woken up early... */
1813 dev_alert(DEV, "%s[%u] Concurrent local write detected!"
1814 " new: %llus +%u; pending: %llus +%u\n",
1815 current->comm, current->pid,
1816 (unsigned long long)sector, size,
1817 (unsigned long long)i->sector, i->size);
1818 if (i->rq_state & RQ_NET_PENDING)
1827 /* Discard Ack only for the _first_ iteration */
1828 if (first && discard && have_unacked) {
1829 dev_alert(DEV, "Concurrent write! [DISCARD BY FLAG] sec=%llus\n",
1830 (unsigned long long)sector);
1832 e->w.cb = e_send_discard_ack;
1833 list_add_tail(&e->w.list, &mdev->done_ee);
1835 spin_unlock_irq(&mdev->req_lock);
1837 /* we could probably send that P_DISCARD_ACK ourselves,
1838 * but I don't like the receiver using the msock */
1842 finish_wait(&mdev->misc_wait, &wait);
1846 if (signal_pending(current)) {
1847 hlist_del_init(&e->colision);
1849 spin_unlock_irq(&mdev->req_lock);
1851 finish_wait(&mdev->misc_wait, &wait);
1852 goto out_interrupted;
1855 spin_unlock_irq(&mdev->req_lock);
1858 dev_alert(DEV, "Concurrent write! [W AFTERWARDS] "
1859 "sec=%llus\n", (unsigned long long)sector);
1860 } else if (discard) {
1861 /* we had none on the first iteration.
1862 * there must be none now. */
1863 D_ASSERT(have_unacked == 0);
1866 spin_lock_irq(&mdev->req_lock);
1868 finish_wait(&mdev->misc_wait, &wait);
1871 list_add(&e->w.list, &mdev->active_ee);
1872 spin_unlock_irq(&mdev->req_lock);
1874 switch (mdev->net_conf->wire_protocol) {
1877 /* corresponding dec_unacked() in e_end_block()
1878 * respective _drbd_clear_done_ee */
1881 /* I really don't like it that the receiver thread
1882 * sends on the msock, but anyways */
1883 drbd_send_ack(mdev, P_RECV_ACK, e);
1890 if (mdev->state.pdsk == D_DISKLESS) {
1891 /* In case we have the only disk of the cluster, */
1892 drbd_set_out_of_sync(mdev, e->sector, e->size);
1893 e->flags |= EE_CALL_AL_COMPLETE_IO;
1894 drbd_al_begin_io(mdev, e->sector);
1897 e->private_bio->bi_rw = rw;
1898 drbd_generic_make_request(mdev, DRBD_FAULT_DT_WR, e->private_bio);
1899 /* accounting done in endio */
1901 maybe_kick_lo(mdev);
1905 /* yes, the epoch_size now is imbalanced.
1906 * but we drop the connection anyways, so we don't have a chance to
1907 * receive a barrier... atomic_inc(&mdev->epoch_size); */
1909 drbd_free_ee(mdev, e);
1913 static int receive_DataRequest(struct drbd_conf *mdev, struct p_header *h)
1916 const sector_t capacity = drbd_get_capacity(mdev->this_bdev);
1917 struct drbd_epoch_entry *e;
1918 struct digest_info *di = NULL;
1919 int size, digest_size;
1920 unsigned int fault_type;
1921 struct p_block_req *p =
1922 (struct p_block_req *)h;
1923 const int brps = sizeof(*p)-sizeof(*h);
1925 if (drbd_recv(mdev, h->payload, brps) != brps)
1928 sector = be64_to_cpu(p->sector);
1929 size = be32_to_cpu(p->blksize);
1931 if (size <= 0 || (size & 0x1ff) != 0 || size > DRBD_MAX_SEGMENT_SIZE) {
1932 dev_err(DEV, "%s:%d: sector: %llus, size: %u\n", __FILE__, __LINE__,
1933 (unsigned long long)sector, size);
1936 if (sector + (size>>9) > capacity) {
1937 dev_err(DEV, "%s:%d: sector: %llus, size: %u\n", __FILE__, __LINE__,
1938 (unsigned long long)sector, size);
1942 if (!get_ldev_if_state(mdev, D_UP_TO_DATE)) {
1943 if (__ratelimit(&drbd_ratelimit_state))
1944 dev_err(DEV, "Can not satisfy peer's read request, "
1945 "no local data.\n");
1946 drbd_send_ack_rp(mdev, h->command == P_DATA_REQUEST ? P_NEG_DREPLY :
1947 P_NEG_RS_DREPLY , p);
1951 /* GFP_NOIO, because we must not cause arbitrary write-out: in a DRBD
1952 * "criss-cross" setup, that might cause write-out on some other DRBD,
1953 * which in turn might block on the other node at this very place. */
1954 e = drbd_alloc_ee(mdev, p->block_id, sector, size, GFP_NOIO);
1960 e->private_bio->bi_rw = READ;
1961 e->private_bio->bi_end_io = drbd_endio_read_sec;
1963 switch (h->command) {
1964 case P_DATA_REQUEST:
1965 e->w.cb = w_e_end_data_req;
1966 fault_type = DRBD_FAULT_DT_RD;
1968 case P_RS_DATA_REQUEST:
1969 e->w.cb = w_e_end_rsdata_req;
1970 fault_type = DRBD_FAULT_RS_RD;
1971 /* Eventually this should become asynchronously. Currently it
1972 * blocks the whole receiver just to delay the reading of a
1973 * resync data block.
1974 * the drbd_work_queue mechanism is made for this...
1976 if (!drbd_rs_begin_io(mdev, sector)) {
1977 /* we have been interrupted,
1978 * probably connection lost! */
1979 D_ASSERT(signal_pending(current));
1985 case P_CSUM_RS_REQUEST:
1986 fault_type = DRBD_FAULT_RS_RD;
1987 digest_size = h->length - brps ;
1988 di = kmalloc(sizeof(*di) + digest_size, GFP_NOIO);
1992 di->digest_size = digest_size;
1993 di->digest = (((char *)di)+sizeof(struct digest_info));
1995 if (drbd_recv(mdev, di->digest, digest_size) != digest_size)
1998 e->block_id = (u64)(unsigned long)di;
1999 if (h->command == P_CSUM_RS_REQUEST) {
2000 D_ASSERT(mdev->agreed_pro_version >= 89);
2001 e->w.cb = w_e_end_csum_rs_req;
2002 } else if (h->command == P_OV_REPLY) {
2003 e->w.cb = w_e_end_ov_reply;
2004 dec_rs_pending(mdev);
2008 if (!drbd_rs_begin_io(mdev, sector)) {
2009 /* we have been interrupted, probably connection lost! */
2010 D_ASSERT(signal_pending(current));
2016 if (mdev->state.conn >= C_CONNECTED &&
2017 mdev->state.conn != C_VERIFY_T)
2018 dev_warn(DEV, "ASSERT FAILED: got P_OV_REQUEST while being %s\n",
2019 drbd_conn_str(mdev->state.conn));
2020 if (mdev->ov_start_sector == ~(sector_t)0 &&
2021 mdev->agreed_pro_version >= 90) {
2022 mdev->ov_start_sector = sector;
2023 mdev->ov_position = sector;
2024 mdev->ov_left = mdev->rs_total - BM_SECT_TO_BIT(sector);
2025 dev_info(DEV, "Online Verify start sector: %llu\n",
2026 (unsigned long long)sector);
2028 e->w.cb = w_e_end_ov_req;
2029 fault_type = DRBD_FAULT_RS_RD;
2030 /* Eventually this should become asynchronous. Currently it
2031 * blocks the whole receiver just to delay the reading of a
2032 * resync data block.
2033 * the drbd_work_queue mechanism is made for this...
2035 if (!drbd_rs_begin_io(mdev, sector)) {
2036 /* we have been interrupted,
2037 * probably connection lost! */
2038 D_ASSERT(signal_pending(current));
2045 dev_err(DEV, "unexpected command (%s) in receive_DataRequest\n",
2046 cmdname(h->command));
2047 fault_type = DRBD_FAULT_MAX;
2050 spin_lock_irq(&mdev->req_lock);
2051 list_add(&e->w.list, &mdev->read_ee);
2052 spin_unlock_irq(&mdev->req_lock);
2056 drbd_generic_make_request(mdev, fault_type, e->private_bio);
2057 maybe_kick_lo(mdev);
2064 drbd_free_ee(mdev, e);
2068 static int drbd_asb_recover_0p(struct drbd_conf *mdev) __must_hold(local)
2070 int self, peer, rv = -100;
2071 unsigned long ch_self, ch_peer;
2073 self = mdev->ldev->md.uuid[UI_BITMAP] & 1;
2074 peer = mdev->p_uuid[UI_BITMAP] & 1;
2076 ch_peer = mdev->p_uuid[UI_SIZE];
2077 ch_self = mdev->comm_bm_set;
2079 switch (mdev->net_conf->after_sb_0p) {
2081 case ASB_DISCARD_SECONDARY:
2082 case ASB_CALL_HELPER:
2083 dev_err(DEV, "Configuration error.\n");
2085 case ASB_DISCONNECT:
2087 case ASB_DISCARD_YOUNGER_PRI:
2088 if (self == 0 && peer == 1) {
2092 if (self == 1 && peer == 0) {
2096 /* Else fall through to one of the other strategies... */
2097 case ASB_DISCARD_OLDER_PRI:
2098 if (self == 0 && peer == 1) {
2102 if (self == 1 && peer == 0) {
2106 /* Else fall through to one of the other strategies... */
2107 dev_warn(DEV, "Discard younger/older primary did not find a decision\n"
2108 "Using discard-least-changes instead\n");
2109 case ASB_DISCARD_ZERO_CHG:
2110 if (ch_peer == 0 && ch_self == 0) {
2111 rv = test_bit(DISCARD_CONCURRENT, &mdev->flags)
2115 if (ch_peer == 0) { rv = 1; break; }
2116 if (ch_self == 0) { rv = -1; break; }
2118 if (mdev->net_conf->after_sb_0p == ASB_DISCARD_ZERO_CHG)
2120 case ASB_DISCARD_LEAST_CHG:
2121 if (ch_self < ch_peer)
2123 else if (ch_self > ch_peer)
2125 else /* ( ch_self == ch_peer ) */
2126 /* Well, then use something else. */
2127 rv = test_bit(DISCARD_CONCURRENT, &mdev->flags)
2130 case ASB_DISCARD_LOCAL:
2133 case ASB_DISCARD_REMOTE:
2140 static int drbd_asb_recover_1p(struct drbd_conf *mdev) __must_hold(local)
2142 int self, peer, hg, rv = -100;
2144 self = mdev->ldev->md.uuid[UI_BITMAP] & 1;
2145 peer = mdev->p_uuid[UI_BITMAP] & 1;
2147 switch (mdev->net_conf->after_sb_1p) {
2148 case ASB_DISCARD_YOUNGER_PRI:
2149 case ASB_DISCARD_OLDER_PRI:
2150 case ASB_DISCARD_LEAST_CHG:
2151 case ASB_DISCARD_LOCAL:
2152 case ASB_DISCARD_REMOTE:
2153 dev_err(DEV, "Configuration error.\n");
2155 case ASB_DISCONNECT:
2158 hg = drbd_asb_recover_0p(mdev);
2159 if (hg == -1 && mdev->state.role == R_SECONDARY)
2161 if (hg == 1 && mdev->state.role == R_PRIMARY)
2165 rv = drbd_asb_recover_0p(mdev);
2167 case ASB_DISCARD_SECONDARY:
2168 return mdev->state.role == R_PRIMARY ? 1 : -1;
2169 case ASB_CALL_HELPER:
2170 hg = drbd_asb_recover_0p(mdev);
2171 if (hg == -1 && mdev->state.role == R_PRIMARY) {
2172 self = drbd_set_role(mdev, R_SECONDARY, 0);
2173 /* drbd_change_state() does not sleep while in SS_IN_TRANSIENT_STATE,
2174 * we might be here in C_WF_REPORT_PARAMS which is transient.
2175 * we do not need to wait for the after state change work either. */
2176 self = drbd_change_state(mdev, CS_VERBOSE, NS(role, R_SECONDARY));
2177 if (self != SS_SUCCESS) {
2178 drbd_khelper(mdev, "pri-lost-after-sb");
2180 dev_warn(DEV, "Successfully gave up primary role.\n");
2190 static int drbd_asb_recover_2p(struct drbd_conf *mdev) __must_hold(local)
2192 int self, peer, hg, rv = -100;
2194 self = mdev->ldev->md.uuid[UI_BITMAP] & 1;
2195 peer = mdev->p_uuid[UI_BITMAP] & 1;
2197 switch (mdev->net_conf->after_sb_2p) {
2198 case ASB_DISCARD_YOUNGER_PRI:
2199 case ASB_DISCARD_OLDER_PRI:
2200 case ASB_DISCARD_LEAST_CHG:
2201 case ASB_DISCARD_LOCAL:
2202 case ASB_DISCARD_REMOTE:
2204 case ASB_DISCARD_SECONDARY:
2205 dev_err(DEV, "Configuration error.\n");
2208 rv = drbd_asb_recover_0p(mdev);
2210 case ASB_DISCONNECT:
2212 case ASB_CALL_HELPER:
2213 hg = drbd_asb_recover_0p(mdev);
2215 /* drbd_change_state() does not sleep while in SS_IN_TRANSIENT_STATE,
2216 * we might be here in C_WF_REPORT_PARAMS which is transient.
2217 * we do not need to wait for the after state change work either. */
2218 self = drbd_change_state(mdev, CS_VERBOSE, NS(role, R_SECONDARY));
2219 if (self != SS_SUCCESS) {
2220 drbd_khelper(mdev, "pri-lost-after-sb");
2222 dev_warn(DEV, "Successfully gave up primary role.\n");
2232 static void drbd_uuid_dump(struct drbd_conf *mdev, char *text, u64 *uuid,
2233 u64 bits, u64 flags)
2236 dev_info(DEV, "%s uuid info vanished while I was looking!\n", text);
2239 dev_info(DEV, "%s %016llX:%016llX:%016llX:%016llX bits:%llu flags:%llX\n",
2241 (unsigned long long)uuid[UI_CURRENT],
2242 (unsigned long long)uuid[UI_BITMAP],
2243 (unsigned long long)uuid[UI_HISTORY_START],
2244 (unsigned long long)uuid[UI_HISTORY_END],
2245 (unsigned long long)bits,
2246 (unsigned long long)flags);
2250 100 after split brain try auto recover
2251 2 C_SYNC_SOURCE set BitMap
2252 1 C_SYNC_SOURCE use BitMap
2254 -1 C_SYNC_TARGET use BitMap
2255 -2 C_SYNC_TARGET set BitMap
2256 -100 after split brain, disconnect
2257 -1000 unrelated data
2259 static int drbd_uuid_compare(struct drbd_conf *mdev, int *rule_nr) __must_hold(local)
2264 self = mdev->ldev->md.uuid[UI_CURRENT] & ~((u64)1);
2265 peer = mdev->p_uuid[UI_CURRENT] & ~((u64)1);
2268 if (self == UUID_JUST_CREATED && peer == UUID_JUST_CREATED)
2272 if ((self == UUID_JUST_CREATED || self == (u64)0) &&
2273 peer != UUID_JUST_CREATED)
2277 if (self != UUID_JUST_CREATED &&
2278 (peer == UUID_JUST_CREATED || peer == (u64)0))
2282 int rct, dc; /* roles at crash time */
2284 if (mdev->p_uuid[UI_BITMAP] == (u64)0 && mdev->ldev->md.uuid[UI_BITMAP] != (u64)0) {
2286 if (mdev->agreed_pro_version < 91)
2289 if ((mdev->ldev->md.uuid[UI_BITMAP] & ~((u64)1)) == (mdev->p_uuid[UI_HISTORY_START] & ~((u64)1)) &&
2290 (mdev->ldev->md.uuid[UI_HISTORY_START] & ~((u64)1)) == (mdev->p_uuid[UI_HISTORY_START + 1] & ~((u64)1))) {
2291 dev_info(DEV, "was SyncSource, missed the resync finished event, corrected myself:\n");
2292 drbd_uuid_set_bm(mdev, 0UL);
2294 drbd_uuid_dump(mdev, "self", mdev->ldev->md.uuid,
2295 mdev->state.disk >= D_NEGOTIATING ? drbd_bm_total_weight(mdev) : 0, 0);
2298 dev_info(DEV, "was SyncSource (peer failed to write sync_uuid)\n");
2305 if (mdev->ldev->md.uuid[UI_BITMAP] == (u64)0 && mdev->p_uuid[UI_BITMAP] != (u64)0) {
2307 if (mdev->agreed_pro_version < 91)
2310 if ((mdev->ldev->md.uuid[UI_HISTORY_START] & ~((u64)1)) == (mdev->p_uuid[UI_BITMAP] & ~((u64)1)) &&
2311 (mdev->ldev->md.uuid[UI_HISTORY_START + 1] & ~((u64)1)) == (mdev->p_uuid[UI_HISTORY_START] & ~((u64)1))) {
2312 dev_info(DEV, "was SyncTarget, peer missed the resync finished event, corrected peer:\n");
2314 mdev->p_uuid[UI_HISTORY_START + 1] = mdev->p_uuid[UI_HISTORY_START];
2315 mdev->p_uuid[UI_HISTORY_START] = mdev->p_uuid[UI_BITMAP];
2316 mdev->p_uuid[UI_BITMAP] = 0UL;
2318 drbd_uuid_dump(mdev, "peer", mdev->p_uuid, mdev->p_uuid[UI_SIZE], mdev->p_uuid[UI_FLAGS]);
2321 dev_info(DEV, "was SyncTarget (failed to write sync_uuid)\n");
2328 /* Common power [off|failure] */
2329 rct = (test_bit(CRASHED_PRIMARY, &mdev->flags) ? 1 : 0) +
2330 (mdev->p_uuid[UI_FLAGS] & 2);
2331 /* lowest bit is set when we were primary,
2332 * next bit (weight 2) is set when peer was primary */
2336 case 0: /* !self_pri && !peer_pri */ return 0;
2337 case 1: /* self_pri && !peer_pri */ return 1;
2338 case 2: /* !self_pri && peer_pri */ return -1;
2339 case 3: /* self_pri && peer_pri */
2340 dc = test_bit(DISCARD_CONCURRENT, &mdev->flags);
2346 peer = mdev->p_uuid[UI_BITMAP] & ~((u64)1);
2351 peer = mdev->p_uuid[UI_HISTORY_START] & ~((u64)1);
2353 self = mdev->ldev->md.uuid[UI_HISTORY_START] & ~((u64)1);
2354 peer = mdev->p_uuid[UI_HISTORY_START + 1] & ~((u64)1);
2356 /* The last P_SYNC_UUID did not get though. Undo the last start of
2357 resync as sync source modifications of the peer's UUIDs. */
2359 if (mdev->agreed_pro_version < 91)
2362 mdev->p_uuid[UI_BITMAP] = mdev->p_uuid[UI_HISTORY_START];
2363 mdev->p_uuid[UI_HISTORY_START] = mdev->p_uuid[UI_HISTORY_START + 1];
2369 self = mdev->ldev->md.uuid[UI_CURRENT] & ~((u64)1);
2370 for (i = UI_HISTORY_START; i <= UI_HISTORY_END; i++) {
2371 peer = mdev->p_uuid[i] & ~((u64)1);
2377 self = mdev->ldev->md.uuid[UI_BITMAP] & ~((u64)1);
2378 peer = mdev->p_uuid[UI_CURRENT] & ~((u64)1);
2383 self = mdev->ldev->md.uuid[UI_HISTORY_START] & ~((u64)1);
2385 self = mdev->ldev->md.uuid[UI_HISTORY_START + 1] & ~((u64)1);
2386 peer = mdev->p_uuid[UI_HISTORY_START] & ~((u64)1);
2388 /* The last P_SYNC_UUID did not get though. Undo the last start of
2389 resync as sync source modifications of our UUIDs. */
2391 if (mdev->agreed_pro_version < 91)
2394 _drbd_uuid_set(mdev, UI_BITMAP, mdev->ldev->md.uuid[UI_HISTORY_START]);
2395 _drbd_uuid_set(mdev, UI_HISTORY_START, mdev->ldev->md.uuid[UI_HISTORY_START + 1]);
2397 dev_info(DEV, "Undid last start of resync:\n");
2399 drbd_uuid_dump(mdev, "self", mdev->ldev->md.uuid,
2400 mdev->state.disk >= D_NEGOTIATING ? drbd_bm_total_weight(mdev) : 0, 0);
2408 peer = mdev->p_uuid[UI_CURRENT] & ~((u64)1);
2409 for (i = UI_HISTORY_START; i <= UI_HISTORY_END; i++) {
2410 self = mdev->ldev->md.uuid[i] & ~((u64)1);
2416 self = mdev->ldev->md.uuid[UI_BITMAP] & ~((u64)1);
2417 peer = mdev->p_uuid[UI_BITMAP] & ~((u64)1);
2418 if (self == peer && self != ((u64)0))
2422 for (i = UI_HISTORY_START; i <= UI_HISTORY_END; i++) {
2423 self = mdev->ldev->md.uuid[i] & ~((u64)1);
2424 for (j = UI_HISTORY_START; j <= UI_HISTORY_END; j++) {
2425 peer = mdev->p_uuid[j] & ~((u64)1);
2434 /* drbd_sync_handshake() returns the new conn state on success, or
2435 CONN_MASK (-1) on failure.
2437 static enum drbd_conns drbd_sync_handshake(struct drbd_conf *mdev, enum drbd_role peer_role,
2438 enum drbd_disk_state peer_disk) __must_hold(local)
2441 enum drbd_conns rv = C_MASK;
2442 enum drbd_disk_state mydisk;
2444 mydisk = mdev->state.disk;
2445 if (mydisk == D_NEGOTIATING)
2446 mydisk = mdev->new_state_tmp.disk;
2448 dev_info(DEV, "drbd_sync_handshake:\n");
2449 drbd_uuid_dump(mdev, "self", mdev->ldev->md.uuid, mdev->comm_bm_set, 0);
2450 drbd_uuid_dump(mdev, "peer", mdev->p_uuid,
2451 mdev->p_uuid[UI_SIZE], mdev->p_uuid[UI_FLAGS]);
2453 hg = drbd_uuid_compare(mdev, &rule_nr);
2455 dev_info(DEV, "uuid_compare()=%d by rule %d\n", hg, rule_nr);
2458 dev_alert(DEV, "Unrelated data, aborting!\n");
2462 dev_alert(DEV, "To resolve this both sides have to support at least protocol\n");
2466 if ((mydisk == D_INCONSISTENT && peer_disk > D_INCONSISTENT) ||
2467 (peer_disk == D_INCONSISTENT && mydisk > D_INCONSISTENT)) {
2468 int f = (hg == -100) || abs(hg) == 2;
2469 hg = mydisk > D_INCONSISTENT ? 1 : -1;
2472 dev_info(DEV, "Becoming sync %s due to disk states.\n",
2473 hg > 0 ? "source" : "target");
2476 if (hg == 100 || (hg == -100 && mdev->net_conf->always_asbp)) {
2477 int pcount = (mdev->state.role == R_PRIMARY)
2478 + (peer_role == R_PRIMARY);
2479 int forced = (hg == -100);
2483 hg = drbd_asb_recover_0p(mdev);
2486 hg = drbd_asb_recover_1p(mdev);
2489 hg = drbd_asb_recover_2p(mdev);
2492 if (abs(hg) < 100) {
2493 dev_warn(DEV, "Split-Brain detected, %d primaries, "
2494 "automatically solved. Sync from %s node\n",
2495 pcount, (hg < 0) ? "peer" : "this");
2497 dev_warn(DEV, "Doing a full sync, since"
2498 " UUIDs where ambiguous.\n");
2505 if (mdev->net_conf->want_lose && !(mdev->p_uuid[UI_FLAGS]&1))
2507 if (!mdev->net_conf->want_lose && (mdev->p_uuid[UI_FLAGS]&1))
2511 dev_warn(DEV, "Split-Brain detected, manually solved. "
2512 "Sync from %s node\n",
2513 (hg < 0) ? "peer" : "this");
2517 /* FIXME this log message is not correct if we end up here
2518 * after an attempted attach on a diskless node.
2519 * We just refuse to attach -- well, we drop the "connection"
2520 * to that disk, in a way... */
2521 dev_alert(DEV, "Split-Brain detected, dropping connection!\n");
2522 drbd_khelper(mdev, "split-brain");
2526 if (hg > 0 && mydisk <= D_INCONSISTENT) {
2527 dev_err(DEV, "I shall become SyncSource, but I am inconsistent!\n");
2531 if (hg < 0 && /* by intention we do not use mydisk here. */
2532 mdev->state.role == R_PRIMARY && mdev->state.disk >= D_CONSISTENT) {
2533 switch (mdev->net_conf->rr_conflict) {
2534 case ASB_CALL_HELPER:
2535 drbd_khelper(mdev, "pri-lost");
2537 case ASB_DISCONNECT:
2538 dev_err(DEV, "I shall become SyncTarget, but I am primary!\n");
2541 dev_warn(DEV, "Becoming SyncTarget, violating the stable-data"
2546 if (mdev->net_conf->dry_run || test_bit(CONN_DRY_RUN, &mdev->flags)) {
2548 dev_info(DEV, "dry-run connect: No resync, would become Connected immediately.\n");
2550 dev_info(DEV, "dry-run connect: Would become %s, doing a %s resync.",
2551 drbd_conn_str(hg > 0 ? C_SYNC_SOURCE : C_SYNC_TARGET),
2552 abs(hg) >= 2 ? "full" : "bit-map based");
2557 dev_info(DEV, "Writing the whole bitmap, full sync required after drbd_sync_handshake.\n");
2558 if (drbd_bitmap_io(mdev, &drbd_bmio_set_n_write, "set_n_write from sync_handshake"))
2562 if (hg > 0) { /* become sync source. */
2564 } else if (hg < 0) { /* become sync target */
2568 if (drbd_bm_total_weight(mdev)) {
2569 dev_info(DEV, "No resync, but %lu bits in bitmap!\n",
2570 drbd_bm_total_weight(mdev));
2577 /* returns 1 if invalid */
2578 static int cmp_after_sb(enum drbd_after_sb_p peer, enum drbd_after_sb_p self)
2580 /* ASB_DISCARD_REMOTE - ASB_DISCARD_LOCAL is valid */
2581 if ((peer == ASB_DISCARD_REMOTE && self == ASB_DISCARD_LOCAL) ||
2582 (self == ASB_DISCARD_REMOTE && peer == ASB_DISCARD_LOCAL))
2585 /* any other things with ASB_DISCARD_REMOTE or ASB_DISCARD_LOCAL are invalid */
2586 if (peer == ASB_DISCARD_REMOTE || peer == ASB_DISCARD_LOCAL ||
2587 self == ASB_DISCARD_REMOTE || self == ASB_DISCARD_LOCAL)
2590 /* everything else is valid if they are equal on both sides. */
2594 /* everything es is invalid. */
2598 static int receive_protocol(struct drbd_conf *mdev, struct p_header *h)
2600 struct p_protocol *p = (struct p_protocol *)h;
2601 int header_size, data_size;
2602 int p_proto, p_after_sb_0p, p_after_sb_1p, p_after_sb_2p;
2603 int p_want_lose, p_two_primaries, cf;
2604 char p_integrity_alg[SHARED_SECRET_MAX] = "";
2606 header_size = sizeof(*p) - sizeof(*h);
2607 data_size = h->length - header_size;
2609 if (drbd_recv(mdev, h->payload, header_size) != header_size)
2612 p_proto = be32_to_cpu(p->protocol);
2613 p_after_sb_0p = be32_to_cpu(p->after_sb_0p);
2614 p_after_sb_1p = be32_to_cpu(p->after_sb_1p);
2615 p_after_sb_2p = be32_to_cpu(p->after_sb_2p);
2616 p_two_primaries = be32_to_cpu(p->two_primaries);
2617 cf = be32_to_cpu(p->conn_flags);
2618 p_want_lose = cf & CF_WANT_LOSE;
2620 clear_bit(CONN_DRY_RUN, &mdev->flags);
2622 if (cf & CF_DRY_RUN)
2623 set_bit(CONN_DRY_RUN, &mdev->flags);
2625 if (p_proto != mdev->net_conf->wire_protocol) {
2626 dev_err(DEV, "incompatible communication protocols\n");
2630 if (cmp_after_sb(p_after_sb_0p, mdev->net_conf->after_sb_0p)) {
2631 dev_err(DEV, "incompatible after-sb-0pri settings\n");
2635 if (cmp_after_sb(p_after_sb_1p, mdev->net_conf->after_sb_1p)) {
2636 dev_err(DEV, "incompatible after-sb-1pri settings\n");
2640 if (cmp_after_sb(p_after_sb_2p, mdev->net_conf->after_sb_2p)) {
2641 dev_err(DEV, "incompatible after-sb-2pri settings\n");
2645 if (p_want_lose && mdev->net_conf->want_lose) {
2646 dev_err(DEV, "both sides have the 'want_lose' flag set\n");
2650 if (p_two_primaries != mdev->net_conf->two_primaries) {
2651 dev_err(DEV, "incompatible setting of the two-primaries options\n");
2655 if (mdev->agreed_pro_version >= 87) {
2656 unsigned char *my_alg = mdev->net_conf->integrity_alg;
2658 if (drbd_recv(mdev, p_integrity_alg, data_size) != data_size)
2661 p_integrity_alg[SHARED_SECRET_MAX-1] = 0;
2662 if (strcmp(p_integrity_alg, my_alg)) {
2663 dev_err(DEV, "incompatible setting of the data-integrity-alg\n");
2666 dev_info(DEV, "data-integrity-alg: %s\n",
2667 my_alg[0] ? my_alg : (unsigned char *)"<not-used>");
2673 drbd_force_state(mdev, NS(conn, C_DISCONNECTING));
2678 * input: alg name, feature name
2679 * return: NULL (alg name was "")
2680 * ERR_PTR(error) if something goes wrong
2681 * or the crypto hash ptr, if it worked out ok. */
2682 struct crypto_hash *drbd_crypto_alloc_digest_safe(const struct drbd_conf *mdev,
2683 const char *alg, const char *name)
2685 struct crypto_hash *tfm;
2690 tfm = crypto_alloc_hash(alg, 0, CRYPTO_ALG_ASYNC);
2692 dev_err(DEV, "Can not allocate \"%s\" as %s (reason: %ld)\n",
2693 alg, name, PTR_ERR(tfm));
2696 if (!drbd_crypto_is_hash(crypto_hash_tfm(tfm))) {
2697 crypto_free_hash(tfm);
2698 dev_err(DEV, "\"%s\" is not a digest (%s)\n", alg, name);
2699 return ERR_PTR(-EINVAL);
2704 static int receive_SyncParam(struct drbd_conf *mdev, struct p_header *h)
2707 struct p_rs_param_89 *p = (struct p_rs_param_89 *)h;
2708 unsigned int header_size, data_size, exp_max_sz;
2709 struct crypto_hash *verify_tfm = NULL;
2710 struct crypto_hash *csums_tfm = NULL;
2711 const int apv = mdev->agreed_pro_version;
2713 exp_max_sz = apv <= 87 ? sizeof(struct p_rs_param)
2714 : apv == 88 ? sizeof(struct p_rs_param)
2716 : /* 89 */ sizeof(struct p_rs_param_89);
2718 if (h->length > exp_max_sz) {
2719 dev_err(DEV, "SyncParam packet too long: received %u, expected <= %u bytes\n",
2720 h->length, exp_max_sz);
2725 header_size = sizeof(struct p_rs_param) - sizeof(*h);
2726 data_size = h->length - header_size;
2727 } else /* apv >= 89 */ {
2728 header_size = sizeof(struct p_rs_param_89) - sizeof(*h);
2729 data_size = h->length - header_size;
2730 D_ASSERT(data_size == 0);
2733 /* initialize verify_alg and csums_alg */
2734 memset(p->verify_alg, 0, 2 * SHARED_SECRET_MAX);
2736 if (drbd_recv(mdev, h->payload, header_size) != header_size)
2739 mdev->sync_conf.rate = be32_to_cpu(p->rate);
2743 if (data_size > SHARED_SECRET_MAX) {
2744 dev_err(DEV, "verify-alg too long, "
2745 "peer wants %u, accepting only %u byte\n",
2746 data_size, SHARED_SECRET_MAX);
2750 if (drbd_recv(mdev, p->verify_alg, data_size) != data_size)
2753 /* we expect NUL terminated string */
2754 /* but just in case someone tries to be evil */
2755 D_ASSERT(p->verify_alg[data_size-1] == 0);
2756 p->verify_alg[data_size-1] = 0;
2758 } else /* apv >= 89 */ {
2759 /* we still expect NUL terminated strings */
2760 /* but just in case someone tries to be evil */
2761 D_ASSERT(p->verify_alg[SHARED_SECRET_MAX-1] == 0);
2762 D_ASSERT(p->csums_alg[SHARED_SECRET_MAX-1] == 0);
2763 p->verify_alg[SHARED_SECRET_MAX-1] = 0;
2764 p->csums_alg[SHARED_SECRET_MAX-1] = 0;
2767 if (strcmp(mdev->sync_conf.verify_alg, p->verify_alg)) {
2768 if (mdev->state.conn == C_WF_REPORT_PARAMS) {
2769 dev_err(DEV, "Different verify-alg settings. me=\"%s\" peer=\"%s\"\n",
2770 mdev->sync_conf.verify_alg, p->verify_alg);
2773 verify_tfm = drbd_crypto_alloc_digest_safe(mdev,
2774 p->verify_alg, "verify-alg");
2775 if (IS_ERR(verify_tfm)) {
2781 if (apv >= 89 && strcmp(mdev->sync_conf.csums_alg, p->csums_alg)) {
2782 if (mdev->state.conn == C_WF_REPORT_PARAMS) {
2783 dev_err(DEV, "Different csums-alg settings. me=\"%s\" peer=\"%s\"\n",
2784 mdev->sync_conf.csums_alg, p->csums_alg);
2787 csums_tfm = drbd_crypto_alloc_digest_safe(mdev,
2788 p->csums_alg, "csums-alg");
2789 if (IS_ERR(csums_tfm)) {
2796 spin_lock(&mdev->peer_seq_lock);
2797 /* lock against drbd_nl_syncer_conf() */
2799 strcpy(mdev->sync_conf.verify_alg, p->verify_alg);
2800 mdev->sync_conf.verify_alg_len = strlen(p->verify_alg) + 1;
2801 crypto_free_hash(mdev->verify_tfm);
2802 mdev->verify_tfm = verify_tfm;
2803 dev_info(DEV, "using verify-alg: \"%s\"\n", p->verify_alg);
2806 strcpy(mdev->sync_conf.csums_alg, p->csums_alg);
2807 mdev->sync_conf.csums_alg_len = strlen(p->csums_alg) + 1;
2808 crypto_free_hash(mdev->csums_tfm);
2809 mdev->csums_tfm = csums_tfm;
2810 dev_info(DEV, "using csums-alg: \"%s\"\n", p->csums_alg);
2812 spin_unlock(&mdev->peer_seq_lock);
2817 /* just for completeness: actually not needed,
2818 * as this is not reached if csums_tfm was ok. */
2819 crypto_free_hash(csums_tfm);
2820 /* but free the verify_tfm again, if csums_tfm did not work out */
2821 crypto_free_hash(verify_tfm);
2822 drbd_force_state(mdev, NS(conn, C_DISCONNECTING));
2826 static void drbd_setup_order_type(struct drbd_conf *mdev, int peer)
2828 /* sorry, we currently have no working implementation
2829 * of distributed TCQ */
2832 /* warn if the arguments differ by more than 12.5% */
2833 static void warn_if_differ_considerably(struct drbd_conf *mdev,
2834 const char *s, sector_t a, sector_t b)
2837 if (a == 0 || b == 0)
2839 d = (a > b) ? (a - b) : (b - a);
2840 if (d > (a>>3) || d > (b>>3))
2841 dev_warn(DEV, "Considerable difference in %s: %llus vs. %llus\n", s,
2842 (unsigned long long)a, (unsigned long long)b);
2845 static int receive_sizes(struct drbd_conf *mdev, struct p_header *h)
2847 struct p_sizes *p = (struct p_sizes *)h;
2848 enum determine_dev_size dd = unchanged;
2849 unsigned int max_seg_s;
2850 sector_t p_size, p_usize, my_usize;
2851 int ldsc = 0; /* local disk size changed */
2852 enum drbd_conns nconn;
2854 ERR_IF(h->length != (sizeof(*p)-sizeof(*h))) return FALSE;
2855 if (drbd_recv(mdev, h->payload, h->length) != h->length)
2858 p_size = be64_to_cpu(p->d_size);
2859 p_usize = be64_to_cpu(p->u_size);
2861 if (p_size == 0 && mdev->state.disk == D_DISKLESS) {
2862 dev_err(DEV, "some backing storage is needed\n");
2863 drbd_force_state(mdev, NS(conn, C_DISCONNECTING));
2867 /* just store the peer's disk size for now.
2868 * we still need to figure out whether we accept that. */
2869 mdev->p_size = p_size;
2871 #define min_not_zero(l, r) (l == 0) ? r : ((r == 0) ? l : min(l, r))
2872 if (get_ldev(mdev)) {
2873 warn_if_differ_considerably(mdev, "lower level device sizes",
2874 p_size, drbd_get_max_capacity(mdev->ldev));
2875 warn_if_differ_considerably(mdev, "user requested size",
2876 p_usize, mdev->ldev->dc.disk_size);
2878 /* if this is the first connect, or an otherwise expected
2879 * param exchange, choose the minimum */
2880 if (mdev->state.conn == C_WF_REPORT_PARAMS)
2881 p_usize = min_not_zero((sector_t)mdev->ldev->dc.disk_size,
2884 my_usize = mdev->ldev->dc.disk_size;
2886 if (mdev->ldev->dc.disk_size != p_usize) {
2887 mdev->ldev->dc.disk_size = p_usize;
2888 dev_info(DEV, "Peer sets u_size to %lu sectors\n",
2889 (unsigned long)mdev->ldev->dc.disk_size);
2892 /* Never shrink a device with usable data during connect.
2893 But allow online shrinking if we are connected. */
2894 if (drbd_new_dev_size(mdev, mdev->ldev, 0) <
2895 drbd_get_capacity(mdev->this_bdev) &&
2896 mdev->state.disk >= D_OUTDATED &&
2897 mdev->state.conn < C_CONNECTED) {
2898 dev_err(DEV, "The peer's disk size is too small!\n");
2899 drbd_force_state(mdev, NS(conn, C_DISCONNECTING));
2900 mdev->ldev->dc.disk_size = my_usize;
2908 if (get_ldev(mdev)) {
2909 dd = drbd_determin_dev_size(mdev, 0);
2911 if (dd == dev_size_error)
2915 /* I am diskless, need to accept the peer's size. */
2916 drbd_set_my_capacity(mdev, p_size);
2919 if (mdev->p_uuid && mdev->state.conn <= C_CONNECTED && get_ldev(mdev)) {
2920 nconn = drbd_sync_handshake(mdev,
2921 mdev->state.peer, mdev->state.pdsk);
2924 if (nconn == C_MASK) {
2925 drbd_force_state(mdev, NS(conn, C_DISCONNECTING));
2929 if (drbd_request_state(mdev, NS(conn, nconn)) < SS_SUCCESS) {
2930 drbd_force_state(mdev, NS(conn, C_DISCONNECTING));
2935 if (get_ldev(mdev)) {
2936 if (mdev->ldev->known_size != drbd_get_capacity(mdev->ldev->backing_bdev)) {
2937 mdev->ldev->known_size = drbd_get_capacity(mdev->ldev->backing_bdev);
2941 max_seg_s = be32_to_cpu(p->max_segment_size);
2942 if (max_seg_s != queue_max_segment_size(mdev->rq_queue))
2943 drbd_setup_queue_param(mdev, max_seg_s);
2945 drbd_setup_order_type(mdev, be32_to_cpu(p->queue_order_type));
2949 if (mdev->state.conn > C_WF_REPORT_PARAMS) {
2950 if (be64_to_cpu(p->c_size) !=
2951 drbd_get_capacity(mdev->this_bdev) || ldsc) {
2952 /* we have different sizes, probably peer
2953 * needs to know my new size... */
2954 drbd_send_sizes(mdev, 0);
2956 if (test_and_clear_bit(RESIZE_PENDING, &mdev->flags) ||
2957 (dd == grew && mdev->state.conn == C_CONNECTED)) {
2958 if (mdev->state.pdsk >= D_INCONSISTENT &&
2959 mdev->state.disk >= D_INCONSISTENT)
2960 resync_after_online_grow(mdev);
2962 set_bit(RESYNC_AFTER_NEG, &mdev->flags);
2969 static int receive_uuids(struct drbd_conf *mdev, struct p_header *h)
2971 struct p_uuids *p = (struct p_uuids *)h;
2975 ERR_IF(h->length != (sizeof(*p)-sizeof(*h))) return FALSE;
2976 if (drbd_recv(mdev, h->payload, h->length) != h->length)
2979 p_uuid = kmalloc(sizeof(u64)*UI_EXTENDED_SIZE, GFP_NOIO);
2981 for (i = UI_CURRENT; i < UI_EXTENDED_SIZE; i++)
2982 p_uuid[i] = be64_to_cpu(p->uuid[i]);
2984 kfree(mdev->p_uuid);
2985 mdev->p_uuid = p_uuid;
2987 if (mdev->state.conn < C_CONNECTED &&
2988 mdev->state.disk < D_INCONSISTENT &&
2989 mdev->state.role == R_PRIMARY &&
2990 (mdev->ed_uuid & ~((u64)1)) != (p_uuid[UI_CURRENT] & ~((u64)1))) {
2991 dev_err(DEV, "Can only connect to data with current UUID=%016llX\n",
2992 (unsigned long long)mdev->ed_uuid);
2993 drbd_force_state(mdev, NS(conn, C_DISCONNECTING));
2997 if (get_ldev(mdev)) {
2998 int skip_initial_sync =
2999 mdev->state.conn == C_CONNECTED &&
3000 mdev->agreed_pro_version >= 90 &&
3001 mdev->ldev->md.uuid[UI_CURRENT] == UUID_JUST_CREATED &&
3002 (p_uuid[UI_FLAGS] & 8);
3003 if (skip_initial_sync) {
3004 dev_info(DEV, "Accepted new current UUID, preparing to skip initial sync\n");
3005 drbd_bitmap_io(mdev, &drbd_bmio_clear_n_write,
3006 "clear_n_write from receive_uuids");
3007 _drbd_uuid_set(mdev, UI_CURRENT, p_uuid[UI_CURRENT]);
3008 _drbd_uuid_set(mdev, UI_BITMAP, 0);
3009 _drbd_set_state(_NS2(mdev, disk, D_UP_TO_DATE, pdsk, D_UP_TO_DATE),
3016 /* Before we test for the disk state, we should wait until an eventually
3017 ongoing cluster wide state change is finished. That is important if
3018 we are primary and are detaching from our disk. We need to see the
3019 new disk state... */
3020 wait_event(mdev->misc_wait, !test_bit(CLUSTER_ST_CHANGE, &mdev->flags));
3021 if (mdev->state.conn >= C_CONNECTED && mdev->state.disk < D_INCONSISTENT)
3022 drbd_set_ed_uuid(mdev, p_uuid[UI_CURRENT]);
3028 * convert_state() - Converts the peer's view of the cluster state to our point of view
3029 * @ps: The state as seen by the peer.
3031 static union drbd_state convert_state(union drbd_state ps)
3033 union drbd_state ms;
3035 static enum drbd_conns c_tab[] = {
3036 [C_CONNECTED] = C_CONNECTED,
3038 [C_STARTING_SYNC_S] = C_STARTING_SYNC_T,
3039 [C_STARTING_SYNC_T] = C_STARTING_SYNC_S,
3040 [C_DISCONNECTING] = C_TEAR_DOWN, /* C_NETWORK_FAILURE, */
3041 [C_VERIFY_S] = C_VERIFY_T,
3047 ms.conn = c_tab[ps.conn];
3052 ms.peer_isp = (ps.aftr_isp | ps.user_isp);
3057 static int receive_req_state(struct drbd_conf *mdev, struct p_header *h)
3059 struct p_req_state *p = (struct p_req_state *)h;
3060 union drbd_state mask, val;
3063 ERR_IF(h->length != (sizeof(*p)-sizeof(*h))) return FALSE;
3064 if (drbd_recv(mdev, h->payload, h->length) != h->length)
3067 mask.i = be32_to_cpu(p->mask);
3068 val.i = be32_to_cpu(p->val);
3070 if (test_bit(DISCARD_CONCURRENT, &mdev->flags) &&
3071 test_bit(CLUSTER_ST_CHANGE, &mdev->flags)) {
3072 drbd_send_sr_reply(mdev, SS_CONCURRENT_ST_CHG);
3076 mask = convert_state(mask);
3077 val = convert_state(val);
3079 rv = drbd_change_state(mdev, CS_VERBOSE, mask, val);
3081 drbd_send_sr_reply(mdev, rv);
3087 static int receive_state(struct drbd_conf *mdev, struct p_header *h)
3089 struct p_state *p = (struct p_state *)h;
3090 enum drbd_conns nconn, oconn;
3091 union drbd_state ns, peer_state;
3092 enum drbd_disk_state real_peer_disk;
3095 ERR_IF(h->length != (sizeof(*p)-sizeof(*h)))
3098 if (drbd_recv(mdev, h->payload, h->length) != h->length)
3101 peer_state.i = be32_to_cpu(p->state);
3103 real_peer_disk = peer_state.disk;
3104 if (peer_state.disk == D_NEGOTIATING) {
3105 real_peer_disk = mdev->p_uuid[UI_FLAGS] & 4 ? D_INCONSISTENT : D_CONSISTENT;
3106 dev_info(DEV, "real peer disk state = %s\n", drbd_disk_str(real_peer_disk));
3109 spin_lock_irq(&mdev->req_lock);
3111 oconn = nconn = mdev->state.conn;
3112 spin_unlock_irq(&mdev->req_lock);
3114 if (nconn == C_WF_REPORT_PARAMS)
3115 nconn = C_CONNECTED;
3117 if (mdev->p_uuid && peer_state.disk >= D_NEGOTIATING &&
3118 get_ldev_if_state(mdev, D_NEGOTIATING)) {
3119 int cr; /* consider resync */
3121 /* if we established a new connection */
3122 cr = (oconn < C_CONNECTED);
3123 /* if we had an established connection
3124 * and one of the nodes newly attaches a disk */
3125 cr |= (oconn == C_CONNECTED &&
3126 (peer_state.disk == D_NEGOTIATING ||
3127 mdev->state.disk == D_NEGOTIATING));
3128 /* if we have both been inconsistent, and the peer has been
3129 * forced to be UpToDate with --overwrite-data */
3130 cr |= test_bit(CONSIDER_RESYNC, &mdev->flags);
3131 /* if we had been plain connected, and the admin requested to
3132 * start a sync by "invalidate" or "invalidate-remote" */
3133 cr |= (oconn == C_CONNECTED &&
3134 (peer_state.conn >= C_STARTING_SYNC_S &&
3135 peer_state.conn <= C_WF_BITMAP_T));
3138 nconn = drbd_sync_handshake(mdev, peer_state.role, real_peer_disk);
3141 if (nconn == C_MASK) {
3142 nconn = C_CONNECTED;
3143 if (mdev->state.disk == D_NEGOTIATING) {
3144 drbd_force_state(mdev, NS(disk, D_DISKLESS));
3145 } else if (peer_state.disk == D_NEGOTIATING) {
3146 dev_err(DEV, "Disk attach process on the peer node was aborted.\n");
3147 peer_state.disk = D_DISKLESS;
3148 real_peer_disk = D_DISKLESS;
3150 if (test_and_clear_bit(CONN_DRY_RUN, &mdev->flags))
3152 D_ASSERT(oconn == C_WF_REPORT_PARAMS);
3153 drbd_force_state(mdev, NS(conn, C_DISCONNECTING));
3159 spin_lock_irq(&mdev->req_lock);
3160 if (mdev->state.conn != oconn)
3162 clear_bit(CONSIDER_RESYNC, &mdev->flags);
3163 ns.i = mdev->state.i;
3165 ns.peer = peer_state.role;
3166 ns.pdsk = real_peer_disk;
3167 ns.peer_isp = (peer_state.aftr_isp | peer_state.user_isp);
3168 if ((nconn == C_CONNECTED || nconn == C_WF_BITMAP_S) && ns.disk == D_NEGOTIATING)
3169 ns.disk = mdev->new_state_tmp.disk;
3171 rv = _drbd_set_state(mdev, ns, CS_VERBOSE | CS_HARD, NULL);
3173 spin_unlock_irq(&mdev->req_lock);
3175 if (rv < SS_SUCCESS) {
3176 drbd_force_state(mdev, NS(conn, C_DISCONNECTING));
3180 if (oconn > C_WF_REPORT_PARAMS) {
3181 if (nconn > C_CONNECTED && peer_state.conn <= C_CONNECTED &&
3182 peer_state.disk != D_NEGOTIATING ) {
3183 /* we want resync, peer has not yet decided to sync... */
3184 /* Nowadays only used when forcing a node into primary role and
3185 setting its disk to UpToDate with that */
3186 drbd_send_uuids(mdev);
3187 drbd_send_state(mdev);
3191 mdev->net_conf->want_lose = 0;
3193 drbd_md_sync(mdev); /* update connected indicator, la_size, ... */
3198 static int receive_sync_uuid(struct drbd_conf *mdev, struct p_header *h)
3200 struct p_rs_uuid *p = (struct p_rs_uuid *)h;
3202 wait_event(mdev->misc_wait,
3203 mdev->state.conn == C_WF_SYNC_UUID ||
3204 mdev->state.conn < C_CONNECTED ||
3205 mdev->state.disk < D_NEGOTIATING);
3207 /* D_ASSERT( mdev->state.conn == C_WF_SYNC_UUID ); */
3209 ERR_IF(h->length != (sizeof(*p)-sizeof(*h))) return FALSE;
3210 if (drbd_recv(mdev, h->payload, h->length) != h->length)
3213 /* Here the _drbd_uuid_ functions are right, current should
3214 _not_ be rotated into the history */
3215 if (get_ldev_if_state(mdev, D_NEGOTIATING)) {
3216 _drbd_uuid_set(mdev, UI_CURRENT, be64_to_cpu(p->uuid));
3217 _drbd_uuid_set(mdev, UI_BITMAP, 0UL);
3219 drbd_start_resync(mdev, C_SYNC_TARGET);
3223 dev_err(DEV, "Ignoring SyncUUID packet!\n");
3228 enum receive_bitmap_ret { OK, DONE, FAILED };
3230 static enum receive_bitmap_ret
3231 receive_bitmap_plain(struct drbd_conf *mdev, struct p_header *h,
3232 unsigned long *buffer, struct bm_xfer_ctx *c)
3234 unsigned num_words = min_t(size_t, BM_PACKET_WORDS, c->bm_words - c->word_offset);
3235 unsigned want = num_words * sizeof(long);
3237 if (want != h->length) {
3238 dev_err(DEV, "%s:want (%u) != h->length (%u)\n", __func__, want, h->length);
3243 if (drbd_recv(mdev, buffer, want) != want)
3246 drbd_bm_merge_lel(mdev, c->word_offset, num_words, buffer);
3248 c->word_offset += num_words;
3249 c->bit_offset = c->word_offset * BITS_PER_LONG;
3250 if (c->bit_offset > c->bm_bits)
3251 c->bit_offset = c->bm_bits;
3256 static enum receive_bitmap_ret
3257 recv_bm_rle_bits(struct drbd_conf *mdev,
3258 struct p_compressed_bm *p,
3259 struct bm_xfer_ctx *c)
3261 struct bitstream bs;
3265 unsigned long s = c->bit_offset;
3267 int len = p->head.length - (sizeof(*p) - sizeof(p->head));
3268 int toggle = DCBP_get_start(p);
3272 bitstream_init(&bs, p->code, len, DCBP_get_pad_bits(p));
3274 bits = bitstream_get_bits(&bs, &look_ahead, 64);
3278 for (have = bits; have > 0; s += rl, toggle = !toggle) {
3279 bits = vli_decode_bits(&rl, look_ahead);
3285 if (e >= c->bm_bits) {
3286 dev_err(DEV, "bitmap overflow (e:%lu) while decoding bm RLE packet\n", e);
3289 _drbd_bm_set_bits(mdev, s, e);
3293 dev_err(DEV, "bitmap decoding error: h:%d b:%d la:0x%08llx l:%u/%u\n",
3294 have, bits, look_ahead,
3295 (unsigned int)(bs.cur.b - p->code),
3296 (unsigned int)bs.buf_len);
3299 look_ahead >>= bits;
3302 bits = bitstream_get_bits(&bs, &tmp, 64 - have);
3305 look_ahead |= tmp << have;
3310 bm_xfer_ctx_bit_to_word_offset(c);
3312 return (s == c->bm_bits) ? DONE : OK;
3315 static enum receive_bitmap_ret
3316 decode_bitmap_c(struct drbd_conf *mdev,
3317 struct p_compressed_bm *p,
3318 struct bm_xfer_ctx *c)
3320 if (DCBP_get_code(p) == RLE_VLI_Bits)
3321 return recv_bm_rle_bits(mdev, p, c);
3323 /* other variants had been implemented for evaluation,
3324 * but have been dropped as this one turned out to be "best"
3325 * during all our tests. */
3327 dev_err(DEV, "receive_bitmap_c: unknown encoding %u\n", p->encoding);
3328 drbd_force_state(mdev, NS(conn, C_PROTOCOL_ERROR));
3332 void INFO_bm_xfer_stats(struct drbd_conf *mdev,
3333 const char *direction, struct bm_xfer_ctx *c)
3335 /* what would it take to transfer it "plaintext" */
3336 unsigned plain = sizeof(struct p_header) *
3337 ((c->bm_words+BM_PACKET_WORDS-1)/BM_PACKET_WORDS+1)
3338 + c->bm_words * sizeof(long);
3339 unsigned total = c->bytes[0] + c->bytes[1];
3342 /* total can not be zero. but just in case: */
3346 /* don't report if not compressed */
3350 /* total < plain. check for overflow, still */
3351 r = (total > UINT_MAX/1000) ? (total / (plain/1000))
3352 : (1000 * total / plain);
3358 dev_info(DEV, "%s bitmap stats [Bytes(packets)]: plain %u(%u), RLE %u(%u), "
3359 "total %u; compression: %u.%u%%\n",
3361 c->bytes[1], c->packets[1],
3362 c->bytes[0], c->packets[0],
3363 total, r/10, r % 10);
3366 /* Since we are processing the bitfield from lower addresses to higher,
3367 it does not matter if the process it in 32 bit chunks or 64 bit
3368 chunks as long as it is little endian. (Understand it as byte stream,
3369 beginning with the lowest byte...) If we would use big endian
3370 we would need to process it from the highest address to the lowest,
3371 in order to be agnostic to the 32 vs 64 bits issue.
3373 returns 0 on failure, 1 if we successfully received it. */
3374 static int receive_bitmap(struct drbd_conf *mdev, struct p_header *h)
3376 struct bm_xfer_ctx c;
3378 enum receive_bitmap_ret ret;
3381 wait_event(mdev->misc_wait, !atomic_read(&mdev->ap_bio_cnt));
3383 drbd_bm_lock(mdev, "receive bitmap");
3385 /* maybe we should use some per thread scratch page,
3386 * and allocate that during initial device creation? */
3387 buffer = (unsigned long *) __get_free_page(GFP_NOIO);
3389 dev_err(DEV, "failed to allocate one page buffer in %s\n", __func__);
3393 c = (struct bm_xfer_ctx) {
3394 .bm_bits = drbd_bm_bits(mdev),
3395 .bm_words = drbd_bm_words(mdev),
3399 if (h->command == P_BITMAP) {
3400 ret = receive_bitmap_plain(mdev, h, buffer, &c);
3401 } else if (h->command == P_COMPRESSED_BITMAP) {
3402 /* MAYBE: sanity check that we speak proto >= 90,
3403 * and the feature is enabled! */
3404 struct p_compressed_bm *p;
3406 if (h->length > BM_PACKET_PAYLOAD_BYTES) {
3407 dev_err(DEV, "ReportCBitmap packet too large\n");
3410 /* use the page buff */
3412 memcpy(p, h, sizeof(*h));
3413 if (drbd_recv(mdev, p->head.payload, h->length) != h->length)
3415 if (p->head.length <= (sizeof(*p) - sizeof(p->head))) {
3416 dev_err(DEV, "ReportCBitmap packet too small (l:%u)\n", p->head.length);
3419 ret = decode_bitmap_c(mdev, p, &c);
3421 dev_warn(DEV, "receive_bitmap: h->command neither ReportBitMap nor ReportCBitMap (is 0x%x)", h->command);
3425 c.packets[h->command == P_BITMAP]++;
3426 c.bytes[h->command == P_BITMAP] += sizeof(struct p_header) + h->length;
3431 if (!drbd_recv_header(mdev, h))
3433 } while (ret == OK);
3437 INFO_bm_xfer_stats(mdev, "receive", &c);
3439 if (mdev->state.conn == C_WF_BITMAP_T) {
3440 ok = !drbd_send_bitmap(mdev);
3443 /* Omit CS_ORDERED with this state transition to avoid deadlocks. */
3444 ok = _drbd_request_state(mdev, NS(conn, C_WF_SYNC_UUID), CS_VERBOSE);
3445 D_ASSERT(ok == SS_SUCCESS);
3446 } else if (mdev->state.conn != C_WF_BITMAP_S) {
3447 /* admin may have requested C_DISCONNECTING,
3448 * other threads may have noticed network errors */
3449 dev_info(DEV, "unexpected cstate (%s) in receive_bitmap\n",
3450 drbd_conn_str(mdev->state.conn));
3455 drbd_bm_unlock(mdev);
3456 if (ok && mdev->state.conn == C_WF_BITMAP_S)
3457 drbd_start_resync(mdev, C_SYNC_SOURCE);
3458 free_page((unsigned long) buffer);
3462 static int receive_skip(struct drbd_conf *mdev, struct p_header *h)
3464 /* TODO zero copy sink :) */
3465 static char sink[128];
3468 dev_warn(DEV, "skipping unknown optional packet type %d, l: %d!\n",
3469 h->command, h->length);
3473 want = min_t(int, size, sizeof(sink));
3474 r = drbd_recv(mdev, sink, want);
3475 ERR_IF(r <= 0) break;
3481 static int receive_UnplugRemote(struct drbd_conf *mdev, struct p_header *h)
3483 if (mdev->state.disk >= D_INCONSISTENT)
3486 /* Make sure we've acked all the TCP data associated
3487 * with the data requests being unplugged */
3488 drbd_tcp_quickack(mdev->data.socket);
3493 typedef int (*drbd_cmd_handler_f)(struct drbd_conf *, struct p_header *);
3495 static drbd_cmd_handler_f drbd_default_handler[] = {
3496 [P_DATA] = receive_Data,
3497 [P_DATA_REPLY] = receive_DataReply,
3498 [P_RS_DATA_REPLY] = receive_RSDataReply,
3499 [P_BARRIER] = receive_Barrier,
3500 [P_BITMAP] = receive_bitmap,
3501 [P_COMPRESSED_BITMAP] = receive_bitmap,
3502 [P_UNPLUG_REMOTE] = receive_UnplugRemote,
3503 [P_DATA_REQUEST] = receive_DataRequest,
3504 [P_RS_DATA_REQUEST] = receive_DataRequest,
3505 [P_SYNC_PARAM] = receive_SyncParam,
3506 [P_SYNC_PARAM89] = receive_SyncParam,
3507 [P_PROTOCOL] = receive_protocol,
3508 [P_UUIDS] = receive_uuids,
3509 [P_SIZES] = receive_sizes,
3510 [P_STATE] = receive_state,
3511 [P_STATE_CHG_REQ] = receive_req_state,
3512 [P_SYNC_UUID] = receive_sync_uuid,
3513 [P_OV_REQUEST] = receive_DataRequest,
3514 [P_OV_REPLY] = receive_DataRequest,
3515 [P_CSUM_RS_REQUEST] = receive_DataRequest,
3516 /* anything missing from this table is in
3517 * the asender_tbl, see get_asender_cmd */
3521 static drbd_cmd_handler_f *drbd_cmd_handler = drbd_default_handler;
3522 static drbd_cmd_handler_f *drbd_opt_cmd_handler;
3524 static void drbdd(struct drbd_conf *mdev)
3526 drbd_cmd_handler_f handler;
3527 struct p_header *header = &mdev->data.rbuf.header;
3529 while (get_t_state(&mdev->receiver) == Running) {
3530 drbd_thread_current_set_cpu(mdev);
3531 if (!drbd_recv_header(mdev, header)) {
3532 drbd_force_state(mdev, NS(conn, C_PROTOCOL_ERROR));
3536 if (header->command < P_MAX_CMD)
3537 handler = drbd_cmd_handler[header->command];
3538 else if (P_MAY_IGNORE < header->command
3539 && header->command < P_MAX_OPT_CMD)
3540 handler = drbd_opt_cmd_handler[header->command-P_MAY_IGNORE];
3541 else if (header->command > P_MAX_OPT_CMD)
3542 handler = receive_skip;
3546 if (unlikely(!handler)) {
3547 dev_err(DEV, "unknown packet type %d, l: %d!\n",
3548 header->command, header->length);
3549 drbd_force_state(mdev, NS(conn, C_PROTOCOL_ERROR));
3552 if (unlikely(!handler(mdev, header))) {
3553 dev_err(DEV, "error receiving %s, l: %d!\n",
3554 cmdname(header->command), header->length);
3555 drbd_force_state(mdev, NS(conn, C_PROTOCOL_ERROR));
3561 static void drbd_fail_pending_reads(struct drbd_conf *mdev)
3563 struct hlist_head *slot;
3564 struct hlist_node *pos;
3565 struct hlist_node *tmp;
3566 struct drbd_request *req;
3570 * Application READ requests
3572 spin_lock_irq(&mdev->req_lock);
3573 for (i = 0; i < APP_R_HSIZE; i++) {
3574 slot = mdev->app_reads_hash+i;
3575 hlist_for_each_entry_safe(req, pos, tmp, slot, colision) {
3576 /* it may (but should not any longer!)
3577 * be on the work queue; if that assert triggers,
3578 * we need to also grab the
3579 * spin_lock_irq(&mdev->data.work.q_lock);
3580 * and list_del_init here. */
3581 D_ASSERT(list_empty(&req->w.list));
3582 /* It would be nice to complete outside of spinlock.
3583 * But this is easier for now. */
3584 _req_mod(req, connection_lost_while_pending);
3587 for (i = 0; i < APP_R_HSIZE; i++)
3588 if (!hlist_empty(mdev->app_reads_hash+i))
3589 dev_warn(DEV, "ASSERT FAILED: app_reads_hash[%d].first: "
3590 "%p, should be NULL\n", i, mdev->app_reads_hash[i].first);
3592 memset(mdev->app_reads_hash, 0, APP_R_HSIZE*sizeof(void *));
3593 spin_unlock_irq(&mdev->req_lock);
3596 void drbd_flush_workqueue(struct drbd_conf *mdev)
3598 struct drbd_wq_barrier barr;
3600 barr.w.cb = w_prev_work_done;
3601 init_completion(&barr.done);
3602 drbd_queue_work(&mdev->data.work, &barr.w);
3603 wait_for_completion(&barr.done);
3606 static void drbd_disconnect(struct drbd_conf *mdev)
3608 enum drbd_fencing_p fp;
3609 union drbd_state os, ns;
3610 int rv = SS_UNKNOWN_ERROR;
3613 if (mdev->state.conn == C_STANDALONE)
3615 if (mdev->state.conn >= C_WF_CONNECTION)
3616 dev_err(DEV, "ASSERT FAILED cstate = %s, expected < WFConnection\n",
3617 drbd_conn_str(mdev->state.conn));
3619 /* asender does not clean up anything. it must not interfere, either */
3620 drbd_thread_stop(&mdev->asender);
3621 drbd_free_sock(mdev);
3623 spin_lock_irq(&mdev->req_lock);
3624 _drbd_wait_ee_list_empty(mdev, &mdev->active_ee);
3625 _drbd_wait_ee_list_empty(mdev, &mdev->sync_ee);
3626 _drbd_wait_ee_list_empty(mdev, &mdev->read_ee);
3627 spin_unlock_irq(&mdev->req_lock);
3629 /* We do not have data structures that would allow us to
3630 * get the rs_pending_cnt down to 0 again.
3631 * * On C_SYNC_TARGET we do not have any data structures describing
3632 * the pending RSDataRequest's we have sent.
3633 * * On C_SYNC_SOURCE there is no data structure that tracks
3634 * the P_RS_DATA_REPLY blocks that we sent to the SyncTarget.
3635 * And no, it is not the sum of the reference counts in the
3636 * resync_LRU. The resync_LRU tracks the whole operation including
3637 * the disk-IO, while the rs_pending_cnt only tracks the blocks
3639 drbd_rs_cancel_all(mdev);
3641 mdev->rs_failed = 0;
3642 atomic_set(&mdev->rs_pending_cnt, 0);
3643 wake_up(&mdev->misc_wait);
3645 /* make sure syncer is stopped and w_resume_next_sg queued */
3646 del_timer_sync(&mdev->resync_timer);
3647 set_bit(STOP_SYNC_TIMER, &mdev->flags);
3648 resync_timer_fn((unsigned long)mdev);
3650 /* wait for all w_e_end_data_req, w_e_end_rsdata_req, w_send_barrier,
3651 * w_make_resync_request etc. which may still be on the worker queue
3652 * to be "canceled" */
3653 drbd_flush_workqueue(mdev);
3655 /* This also does reclaim_net_ee(). If we do this too early, we might
3656 * miss some resync ee and pages.*/
3657 drbd_process_done_ee(mdev);
3659 kfree(mdev->p_uuid);
3660 mdev->p_uuid = NULL;
3662 if (!mdev->state.susp)
3665 drbd_fail_pending_reads(mdev);
3667 dev_info(DEV, "Connection closed\n");
3672 if (get_ldev(mdev)) {
3673 fp = mdev->ldev->dc.fencing;
3677 if (mdev->state.role == R_PRIMARY) {
3678 if (fp >= FP_RESOURCE && mdev->state.pdsk >= D_UNKNOWN) {
3679 enum drbd_disk_state nps = drbd_try_outdate_peer(mdev);
3680 drbd_request_state(mdev, NS(pdsk, nps));
3684 spin_lock_irq(&mdev->req_lock);
3686 if (os.conn >= C_UNCONNECTED) {
3687 /* Do not restart in case we are C_DISCONNECTING */
3689 ns.conn = C_UNCONNECTED;
3690 rv = _drbd_set_state(mdev, ns, CS_VERBOSE, NULL);
3692 spin_unlock_irq(&mdev->req_lock);
3694 if (os.conn == C_DISCONNECTING) {
3695 struct hlist_head *h;
3696 wait_event(mdev->misc_wait, atomic_read(&mdev->net_cnt) == 0);
3698 /* we must not free the tl_hash
3699 * while application io is still on the fly */
3700 wait_event(mdev->misc_wait, atomic_read(&mdev->ap_bio_cnt) == 0);
3702 spin_lock_irq(&mdev->req_lock);
3704 for (h = mdev->ee_hash; h < mdev->ee_hash + mdev->ee_hash_s; h++)
3706 dev_err(DEV, "ASSERT FAILED ee_hash[%u].first == %p, expected NULL\n",
3707 (int)(h - mdev->ee_hash), h->first);
3708 kfree(mdev->ee_hash);
3709 mdev->ee_hash = NULL;
3710 mdev->ee_hash_s = 0;
3713 for (h = mdev->tl_hash; h < mdev->tl_hash + mdev->tl_hash_s; h++)
3715 dev_err(DEV, "ASSERT FAILED tl_hash[%u] == %p, expected NULL\n",
3716 (int)(h - mdev->tl_hash), h->first);
3717 kfree(mdev->tl_hash);
3718 mdev->tl_hash = NULL;
3719 mdev->tl_hash_s = 0;
3720 spin_unlock_irq(&mdev->req_lock);
3722 crypto_free_hash(mdev->cram_hmac_tfm);
3723 mdev->cram_hmac_tfm = NULL;
3725 kfree(mdev->net_conf);
3726 mdev->net_conf = NULL;
3727 drbd_request_state(mdev, NS(conn, C_STANDALONE));
3730 /* tcp_close and release of sendpage pages can be deferred. I don't
3731 * want to use SO_LINGER, because apparently it can be deferred for
3732 * more than 20 seconds (longest time I checked).
3734 * Actually we don't care for exactly when the network stack does its
3735 * put_page(), but release our reference on these pages right here.
3737 i = drbd_release_ee(mdev, &mdev->net_ee);
3739 dev_info(DEV, "net_ee not empty, killed %u entries\n", i);
3740 i = atomic_read(&mdev->pp_in_use);
3742 dev_info(DEV, "pp_in_use = %u, expected 0\n", i);
3744 D_ASSERT(list_empty(&mdev->read_ee));
3745 D_ASSERT(list_empty(&mdev->active_ee));
3746 D_ASSERT(list_empty(&mdev->sync_ee));
3747 D_ASSERT(list_empty(&mdev->done_ee));
3749 /* ok, no more ee's on the fly, it is safe to reset the epoch_size */
3750 atomic_set(&mdev->current_epoch->epoch_size, 0);
3751 D_ASSERT(list_empty(&mdev->current_epoch->list));
3755 * We support PRO_VERSION_MIN to PRO_VERSION_MAX. The protocol version
3756 * we can agree on is stored in agreed_pro_version.
3758 * feature flags and the reserved array should be enough room for future
3759 * enhancements of the handshake protocol, and possible plugins...
3761 * for now, they are expected to be zero, but ignored.
3763 static int drbd_send_handshake(struct drbd_conf *mdev)
3765 /* ASSERT current == mdev->receiver ... */
3766 struct p_handshake *p = &mdev->data.sbuf.handshake;
3769 if (mutex_lock_interruptible(&mdev->data.mutex)) {
3770 dev_err(DEV, "interrupted during initial handshake\n");
3771 return 0; /* interrupted. not ok. */
3774 if (mdev->data.socket == NULL) {
3775 mutex_unlock(&mdev->data.mutex);
3779 memset(p, 0, sizeof(*p));
3780 p->protocol_min = cpu_to_be32(PRO_VERSION_MIN);
3781 p->protocol_max = cpu_to_be32(PRO_VERSION_MAX);
3782 ok = _drbd_send_cmd( mdev, mdev->data.socket, P_HAND_SHAKE,
3783 (struct p_header *)p, sizeof(*p), 0 );
3784 mutex_unlock(&mdev->data.mutex);
3790 * 1 yes, we have a valid connection
3791 * 0 oops, did not work out, please try again
3792 * -1 peer talks different language,
3793 * no point in trying again, please go standalone.
3795 static int drbd_do_handshake(struct drbd_conf *mdev)
3797 /* ASSERT current == mdev->receiver ... */
3798 struct p_handshake *p = &mdev->data.rbuf.handshake;
3799 const int expect = sizeof(struct p_handshake)
3800 -sizeof(struct p_header);
3803 rv = drbd_send_handshake(mdev);
3807 rv = drbd_recv_header(mdev, &p->head);
3811 if (p->head.command != P_HAND_SHAKE) {
3812 dev_err(DEV, "expected HandShake packet, received: %s (0x%04x)\n",
3813 cmdname(p->head.command), p->head.command);
3817 if (p->head.length != expect) {
3818 dev_err(DEV, "expected HandShake length: %u, received: %u\n",
3819 expect, p->head.length);
3823 rv = drbd_recv(mdev, &p->head.payload, expect);
3826 dev_err(DEV, "short read receiving handshake packet: l=%u\n", rv);
3830 p->protocol_min = be32_to_cpu(p->protocol_min);
3831 p->protocol_max = be32_to_cpu(p->protocol_max);
3832 if (p->protocol_max == 0)
3833 p->protocol_max = p->protocol_min;
3835 if (PRO_VERSION_MAX < p->protocol_min ||
3836 PRO_VERSION_MIN > p->protocol_max)
3839 mdev->agreed_pro_version = min_t(int, PRO_VERSION_MAX, p->protocol_max);
3841 dev_info(DEV, "Handshake successful: "
3842 "Agreed network protocol version %d\n", mdev->agreed_pro_version);
3847 dev_err(DEV, "incompatible DRBD dialects: "
3848 "I support %d-%d, peer supports %d-%d\n",
3849 PRO_VERSION_MIN, PRO_VERSION_MAX,
3850 p->protocol_min, p->protocol_max);
3854 #if !defined(CONFIG_CRYPTO_HMAC) && !defined(CONFIG_CRYPTO_HMAC_MODULE)
3855 static int drbd_do_auth(struct drbd_conf *mdev)
3857 dev_err(DEV, "This kernel was build without CONFIG_CRYPTO_HMAC.\n");
3858 dev_err(DEV, "You need to disable 'cram-hmac-alg' in drbd.conf.\n");
3862 #define CHALLENGE_LEN 64
3866 0 - failed, try again (network error),
3867 -1 - auth failed, don't try again.
3870 static int drbd_do_auth(struct drbd_conf *mdev)
3872 char my_challenge[CHALLENGE_LEN]; /* 64 Bytes... */
3873 struct scatterlist sg;
3874 char *response = NULL;
3875 char *right_response = NULL;
3876 char *peers_ch = NULL;
3878 unsigned int key_len = strlen(mdev->net_conf->shared_secret);
3879 unsigned int resp_size;
3880 struct hash_desc desc;
3883 desc.tfm = mdev->cram_hmac_tfm;
3886 rv = crypto_hash_setkey(mdev->cram_hmac_tfm,
3887 (u8 *)mdev->net_conf->shared_secret, key_len);
3889 dev_err(DEV, "crypto_hash_setkey() failed with %d\n", rv);
3894 get_random_bytes(my_challenge, CHALLENGE_LEN);
3896 rv = drbd_send_cmd2(mdev, P_AUTH_CHALLENGE, my_challenge, CHALLENGE_LEN);
3900 rv = drbd_recv_header(mdev, &p);
3904 if (p.command != P_AUTH_CHALLENGE) {
3905 dev_err(DEV, "expected AuthChallenge packet, received: %s (0x%04x)\n",
3906 cmdname(p.command), p.command);
3911 if (p.length > CHALLENGE_LEN*2) {
3912 dev_err(DEV, "expected AuthChallenge payload too big.\n");
3917 peers_ch = kmalloc(p.length, GFP_NOIO);
3918 if (peers_ch == NULL) {
3919 dev_err(DEV, "kmalloc of peers_ch failed\n");
3924 rv = drbd_recv(mdev, peers_ch, p.length);
3926 if (rv != p.length) {
3927 dev_err(DEV, "short read AuthChallenge: l=%u\n", rv);
3932 resp_size = crypto_hash_digestsize(mdev->cram_hmac_tfm);
3933 response = kmalloc(resp_size, GFP_NOIO);
3934 if (response == NULL) {
3935 dev_err(DEV, "kmalloc of response failed\n");
3940 sg_init_table(&sg, 1);
3941 sg_set_buf(&sg, peers_ch, p.length);
3943 rv = crypto_hash_digest(&desc, &sg, sg.length, response);
3945 dev_err(DEV, "crypto_hash_digest() failed with %d\n", rv);
3950 rv = drbd_send_cmd2(mdev, P_AUTH_RESPONSE, response, resp_size);
3954 rv = drbd_recv_header(mdev, &p);
3958 if (p.command != P_AUTH_RESPONSE) {
3959 dev_err(DEV, "expected AuthResponse packet, received: %s (0x%04x)\n",
3960 cmdname(p.command), p.command);
3965 if (p.length != resp_size) {
3966 dev_err(DEV, "expected AuthResponse payload of wrong size\n");
3971 rv = drbd_recv(mdev, response , resp_size);
3973 if (rv != resp_size) {
3974 dev_err(DEV, "short read receiving AuthResponse: l=%u\n", rv);
3979 right_response = kmalloc(resp_size, GFP_NOIO);
3980 if (right_response == NULL) {
3981 dev_err(DEV, "kmalloc of right_response failed\n");
3986 sg_set_buf(&sg, my_challenge, CHALLENGE_LEN);
3988 rv = crypto_hash_digest(&desc, &sg, sg.length, right_response);
3990 dev_err(DEV, "crypto_hash_digest() failed with %d\n", rv);
3995 rv = !memcmp(response, right_response, resp_size);
3998 dev_info(DEV, "Peer authenticated using %d bytes of '%s' HMAC\n",
3999 resp_size, mdev->net_conf->cram_hmac_alg);
4006 kfree(right_response);
4012 int drbdd_init(struct drbd_thread *thi)
4014 struct drbd_conf *mdev = thi->mdev;
4015 unsigned int minor = mdev_to_minor(mdev);
4018 sprintf(current->comm, "drbd%d_receiver", minor);
4020 dev_info(DEV, "receiver (re)started\n");
4023 h = drbd_connect(mdev);
4025 drbd_disconnect(mdev);
4026 __set_current_state(TASK_INTERRUPTIBLE);
4027 schedule_timeout(HZ);
4030 dev_warn(DEV, "Discarding network configuration.\n");
4031 drbd_force_state(mdev, NS(conn, C_DISCONNECTING));
4036 if (get_net_conf(mdev)) {
4042 drbd_disconnect(mdev);
4044 dev_info(DEV, "receiver terminated\n");
4048 /* ********* acknowledge sender ******** */
4050 static int got_RqSReply(struct drbd_conf *mdev, struct p_header *h)
4052 struct p_req_state_reply *p = (struct p_req_state_reply *)h;
4054 int retcode = be32_to_cpu(p->retcode);
4056 if (retcode >= SS_SUCCESS) {
4057 set_bit(CL_ST_CHG_SUCCESS, &mdev->flags);
4059 set_bit(CL_ST_CHG_FAIL, &mdev->flags);
4060 dev_err(DEV, "Requested state change failed by peer: %s (%d)\n",
4061 drbd_set_st_err_str(retcode), retcode);
4063 wake_up(&mdev->state_wait);
4068 static int got_Ping(struct drbd_conf *mdev, struct p_header *h)
4070 return drbd_send_ping_ack(mdev);
4074 static int got_PingAck(struct drbd_conf *mdev, struct p_header *h)
4076 /* restore idle timeout */
4077 mdev->meta.socket->sk->sk_rcvtimeo = mdev->net_conf->ping_int*HZ;
4078 if (!test_and_set_bit(GOT_PING_ACK, &mdev->flags))
4079 wake_up(&mdev->misc_wait);
4084 static int got_IsInSync(struct drbd_conf *mdev, struct p_header *h)
4086 struct p_block_ack *p = (struct p_block_ack *)h;
4087 sector_t sector = be64_to_cpu(p->sector);
4088 int blksize = be32_to_cpu(p->blksize);
4090 D_ASSERT(mdev->agreed_pro_version >= 89);
4092 update_peer_seq(mdev, be32_to_cpu(p->seq_num));
4094 drbd_rs_complete_io(mdev, sector);
4095 drbd_set_in_sync(mdev, sector, blksize);
4096 /* rs_same_csums is supposed to count in units of BM_BLOCK_SIZE */
4097 mdev->rs_same_csum += (blksize >> BM_BLOCK_SHIFT);
4098 dec_rs_pending(mdev);
4103 /* when we receive the ACK for a write request,
4104 * verify that we actually know about it */
4105 static struct drbd_request *_ack_id_to_req(struct drbd_conf *mdev,
4106 u64 id, sector_t sector)
4108 struct hlist_head *slot = tl_hash_slot(mdev, sector);
4109 struct hlist_node *n;
4110 struct drbd_request *req;
4112 hlist_for_each_entry(req, n, slot, colision) {
4113 if ((unsigned long)req == (unsigned long)id) {
4114 if (req->sector != sector) {
4115 dev_err(DEV, "_ack_id_to_req: found req %p but it has "
4116 "wrong sector (%llus versus %llus)\n", req,
4117 (unsigned long long)req->sector,
4118 (unsigned long long)sector);
4124 dev_err(DEV, "_ack_id_to_req: failed to find req %p, sector %llus in list\n",
4125 (void *)(unsigned long)id, (unsigned long long)sector);
4129 typedef struct drbd_request *(req_validator_fn)
4130 (struct drbd_conf *mdev, u64 id, sector_t sector);
4132 static int validate_req_change_req_state(struct drbd_conf *mdev,
4133 u64 id, sector_t sector, req_validator_fn validator,
4134 const char *func, enum drbd_req_event what)
4136 struct drbd_request *req;
4137 struct bio_and_error m;
4139 spin_lock_irq(&mdev->req_lock);
4140 req = validator(mdev, id, sector);
4141 if (unlikely(!req)) {
4142 spin_unlock_irq(&mdev->req_lock);
4143 dev_err(DEV, "%s: got a corrupt block_id/sector pair\n", func);
4146 __req_mod(req, what, &m);
4147 spin_unlock_irq(&mdev->req_lock);
4150 complete_master_bio(mdev, &m);
4154 static int got_BlockAck(struct drbd_conf *mdev, struct p_header *h)
4156 struct p_block_ack *p = (struct p_block_ack *)h;
4157 sector_t sector = be64_to_cpu(p->sector);
4158 int blksize = be32_to_cpu(p->blksize);
4159 enum drbd_req_event what;
4161 update_peer_seq(mdev, be32_to_cpu(p->seq_num));
4163 if (is_syncer_block_id(p->block_id)) {
4164 drbd_set_in_sync(mdev, sector, blksize);
4165 dec_rs_pending(mdev);
4168 switch (be16_to_cpu(h->command)) {
4169 case P_RS_WRITE_ACK:
4170 D_ASSERT(mdev->net_conf->wire_protocol == DRBD_PROT_C);
4171 what = write_acked_by_peer_and_sis;
4174 D_ASSERT(mdev->net_conf->wire_protocol == DRBD_PROT_C);
4175 what = write_acked_by_peer;
4178 D_ASSERT(mdev->net_conf->wire_protocol == DRBD_PROT_B);
4179 what = recv_acked_by_peer;
4182 D_ASSERT(mdev->net_conf->wire_protocol == DRBD_PROT_C);
4183 what = conflict_discarded_by_peer;
4190 return validate_req_change_req_state(mdev, p->block_id, sector,
4191 _ack_id_to_req, __func__ , what);
4194 static int got_NegAck(struct drbd_conf *mdev, struct p_header *h)
4196 struct p_block_ack *p = (struct p_block_ack *)h;
4197 sector_t sector = be64_to_cpu(p->sector);
4199 if (__ratelimit(&drbd_ratelimit_state))
4200 dev_warn(DEV, "Got NegAck packet. Peer is in troubles?\n");
4202 update_peer_seq(mdev, be32_to_cpu(p->seq_num));
4204 if (is_syncer_block_id(p->block_id)) {
4205 int size = be32_to_cpu(p->blksize);
4206 dec_rs_pending(mdev);
4207 drbd_rs_failed_io(mdev, sector, size);
4210 return validate_req_change_req_state(mdev, p->block_id, sector,
4211 _ack_id_to_req, __func__ , neg_acked);
4214 static int got_NegDReply(struct drbd_conf *mdev, struct p_header *h)
4216 struct p_block_ack *p = (struct p_block_ack *)h;
4217 sector_t sector = be64_to_cpu(p->sector);
4219 update_peer_seq(mdev, be32_to_cpu(p->seq_num));
4220 dev_err(DEV, "Got NegDReply; Sector %llus, len %u; Fail original request.\n",
4221 (unsigned long long)sector, be32_to_cpu(p->blksize));
4223 return validate_req_change_req_state(mdev, p->block_id, sector,
4224 _ar_id_to_req, __func__ , neg_acked);
4227 static int got_NegRSDReply(struct drbd_conf *mdev, struct p_header *h)
4231 struct p_block_ack *p = (struct p_block_ack *)h;
4233 sector = be64_to_cpu(p->sector);
4234 size = be32_to_cpu(p->blksize);
4235 D_ASSERT(p->block_id == ID_SYNCER);
4237 update_peer_seq(mdev, be32_to_cpu(p->seq_num));
4239 dec_rs_pending(mdev);
4241 if (get_ldev_if_state(mdev, D_FAILED)) {
4242 drbd_rs_complete_io(mdev, sector);
4243 drbd_rs_failed_io(mdev, sector, size);
4250 static int got_BarrierAck(struct drbd_conf *mdev, struct p_header *h)
4252 struct p_barrier_ack *p = (struct p_barrier_ack *)h;
4254 tl_release(mdev, p->barrier, be32_to_cpu(p->set_size));
4259 static int got_OVResult(struct drbd_conf *mdev, struct p_header *h)
4261 struct p_block_ack *p = (struct p_block_ack *)h;
4262 struct drbd_work *w;
4266 sector = be64_to_cpu(p->sector);
4267 size = be32_to_cpu(p->blksize);
4269 update_peer_seq(mdev, be32_to_cpu(p->seq_num));
4271 if (be64_to_cpu(p->block_id) == ID_OUT_OF_SYNC)
4272 drbd_ov_oos_found(mdev, sector, size);
4276 drbd_rs_complete_io(mdev, sector);
4277 dec_rs_pending(mdev);
4279 if (--mdev->ov_left == 0) {
4280 w = kmalloc(sizeof(*w), GFP_NOIO);
4282 w->cb = w_ov_finished;
4283 drbd_queue_work_front(&mdev->data.work, w);
4285 dev_err(DEV, "kmalloc(w) failed.");
4287 drbd_resync_finished(mdev);
4293 struct asender_cmd {
4295 int (*process)(struct drbd_conf *mdev, struct p_header *h);
4298 static struct asender_cmd *get_asender_cmd(int cmd)
4300 static struct asender_cmd asender_tbl[] = {
4301 /* anything missing from this table is in
4302 * the drbd_cmd_handler (drbd_default_handler) table,
4303 * see the beginning of drbdd() */
4304 [P_PING] = { sizeof(struct p_header), got_Ping },
4305 [P_PING_ACK] = { sizeof(struct p_header), got_PingAck },
4306 [P_RECV_ACK] = { sizeof(struct p_block_ack), got_BlockAck },
4307 [P_WRITE_ACK] = { sizeof(struct p_block_ack), got_BlockAck },
4308 [P_RS_WRITE_ACK] = { sizeof(struct p_block_ack), got_BlockAck },
4309 [P_DISCARD_ACK] = { sizeof(struct p_block_ack), got_BlockAck },
4310 [P_NEG_ACK] = { sizeof(struct p_block_ack), got_NegAck },
4311 [P_NEG_DREPLY] = { sizeof(struct p_block_ack), got_NegDReply },
4312 [P_NEG_RS_DREPLY] = { sizeof(struct p_block_ack), got_NegRSDReply},
4313 [P_OV_RESULT] = { sizeof(struct p_block_ack), got_OVResult },
4314 [P_BARRIER_ACK] = { sizeof(struct p_barrier_ack), got_BarrierAck },
4315 [P_STATE_CHG_REPLY] = { sizeof(struct p_req_state_reply), got_RqSReply },
4316 [P_RS_IS_IN_SYNC] = { sizeof(struct p_block_ack), got_IsInSync },
4317 [P_MAX_CMD] = { 0, NULL },
4319 if (cmd > P_MAX_CMD || asender_tbl[cmd].process == NULL)
4321 return &asender_tbl[cmd];
4324 int drbd_asender(struct drbd_thread *thi)
4326 struct drbd_conf *mdev = thi->mdev;
4327 struct p_header *h = &mdev->meta.rbuf.header;
4328 struct asender_cmd *cmd = NULL;
4333 int expect = sizeof(struct p_header);
4336 sprintf(current->comm, "drbd%d_asender", mdev_to_minor(mdev));
4338 current->policy = SCHED_RR; /* Make this a realtime task! */
4339 current->rt_priority = 2; /* more important than all other tasks */
4341 while (get_t_state(thi) == Running) {
4342 drbd_thread_current_set_cpu(mdev);
4343 if (test_and_clear_bit(SEND_PING, &mdev->flags)) {
4344 ERR_IF(!drbd_send_ping(mdev)) goto reconnect;
4345 mdev->meta.socket->sk->sk_rcvtimeo =
4346 mdev->net_conf->ping_timeo*HZ/10;
4349 /* conditionally cork;
4350 * it may hurt latency if we cork without much to send */
4351 if (!mdev->net_conf->no_cork &&
4352 3 < atomic_read(&mdev->unacked_cnt))
4353 drbd_tcp_cork(mdev->meta.socket);
4355 clear_bit(SIGNAL_ASENDER, &mdev->flags);
4356 flush_signals(current);
4357 if (!drbd_process_done_ee(mdev)) {
4358 dev_err(DEV, "process_done_ee() = NOT_OK\n");
4361 /* to avoid race with newly queued ACKs */
4362 set_bit(SIGNAL_ASENDER, &mdev->flags);
4363 spin_lock_irq(&mdev->req_lock);
4364 empty = list_empty(&mdev->done_ee);
4365 spin_unlock_irq(&mdev->req_lock);
4366 /* new ack may have been queued right here,
4367 * but then there is also a signal pending,
4368 * and we start over... */
4372 /* but unconditionally uncork unless disabled */
4373 if (!mdev->net_conf->no_cork)
4374 drbd_tcp_uncork(mdev->meta.socket);
4376 /* short circuit, recv_msg would return EINTR anyways. */
4377 if (signal_pending(current))
4380 rv = drbd_recv_short(mdev, mdev->meta.socket,
4381 buf, expect-received, 0);
4382 clear_bit(SIGNAL_ASENDER, &mdev->flags);
4384 flush_signals(current);
4387 * -EINTR (on meta) we got a signal
4388 * -EAGAIN (on meta) rcvtimeo expired
4389 * -ECONNRESET other side closed the connection
4390 * -ERESTARTSYS (on data) we got a signal
4391 * rv < 0 other than above: unexpected error!
4392 * rv == expected: full header or command
4393 * rv < expected: "woken" by signal during receive
4394 * rv == 0 : "connection shut down by peer"
4396 if (likely(rv > 0)) {
4399 } else if (rv == 0) {
4400 dev_err(DEV, "meta connection shut down by peer.\n");
4402 } else if (rv == -EAGAIN) {
4403 if (mdev->meta.socket->sk->sk_rcvtimeo ==
4404 mdev->net_conf->ping_timeo*HZ/10) {
4405 dev_err(DEV, "PingAck did not arrive in time.\n");
4408 set_bit(SEND_PING, &mdev->flags);
4410 } else if (rv == -EINTR) {
4413 dev_err(DEV, "sock_recvmsg returned %d\n", rv);
4417 if (received == expect && cmd == NULL) {
4418 if (unlikely(h->magic != BE_DRBD_MAGIC)) {
4419 dev_err(DEV, "magic?? on meta m: 0x%lx c: %d l: %d\n",
4420 (long)be32_to_cpu(h->magic),
4421 h->command, h->length);
4424 cmd = get_asender_cmd(be16_to_cpu(h->command));
4425 len = be16_to_cpu(h->length);
4426 if (unlikely(cmd == NULL)) {
4427 dev_err(DEV, "unknown command?? on meta m: 0x%lx c: %d l: %d\n",
4428 (long)be32_to_cpu(h->magic),
4429 h->command, h->length);
4432 expect = cmd->pkt_size;
4433 ERR_IF(len != expect-sizeof(struct p_header))
4436 if (received == expect) {
4437 D_ASSERT(cmd != NULL);
4438 if (!cmd->process(mdev, h))
4443 expect = sizeof(struct p_header);
4450 drbd_force_state(mdev, NS(conn, C_NETWORK_FAILURE));
4454 drbd_force_state(mdev, NS(conn, C_DISCONNECTING));
4456 clear_bit(SIGNAL_ASENDER, &mdev->flags);
4458 D_ASSERT(mdev->state.conn < C_CONNECTED);
4459 dev_info(DEV, "asender terminated\n");