1 // SPDX-License-Identifier: GPL-2.0-or-later
5 This file is part of DRBD by Philipp Reisner and Lars Ellenberg.
7 Copyright (C) 2001-2008, LINBIT Information Technologies GmbH.
8 Copyright (C) 1999-2008, Philipp Reisner <philipp.reisner@linbit.com>.
9 Copyright (C) 2002-2008, Lars Ellenberg <lars.ellenberg@linbit.com>.
11 Thanks to Carter Burden, Bart Grantham and Gennadiy Nerubayev
12 from Logicworks, Inc. for making SDP replication support possible.
17 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
19 #include <linux/module.h>
20 #include <linux/jiffies.h>
21 #include <linux/drbd.h>
22 #include <linux/uaccess.h>
23 #include <asm/types.h>
25 #include <linux/ctype.h>
26 #include <linux/mutex.h>
28 #include <linux/file.h>
29 #include <linux/proc_fs.h>
30 #include <linux/init.h>
32 #include <linux/memcontrol.h>
33 #include <linux/mm_inline.h>
34 #include <linux/slab.h>
35 #include <linux/random.h>
36 #include <linux/reboot.h>
37 #include <linux/notifier.h>
38 #include <linux/kthread.h>
39 #include <linux/workqueue.h>
40 #define __KERNEL_SYSCALLS__
41 #include <linux/unistd.h>
42 #include <linux/vmalloc.h>
43 #include <linux/sched/signal.h>
45 #include <linux/drbd_limits.h>
47 #include "drbd_protocol.h"
48 #include "drbd_req.h" /* only for _req_mod in tl_release and tl_clear */
50 #include "drbd_debugfs.h"
52 static DEFINE_MUTEX(drbd_main_mutex
);
53 static int drbd_open(struct block_device
*bdev
, fmode_t mode
);
54 static void drbd_release(struct gendisk
*gd
, fmode_t mode
);
55 static void md_sync_timer_fn(struct timer_list
*t
);
56 static int w_bitmap_io(struct drbd_work
*w
, int unused
);
58 MODULE_AUTHOR("Philipp Reisner <phil@linbit.com>, "
59 "Lars Ellenberg <lars@linbit.com>");
60 MODULE_DESCRIPTION("drbd - Distributed Replicated Block Device v" REL_VERSION
);
61 MODULE_VERSION(REL_VERSION
);
62 MODULE_LICENSE("GPL");
63 MODULE_PARM_DESC(minor_count
, "Approximate number of drbd devices ("
64 __stringify(DRBD_MINOR_COUNT_MIN
) "-" __stringify(DRBD_MINOR_COUNT_MAX
) ")");
65 MODULE_ALIAS_BLOCKDEV_MAJOR(DRBD_MAJOR
);
67 #include <linux/moduleparam.h>
68 /* thanks to these macros, if compiled into the kernel (not-module),
69 * these become boot parameters (e.g., drbd.minor_count) */
71 #ifdef CONFIG_DRBD_FAULT_INJECTION
72 int drbd_enable_faults
;
74 static int drbd_fault_count
;
75 static int drbd_fault_devs
;
76 /* bitmap of enabled faults */
77 module_param_named(enable_faults
, drbd_enable_faults
, int, 0664);
78 /* fault rate % value - applies to all enabled faults */
79 module_param_named(fault_rate
, drbd_fault_rate
, int, 0664);
80 /* count of faults inserted */
81 module_param_named(fault_count
, drbd_fault_count
, int, 0664);
82 /* bitmap of devices to insert faults on */
83 module_param_named(fault_devs
, drbd_fault_devs
, int, 0644);
86 /* module parameters we can keep static */
87 static bool drbd_allow_oos
; /* allow_open_on_secondary */
88 static bool drbd_disable_sendpage
;
89 MODULE_PARM_DESC(allow_oos
, "DONT USE!");
90 module_param_named(allow_oos
, drbd_allow_oos
, bool, 0);
91 module_param_named(disable_sendpage
, drbd_disable_sendpage
, bool, 0644);
93 /* module parameters we share */
94 int drbd_proc_details
; /* Detail level in proc drbd*/
95 module_param_named(proc_details
, drbd_proc_details
, int, 0644);
96 /* module parameters shared with defaults */
97 unsigned int drbd_minor_count
= DRBD_MINOR_COUNT_DEF
;
98 /* Module parameter for setting the user mode helper program
99 * to run. Default is /sbin/drbdadm */
100 char drbd_usermode_helper
[80] = "/sbin/drbdadm";
101 module_param_named(minor_count
, drbd_minor_count
, uint
, 0444);
102 module_param_string(usermode_helper
, drbd_usermode_helper
, sizeof(drbd_usermode_helper
), 0644);
104 /* in 2.6.x, our device mapping and config info contains our virtual gendisks
105 * as member "struct gendisk *vdisk;"
107 struct idr drbd_devices
;
108 struct list_head drbd_resources
;
109 struct mutex resources_mutex
;
111 struct kmem_cache
*drbd_request_cache
;
112 struct kmem_cache
*drbd_ee_cache
; /* peer requests */
113 struct kmem_cache
*drbd_bm_ext_cache
; /* bitmap extents */
114 struct kmem_cache
*drbd_al_ext_cache
; /* activity log extents */
115 mempool_t drbd_request_mempool
;
116 mempool_t drbd_ee_mempool
;
117 mempool_t drbd_md_io_page_pool
;
118 struct bio_set drbd_md_io_bio_set
;
119 struct bio_set drbd_io_bio_set
;
121 /* I do not use a standard mempool, because:
122 1) I want to hand out the pre-allocated objects first.
123 2) I want to be able to interrupt sleeping allocation with a signal.
124 Note: This is a single linked list, the next pointer is the private
125 member of struct page.
127 struct page
*drbd_pp_pool
;
128 spinlock_t drbd_pp_lock
;
130 wait_queue_head_t drbd_pp_wait
;
132 DEFINE_RATELIMIT_STATE(drbd_ratelimit_state
, 5 * HZ
, 5);
134 static const struct block_device_operations drbd_ops
= {
135 .owner
= THIS_MODULE
,
136 .submit_bio
= drbd_submit_bio
,
138 .release
= drbd_release
,
141 struct bio
*bio_alloc_drbd(gfp_t gfp_mask
)
145 if (!bioset_initialized(&drbd_md_io_bio_set
))
146 return bio_alloc(gfp_mask
, 1);
148 bio
= bio_alloc_bioset(gfp_mask
, 1, &drbd_md_io_bio_set
);
155 /* When checking with sparse, and this is an inline function, sparse will
156 give tons of false positives. When this is a real functions sparse works.
158 int _get_ldev_if_state(struct drbd_device
*device
, enum drbd_disk_state mins
)
162 atomic_inc(&device
->local_cnt
);
163 io_allowed
= (device
->state
.disk
>= mins
);
165 if (atomic_dec_and_test(&device
->local_cnt
))
166 wake_up(&device
->misc_wait
);
174 * tl_release() - mark as BARRIER_ACKED all requests in the corresponding transfer log epoch
175 * @connection: DRBD connection.
176 * @barrier_nr: Expected identifier of the DRBD write barrier packet.
177 * @set_size: Expected number of requests before that barrier.
179 * In case the passed barrier_nr or set_size does not match the oldest
180 * epoch of not yet barrier-acked requests, this function will cause a
181 * termination of the connection.
183 void tl_release(struct drbd_connection
*connection
, unsigned int barrier_nr
,
184 unsigned int set_size
)
186 struct drbd_request
*r
;
187 struct drbd_request
*req
= NULL
;
188 int expect_epoch
= 0;
191 spin_lock_irq(&connection
->resource
->req_lock
);
193 /* find oldest not yet barrier-acked write request,
194 * count writes in its epoch. */
195 list_for_each_entry(r
, &connection
->transfer_log
, tl_requests
) {
196 const unsigned s
= r
->rq_state
;
200 if (!(s
& RQ_NET_MASK
))
205 expect_epoch
= req
->epoch
;
208 if (r
->epoch
!= expect_epoch
)
212 /* if (s & RQ_DONE): not expected */
213 /* if (!(s & RQ_NET_MASK)): not expected */
218 /* first some paranoia code */
220 drbd_err(connection
, "BAD! BarrierAck #%u received, but no epoch in tl!?\n",
224 if (expect_epoch
!= barrier_nr
) {
225 drbd_err(connection
, "BAD! BarrierAck #%u received, expected #%u!\n",
226 barrier_nr
, expect_epoch
);
230 if (expect_size
!= set_size
) {
231 drbd_err(connection
, "BAD! BarrierAck #%u received with n_writes=%u, expected n_writes=%u!\n",
232 barrier_nr
, set_size
, expect_size
);
236 /* Clean up list of requests processed during current epoch. */
237 /* this extra list walk restart is paranoia,
238 * to catch requests being barrier-acked "unexpectedly".
239 * It usually should find the same req again, or some READ preceding it. */
240 list_for_each_entry(req
, &connection
->transfer_log
, tl_requests
)
241 if (req
->epoch
== expect_epoch
)
243 list_for_each_entry_safe_from(req
, r
, &connection
->transfer_log
, tl_requests
) {
244 if (req
->epoch
!= expect_epoch
)
246 _req_mod(req
, BARRIER_ACKED
);
248 spin_unlock_irq(&connection
->resource
->req_lock
);
253 spin_unlock_irq(&connection
->resource
->req_lock
);
254 conn_request_state(connection
, NS(conn
, C_PROTOCOL_ERROR
), CS_HARD
);
259 * _tl_restart() - Walks the transfer log, and applies an action to all requests
260 * @connection: DRBD connection to operate on.
261 * @what: The action/event to perform with all request objects
263 * @what might be one of CONNECTION_LOST_WHILE_PENDING, RESEND, FAIL_FROZEN_DISK_IO,
264 * RESTART_FROZEN_DISK_IO.
266 /* must hold resource->req_lock */
267 void _tl_restart(struct drbd_connection
*connection
, enum drbd_req_event what
)
269 struct drbd_request
*req
, *r
;
271 list_for_each_entry_safe(req
, r
, &connection
->transfer_log
, tl_requests
)
275 void tl_restart(struct drbd_connection
*connection
, enum drbd_req_event what
)
277 spin_lock_irq(&connection
->resource
->req_lock
);
278 _tl_restart(connection
, what
);
279 spin_unlock_irq(&connection
->resource
->req_lock
);
283 * tl_clear() - Clears all requests and &struct drbd_tl_epoch objects out of the TL
284 * @device: DRBD device.
286 * This is called after the connection to the peer was lost. The storage covered
287 * by the requests on the transfer gets marked as our of sync. Called from the
288 * receiver thread and the worker thread.
290 void tl_clear(struct drbd_connection
*connection
)
292 tl_restart(connection
, CONNECTION_LOST_WHILE_PENDING
);
296 * tl_abort_disk_io() - Abort disk I/O for all requests for a certain device in the TL
297 * @device: DRBD device.
299 void tl_abort_disk_io(struct drbd_device
*device
)
301 struct drbd_connection
*connection
= first_peer_device(device
)->connection
;
302 struct drbd_request
*req
, *r
;
304 spin_lock_irq(&connection
->resource
->req_lock
);
305 list_for_each_entry_safe(req
, r
, &connection
->transfer_log
, tl_requests
) {
306 if (!(req
->rq_state
& RQ_LOCAL_PENDING
))
308 if (req
->device
!= device
)
310 _req_mod(req
, ABORT_DISK_IO
);
312 spin_unlock_irq(&connection
->resource
->req_lock
);
315 static int drbd_thread_setup(void *arg
)
317 struct drbd_thread
*thi
= (struct drbd_thread
*) arg
;
318 struct drbd_resource
*resource
= thi
->resource
;
322 snprintf(current
->comm
, sizeof(current
->comm
), "drbd_%c_%s",
326 allow_kernel_signal(DRBD_SIGKILL
);
327 allow_kernel_signal(SIGXCPU
);
329 retval
= thi
->function(thi
);
331 spin_lock_irqsave(&thi
->t_lock
, flags
);
333 /* if the receiver has been "EXITING", the last thing it did
334 * was set the conn state to "StandAlone",
335 * if now a re-connect request comes in, conn state goes C_UNCONNECTED,
336 * and receiver thread will be "started".
337 * drbd_thread_start needs to set "RESTARTING" in that case.
338 * t_state check and assignment needs to be within the same spinlock,
339 * so either thread_start sees EXITING, and can remap to RESTARTING,
340 * or thread_start see NONE, and can proceed as normal.
343 if (thi
->t_state
== RESTARTING
) {
344 drbd_info(resource
, "Restarting %s thread\n", thi
->name
);
345 thi
->t_state
= RUNNING
;
346 spin_unlock_irqrestore(&thi
->t_lock
, flags
);
353 complete_all(&thi
->stop
);
354 spin_unlock_irqrestore(&thi
->t_lock
, flags
);
356 drbd_info(resource
, "Terminating %s\n", current
->comm
);
358 /* Release mod reference taken when thread was started */
361 kref_put(&thi
->connection
->kref
, drbd_destroy_connection
);
362 kref_put(&resource
->kref
, drbd_destroy_resource
);
363 module_put(THIS_MODULE
);
367 static void drbd_thread_init(struct drbd_resource
*resource
, struct drbd_thread
*thi
,
368 int (*func
) (struct drbd_thread
*), const char *name
)
370 spin_lock_init(&thi
->t_lock
);
373 thi
->function
= func
;
374 thi
->resource
= resource
;
375 thi
->connection
= NULL
;
379 int drbd_thread_start(struct drbd_thread
*thi
)
381 struct drbd_resource
*resource
= thi
->resource
;
382 struct task_struct
*nt
;
385 /* is used from state engine doing drbd_thread_stop_nowait,
386 * while holding the req lock irqsave */
387 spin_lock_irqsave(&thi
->t_lock
, flags
);
389 switch (thi
->t_state
) {
391 drbd_info(resource
, "Starting %s thread (from %s [%d])\n",
392 thi
->name
, current
->comm
, current
->pid
);
394 /* Get ref on module for thread - this is released when thread exits */
395 if (!try_module_get(THIS_MODULE
)) {
396 drbd_err(resource
, "Failed to get module reference in drbd_thread_start\n");
397 spin_unlock_irqrestore(&thi
->t_lock
, flags
);
401 kref_get(&resource
->kref
);
403 kref_get(&thi
->connection
->kref
);
405 init_completion(&thi
->stop
);
406 thi
->reset_cpu_mask
= 1;
407 thi
->t_state
= RUNNING
;
408 spin_unlock_irqrestore(&thi
->t_lock
, flags
);
409 flush_signals(current
); /* otherw. may get -ERESTARTNOINTR */
411 nt
= kthread_create(drbd_thread_setup
, (void *) thi
,
412 "drbd_%c_%s", thi
->name
[0], thi
->resource
->name
);
415 drbd_err(resource
, "Couldn't start thread\n");
418 kref_put(&thi
->connection
->kref
, drbd_destroy_connection
);
419 kref_put(&resource
->kref
, drbd_destroy_resource
);
420 module_put(THIS_MODULE
);
423 spin_lock_irqsave(&thi
->t_lock
, flags
);
425 thi
->t_state
= RUNNING
;
426 spin_unlock_irqrestore(&thi
->t_lock
, flags
);
430 thi
->t_state
= RESTARTING
;
431 drbd_info(resource
, "Restarting %s thread (from %s [%d])\n",
432 thi
->name
, current
->comm
, current
->pid
);
437 spin_unlock_irqrestore(&thi
->t_lock
, flags
);
445 void _drbd_thread_stop(struct drbd_thread
*thi
, int restart
, int wait
)
449 enum drbd_thread_state ns
= restart
? RESTARTING
: EXITING
;
451 /* may be called from state engine, holding the req lock irqsave */
452 spin_lock_irqsave(&thi
->t_lock
, flags
);
454 if (thi
->t_state
== NONE
) {
455 spin_unlock_irqrestore(&thi
->t_lock
, flags
);
457 drbd_thread_start(thi
);
461 if (thi
->t_state
!= ns
) {
462 if (thi
->task
== NULL
) {
463 spin_unlock_irqrestore(&thi
->t_lock
, flags
);
469 init_completion(&thi
->stop
);
470 if (thi
->task
!= current
)
471 send_sig(DRBD_SIGKILL
, thi
->task
, 1);
474 spin_unlock_irqrestore(&thi
->t_lock
, flags
);
477 wait_for_completion(&thi
->stop
);
480 int conn_lowest_minor(struct drbd_connection
*connection
)
482 struct drbd_peer_device
*peer_device
;
483 int vnr
= 0, minor
= -1;
486 peer_device
= idr_get_next(&connection
->peer_devices
, &vnr
);
488 minor
= device_to_minor(peer_device
->device
);
496 * drbd_calc_cpu_mask() - Generate CPU masks, spread over all CPUs
498 * Forces all threads of a resource onto the same CPU. This is beneficial for
499 * DRBD's performance. May be overwritten by user's configuration.
501 static void drbd_calc_cpu_mask(cpumask_var_t
*cpu_mask
)
503 unsigned int *resources_per_cpu
, min_index
= ~0;
505 resources_per_cpu
= kcalloc(nr_cpu_ids
, sizeof(*resources_per_cpu
),
507 if (resources_per_cpu
) {
508 struct drbd_resource
*resource
;
509 unsigned int cpu
, min
= ~0;
512 for_each_resource_rcu(resource
, &drbd_resources
) {
513 for_each_cpu(cpu
, resource
->cpu_mask
)
514 resources_per_cpu
[cpu
]++;
517 for_each_online_cpu(cpu
) {
518 if (resources_per_cpu
[cpu
] < min
) {
519 min
= resources_per_cpu
[cpu
];
523 kfree(resources_per_cpu
);
525 if (min_index
== ~0) {
526 cpumask_setall(*cpu_mask
);
529 cpumask_set_cpu(min_index
, *cpu_mask
);
533 * drbd_thread_current_set_cpu() - modifies the cpu mask of the _current_ thread
534 * @device: DRBD device.
535 * @thi: drbd_thread object
537 * call in the "main loop" of _all_ threads, no need for any mutex, current won't die
540 void drbd_thread_current_set_cpu(struct drbd_thread
*thi
)
542 struct drbd_resource
*resource
= thi
->resource
;
543 struct task_struct
*p
= current
;
545 if (!thi
->reset_cpu_mask
)
547 thi
->reset_cpu_mask
= 0;
548 set_cpus_allowed_ptr(p
, resource
->cpu_mask
);
551 #define drbd_calc_cpu_mask(A) ({})
555 * drbd_header_size - size of a packet header
557 * The header size is a multiple of 8, so any payload following the header is
558 * word aligned on 64-bit architectures. (The bitmap send and receive code
561 unsigned int drbd_header_size(struct drbd_connection
*connection
)
563 if (connection
->agreed_pro_version
>= 100) {
564 BUILD_BUG_ON(!IS_ALIGNED(sizeof(struct p_header100
), 8));
565 return sizeof(struct p_header100
);
567 BUILD_BUG_ON(sizeof(struct p_header80
) !=
568 sizeof(struct p_header95
));
569 BUILD_BUG_ON(!IS_ALIGNED(sizeof(struct p_header80
), 8));
570 return sizeof(struct p_header80
);
574 static unsigned int prepare_header80(struct p_header80
*h
, enum drbd_packet cmd
, int size
)
576 h
->magic
= cpu_to_be32(DRBD_MAGIC
);
577 h
->command
= cpu_to_be16(cmd
);
578 h
->length
= cpu_to_be16(size
);
579 return sizeof(struct p_header80
);
582 static unsigned int prepare_header95(struct p_header95
*h
, enum drbd_packet cmd
, int size
)
584 h
->magic
= cpu_to_be16(DRBD_MAGIC_BIG
);
585 h
->command
= cpu_to_be16(cmd
);
586 h
->length
= cpu_to_be32(size
);
587 return sizeof(struct p_header95
);
590 static unsigned int prepare_header100(struct p_header100
*h
, enum drbd_packet cmd
,
593 h
->magic
= cpu_to_be32(DRBD_MAGIC_100
);
594 h
->volume
= cpu_to_be16(vnr
);
595 h
->command
= cpu_to_be16(cmd
);
596 h
->length
= cpu_to_be32(size
);
598 return sizeof(struct p_header100
);
601 static unsigned int prepare_header(struct drbd_connection
*connection
, int vnr
,
602 void *buffer
, enum drbd_packet cmd
, int size
)
604 if (connection
->agreed_pro_version
>= 100)
605 return prepare_header100(buffer
, cmd
, size
, vnr
);
606 else if (connection
->agreed_pro_version
>= 95 &&
607 size
> DRBD_MAX_SIZE_H80_PACKET
)
608 return prepare_header95(buffer
, cmd
, size
);
610 return prepare_header80(buffer
, cmd
, size
);
613 static void *__conn_prepare_command(struct drbd_connection
*connection
,
614 struct drbd_socket
*sock
)
618 return sock
->sbuf
+ drbd_header_size(connection
);
621 void *conn_prepare_command(struct drbd_connection
*connection
, struct drbd_socket
*sock
)
625 mutex_lock(&sock
->mutex
);
626 p
= __conn_prepare_command(connection
, sock
);
628 mutex_unlock(&sock
->mutex
);
633 void *drbd_prepare_command(struct drbd_peer_device
*peer_device
, struct drbd_socket
*sock
)
635 return conn_prepare_command(peer_device
->connection
, sock
);
638 static int __send_command(struct drbd_connection
*connection
, int vnr
,
639 struct drbd_socket
*sock
, enum drbd_packet cmd
,
640 unsigned int header_size
, void *data
,
647 * Called with @data == NULL and the size of the data blocks in @size
648 * for commands that send data blocks. For those commands, omit the
649 * MSG_MORE flag: this will increase the likelihood that data blocks
650 * which are page aligned on the sender will end up page aligned on the
653 msg_flags
= data
? MSG_MORE
: 0;
655 header_size
+= prepare_header(connection
, vnr
, sock
->sbuf
, cmd
,
657 err
= drbd_send_all(connection
, sock
->socket
, sock
->sbuf
, header_size
,
660 err
= drbd_send_all(connection
, sock
->socket
, data
, size
, 0);
661 /* DRBD protocol "pings" are latency critical.
662 * This is supposed to trigger tcp_push_pending_frames() */
663 if (!err
&& (cmd
== P_PING
|| cmd
== P_PING_ACK
))
664 tcp_sock_set_nodelay(sock
->socket
->sk
);
669 static int __conn_send_command(struct drbd_connection
*connection
, struct drbd_socket
*sock
,
670 enum drbd_packet cmd
, unsigned int header_size
,
671 void *data
, unsigned int size
)
673 return __send_command(connection
, 0, sock
, cmd
, header_size
, data
, size
);
676 int conn_send_command(struct drbd_connection
*connection
, struct drbd_socket
*sock
,
677 enum drbd_packet cmd
, unsigned int header_size
,
678 void *data
, unsigned int size
)
682 err
= __conn_send_command(connection
, sock
, cmd
, header_size
, data
, size
);
683 mutex_unlock(&sock
->mutex
);
687 int drbd_send_command(struct drbd_peer_device
*peer_device
, struct drbd_socket
*sock
,
688 enum drbd_packet cmd
, unsigned int header_size
,
689 void *data
, unsigned int size
)
693 err
= __send_command(peer_device
->connection
, peer_device
->device
->vnr
,
694 sock
, cmd
, header_size
, data
, size
);
695 mutex_unlock(&sock
->mutex
);
699 int drbd_send_ping(struct drbd_connection
*connection
)
701 struct drbd_socket
*sock
;
703 sock
= &connection
->meta
;
704 if (!conn_prepare_command(connection
, sock
))
706 return conn_send_command(connection
, sock
, P_PING
, 0, NULL
, 0);
709 int drbd_send_ping_ack(struct drbd_connection
*connection
)
711 struct drbd_socket
*sock
;
713 sock
= &connection
->meta
;
714 if (!conn_prepare_command(connection
, sock
))
716 return conn_send_command(connection
, sock
, P_PING_ACK
, 0, NULL
, 0);
719 int drbd_send_sync_param(struct drbd_peer_device
*peer_device
)
721 struct drbd_socket
*sock
;
722 struct p_rs_param_95
*p
;
724 const int apv
= peer_device
->connection
->agreed_pro_version
;
725 enum drbd_packet cmd
;
727 struct disk_conf
*dc
;
729 sock
= &peer_device
->connection
->data
;
730 p
= drbd_prepare_command(peer_device
, sock
);
735 nc
= rcu_dereference(peer_device
->connection
->net_conf
);
737 size
= apv
<= 87 ? sizeof(struct p_rs_param
)
738 : apv
== 88 ? sizeof(struct p_rs_param
)
739 + strlen(nc
->verify_alg
) + 1
740 : apv
<= 94 ? sizeof(struct p_rs_param_89
)
741 : /* apv >= 95 */ sizeof(struct p_rs_param_95
);
743 cmd
= apv
>= 89 ? P_SYNC_PARAM89
: P_SYNC_PARAM
;
745 /* initialize verify_alg and csums_alg */
746 memset(p
->verify_alg
, 0, 2 * SHARED_SECRET_MAX
);
748 if (get_ldev(peer_device
->device
)) {
749 dc
= rcu_dereference(peer_device
->device
->ldev
->disk_conf
);
750 p
->resync_rate
= cpu_to_be32(dc
->resync_rate
);
751 p
->c_plan_ahead
= cpu_to_be32(dc
->c_plan_ahead
);
752 p
->c_delay_target
= cpu_to_be32(dc
->c_delay_target
);
753 p
->c_fill_target
= cpu_to_be32(dc
->c_fill_target
);
754 p
->c_max_rate
= cpu_to_be32(dc
->c_max_rate
);
755 put_ldev(peer_device
->device
);
757 p
->resync_rate
= cpu_to_be32(DRBD_RESYNC_RATE_DEF
);
758 p
->c_plan_ahead
= cpu_to_be32(DRBD_C_PLAN_AHEAD_DEF
);
759 p
->c_delay_target
= cpu_to_be32(DRBD_C_DELAY_TARGET_DEF
);
760 p
->c_fill_target
= cpu_to_be32(DRBD_C_FILL_TARGET_DEF
);
761 p
->c_max_rate
= cpu_to_be32(DRBD_C_MAX_RATE_DEF
);
765 strcpy(p
->verify_alg
, nc
->verify_alg
);
767 strcpy(p
->csums_alg
, nc
->csums_alg
);
770 return drbd_send_command(peer_device
, sock
, cmd
, size
, NULL
, 0);
773 int __drbd_send_protocol(struct drbd_connection
*connection
, enum drbd_packet cmd
)
775 struct drbd_socket
*sock
;
776 struct p_protocol
*p
;
780 sock
= &connection
->data
;
781 p
= __conn_prepare_command(connection
, sock
);
786 nc
= rcu_dereference(connection
->net_conf
);
788 if (nc
->tentative
&& connection
->agreed_pro_version
< 92) {
790 drbd_err(connection
, "--dry-run is not supported by peer");
795 if (connection
->agreed_pro_version
>= 87)
796 size
+= strlen(nc
->integrity_alg
) + 1;
798 p
->protocol
= cpu_to_be32(nc
->wire_protocol
);
799 p
->after_sb_0p
= cpu_to_be32(nc
->after_sb_0p
);
800 p
->after_sb_1p
= cpu_to_be32(nc
->after_sb_1p
);
801 p
->after_sb_2p
= cpu_to_be32(nc
->after_sb_2p
);
802 p
->two_primaries
= cpu_to_be32(nc
->two_primaries
);
804 if (nc
->discard_my_data
)
805 cf
|= CF_DISCARD_MY_DATA
;
808 p
->conn_flags
= cpu_to_be32(cf
);
810 if (connection
->agreed_pro_version
>= 87)
811 strcpy(p
->integrity_alg
, nc
->integrity_alg
);
814 return __conn_send_command(connection
, sock
, cmd
, size
, NULL
, 0);
817 int drbd_send_protocol(struct drbd_connection
*connection
)
821 mutex_lock(&connection
->data
.mutex
);
822 err
= __drbd_send_protocol(connection
, P_PROTOCOL
);
823 mutex_unlock(&connection
->data
.mutex
);
828 static int _drbd_send_uuids(struct drbd_peer_device
*peer_device
, u64 uuid_flags
)
830 struct drbd_device
*device
= peer_device
->device
;
831 struct drbd_socket
*sock
;
835 if (!get_ldev_if_state(device
, D_NEGOTIATING
))
838 sock
= &peer_device
->connection
->data
;
839 p
= drbd_prepare_command(peer_device
, sock
);
844 spin_lock_irq(&device
->ldev
->md
.uuid_lock
);
845 for (i
= UI_CURRENT
; i
< UI_SIZE
; i
++)
846 p
->uuid
[i
] = cpu_to_be64(device
->ldev
->md
.uuid
[i
]);
847 spin_unlock_irq(&device
->ldev
->md
.uuid_lock
);
849 device
->comm_bm_set
= drbd_bm_total_weight(device
);
850 p
->uuid
[UI_SIZE
] = cpu_to_be64(device
->comm_bm_set
);
852 uuid_flags
|= rcu_dereference(peer_device
->connection
->net_conf
)->discard_my_data
? 1 : 0;
854 uuid_flags
|= test_bit(CRASHED_PRIMARY
, &device
->flags
) ? 2 : 0;
855 uuid_flags
|= device
->new_state_tmp
.disk
== D_INCONSISTENT
? 4 : 0;
856 p
->uuid
[UI_FLAGS
] = cpu_to_be64(uuid_flags
);
859 return drbd_send_command(peer_device
, sock
, P_UUIDS
, sizeof(*p
), NULL
, 0);
862 int drbd_send_uuids(struct drbd_peer_device
*peer_device
)
864 return _drbd_send_uuids(peer_device
, 0);
867 int drbd_send_uuids_skip_initial_sync(struct drbd_peer_device
*peer_device
)
869 return _drbd_send_uuids(peer_device
, 8);
872 void drbd_print_uuids(struct drbd_device
*device
, const char *text
)
874 if (get_ldev_if_state(device
, D_NEGOTIATING
)) {
875 u64
*uuid
= device
->ldev
->md
.uuid
;
876 drbd_info(device
, "%s %016llX:%016llX:%016llX:%016llX\n",
878 (unsigned long long)uuid
[UI_CURRENT
],
879 (unsigned long long)uuid
[UI_BITMAP
],
880 (unsigned long long)uuid
[UI_HISTORY_START
],
881 (unsigned long long)uuid
[UI_HISTORY_END
]);
884 drbd_info(device
, "%s effective data uuid: %016llX\n",
886 (unsigned long long)device
->ed_uuid
);
890 void drbd_gen_and_send_sync_uuid(struct drbd_peer_device
*peer_device
)
892 struct drbd_device
*device
= peer_device
->device
;
893 struct drbd_socket
*sock
;
897 D_ASSERT(device
, device
->state
.disk
== D_UP_TO_DATE
);
899 uuid
= device
->ldev
->md
.uuid
[UI_BITMAP
];
900 if (uuid
&& uuid
!= UUID_JUST_CREATED
)
901 uuid
= uuid
+ UUID_NEW_BM_OFFSET
;
903 get_random_bytes(&uuid
, sizeof(u64
));
904 drbd_uuid_set(device
, UI_BITMAP
, uuid
);
905 drbd_print_uuids(device
, "updated sync UUID");
906 drbd_md_sync(device
);
908 sock
= &peer_device
->connection
->data
;
909 p
= drbd_prepare_command(peer_device
, sock
);
911 p
->uuid
= cpu_to_be64(uuid
);
912 drbd_send_command(peer_device
, sock
, P_SYNC_UUID
, sizeof(*p
), NULL
, 0);
916 /* communicated if (agreed_features & DRBD_FF_WSAME) */
918 assign_p_sizes_qlim(struct drbd_device
*device
, struct p_sizes
*p
,
919 struct request_queue
*q
)
922 p
->qlim
->physical_block_size
= cpu_to_be32(queue_physical_block_size(q
));
923 p
->qlim
->logical_block_size
= cpu_to_be32(queue_logical_block_size(q
));
924 p
->qlim
->alignment_offset
= cpu_to_be32(queue_alignment_offset(q
));
925 p
->qlim
->io_min
= cpu_to_be32(queue_io_min(q
));
926 p
->qlim
->io_opt
= cpu_to_be32(queue_io_opt(q
));
927 p
->qlim
->discard_enabled
= blk_queue_discard(q
);
928 p
->qlim
->write_same_capable
= !!q
->limits
.max_write_same_sectors
;
930 q
= device
->rq_queue
;
931 p
->qlim
->physical_block_size
= cpu_to_be32(queue_physical_block_size(q
));
932 p
->qlim
->logical_block_size
= cpu_to_be32(queue_logical_block_size(q
));
933 p
->qlim
->alignment_offset
= 0;
934 p
->qlim
->io_min
= cpu_to_be32(queue_io_min(q
));
935 p
->qlim
->io_opt
= cpu_to_be32(queue_io_opt(q
));
936 p
->qlim
->discard_enabled
= 0;
937 p
->qlim
->write_same_capable
= 0;
941 int drbd_send_sizes(struct drbd_peer_device
*peer_device
, int trigger_reply
, enum dds_flags flags
)
943 struct drbd_device
*device
= peer_device
->device
;
944 struct drbd_socket
*sock
;
946 sector_t d_size
, u_size
;
948 unsigned int max_bio_size
;
949 unsigned int packet_size
;
951 sock
= &peer_device
->connection
->data
;
952 p
= drbd_prepare_command(peer_device
, sock
);
956 packet_size
= sizeof(*p
);
957 if (peer_device
->connection
->agreed_features
& DRBD_FF_WSAME
)
958 packet_size
+= sizeof(p
->qlim
[0]);
960 memset(p
, 0, packet_size
);
961 if (get_ldev_if_state(device
, D_NEGOTIATING
)) {
962 struct request_queue
*q
= bdev_get_queue(device
->ldev
->backing_bdev
);
963 d_size
= drbd_get_max_capacity(device
->ldev
);
965 u_size
= rcu_dereference(device
->ldev
->disk_conf
)->disk_size
;
967 q_order_type
= drbd_queue_order_type(device
);
968 max_bio_size
= queue_max_hw_sectors(q
) << 9;
969 max_bio_size
= min(max_bio_size
, DRBD_MAX_BIO_SIZE
);
970 assign_p_sizes_qlim(device
, p
, q
);
975 q_order_type
= QUEUE_ORDERED_NONE
;
976 max_bio_size
= DRBD_MAX_BIO_SIZE
; /* ... multiple BIOs per peer_request */
977 assign_p_sizes_qlim(device
, p
, NULL
);
980 if (peer_device
->connection
->agreed_pro_version
<= 94)
981 max_bio_size
= min(max_bio_size
, DRBD_MAX_SIZE_H80_PACKET
);
982 else if (peer_device
->connection
->agreed_pro_version
< 100)
983 max_bio_size
= min(max_bio_size
, DRBD_MAX_BIO_SIZE_P95
);
985 p
->d_size
= cpu_to_be64(d_size
);
986 p
->u_size
= cpu_to_be64(u_size
);
990 p
->c_size
= cpu_to_be64(get_capacity(device
->vdisk
));
991 p
->max_bio_size
= cpu_to_be32(max_bio_size
);
992 p
->queue_order_type
= cpu_to_be16(q_order_type
);
993 p
->dds_flags
= cpu_to_be16(flags
);
995 return drbd_send_command(peer_device
, sock
, P_SIZES
, packet_size
, NULL
, 0);
999 * drbd_send_current_state() - Sends the drbd state to the peer
1000 * @peer_device: DRBD peer device.
1002 int drbd_send_current_state(struct drbd_peer_device
*peer_device
)
1004 struct drbd_socket
*sock
;
1007 sock
= &peer_device
->connection
->data
;
1008 p
= drbd_prepare_command(peer_device
, sock
);
1011 p
->state
= cpu_to_be32(peer_device
->device
->state
.i
); /* Within the send mutex */
1012 return drbd_send_command(peer_device
, sock
, P_STATE
, sizeof(*p
), NULL
, 0);
1016 * drbd_send_state() - After a state change, sends the new state to the peer
1017 * @peer_device: DRBD peer device.
1018 * @state: the state to send, not necessarily the current state.
1020 * Each state change queues an "after_state_ch" work, which will eventually
1021 * send the resulting new state to the peer. If more state changes happen
1022 * between queuing and processing of the after_state_ch work, we still
1023 * want to send each intermediary state in the order it occurred.
1025 int drbd_send_state(struct drbd_peer_device
*peer_device
, union drbd_state state
)
1027 struct drbd_socket
*sock
;
1030 sock
= &peer_device
->connection
->data
;
1031 p
= drbd_prepare_command(peer_device
, sock
);
1034 p
->state
= cpu_to_be32(state
.i
); /* Within the send mutex */
1035 return drbd_send_command(peer_device
, sock
, P_STATE
, sizeof(*p
), NULL
, 0);
1038 int drbd_send_state_req(struct drbd_peer_device
*peer_device
, union drbd_state mask
, union drbd_state val
)
1040 struct drbd_socket
*sock
;
1041 struct p_req_state
*p
;
1043 sock
= &peer_device
->connection
->data
;
1044 p
= drbd_prepare_command(peer_device
, sock
);
1047 p
->mask
= cpu_to_be32(mask
.i
);
1048 p
->val
= cpu_to_be32(val
.i
);
1049 return drbd_send_command(peer_device
, sock
, P_STATE_CHG_REQ
, sizeof(*p
), NULL
, 0);
1052 int conn_send_state_req(struct drbd_connection
*connection
, union drbd_state mask
, union drbd_state val
)
1054 enum drbd_packet cmd
;
1055 struct drbd_socket
*sock
;
1056 struct p_req_state
*p
;
1058 cmd
= connection
->agreed_pro_version
< 100 ? P_STATE_CHG_REQ
: P_CONN_ST_CHG_REQ
;
1059 sock
= &connection
->data
;
1060 p
= conn_prepare_command(connection
, sock
);
1063 p
->mask
= cpu_to_be32(mask
.i
);
1064 p
->val
= cpu_to_be32(val
.i
);
1065 return conn_send_command(connection
, sock
, cmd
, sizeof(*p
), NULL
, 0);
1068 void drbd_send_sr_reply(struct drbd_peer_device
*peer_device
, enum drbd_state_rv retcode
)
1070 struct drbd_socket
*sock
;
1071 struct p_req_state_reply
*p
;
1073 sock
= &peer_device
->connection
->meta
;
1074 p
= drbd_prepare_command(peer_device
, sock
);
1076 p
->retcode
= cpu_to_be32(retcode
);
1077 drbd_send_command(peer_device
, sock
, P_STATE_CHG_REPLY
, sizeof(*p
), NULL
, 0);
1081 void conn_send_sr_reply(struct drbd_connection
*connection
, enum drbd_state_rv retcode
)
1083 struct drbd_socket
*sock
;
1084 struct p_req_state_reply
*p
;
1085 enum drbd_packet cmd
= connection
->agreed_pro_version
< 100 ? P_STATE_CHG_REPLY
: P_CONN_ST_CHG_REPLY
;
1087 sock
= &connection
->meta
;
1088 p
= conn_prepare_command(connection
, sock
);
1090 p
->retcode
= cpu_to_be32(retcode
);
1091 conn_send_command(connection
, sock
, cmd
, sizeof(*p
), NULL
, 0);
1095 static void dcbp_set_code(struct p_compressed_bm
*p
, enum drbd_bitmap_code code
)
1097 BUG_ON(code
& ~0xf);
1098 p
->encoding
= (p
->encoding
& ~0xf) | code
;
1101 static void dcbp_set_start(struct p_compressed_bm
*p
, int set
)
1103 p
->encoding
= (p
->encoding
& ~0x80) | (set
? 0x80 : 0);
1106 static void dcbp_set_pad_bits(struct p_compressed_bm
*p
, int n
)
1109 p
->encoding
= (p
->encoding
& (~0x7 << 4)) | (n
<< 4);
1112 static int fill_bitmap_rle_bits(struct drbd_device
*device
,
1113 struct p_compressed_bm
*p
,
1115 struct bm_xfer_ctx
*c
)
1117 struct bitstream bs
;
1118 unsigned long plain_bits
;
1125 /* may we use this feature? */
1127 use_rle
= rcu_dereference(first_peer_device(device
)->connection
->net_conf
)->use_rle
;
1129 if (!use_rle
|| first_peer_device(device
)->connection
->agreed_pro_version
< 90)
1132 if (c
->bit_offset
>= c
->bm_bits
)
1133 return 0; /* nothing to do. */
1135 /* use at most thus many bytes */
1136 bitstream_init(&bs
, p
->code
, size
, 0);
1137 memset(p
->code
, 0, size
);
1138 /* plain bits covered in this code string */
1141 /* p->encoding & 0x80 stores whether the first run length is set.
1142 * bit offset is implicit.
1143 * start with toggle == 2 to be able to tell the first iteration */
1146 /* see how much plain bits we can stuff into one packet
1147 * using RLE and VLI. */
1149 tmp
= (toggle
== 0) ? _drbd_bm_find_next_zero(device
, c
->bit_offset
)
1150 : _drbd_bm_find_next(device
, c
->bit_offset
);
1153 rl
= tmp
- c
->bit_offset
;
1155 if (toggle
== 2) { /* first iteration */
1157 /* the first checked bit was set,
1158 * store start value, */
1159 dcbp_set_start(p
, 1);
1160 /* but skip encoding of zero run length */
1164 dcbp_set_start(p
, 0);
1167 /* paranoia: catch zero runlength.
1168 * can only happen if bitmap is modified while we scan it. */
1170 drbd_err(device
, "unexpected zero runlength while encoding bitmap "
1171 "t:%u bo:%lu\n", toggle
, c
->bit_offset
);
1175 bits
= vli_encode_bits(&bs
, rl
);
1176 if (bits
== -ENOBUFS
) /* buffer full */
1179 drbd_err(device
, "error while encoding bitmap: %d\n", bits
);
1185 c
->bit_offset
= tmp
;
1186 } while (c
->bit_offset
< c
->bm_bits
);
1188 len
= bs
.cur
.b
- p
->code
+ !!bs
.cur
.bit
;
1190 if (plain_bits
< (len
<< 3)) {
1191 /* incompressible with this method.
1192 * we need to rewind both word and bit position. */
1193 c
->bit_offset
-= plain_bits
;
1194 bm_xfer_ctx_bit_to_word_offset(c
);
1195 c
->bit_offset
= c
->word_offset
* BITS_PER_LONG
;
1199 /* RLE + VLI was able to compress it just fine.
1200 * update c->word_offset. */
1201 bm_xfer_ctx_bit_to_word_offset(c
);
1203 /* store pad_bits */
1204 dcbp_set_pad_bits(p
, (8 - bs
.cur
.bit
) & 0x7);
1210 * send_bitmap_rle_or_plain
1212 * Return 0 when done, 1 when another iteration is needed, and a negative error
1213 * code upon failure.
1216 send_bitmap_rle_or_plain(struct drbd_device
*device
, struct bm_xfer_ctx
*c
)
1218 struct drbd_socket
*sock
= &first_peer_device(device
)->connection
->data
;
1219 unsigned int header_size
= drbd_header_size(first_peer_device(device
)->connection
);
1220 struct p_compressed_bm
*p
= sock
->sbuf
+ header_size
;
1223 len
= fill_bitmap_rle_bits(device
, p
,
1224 DRBD_SOCKET_BUFFER_SIZE
- header_size
- sizeof(*p
), c
);
1229 dcbp_set_code(p
, RLE_VLI_Bits
);
1230 err
= __send_command(first_peer_device(device
)->connection
, device
->vnr
, sock
,
1231 P_COMPRESSED_BITMAP
, sizeof(*p
) + len
,
1234 c
->bytes
[0] += header_size
+ sizeof(*p
) + len
;
1236 if (c
->bit_offset
>= c
->bm_bits
)
1239 /* was not compressible.
1240 * send a buffer full of plain text bits instead. */
1241 unsigned int data_size
;
1242 unsigned long num_words
;
1243 unsigned long *p
= sock
->sbuf
+ header_size
;
1245 data_size
= DRBD_SOCKET_BUFFER_SIZE
- header_size
;
1246 num_words
= min_t(size_t, data_size
/ sizeof(*p
),
1247 c
->bm_words
- c
->word_offset
);
1248 len
= num_words
* sizeof(*p
);
1250 drbd_bm_get_lel(device
, c
->word_offset
, num_words
, p
);
1251 err
= __send_command(first_peer_device(device
)->connection
, device
->vnr
, sock
, P_BITMAP
, len
, NULL
, 0);
1252 c
->word_offset
+= num_words
;
1253 c
->bit_offset
= c
->word_offset
* BITS_PER_LONG
;
1256 c
->bytes
[1] += header_size
+ len
;
1258 if (c
->bit_offset
> c
->bm_bits
)
1259 c
->bit_offset
= c
->bm_bits
;
1263 INFO_bm_xfer_stats(device
, "send", c
);
1271 /* See the comment at receive_bitmap() */
1272 static int _drbd_send_bitmap(struct drbd_device
*device
)
1274 struct bm_xfer_ctx c
;
1277 if (!expect(device
->bitmap
))
1280 if (get_ldev(device
)) {
1281 if (drbd_md_test_flag(device
->ldev
, MDF_FULL_SYNC
)) {
1282 drbd_info(device
, "Writing the whole bitmap, MDF_FullSync was set.\n");
1283 drbd_bm_set_all(device
);
1284 if (drbd_bm_write(device
)) {
1285 /* write_bm did fail! Leave full sync flag set in Meta P_DATA
1286 * but otherwise process as per normal - need to tell other
1287 * side that a full resync is required! */
1288 drbd_err(device
, "Failed to write bitmap to disk!\n");
1290 drbd_md_clear_flag(device
, MDF_FULL_SYNC
);
1291 drbd_md_sync(device
);
1297 c
= (struct bm_xfer_ctx
) {
1298 .bm_bits
= drbd_bm_bits(device
),
1299 .bm_words
= drbd_bm_words(device
),
1303 err
= send_bitmap_rle_or_plain(device
, &c
);
1309 int drbd_send_bitmap(struct drbd_device
*device
)
1311 struct drbd_socket
*sock
= &first_peer_device(device
)->connection
->data
;
1314 mutex_lock(&sock
->mutex
);
1316 err
= !_drbd_send_bitmap(device
);
1317 mutex_unlock(&sock
->mutex
);
1321 void drbd_send_b_ack(struct drbd_connection
*connection
, u32 barrier_nr
, u32 set_size
)
1323 struct drbd_socket
*sock
;
1324 struct p_barrier_ack
*p
;
1326 if (connection
->cstate
< C_WF_REPORT_PARAMS
)
1329 sock
= &connection
->meta
;
1330 p
= conn_prepare_command(connection
, sock
);
1333 p
->barrier
= barrier_nr
;
1334 p
->set_size
= cpu_to_be32(set_size
);
1335 conn_send_command(connection
, sock
, P_BARRIER_ACK
, sizeof(*p
), NULL
, 0);
1339 * _drbd_send_ack() - Sends an ack packet
1340 * @device: DRBD device.
1341 * @cmd: Packet command code.
1342 * @sector: sector, needs to be in big endian byte order
1343 * @blksize: size in byte, needs to be in big endian byte order
1344 * @block_id: Id, big endian byte order
1346 static int _drbd_send_ack(struct drbd_peer_device
*peer_device
, enum drbd_packet cmd
,
1347 u64 sector
, u32 blksize
, u64 block_id
)
1349 struct drbd_socket
*sock
;
1350 struct p_block_ack
*p
;
1352 if (peer_device
->device
->state
.conn
< C_CONNECTED
)
1355 sock
= &peer_device
->connection
->meta
;
1356 p
= drbd_prepare_command(peer_device
, sock
);
1360 p
->block_id
= block_id
;
1361 p
->blksize
= blksize
;
1362 p
->seq_num
= cpu_to_be32(atomic_inc_return(&peer_device
->device
->packet_seq
));
1363 return drbd_send_command(peer_device
, sock
, cmd
, sizeof(*p
), NULL
, 0);
1366 /* dp->sector and dp->block_id already/still in network byte order,
1367 * data_size is payload size according to dp->head,
1368 * and may need to be corrected for digest size. */
1369 void drbd_send_ack_dp(struct drbd_peer_device
*peer_device
, enum drbd_packet cmd
,
1370 struct p_data
*dp
, int data_size
)
1372 if (peer_device
->connection
->peer_integrity_tfm
)
1373 data_size
-= crypto_shash_digestsize(peer_device
->connection
->peer_integrity_tfm
);
1374 _drbd_send_ack(peer_device
, cmd
, dp
->sector
, cpu_to_be32(data_size
),
1378 void drbd_send_ack_rp(struct drbd_peer_device
*peer_device
, enum drbd_packet cmd
,
1379 struct p_block_req
*rp
)
1381 _drbd_send_ack(peer_device
, cmd
, rp
->sector
, rp
->blksize
, rp
->block_id
);
1385 * drbd_send_ack() - Sends an ack packet
1386 * @device: DRBD device
1387 * @cmd: packet command code
1388 * @peer_req: peer request
1390 int drbd_send_ack(struct drbd_peer_device
*peer_device
, enum drbd_packet cmd
,
1391 struct drbd_peer_request
*peer_req
)
1393 return _drbd_send_ack(peer_device
, cmd
,
1394 cpu_to_be64(peer_req
->i
.sector
),
1395 cpu_to_be32(peer_req
->i
.size
),
1396 peer_req
->block_id
);
1399 /* This function misuses the block_id field to signal if the blocks
1400 * are is sync or not. */
1401 int drbd_send_ack_ex(struct drbd_peer_device
*peer_device
, enum drbd_packet cmd
,
1402 sector_t sector
, int blksize
, u64 block_id
)
1404 return _drbd_send_ack(peer_device
, cmd
,
1405 cpu_to_be64(sector
),
1406 cpu_to_be32(blksize
),
1407 cpu_to_be64(block_id
));
1410 int drbd_send_rs_deallocated(struct drbd_peer_device
*peer_device
,
1411 struct drbd_peer_request
*peer_req
)
1413 struct drbd_socket
*sock
;
1414 struct p_block_desc
*p
;
1416 sock
= &peer_device
->connection
->data
;
1417 p
= drbd_prepare_command(peer_device
, sock
);
1420 p
->sector
= cpu_to_be64(peer_req
->i
.sector
);
1421 p
->blksize
= cpu_to_be32(peer_req
->i
.size
);
1423 return drbd_send_command(peer_device
, sock
, P_RS_DEALLOCATED
, sizeof(*p
), NULL
, 0);
1426 int drbd_send_drequest(struct drbd_peer_device
*peer_device
, int cmd
,
1427 sector_t sector
, int size
, u64 block_id
)
1429 struct drbd_socket
*sock
;
1430 struct p_block_req
*p
;
1432 sock
= &peer_device
->connection
->data
;
1433 p
= drbd_prepare_command(peer_device
, sock
);
1436 p
->sector
= cpu_to_be64(sector
);
1437 p
->block_id
= block_id
;
1438 p
->blksize
= cpu_to_be32(size
);
1439 return drbd_send_command(peer_device
, sock
, cmd
, sizeof(*p
), NULL
, 0);
1442 int drbd_send_drequest_csum(struct drbd_peer_device
*peer_device
, sector_t sector
, int size
,
1443 void *digest
, int digest_size
, enum drbd_packet cmd
)
1445 struct drbd_socket
*sock
;
1446 struct p_block_req
*p
;
1448 /* FIXME: Put the digest into the preallocated socket buffer. */
1450 sock
= &peer_device
->connection
->data
;
1451 p
= drbd_prepare_command(peer_device
, sock
);
1454 p
->sector
= cpu_to_be64(sector
);
1455 p
->block_id
= ID_SYNCER
/* unused */;
1456 p
->blksize
= cpu_to_be32(size
);
1457 return drbd_send_command(peer_device
, sock
, cmd
, sizeof(*p
), digest
, digest_size
);
1460 int drbd_send_ov_request(struct drbd_peer_device
*peer_device
, sector_t sector
, int size
)
1462 struct drbd_socket
*sock
;
1463 struct p_block_req
*p
;
1465 sock
= &peer_device
->connection
->data
;
1466 p
= drbd_prepare_command(peer_device
, sock
);
1469 p
->sector
= cpu_to_be64(sector
);
1470 p
->block_id
= ID_SYNCER
/* unused */;
1471 p
->blksize
= cpu_to_be32(size
);
1472 return drbd_send_command(peer_device
, sock
, P_OV_REQUEST
, sizeof(*p
), NULL
, 0);
1475 /* called on sndtimeo
1476 * returns false if we should retry,
1477 * true if we think connection is dead
1479 static int we_should_drop_the_connection(struct drbd_connection
*connection
, struct socket
*sock
)
1482 /* long elapsed = (long)(jiffies - device->last_received); */
1484 drop_it
= connection
->meta
.socket
== sock
1485 || !connection
->ack_receiver
.task
1486 || get_t_state(&connection
->ack_receiver
) != RUNNING
1487 || connection
->cstate
< C_WF_REPORT_PARAMS
;
1492 drop_it
= !--connection
->ko_count
;
1494 drbd_err(connection
, "[%s/%d] sock_sendmsg time expired, ko = %u\n",
1495 current
->comm
, current
->pid
, connection
->ko_count
);
1496 request_ping(connection
);
1499 return drop_it
; /* && (device->state == R_PRIMARY) */;
1502 static void drbd_update_congested(struct drbd_connection
*connection
)
1504 struct sock
*sk
= connection
->data
.socket
->sk
;
1505 if (sk
->sk_wmem_queued
> sk
->sk_sndbuf
* 4 / 5)
1506 set_bit(NET_CONGESTED
, &connection
->flags
);
1509 /* The idea of sendpage seems to be to put some kind of reference
1510 * to the page into the skb, and to hand it over to the NIC. In
1511 * this process get_page() gets called.
1513 * As soon as the page was really sent over the network put_page()
1514 * gets called by some part of the network layer. [ NIC driver? ]
1516 * [ get_page() / put_page() increment/decrement the count. If count
1517 * reaches 0 the page will be freed. ]
1519 * This works nicely with pages from FSs.
1520 * But this means that in protocol A we might signal IO completion too early!
1522 * In order not to corrupt data during a resync we must make sure
1523 * that we do not reuse our own buffer pages (EEs) to early, therefore
1524 * we have the net_ee list.
1526 * XFS seems to have problems, still, it submits pages with page_count == 0!
1527 * As a workaround, we disable sendpage on pages
1528 * with page_count == 0 or PageSlab.
1530 static int _drbd_no_send_page(struct drbd_peer_device
*peer_device
, struct page
*page
,
1531 int offset
, size_t size
, unsigned msg_flags
)
1533 struct socket
*socket
;
1537 socket
= peer_device
->connection
->data
.socket
;
1538 addr
= kmap(page
) + offset
;
1539 err
= drbd_send_all(peer_device
->connection
, socket
, addr
, size
, msg_flags
);
1542 peer_device
->device
->send_cnt
+= size
>> 9;
1546 static int _drbd_send_page(struct drbd_peer_device
*peer_device
, struct page
*page
,
1547 int offset
, size_t size
, unsigned msg_flags
)
1549 struct socket
*socket
= peer_device
->connection
->data
.socket
;
1553 /* e.g. XFS meta- & log-data is in slab pages, which have a
1554 * page_count of 0 and/or have PageSlab() set.
1555 * we cannot use send_page for those, as that does get_page();
1556 * put_page(); and would cause either a VM_BUG directly, or
1557 * __page_cache_release a page that would actually still be referenced
1558 * by someone, leading to some obscure delayed Oops somewhere else. */
1559 if (drbd_disable_sendpage
|| !sendpage_ok(page
))
1560 return _drbd_no_send_page(peer_device
, page
, offset
, size
, msg_flags
);
1562 msg_flags
|= MSG_NOSIGNAL
;
1563 drbd_update_congested(peer_device
->connection
);
1567 sent
= socket
->ops
->sendpage(socket
, page
, offset
, len
, msg_flags
);
1569 if (sent
== -EAGAIN
) {
1570 if (we_should_drop_the_connection(peer_device
->connection
, socket
))
1574 drbd_warn(peer_device
->device
, "%s: size=%d len=%d sent=%d\n",
1575 __func__
, (int)size
, len
, sent
);
1582 } while (len
> 0 /* THINK && device->cstate >= C_CONNECTED*/);
1583 clear_bit(NET_CONGESTED
, &peer_device
->connection
->flags
);
1587 peer_device
->device
->send_cnt
+= size
>> 9;
1592 static int _drbd_send_bio(struct drbd_peer_device
*peer_device
, struct bio
*bio
)
1594 struct bio_vec bvec
;
1595 struct bvec_iter iter
;
1597 /* hint all but last page with MSG_MORE */
1598 bio_for_each_segment(bvec
, bio
, iter
) {
1601 err
= _drbd_no_send_page(peer_device
, bvec
.bv_page
,
1602 bvec
.bv_offset
, bvec
.bv_len
,
1603 bio_iter_last(bvec
, iter
)
1607 /* REQ_OP_WRITE_SAME has only one segment */
1608 if (bio_op(bio
) == REQ_OP_WRITE_SAME
)
1614 static int _drbd_send_zc_bio(struct drbd_peer_device
*peer_device
, struct bio
*bio
)
1616 struct bio_vec bvec
;
1617 struct bvec_iter iter
;
1619 /* hint all but last page with MSG_MORE */
1620 bio_for_each_segment(bvec
, bio
, iter
) {
1623 err
= _drbd_send_page(peer_device
, bvec
.bv_page
,
1624 bvec
.bv_offset
, bvec
.bv_len
,
1625 bio_iter_last(bvec
, iter
) ? 0 : MSG_MORE
);
1628 /* REQ_OP_WRITE_SAME has only one segment */
1629 if (bio_op(bio
) == REQ_OP_WRITE_SAME
)
1635 static int _drbd_send_zc_ee(struct drbd_peer_device
*peer_device
,
1636 struct drbd_peer_request
*peer_req
)
1638 struct page
*page
= peer_req
->pages
;
1639 unsigned len
= peer_req
->i
.size
;
1642 /* hint all but last page with MSG_MORE */
1643 page_chain_for_each(page
) {
1644 unsigned l
= min_t(unsigned, len
, PAGE_SIZE
);
1646 err
= _drbd_send_page(peer_device
, page
, 0, l
,
1647 page_chain_next(page
) ? MSG_MORE
: 0);
1655 static u32
bio_flags_to_wire(struct drbd_connection
*connection
,
1658 if (connection
->agreed_pro_version
>= 95)
1659 return (bio
->bi_opf
& REQ_SYNC
? DP_RW_SYNC
: 0) |
1660 (bio
->bi_opf
& REQ_FUA
? DP_FUA
: 0) |
1661 (bio
->bi_opf
& REQ_PREFLUSH
? DP_FLUSH
: 0) |
1662 (bio_op(bio
) == REQ_OP_WRITE_SAME
? DP_WSAME
: 0) |
1663 (bio_op(bio
) == REQ_OP_DISCARD
? DP_DISCARD
: 0) |
1664 (bio_op(bio
) == REQ_OP_WRITE_ZEROES
?
1665 ((connection
->agreed_features
& DRBD_FF_WZEROES
) ?
1666 (DP_ZEROES
|(!(bio
->bi_opf
& REQ_NOUNMAP
) ? DP_DISCARD
: 0))
1670 return bio
->bi_opf
& REQ_SYNC
? DP_RW_SYNC
: 0;
1673 /* Used to send write or TRIM aka REQ_OP_DISCARD requests
1674 * R_PRIMARY -> Peer (P_DATA, P_TRIM)
1676 int drbd_send_dblock(struct drbd_peer_device
*peer_device
, struct drbd_request
*req
)
1678 struct drbd_device
*device
= peer_device
->device
;
1679 struct drbd_socket
*sock
;
1681 struct p_wsame
*wsame
= NULL
;
1683 unsigned int dp_flags
= 0;
1687 sock
= &peer_device
->connection
->data
;
1688 p
= drbd_prepare_command(peer_device
, sock
);
1689 digest_size
= peer_device
->connection
->integrity_tfm
?
1690 crypto_shash_digestsize(peer_device
->connection
->integrity_tfm
) : 0;
1694 p
->sector
= cpu_to_be64(req
->i
.sector
);
1695 p
->block_id
= (unsigned long)req
;
1696 p
->seq_num
= cpu_to_be32(atomic_inc_return(&device
->packet_seq
));
1697 dp_flags
= bio_flags_to_wire(peer_device
->connection
, req
->master_bio
);
1698 if (device
->state
.conn
>= C_SYNC_SOURCE
&&
1699 device
->state
.conn
<= C_PAUSED_SYNC_T
)
1700 dp_flags
|= DP_MAY_SET_IN_SYNC
;
1701 if (peer_device
->connection
->agreed_pro_version
>= 100) {
1702 if (req
->rq_state
& RQ_EXP_RECEIVE_ACK
)
1703 dp_flags
|= DP_SEND_RECEIVE_ACK
;
1704 /* During resync, request an explicit write ack,
1705 * even in protocol != C */
1706 if (req
->rq_state
& RQ_EXP_WRITE_ACK
1707 || (dp_flags
& DP_MAY_SET_IN_SYNC
))
1708 dp_flags
|= DP_SEND_WRITE_ACK
;
1710 p
->dp_flags
= cpu_to_be32(dp_flags
);
1712 if (dp_flags
& (DP_DISCARD
|DP_ZEROES
)) {
1713 enum drbd_packet cmd
= (dp_flags
& DP_ZEROES
) ? P_ZEROES
: P_TRIM
;
1714 struct p_trim
*t
= (struct p_trim
*)p
;
1715 t
->size
= cpu_to_be32(req
->i
.size
);
1716 err
= __send_command(peer_device
->connection
, device
->vnr
, sock
, cmd
, sizeof(*t
), NULL
, 0);
1719 if (dp_flags
& DP_WSAME
) {
1720 /* this will only work if DRBD_FF_WSAME is set AND the
1721 * handshake agreed that all nodes and backend devices are
1722 * WRITE_SAME capable and agree on logical_block_size */
1723 wsame
= (struct p_wsame
*)p
;
1724 digest_out
= wsame
+ 1;
1725 wsame
->size
= cpu_to_be32(req
->i
.size
);
1729 /* our digest is still only over the payload.
1730 * TRIM does not carry any payload. */
1732 drbd_csum_bio(peer_device
->connection
->integrity_tfm
, req
->master_bio
, digest_out
);
1735 __send_command(peer_device
->connection
, device
->vnr
, sock
, P_WSAME
,
1736 sizeof(*wsame
) + digest_size
, NULL
,
1737 bio_iovec(req
->master_bio
).bv_len
);
1740 __send_command(peer_device
->connection
, device
->vnr
, sock
, P_DATA
,
1741 sizeof(*p
) + digest_size
, NULL
, req
->i
.size
);
1743 /* For protocol A, we have to memcpy the payload into
1744 * socket buffers, as we may complete right away
1745 * as soon as we handed it over to tcp, at which point the data
1746 * pages may become invalid.
1748 * For data-integrity enabled, we copy it as well, so we can be
1749 * sure that even if the bio pages may still be modified, it
1750 * won't change the data on the wire, thus if the digest checks
1751 * out ok after sending on this side, but does not fit on the
1752 * receiving side, we sure have detected corruption elsewhere.
1754 if (!(req
->rq_state
& (RQ_EXP_RECEIVE_ACK
| RQ_EXP_WRITE_ACK
)) || digest_size
)
1755 err
= _drbd_send_bio(peer_device
, req
->master_bio
);
1757 err
= _drbd_send_zc_bio(peer_device
, req
->master_bio
);
1759 /* double check digest, sometimes buffers have been modified in flight. */
1760 if (digest_size
> 0 && digest_size
<= 64) {
1761 /* 64 byte, 512 bit, is the largest digest size
1762 * currently supported in kernel crypto. */
1763 unsigned char digest
[64];
1764 drbd_csum_bio(peer_device
->connection
->integrity_tfm
, req
->master_bio
, digest
);
1765 if (memcmp(p
+ 1, digest
, digest_size
)) {
1767 "Digest mismatch, buffer modified by upper layers during write: %llus +%u\n",
1768 (unsigned long long)req
->i
.sector
, req
->i
.size
);
1770 } /* else if (digest_size > 64) {
1771 ... Be noisy about digest too large ...
1775 mutex_unlock(&sock
->mutex
); /* locked by drbd_prepare_command() */
1780 /* answer packet, used to send data back for read requests:
1781 * Peer -> (diskless) R_PRIMARY (P_DATA_REPLY)
1782 * C_SYNC_SOURCE -> C_SYNC_TARGET (P_RS_DATA_REPLY)
1784 int drbd_send_block(struct drbd_peer_device
*peer_device
, enum drbd_packet cmd
,
1785 struct drbd_peer_request
*peer_req
)
1787 struct drbd_device
*device
= peer_device
->device
;
1788 struct drbd_socket
*sock
;
1793 sock
= &peer_device
->connection
->data
;
1794 p
= drbd_prepare_command(peer_device
, sock
);
1796 digest_size
= peer_device
->connection
->integrity_tfm
?
1797 crypto_shash_digestsize(peer_device
->connection
->integrity_tfm
) : 0;
1801 p
->sector
= cpu_to_be64(peer_req
->i
.sector
);
1802 p
->block_id
= peer_req
->block_id
;
1803 p
->seq_num
= 0; /* unused */
1806 drbd_csum_ee(peer_device
->connection
->integrity_tfm
, peer_req
, p
+ 1);
1807 err
= __send_command(peer_device
->connection
, device
->vnr
, sock
, cmd
, sizeof(*p
) + digest_size
, NULL
, peer_req
->i
.size
);
1809 err
= _drbd_send_zc_ee(peer_device
, peer_req
);
1810 mutex_unlock(&sock
->mutex
); /* locked by drbd_prepare_command() */
1815 int drbd_send_out_of_sync(struct drbd_peer_device
*peer_device
, struct drbd_request
*req
)
1817 struct drbd_socket
*sock
;
1818 struct p_block_desc
*p
;
1820 sock
= &peer_device
->connection
->data
;
1821 p
= drbd_prepare_command(peer_device
, sock
);
1824 p
->sector
= cpu_to_be64(req
->i
.sector
);
1825 p
->blksize
= cpu_to_be32(req
->i
.size
);
1826 return drbd_send_command(peer_device
, sock
, P_OUT_OF_SYNC
, sizeof(*p
), NULL
, 0);
1830 drbd_send distinguishes two cases:
1832 Packets sent via the data socket "sock"
1833 and packets sent via the meta data socket "msock"
1836 -----------------+-------------------------+------------------------------
1837 timeout conf.timeout / 2 conf.timeout / 2
1838 timeout action send a ping via msock Abort communication
1839 and close all sockets
1843 * you must have down()ed the appropriate [m]sock_mutex elsewhere!
1845 int drbd_send(struct drbd_connection
*connection
, struct socket
*sock
,
1846 void *buf
, size_t size
, unsigned msg_flags
)
1848 struct kvec iov
= {.iov_base
= buf
, .iov_len
= size
};
1849 struct msghdr msg
= {.msg_flags
= msg_flags
| MSG_NOSIGNAL
};
1855 /* THINK if (signal_pending) return ... ? */
1857 iov_iter_kvec(&msg
.msg_iter
, WRITE
, &iov
, 1, size
);
1859 if (sock
== connection
->data
.socket
) {
1861 connection
->ko_count
= rcu_dereference(connection
->net_conf
)->ko_count
;
1863 drbd_update_congested(connection
);
1866 rv
= sock_sendmsg(sock
, &msg
);
1867 if (rv
== -EAGAIN
) {
1868 if (we_should_drop_the_connection(connection
, sock
))
1874 flush_signals(current
);
1880 } while (sent
< size
);
1882 if (sock
== connection
->data
.socket
)
1883 clear_bit(NET_CONGESTED
, &connection
->flags
);
1886 if (rv
!= -EAGAIN
) {
1887 drbd_err(connection
, "%s_sendmsg returned %d\n",
1888 sock
== connection
->meta
.socket
? "msock" : "sock",
1890 conn_request_state(connection
, NS(conn
, C_BROKEN_PIPE
), CS_HARD
);
1892 conn_request_state(connection
, NS(conn
, C_TIMEOUT
), CS_HARD
);
1899 * drbd_send_all - Send an entire buffer
1901 * Returns 0 upon success and a negative error value otherwise.
1903 int drbd_send_all(struct drbd_connection
*connection
, struct socket
*sock
, void *buffer
,
1904 size_t size
, unsigned msg_flags
)
1908 err
= drbd_send(connection
, sock
, buffer
, size
, msg_flags
);
1916 static int drbd_open(struct block_device
*bdev
, fmode_t mode
)
1918 struct drbd_device
*device
= bdev
->bd_disk
->private_data
;
1919 unsigned long flags
;
1922 mutex_lock(&drbd_main_mutex
);
1923 spin_lock_irqsave(&device
->resource
->req_lock
, flags
);
1924 /* to have a stable device->state.role
1925 * and no race with updating open_cnt */
1927 if (device
->state
.role
!= R_PRIMARY
) {
1928 if (mode
& FMODE_WRITE
)
1930 else if (!drbd_allow_oos
)
1936 spin_unlock_irqrestore(&device
->resource
->req_lock
, flags
);
1937 mutex_unlock(&drbd_main_mutex
);
1942 static void drbd_release(struct gendisk
*gd
, fmode_t mode
)
1944 struct drbd_device
*device
= gd
->private_data
;
1945 mutex_lock(&drbd_main_mutex
);
1947 mutex_unlock(&drbd_main_mutex
);
1950 /* need to hold resource->req_lock */
1951 void drbd_queue_unplug(struct drbd_device
*device
)
1953 if (device
->state
.pdsk
>= D_INCONSISTENT
&& device
->state
.conn
>= C_CONNECTED
) {
1954 D_ASSERT(device
, device
->state
.role
== R_PRIMARY
);
1955 if (test_and_clear_bit(UNPLUG_REMOTE
, &device
->flags
)) {
1956 drbd_queue_work_if_unqueued(
1957 &first_peer_device(device
)->connection
->sender_work
,
1958 &device
->unplug_work
);
1963 static void drbd_set_defaults(struct drbd_device
*device
)
1965 /* Beware! The actual layout differs
1966 * between big endian and little endian */
1967 device
->state
= (union drbd_dev_state
) {
1968 { .role
= R_SECONDARY
,
1970 .conn
= C_STANDALONE
,
1976 void drbd_init_set_defaults(struct drbd_device
*device
)
1978 /* the memset(,0,) did most of this.
1979 * note: only assignments, no allocation in here */
1981 drbd_set_defaults(device
);
1983 atomic_set(&device
->ap_bio_cnt
, 0);
1984 atomic_set(&device
->ap_actlog_cnt
, 0);
1985 atomic_set(&device
->ap_pending_cnt
, 0);
1986 atomic_set(&device
->rs_pending_cnt
, 0);
1987 atomic_set(&device
->unacked_cnt
, 0);
1988 atomic_set(&device
->local_cnt
, 0);
1989 atomic_set(&device
->pp_in_use_by_net
, 0);
1990 atomic_set(&device
->rs_sect_in
, 0);
1991 atomic_set(&device
->rs_sect_ev
, 0);
1992 atomic_set(&device
->ap_in_flight
, 0);
1993 atomic_set(&device
->md_io
.in_use
, 0);
1995 mutex_init(&device
->own_state_mutex
);
1996 device
->state_mutex
= &device
->own_state_mutex
;
1998 spin_lock_init(&device
->al_lock
);
1999 spin_lock_init(&device
->peer_seq_lock
);
2001 INIT_LIST_HEAD(&device
->active_ee
);
2002 INIT_LIST_HEAD(&device
->sync_ee
);
2003 INIT_LIST_HEAD(&device
->done_ee
);
2004 INIT_LIST_HEAD(&device
->read_ee
);
2005 INIT_LIST_HEAD(&device
->net_ee
);
2006 INIT_LIST_HEAD(&device
->resync_reads
);
2007 INIT_LIST_HEAD(&device
->resync_work
.list
);
2008 INIT_LIST_HEAD(&device
->unplug_work
.list
);
2009 INIT_LIST_HEAD(&device
->bm_io_work
.w
.list
);
2010 INIT_LIST_HEAD(&device
->pending_master_completion
[0]);
2011 INIT_LIST_HEAD(&device
->pending_master_completion
[1]);
2012 INIT_LIST_HEAD(&device
->pending_completion
[0]);
2013 INIT_LIST_HEAD(&device
->pending_completion
[1]);
2015 device
->resync_work
.cb
= w_resync_timer
;
2016 device
->unplug_work
.cb
= w_send_write_hint
;
2017 device
->bm_io_work
.w
.cb
= w_bitmap_io
;
2019 timer_setup(&device
->resync_timer
, resync_timer_fn
, 0);
2020 timer_setup(&device
->md_sync_timer
, md_sync_timer_fn
, 0);
2021 timer_setup(&device
->start_resync_timer
, start_resync_timer_fn
, 0);
2022 timer_setup(&device
->request_timer
, request_timer_fn
, 0);
2024 init_waitqueue_head(&device
->misc_wait
);
2025 init_waitqueue_head(&device
->state_wait
);
2026 init_waitqueue_head(&device
->ee_wait
);
2027 init_waitqueue_head(&device
->al_wait
);
2028 init_waitqueue_head(&device
->seq_wait
);
2030 device
->resync_wenr
= LC_FREE
;
2031 device
->peer_max_bio_size
= DRBD_MAX_BIO_SIZE_SAFE
;
2032 device
->local_max_bio_size
= DRBD_MAX_BIO_SIZE_SAFE
;
2035 void drbd_set_my_capacity(struct drbd_device
*device
, sector_t size
)
2039 set_capacity_and_notify(device
->vdisk
, size
);
2041 drbd_info(device
, "size = %s (%llu KB)\n",
2042 ppsize(ppb
, size
>>1), (unsigned long long)size
>>1);
2045 void drbd_device_cleanup(struct drbd_device
*device
)
2048 if (first_peer_device(device
)->connection
->receiver
.t_state
!= NONE
)
2049 drbd_err(device
, "ASSERT FAILED: receiver t_state == %d expected 0.\n",
2050 first_peer_device(device
)->connection
->receiver
.t_state
);
2052 device
->al_writ_cnt
=
2053 device
->bm_writ_cnt
=
2061 device
->rs_failed
= 0;
2062 device
->rs_last_events
= 0;
2063 device
->rs_last_sect_ev
= 0;
2064 for (i
= 0; i
< DRBD_SYNC_MARKS
; i
++) {
2065 device
->rs_mark_left
[i
] = 0;
2066 device
->rs_mark_time
[i
] = 0;
2068 D_ASSERT(device
, first_peer_device(device
)->connection
->net_conf
== NULL
);
2070 set_capacity_and_notify(device
->vdisk
, 0);
2071 if (device
->bitmap
) {
2072 /* maybe never allocated. */
2073 drbd_bm_resize(device
, 0, 1);
2074 drbd_bm_cleanup(device
);
2077 drbd_backing_dev_free(device
, device
->ldev
);
2078 device
->ldev
= NULL
;
2080 clear_bit(AL_SUSPENDED
, &device
->flags
);
2082 D_ASSERT(device
, list_empty(&device
->active_ee
));
2083 D_ASSERT(device
, list_empty(&device
->sync_ee
));
2084 D_ASSERT(device
, list_empty(&device
->done_ee
));
2085 D_ASSERT(device
, list_empty(&device
->read_ee
));
2086 D_ASSERT(device
, list_empty(&device
->net_ee
));
2087 D_ASSERT(device
, list_empty(&device
->resync_reads
));
2088 D_ASSERT(device
, list_empty(&first_peer_device(device
)->connection
->sender_work
.q
));
2089 D_ASSERT(device
, list_empty(&device
->resync_work
.list
));
2090 D_ASSERT(device
, list_empty(&device
->unplug_work
.list
));
2092 drbd_set_defaults(device
);
2096 static void drbd_destroy_mempools(void)
2100 while (drbd_pp_pool
) {
2101 page
= drbd_pp_pool
;
2102 drbd_pp_pool
= (struct page
*)page_private(page
);
2107 /* D_ASSERT(device, atomic_read(&drbd_pp_vacant)==0); */
2109 bioset_exit(&drbd_io_bio_set
);
2110 bioset_exit(&drbd_md_io_bio_set
);
2111 mempool_exit(&drbd_md_io_page_pool
);
2112 mempool_exit(&drbd_ee_mempool
);
2113 mempool_exit(&drbd_request_mempool
);
2114 kmem_cache_destroy(drbd_ee_cache
);
2115 kmem_cache_destroy(drbd_request_cache
);
2116 kmem_cache_destroy(drbd_bm_ext_cache
);
2117 kmem_cache_destroy(drbd_al_ext_cache
);
2119 drbd_ee_cache
= NULL
;
2120 drbd_request_cache
= NULL
;
2121 drbd_bm_ext_cache
= NULL
;
2122 drbd_al_ext_cache
= NULL
;
2127 static int drbd_create_mempools(void)
2130 const int number
= (DRBD_MAX_BIO_SIZE
/PAGE_SIZE
) * drbd_minor_count
;
2134 drbd_request_cache
= kmem_cache_create(
2135 "drbd_req", sizeof(struct drbd_request
), 0, 0, NULL
);
2136 if (drbd_request_cache
== NULL
)
2139 drbd_ee_cache
= kmem_cache_create(
2140 "drbd_ee", sizeof(struct drbd_peer_request
), 0, 0, NULL
);
2141 if (drbd_ee_cache
== NULL
)
2144 drbd_bm_ext_cache
= kmem_cache_create(
2145 "drbd_bm", sizeof(struct bm_extent
), 0, 0, NULL
);
2146 if (drbd_bm_ext_cache
== NULL
)
2149 drbd_al_ext_cache
= kmem_cache_create(
2150 "drbd_al", sizeof(struct lc_element
), 0, 0, NULL
);
2151 if (drbd_al_ext_cache
== NULL
)
2155 ret
= bioset_init(&drbd_io_bio_set
, BIO_POOL_SIZE
, 0, 0);
2159 ret
= bioset_init(&drbd_md_io_bio_set
, DRBD_MIN_POOL_PAGES
, 0,
2164 ret
= mempool_init_page_pool(&drbd_md_io_page_pool
, DRBD_MIN_POOL_PAGES
, 0);
2168 ret
= mempool_init_slab_pool(&drbd_request_mempool
, number
,
2169 drbd_request_cache
);
2173 ret
= mempool_init_slab_pool(&drbd_ee_mempool
, number
, drbd_ee_cache
);
2177 /* drbd's page pool */
2178 spin_lock_init(&drbd_pp_lock
);
2180 for (i
= 0; i
< number
; i
++) {
2181 page
= alloc_page(GFP_HIGHUSER
);
2184 set_page_private(page
, (unsigned long)drbd_pp_pool
);
2185 drbd_pp_pool
= page
;
2187 drbd_pp_vacant
= number
;
2192 drbd_destroy_mempools(); /* in case we allocated some */
2196 static void drbd_release_all_peer_reqs(struct drbd_device
*device
)
2200 rr
= drbd_free_peer_reqs(device
, &device
->active_ee
);
2202 drbd_err(device
, "%d EEs in active list found!\n", rr
);
2204 rr
= drbd_free_peer_reqs(device
, &device
->sync_ee
);
2206 drbd_err(device
, "%d EEs in sync list found!\n", rr
);
2208 rr
= drbd_free_peer_reqs(device
, &device
->read_ee
);
2210 drbd_err(device
, "%d EEs in read list found!\n", rr
);
2212 rr
= drbd_free_peer_reqs(device
, &device
->done_ee
);
2214 drbd_err(device
, "%d EEs in done list found!\n", rr
);
2216 rr
= drbd_free_peer_reqs(device
, &device
->net_ee
);
2218 drbd_err(device
, "%d EEs in net list found!\n", rr
);
2221 /* caution. no locking. */
2222 void drbd_destroy_device(struct kref
*kref
)
2224 struct drbd_device
*device
= container_of(kref
, struct drbd_device
, kref
);
2225 struct drbd_resource
*resource
= device
->resource
;
2226 struct drbd_peer_device
*peer_device
, *tmp_peer_device
;
2228 del_timer_sync(&device
->request_timer
);
2230 /* paranoia asserts */
2231 D_ASSERT(device
, device
->open_cnt
== 0);
2232 /* end paranoia asserts */
2234 /* cleanup stuff that may have been allocated during
2235 * device (re-)configuration or state changes */
2237 drbd_backing_dev_free(device
, device
->ldev
);
2238 device
->ldev
= NULL
;
2240 drbd_release_all_peer_reqs(device
);
2242 lc_destroy(device
->act_log
);
2243 lc_destroy(device
->resync
);
2245 kfree(device
->p_uuid
);
2246 /* device->p_uuid = NULL; */
2248 if (device
->bitmap
) /* should no longer be there. */
2249 drbd_bm_cleanup(device
);
2250 __free_page(device
->md_io
.page
);
2251 put_disk(device
->vdisk
);
2252 blk_cleanup_queue(device
->rq_queue
);
2253 kfree(device
->rs_plan_s
);
2255 /* not for_each_connection(connection, resource):
2256 * those may have been cleaned up and disassociated already.
2258 for_each_peer_device_safe(peer_device
, tmp_peer_device
, device
) {
2259 kref_put(&peer_device
->connection
->kref
, drbd_destroy_connection
);
2262 memset(device
, 0xfd, sizeof(*device
));
2264 kref_put(&resource
->kref
, drbd_destroy_resource
);
2267 /* One global retry thread, if we need to push back some bio and have it
2268 * reinserted through our make request function.
2270 static struct retry_worker
{
2271 struct workqueue_struct
*wq
;
2272 struct work_struct worker
;
2275 struct list_head writes
;
2278 static void do_retry(struct work_struct
*ws
)
2280 struct retry_worker
*retry
= container_of(ws
, struct retry_worker
, worker
);
2282 struct drbd_request
*req
, *tmp
;
2284 spin_lock_irq(&retry
->lock
);
2285 list_splice_init(&retry
->writes
, &writes
);
2286 spin_unlock_irq(&retry
->lock
);
2288 list_for_each_entry_safe(req
, tmp
, &writes
, tl_requests
) {
2289 struct drbd_device
*device
= req
->device
;
2290 struct bio
*bio
= req
->master_bio
;
2291 unsigned long start_jif
= req
->start_jif
;
2295 expect(atomic_read(&req
->completion_ref
) == 0) &&
2296 expect(req
->rq_state
& RQ_POSTPONED
) &&
2297 expect((req
->rq_state
& RQ_LOCAL_PENDING
) == 0 ||
2298 (req
->rq_state
& RQ_LOCAL_ABORTED
) != 0);
2301 drbd_err(device
, "req=%p completion_ref=%d rq_state=%x\n",
2302 req
, atomic_read(&req
->completion_ref
),
2305 /* We still need to put one kref associated with the
2306 * "completion_ref" going zero in the code path that queued it
2307 * here. The request object may still be referenced by a
2308 * frozen local req->private_bio, in case we force-detached.
2310 kref_put(&req
->kref
, drbd_req_destroy
);
2312 /* A single suspended or otherwise blocking device may stall
2313 * all others as well. Fortunately, this code path is to
2314 * recover from a situation that "should not happen":
2315 * concurrent writes in multi-primary setup.
2316 * In a "normal" lifecycle, this workqueue is supposed to be
2317 * destroyed without ever doing anything.
2318 * If it turns out to be an issue anyways, we can do per
2319 * resource (replication group) or per device (minor) retry
2320 * workqueues instead.
2323 /* We are not just doing submit_bio_noacct(),
2324 * as we want to keep the start_time information. */
2326 __drbd_make_request(device
, bio
, start_jif
);
2330 /* called via drbd_req_put_completion_ref(),
2331 * holds resource->req_lock */
2332 void drbd_restart_request(struct drbd_request
*req
)
2334 unsigned long flags
;
2335 spin_lock_irqsave(&retry
.lock
, flags
);
2336 list_move_tail(&req
->tl_requests
, &retry
.writes
);
2337 spin_unlock_irqrestore(&retry
.lock
, flags
);
2339 /* Drop the extra reference that would otherwise
2340 * have been dropped by complete_master_bio.
2341 * do_retry() needs to grab a new one. */
2342 dec_ap_bio(req
->device
);
2344 queue_work(retry
.wq
, &retry
.worker
);
2347 void drbd_destroy_resource(struct kref
*kref
)
2349 struct drbd_resource
*resource
=
2350 container_of(kref
, struct drbd_resource
, kref
);
2352 idr_destroy(&resource
->devices
);
2353 free_cpumask_var(resource
->cpu_mask
);
2354 kfree(resource
->name
);
2355 memset(resource
, 0xf2, sizeof(*resource
));
2359 void drbd_free_resource(struct drbd_resource
*resource
)
2361 struct drbd_connection
*connection
, *tmp
;
2363 for_each_connection_safe(connection
, tmp
, resource
) {
2364 list_del(&connection
->connections
);
2365 drbd_debugfs_connection_cleanup(connection
);
2366 kref_put(&connection
->kref
, drbd_destroy_connection
);
2368 drbd_debugfs_resource_cleanup(resource
);
2369 kref_put(&resource
->kref
, drbd_destroy_resource
);
2372 static void drbd_cleanup(void)
2375 struct drbd_device
*device
;
2376 struct drbd_resource
*resource
, *tmp
;
2378 /* first remove proc,
2379 * drbdsetup uses it's presence to detect
2380 * whether DRBD is loaded.
2381 * If we would get stuck in proc removal,
2382 * but have netlink already deregistered,
2383 * some drbdsetup commands may wait forever
2387 remove_proc_entry("drbd", NULL
);
2390 destroy_workqueue(retry
.wq
);
2392 drbd_genl_unregister();
2394 idr_for_each_entry(&drbd_devices
, device
, i
)
2395 drbd_delete_device(device
);
2397 /* not _rcu since, no other updater anymore. Genl already unregistered */
2398 for_each_resource_safe(resource
, tmp
, &drbd_resources
) {
2399 list_del(&resource
->resources
);
2400 drbd_free_resource(resource
);
2403 drbd_debugfs_cleanup();
2405 drbd_destroy_mempools();
2406 unregister_blkdev(DRBD_MAJOR
, "drbd");
2408 idr_destroy(&drbd_devices
);
2410 pr_info("module cleanup done.\n");
2413 static void drbd_init_workqueue(struct drbd_work_queue
* wq
)
2415 spin_lock_init(&wq
->q_lock
);
2416 INIT_LIST_HEAD(&wq
->q
);
2417 init_waitqueue_head(&wq
->q_wait
);
2420 struct completion_work
{
2422 struct completion done
;
2425 static int w_complete(struct drbd_work
*w
, int cancel
)
2427 struct completion_work
*completion_work
=
2428 container_of(w
, struct completion_work
, w
);
2430 complete(&completion_work
->done
);
2434 void drbd_flush_workqueue(struct drbd_work_queue
*work_queue
)
2436 struct completion_work completion_work
;
2438 completion_work
.w
.cb
= w_complete
;
2439 init_completion(&completion_work
.done
);
2440 drbd_queue_work(work_queue
, &completion_work
.w
);
2441 wait_for_completion(&completion_work
.done
);
2444 struct drbd_resource
*drbd_find_resource(const char *name
)
2446 struct drbd_resource
*resource
;
2448 if (!name
|| !name
[0])
2452 for_each_resource_rcu(resource
, &drbd_resources
) {
2453 if (!strcmp(resource
->name
, name
)) {
2454 kref_get(&resource
->kref
);
2464 struct drbd_connection
*conn_get_by_addrs(void *my_addr
, int my_addr_len
,
2465 void *peer_addr
, int peer_addr_len
)
2467 struct drbd_resource
*resource
;
2468 struct drbd_connection
*connection
;
2471 for_each_resource_rcu(resource
, &drbd_resources
) {
2472 for_each_connection_rcu(connection
, resource
) {
2473 if (connection
->my_addr_len
== my_addr_len
&&
2474 connection
->peer_addr_len
== peer_addr_len
&&
2475 !memcmp(&connection
->my_addr
, my_addr
, my_addr_len
) &&
2476 !memcmp(&connection
->peer_addr
, peer_addr
, peer_addr_len
)) {
2477 kref_get(&connection
->kref
);
2488 static int drbd_alloc_socket(struct drbd_socket
*socket
)
2490 socket
->rbuf
= (void *) __get_free_page(GFP_KERNEL
);
2493 socket
->sbuf
= (void *) __get_free_page(GFP_KERNEL
);
2499 static void drbd_free_socket(struct drbd_socket
*socket
)
2501 free_page((unsigned long) socket
->sbuf
);
2502 free_page((unsigned long) socket
->rbuf
);
2505 void conn_free_crypto(struct drbd_connection
*connection
)
2507 drbd_free_sock(connection
);
2509 crypto_free_shash(connection
->csums_tfm
);
2510 crypto_free_shash(connection
->verify_tfm
);
2511 crypto_free_shash(connection
->cram_hmac_tfm
);
2512 crypto_free_shash(connection
->integrity_tfm
);
2513 crypto_free_shash(connection
->peer_integrity_tfm
);
2514 kfree(connection
->int_dig_in
);
2515 kfree(connection
->int_dig_vv
);
2517 connection
->csums_tfm
= NULL
;
2518 connection
->verify_tfm
= NULL
;
2519 connection
->cram_hmac_tfm
= NULL
;
2520 connection
->integrity_tfm
= NULL
;
2521 connection
->peer_integrity_tfm
= NULL
;
2522 connection
->int_dig_in
= NULL
;
2523 connection
->int_dig_vv
= NULL
;
2526 int set_resource_options(struct drbd_resource
*resource
, struct res_opts
*res_opts
)
2528 struct drbd_connection
*connection
;
2529 cpumask_var_t new_cpu_mask
;
2532 if (!zalloc_cpumask_var(&new_cpu_mask
, GFP_KERNEL
))
2535 /* silently ignore cpu mask on UP kernel */
2536 if (nr_cpu_ids
> 1 && res_opts
->cpu_mask
[0] != 0) {
2537 err
= bitmap_parse(res_opts
->cpu_mask
, DRBD_CPU_MASK_SIZE
,
2538 cpumask_bits(new_cpu_mask
), nr_cpu_ids
);
2539 if (err
== -EOVERFLOW
) {
2540 /* So what. mask it out. */
2541 cpumask_var_t tmp_cpu_mask
;
2542 if (zalloc_cpumask_var(&tmp_cpu_mask
, GFP_KERNEL
)) {
2543 cpumask_setall(tmp_cpu_mask
);
2544 cpumask_and(new_cpu_mask
, new_cpu_mask
, tmp_cpu_mask
);
2545 drbd_warn(resource
, "Overflow in bitmap_parse(%.12s%s), truncating to %u bits\n",
2547 strlen(res_opts
->cpu_mask
) > 12 ? "..." : "",
2549 free_cpumask_var(tmp_cpu_mask
);
2554 drbd_warn(resource
, "bitmap_parse() failed with %d\n", err
);
2555 /* retcode = ERR_CPU_MASK_PARSE; */
2559 resource
->res_opts
= *res_opts
;
2560 if (cpumask_empty(new_cpu_mask
))
2561 drbd_calc_cpu_mask(&new_cpu_mask
);
2562 if (!cpumask_equal(resource
->cpu_mask
, new_cpu_mask
)) {
2563 cpumask_copy(resource
->cpu_mask
, new_cpu_mask
);
2564 for_each_connection_rcu(connection
, resource
) {
2565 connection
->receiver
.reset_cpu_mask
= 1;
2566 connection
->ack_receiver
.reset_cpu_mask
= 1;
2567 connection
->worker
.reset_cpu_mask
= 1;
2573 free_cpumask_var(new_cpu_mask
);
2578 struct drbd_resource
*drbd_create_resource(const char *name
)
2580 struct drbd_resource
*resource
;
2582 resource
= kzalloc(sizeof(struct drbd_resource
), GFP_KERNEL
);
2585 resource
->name
= kstrdup(name
, GFP_KERNEL
);
2586 if (!resource
->name
)
2587 goto fail_free_resource
;
2588 if (!zalloc_cpumask_var(&resource
->cpu_mask
, GFP_KERNEL
))
2589 goto fail_free_name
;
2590 kref_init(&resource
->kref
);
2591 idr_init(&resource
->devices
);
2592 INIT_LIST_HEAD(&resource
->connections
);
2593 resource
->write_ordering
= WO_BDEV_FLUSH
;
2594 list_add_tail_rcu(&resource
->resources
, &drbd_resources
);
2595 mutex_init(&resource
->conf_update
);
2596 mutex_init(&resource
->adm_mutex
);
2597 spin_lock_init(&resource
->req_lock
);
2598 drbd_debugfs_resource_add(resource
);
2602 kfree(resource
->name
);
2609 /* caller must be under adm_mutex */
2610 struct drbd_connection
*conn_create(const char *name
, struct res_opts
*res_opts
)
2612 struct drbd_resource
*resource
;
2613 struct drbd_connection
*connection
;
2615 connection
= kzalloc(sizeof(struct drbd_connection
), GFP_KERNEL
);
2619 if (drbd_alloc_socket(&connection
->data
))
2621 if (drbd_alloc_socket(&connection
->meta
))
2624 connection
->current_epoch
= kzalloc(sizeof(struct drbd_epoch
), GFP_KERNEL
);
2625 if (!connection
->current_epoch
)
2628 INIT_LIST_HEAD(&connection
->transfer_log
);
2630 INIT_LIST_HEAD(&connection
->current_epoch
->list
);
2631 connection
->epochs
= 1;
2632 spin_lock_init(&connection
->epoch_lock
);
2634 connection
->send
.seen_any_write_yet
= false;
2635 connection
->send
.current_epoch_nr
= 0;
2636 connection
->send
.current_epoch_writes
= 0;
2638 resource
= drbd_create_resource(name
);
2642 connection
->cstate
= C_STANDALONE
;
2643 mutex_init(&connection
->cstate_mutex
);
2644 init_waitqueue_head(&connection
->ping_wait
);
2645 idr_init(&connection
->peer_devices
);
2647 drbd_init_workqueue(&connection
->sender_work
);
2648 mutex_init(&connection
->data
.mutex
);
2649 mutex_init(&connection
->meta
.mutex
);
2651 drbd_thread_init(resource
, &connection
->receiver
, drbd_receiver
, "receiver");
2652 connection
->receiver
.connection
= connection
;
2653 drbd_thread_init(resource
, &connection
->worker
, drbd_worker
, "worker");
2654 connection
->worker
.connection
= connection
;
2655 drbd_thread_init(resource
, &connection
->ack_receiver
, drbd_ack_receiver
, "ack_recv");
2656 connection
->ack_receiver
.connection
= connection
;
2658 kref_init(&connection
->kref
);
2660 connection
->resource
= resource
;
2662 if (set_resource_options(resource
, res_opts
))
2665 kref_get(&resource
->kref
);
2666 list_add_tail_rcu(&connection
->connections
, &resource
->connections
);
2667 drbd_debugfs_connection_add(connection
);
2671 list_del(&resource
->resources
);
2672 drbd_free_resource(resource
);
2674 kfree(connection
->current_epoch
);
2675 drbd_free_socket(&connection
->meta
);
2676 drbd_free_socket(&connection
->data
);
2681 void drbd_destroy_connection(struct kref
*kref
)
2683 struct drbd_connection
*connection
= container_of(kref
, struct drbd_connection
, kref
);
2684 struct drbd_resource
*resource
= connection
->resource
;
2686 if (atomic_read(&connection
->current_epoch
->epoch_size
) != 0)
2687 drbd_err(connection
, "epoch_size:%d\n", atomic_read(&connection
->current_epoch
->epoch_size
));
2688 kfree(connection
->current_epoch
);
2690 idr_destroy(&connection
->peer_devices
);
2692 drbd_free_socket(&connection
->meta
);
2693 drbd_free_socket(&connection
->data
);
2694 kfree(connection
->int_dig_in
);
2695 kfree(connection
->int_dig_vv
);
2696 memset(connection
, 0xfc, sizeof(*connection
));
2698 kref_put(&resource
->kref
, drbd_destroy_resource
);
2701 static int init_submitter(struct drbd_device
*device
)
2703 /* opencoded create_singlethread_workqueue(),
2704 * to be able to say "drbd%d", ..., minor */
2706 alloc_ordered_workqueue("drbd%u_submit", WQ_MEM_RECLAIM
, device
->minor
);
2707 if (!device
->submit
.wq
)
2710 INIT_WORK(&device
->submit
.worker
, do_submit
);
2711 INIT_LIST_HEAD(&device
->submit
.writes
);
2715 enum drbd_ret_code
drbd_create_device(struct drbd_config_context
*adm_ctx
, unsigned int minor
)
2717 struct drbd_resource
*resource
= adm_ctx
->resource
;
2718 struct drbd_connection
*connection
;
2719 struct drbd_device
*device
;
2720 struct drbd_peer_device
*peer_device
, *tmp_peer_device
;
2721 struct gendisk
*disk
;
2722 struct request_queue
*q
;
2724 int vnr
= adm_ctx
->volume
;
2725 enum drbd_ret_code err
= ERR_NOMEM
;
2727 device
= minor_to_device(minor
);
2729 return ERR_MINOR_OR_VOLUME_EXISTS
;
2731 /* GFP_KERNEL, we are outside of all write-out paths */
2732 device
= kzalloc(sizeof(struct drbd_device
), GFP_KERNEL
);
2735 kref_init(&device
->kref
);
2737 kref_get(&resource
->kref
);
2738 device
->resource
= resource
;
2739 device
->minor
= minor
;
2742 drbd_init_set_defaults(device
);
2744 q
= blk_alloc_queue(NUMA_NO_NODE
);
2747 device
->rq_queue
= q
;
2749 disk
= alloc_disk(1);
2752 device
->vdisk
= disk
;
2754 set_disk_ro(disk
, true);
2757 disk
->major
= DRBD_MAJOR
;
2758 disk
->first_minor
= minor
;
2759 disk
->fops
= &drbd_ops
;
2760 sprintf(disk
->disk_name
, "drbd%d", minor
);
2761 disk
->private_data
= device
;
2763 blk_queue_write_cache(q
, true, true);
2764 /* Setting the max_hw_sectors to an odd value of 8kibyte here
2765 This triggers a max_bio_size message upon first attach or connect */
2766 blk_queue_max_hw_sectors(q
, DRBD_MAX_BIO_SIZE_SAFE
>> 8);
2768 device
->md_io
.page
= alloc_page(GFP_KERNEL
);
2769 if (!device
->md_io
.page
)
2770 goto out_no_io_page
;
2772 if (drbd_bm_init(device
))
2774 device
->read_requests
= RB_ROOT
;
2775 device
->write_requests
= RB_ROOT
;
2777 id
= idr_alloc(&drbd_devices
, device
, minor
, minor
+ 1, GFP_KERNEL
);
2780 err
= ERR_MINOR_OR_VOLUME_EXISTS
;
2781 goto out_no_minor_idr
;
2783 kref_get(&device
->kref
);
2785 id
= idr_alloc(&resource
->devices
, device
, vnr
, vnr
+ 1, GFP_KERNEL
);
2788 err
= ERR_MINOR_OR_VOLUME_EXISTS
;
2789 goto out_idr_remove_minor
;
2791 kref_get(&device
->kref
);
2793 INIT_LIST_HEAD(&device
->peer_devices
);
2794 INIT_LIST_HEAD(&device
->pending_bitmap_io
);
2795 for_each_connection(connection
, resource
) {
2796 peer_device
= kzalloc(sizeof(struct drbd_peer_device
), GFP_KERNEL
);
2798 goto out_idr_remove_from_resource
;
2799 peer_device
->connection
= connection
;
2800 peer_device
->device
= device
;
2802 list_add(&peer_device
->peer_devices
, &device
->peer_devices
);
2803 kref_get(&device
->kref
);
2805 id
= idr_alloc(&connection
->peer_devices
, peer_device
, vnr
, vnr
+ 1, GFP_KERNEL
);
2808 err
= ERR_INVALID_REQUEST
;
2809 goto out_idr_remove_from_resource
;
2811 kref_get(&connection
->kref
);
2812 INIT_WORK(&peer_device
->send_acks_work
, drbd_send_acks_wf
);
2815 if (init_submitter(device
)) {
2817 goto out_idr_remove_vol
;
2822 /* inherit the connection state */
2823 device
->state
.conn
= first_connection(resource
)->cstate
;
2824 if (device
->state
.conn
== C_WF_REPORT_PARAMS
) {
2825 for_each_peer_device(peer_device
, device
)
2826 drbd_connected(peer_device
);
2828 /* move to create_peer_device() */
2829 for_each_peer_device(peer_device
, device
)
2830 drbd_debugfs_peer_device_add(peer_device
);
2831 drbd_debugfs_device_add(device
);
2835 idr_remove(&connection
->peer_devices
, vnr
);
2836 out_idr_remove_from_resource
:
2837 for_each_connection(connection
, resource
) {
2838 peer_device
= idr_remove(&connection
->peer_devices
, vnr
);
2840 kref_put(&connection
->kref
, drbd_destroy_connection
);
2842 for_each_peer_device_safe(peer_device
, tmp_peer_device
, device
) {
2843 list_del(&peer_device
->peer_devices
);
2846 idr_remove(&resource
->devices
, vnr
);
2847 out_idr_remove_minor
:
2848 idr_remove(&drbd_devices
, minor
);
2851 drbd_bm_cleanup(device
);
2853 __free_page(device
->md_io
.page
);
2857 blk_cleanup_queue(q
);
2859 kref_put(&resource
->kref
, drbd_destroy_resource
);
2864 void drbd_delete_device(struct drbd_device
*device
)
2866 struct drbd_resource
*resource
= device
->resource
;
2867 struct drbd_connection
*connection
;
2868 struct drbd_peer_device
*peer_device
;
2870 /* move to free_peer_device() */
2871 for_each_peer_device(peer_device
, device
)
2872 drbd_debugfs_peer_device_cleanup(peer_device
);
2873 drbd_debugfs_device_cleanup(device
);
2874 for_each_connection(connection
, resource
) {
2875 idr_remove(&connection
->peer_devices
, device
->vnr
);
2876 kref_put(&device
->kref
, drbd_destroy_device
);
2878 idr_remove(&resource
->devices
, device
->vnr
);
2879 kref_put(&device
->kref
, drbd_destroy_device
);
2880 idr_remove(&drbd_devices
, device_to_minor(device
));
2881 kref_put(&device
->kref
, drbd_destroy_device
);
2882 del_gendisk(device
->vdisk
);
2884 kref_put(&device
->kref
, drbd_destroy_device
);
2887 static int __init
drbd_init(void)
2891 if (drbd_minor_count
< DRBD_MINOR_COUNT_MIN
|| drbd_minor_count
> DRBD_MINOR_COUNT_MAX
) {
2892 pr_err("invalid minor_count (%d)\n", drbd_minor_count
);
2896 drbd_minor_count
= DRBD_MINOR_COUNT_DEF
;
2900 err
= register_blkdev(DRBD_MAJOR
, "drbd");
2902 pr_err("unable to register block device major %d\n",
2908 * allocate all necessary structs
2910 init_waitqueue_head(&drbd_pp_wait
);
2912 drbd_proc
= NULL
; /* play safe for drbd_cleanup */
2913 idr_init(&drbd_devices
);
2915 mutex_init(&resources_mutex
);
2916 INIT_LIST_HEAD(&drbd_resources
);
2918 err
= drbd_genl_register();
2920 pr_err("unable to register generic netlink family\n");
2924 err
= drbd_create_mempools();
2929 drbd_proc
= proc_create_single("drbd", S_IFREG
| 0444 , NULL
, drbd_seq_show
);
2931 pr_err("unable to register proc file\n");
2935 retry
.wq
= create_singlethread_workqueue("drbd-reissue");
2937 pr_err("unable to create retry workqueue\n");
2940 INIT_WORK(&retry
.worker
, do_retry
);
2941 spin_lock_init(&retry
.lock
);
2942 INIT_LIST_HEAD(&retry
.writes
);
2944 drbd_debugfs_init();
2946 pr_info("initialized. "
2947 "Version: " REL_VERSION
" (api:%d/proto:%d-%d)\n",
2948 API_VERSION
, PRO_VERSION_MIN
, PRO_VERSION_MAX
);
2949 pr_info("%s\n", drbd_buildtag());
2950 pr_info("registered as block device major %d\n", DRBD_MAJOR
);
2951 return 0; /* Success! */
2956 pr_err("ran out of memory\n");
2958 pr_err("initialization failure\n");
2962 static void drbd_free_one_sock(struct drbd_socket
*ds
)
2965 mutex_lock(&ds
->mutex
);
2968 mutex_unlock(&ds
->mutex
);
2970 /* so debugfs does not need to mutex_lock() */
2972 kernel_sock_shutdown(s
, SHUT_RDWR
);
2977 void drbd_free_sock(struct drbd_connection
*connection
)
2979 if (connection
->data
.socket
)
2980 drbd_free_one_sock(&connection
->data
);
2981 if (connection
->meta
.socket
)
2982 drbd_free_one_sock(&connection
->meta
);
2985 /* meta data management */
2987 void conn_md_sync(struct drbd_connection
*connection
)
2989 struct drbd_peer_device
*peer_device
;
2993 idr_for_each_entry(&connection
->peer_devices
, peer_device
, vnr
) {
2994 struct drbd_device
*device
= peer_device
->device
;
2996 kref_get(&device
->kref
);
2998 drbd_md_sync(device
);
2999 kref_put(&device
->kref
, drbd_destroy_device
);
3005 /* aligned 4kByte */
3006 struct meta_data_on_disk
{
3007 u64 la_size_sect
; /* last agreed size. */
3008 u64 uuid
[UI_SIZE
]; /* UUIDs. */
3011 u32 flags
; /* MDF */
3014 u32 al_offset
; /* offset to this block */
3015 u32 al_nr_extents
; /* important for restoring the AL (userspace) */
3016 /* `-- act_log->nr_elements <-- ldev->dc.al_extents */
3017 u32 bm_offset
; /* offset to the bitmap, from here */
3018 u32 bm_bytes_per_bit
; /* BM_BLOCK_SIZE */
3019 u32 la_peer_max_bio_size
; /* last peer max_bio_size */
3021 /* see al_tr_number_to_on_disk_sector() */
3023 u32 al_stripe_size_4k
;
3025 u8 reserved_u8
[4096 - (7*8 + 10*4)];
3030 void drbd_md_write(struct drbd_device
*device
, void *b
)
3032 struct meta_data_on_disk
*buffer
= b
;
3036 memset(buffer
, 0, sizeof(*buffer
));
3038 buffer
->la_size_sect
= cpu_to_be64(get_capacity(device
->vdisk
));
3039 for (i
= UI_CURRENT
; i
< UI_SIZE
; i
++)
3040 buffer
->uuid
[i
] = cpu_to_be64(device
->ldev
->md
.uuid
[i
]);
3041 buffer
->flags
= cpu_to_be32(device
->ldev
->md
.flags
);
3042 buffer
->magic
= cpu_to_be32(DRBD_MD_MAGIC_84_UNCLEAN
);
3044 buffer
->md_size_sect
= cpu_to_be32(device
->ldev
->md
.md_size_sect
);
3045 buffer
->al_offset
= cpu_to_be32(device
->ldev
->md
.al_offset
);
3046 buffer
->al_nr_extents
= cpu_to_be32(device
->act_log
->nr_elements
);
3047 buffer
->bm_bytes_per_bit
= cpu_to_be32(BM_BLOCK_SIZE
);
3048 buffer
->device_uuid
= cpu_to_be64(device
->ldev
->md
.device_uuid
);
3050 buffer
->bm_offset
= cpu_to_be32(device
->ldev
->md
.bm_offset
);
3051 buffer
->la_peer_max_bio_size
= cpu_to_be32(device
->peer_max_bio_size
);
3053 buffer
->al_stripes
= cpu_to_be32(device
->ldev
->md
.al_stripes
);
3054 buffer
->al_stripe_size_4k
= cpu_to_be32(device
->ldev
->md
.al_stripe_size_4k
);
3056 D_ASSERT(device
, drbd_md_ss(device
->ldev
) == device
->ldev
->md
.md_offset
);
3057 sector
= device
->ldev
->md
.md_offset
;
3059 if (drbd_md_sync_page_io(device
, device
->ldev
, sector
, REQ_OP_WRITE
)) {
3060 /* this was a try anyways ... */
3061 drbd_err(device
, "meta data update failed!\n");
3062 drbd_chk_io_error(device
, 1, DRBD_META_IO_ERROR
);
3067 * drbd_md_sync() - Writes the meta data super block if the MD_DIRTY flag bit is set
3068 * @device: DRBD device.
3070 void drbd_md_sync(struct drbd_device
*device
)
3072 struct meta_data_on_disk
*buffer
;
3074 /* Don't accidentally change the DRBD meta data layout. */
3075 BUILD_BUG_ON(UI_SIZE
!= 4);
3076 BUILD_BUG_ON(sizeof(struct meta_data_on_disk
) != 4096);
3078 del_timer(&device
->md_sync_timer
);
3079 /* timer may be rearmed by drbd_md_mark_dirty() now. */
3080 if (!test_and_clear_bit(MD_DIRTY
, &device
->flags
))
3083 /* We use here D_FAILED and not D_ATTACHING because we try to write
3084 * metadata even if we detach due to a disk failure! */
3085 if (!get_ldev_if_state(device
, D_FAILED
))
3088 buffer
= drbd_md_get_buffer(device
, __func__
);
3092 drbd_md_write(device
, buffer
);
3094 /* Update device->ldev->md.la_size_sect,
3095 * since we updated it on metadata. */
3096 device
->ldev
->md
.la_size_sect
= get_capacity(device
->vdisk
);
3098 drbd_md_put_buffer(device
);
3103 static int check_activity_log_stripe_size(struct drbd_device
*device
,
3104 struct meta_data_on_disk
*on_disk
,
3105 struct drbd_md
*in_core
)
3107 u32 al_stripes
= be32_to_cpu(on_disk
->al_stripes
);
3108 u32 al_stripe_size_4k
= be32_to_cpu(on_disk
->al_stripe_size_4k
);
3111 /* both not set: default to old fixed size activity log */
3112 if (al_stripes
== 0 && al_stripe_size_4k
== 0) {
3114 al_stripe_size_4k
= MD_32kB_SECT
/8;
3117 /* some paranoia plausibility checks */
3119 /* we need both values to be set */
3120 if (al_stripes
== 0 || al_stripe_size_4k
== 0)
3123 al_size_4k
= (u64
)al_stripes
* al_stripe_size_4k
;
3125 /* Upper limit of activity log area, to avoid potential overflow
3126 * problems in al_tr_number_to_on_disk_sector(). As right now, more
3127 * than 72 * 4k blocks total only increases the amount of history,
3128 * limiting this arbitrarily to 16 GB is not a real limitation ;-) */
3129 if (al_size_4k
> (16 * 1024 * 1024/4))
3132 /* Lower limit: we need at least 8 transaction slots (32kB)
3133 * to not break existing setups */
3134 if (al_size_4k
< MD_32kB_SECT
/8)
3137 in_core
->al_stripe_size_4k
= al_stripe_size_4k
;
3138 in_core
->al_stripes
= al_stripes
;
3139 in_core
->al_size_4k
= al_size_4k
;
3143 drbd_err(device
, "invalid activity log striping: al_stripes=%u, al_stripe_size_4k=%u\n",
3144 al_stripes
, al_stripe_size_4k
);
3148 static int check_offsets_and_sizes(struct drbd_device
*device
, struct drbd_backing_dev
*bdev
)
3150 sector_t capacity
= drbd_get_capacity(bdev
->md_bdev
);
3151 struct drbd_md
*in_core
= &bdev
->md
;
3152 s32 on_disk_al_sect
;
3153 s32 on_disk_bm_sect
;
3155 /* The on-disk size of the activity log, calculated from offsets, and
3156 * the size of the activity log calculated from the stripe settings,
3158 * Though we could relax this a bit: it is ok, if the striped activity log
3159 * fits in the available on-disk activity log size.
3160 * Right now, that would break how resize is implemented.
3161 * TODO: make drbd_determine_dev_size() (and the drbdmeta tool) aware
3162 * of possible unused padding space in the on disk layout. */
3163 if (in_core
->al_offset
< 0) {
3164 if (in_core
->bm_offset
> in_core
->al_offset
)
3166 on_disk_al_sect
= -in_core
->al_offset
;
3167 on_disk_bm_sect
= in_core
->al_offset
- in_core
->bm_offset
;
3169 if (in_core
->al_offset
!= MD_4kB_SECT
)
3171 if (in_core
->bm_offset
< in_core
->al_offset
+ in_core
->al_size_4k
* MD_4kB_SECT
)
3174 on_disk_al_sect
= in_core
->bm_offset
- MD_4kB_SECT
;
3175 on_disk_bm_sect
= in_core
->md_size_sect
- in_core
->bm_offset
;
3178 /* old fixed size meta data is exactly that: fixed. */
3179 if (in_core
->meta_dev_idx
>= 0) {
3180 if (in_core
->md_size_sect
!= MD_128MB_SECT
3181 || in_core
->al_offset
!= MD_4kB_SECT
3182 || in_core
->bm_offset
!= MD_4kB_SECT
+ MD_32kB_SECT
3183 || in_core
->al_stripes
!= 1
3184 || in_core
->al_stripe_size_4k
!= MD_32kB_SECT
/8)
3188 if (capacity
< in_core
->md_size_sect
)
3190 if (capacity
- in_core
->md_size_sect
< drbd_md_first_sector(bdev
))
3193 /* should be aligned, and at least 32k */
3194 if ((on_disk_al_sect
& 7) || (on_disk_al_sect
< MD_32kB_SECT
))
3197 /* should fit (for now: exactly) into the available on-disk space;
3198 * overflow prevention is in check_activity_log_stripe_size() above. */
3199 if (on_disk_al_sect
!= in_core
->al_size_4k
* MD_4kB_SECT
)
3202 /* again, should be aligned */
3203 if (in_core
->bm_offset
& 7)
3206 /* FIXME check for device grow with flex external meta data? */
3208 /* can the available bitmap space cover the last agreed device size? */
3209 if (on_disk_bm_sect
< (in_core
->la_size_sect
+7)/MD_4kB_SECT
/8/512)
3215 drbd_err(device
, "meta data offsets don't make sense: idx=%d "
3216 "al_s=%u, al_sz4k=%u, al_offset=%d, bm_offset=%d, "
3217 "md_size_sect=%u, la_size=%llu, md_capacity=%llu\n",
3218 in_core
->meta_dev_idx
,
3219 in_core
->al_stripes
, in_core
->al_stripe_size_4k
,
3220 in_core
->al_offset
, in_core
->bm_offset
, in_core
->md_size_sect
,
3221 (unsigned long long)in_core
->la_size_sect
,
3222 (unsigned long long)capacity
);
3229 * drbd_md_read() - Reads in the meta data super block
3230 * @device: DRBD device.
3231 * @bdev: Device from which the meta data should be read in.
3233 * Return NO_ERROR on success, and an enum drbd_ret_code in case
3234 * something goes wrong.
3236 * Called exactly once during drbd_adm_attach(), while still being D_DISKLESS,
3237 * even before @bdev is assigned to @device->ldev.
3239 int drbd_md_read(struct drbd_device
*device
, struct drbd_backing_dev
*bdev
)
3241 struct meta_data_on_disk
*buffer
;
3243 int i
, rv
= NO_ERROR
;
3245 if (device
->state
.disk
!= D_DISKLESS
)
3246 return ERR_DISK_CONFIGURED
;
3248 buffer
= drbd_md_get_buffer(device
, __func__
);
3252 /* First, figure out where our meta data superblock is located,
3254 bdev
->md
.meta_dev_idx
= bdev
->disk_conf
->meta_dev_idx
;
3255 bdev
->md
.md_offset
= drbd_md_ss(bdev
);
3256 /* Even for (flexible or indexed) external meta data,
3257 * initially restrict us to the 4k superblock for now.
3258 * Affects the paranoia out-of-range access check in drbd_md_sync_page_io(). */
3259 bdev
->md
.md_size_sect
= 8;
3261 if (drbd_md_sync_page_io(device
, bdev
, bdev
->md
.md_offset
,
3263 /* NOTE: can't do normal error processing here as this is
3264 called BEFORE disk is attached */
3265 drbd_err(device
, "Error while reading metadata.\n");
3266 rv
= ERR_IO_MD_DISK
;
3270 magic
= be32_to_cpu(buffer
->magic
);
3271 flags
= be32_to_cpu(buffer
->flags
);
3272 if (magic
== DRBD_MD_MAGIC_84_UNCLEAN
||
3273 (magic
== DRBD_MD_MAGIC_08
&& !(flags
& MDF_AL_CLEAN
))) {
3274 /* btw: that's Activity Log clean, not "all" clean. */
3275 drbd_err(device
, "Found unclean meta data. Did you \"drbdadm apply-al\"?\n");
3276 rv
= ERR_MD_UNCLEAN
;
3280 rv
= ERR_MD_INVALID
;
3281 if (magic
!= DRBD_MD_MAGIC_08
) {
3282 if (magic
== DRBD_MD_MAGIC_07
)
3283 drbd_err(device
, "Found old (0.7) meta data magic. Did you \"drbdadm create-md\"?\n");
3285 drbd_err(device
, "Meta data magic not found. Did you \"drbdadm create-md\"?\n");
3289 if (be32_to_cpu(buffer
->bm_bytes_per_bit
) != BM_BLOCK_SIZE
) {
3290 drbd_err(device
, "unexpected bm_bytes_per_bit: %u (expected %u)\n",
3291 be32_to_cpu(buffer
->bm_bytes_per_bit
), BM_BLOCK_SIZE
);
3296 /* convert to in_core endian */
3297 bdev
->md
.la_size_sect
= be64_to_cpu(buffer
->la_size_sect
);
3298 for (i
= UI_CURRENT
; i
< UI_SIZE
; i
++)
3299 bdev
->md
.uuid
[i
] = be64_to_cpu(buffer
->uuid
[i
]);
3300 bdev
->md
.flags
= be32_to_cpu(buffer
->flags
);
3301 bdev
->md
.device_uuid
= be64_to_cpu(buffer
->device_uuid
);
3303 bdev
->md
.md_size_sect
= be32_to_cpu(buffer
->md_size_sect
);
3304 bdev
->md
.al_offset
= be32_to_cpu(buffer
->al_offset
);
3305 bdev
->md
.bm_offset
= be32_to_cpu(buffer
->bm_offset
);
3307 if (check_activity_log_stripe_size(device
, buffer
, &bdev
->md
))
3309 if (check_offsets_and_sizes(device
, bdev
))
3312 if (be32_to_cpu(buffer
->bm_offset
) != bdev
->md
.bm_offset
) {
3313 drbd_err(device
, "unexpected bm_offset: %d (expected %d)\n",
3314 be32_to_cpu(buffer
->bm_offset
), bdev
->md
.bm_offset
);
3317 if (be32_to_cpu(buffer
->md_size_sect
) != bdev
->md
.md_size_sect
) {
3318 drbd_err(device
, "unexpected md_size: %u (expected %u)\n",
3319 be32_to_cpu(buffer
->md_size_sect
), bdev
->md
.md_size_sect
);
3325 spin_lock_irq(&device
->resource
->req_lock
);
3326 if (device
->state
.conn
< C_CONNECTED
) {
3328 peer
= be32_to_cpu(buffer
->la_peer_max_bio_size
);
3329 peer
= max(peer
, DRBD_MAX_BIO_SIZE_SAFE
);
3330 device
->peer_max_bio_size
= peer
;
3332 spin_unlock_irq(&device
->resource
->req_lock
);
3335 drbd_md_put_buffer(device
);
3341 * drbd_md_mark_dirty() - Mark meta data super block as dirty
3342 * @device: DRBD device.
3344 * Call this function if you change anything that should be written to
3345 * the meta-data super block. This function sets MD_DIRTY, and starts a
3346 * timer that ensures that within five seconds you have to call drbd_md_sync().
3348 void drbd_md_mark_dirty(struct drbd_device
*device
)
3350 if (!test_and_set_bit(MD_DIRTY
, &device
->flags
))
3351 mod_timer(&device
->md_sync_timer
, jiffies
+ 5*HZ
);
3354 void drbd_uuid_move_history(struct drbd_device
*device
) __must_hold(local
)
3358 for (i
= UI_HISTORY_START
; i
< UI_HISTORY_END
; i
++)
3359 device
->ldev
->md
.uuid
[i
+1] = device
->ldev
->md
.uuid
[i
];
3362 void __drbd_uuid_set(struct drbd_device
*device
, int idx
, u64 val
) __must_hold(local
)
3364 if (idx
== UI_CURRENT
) {
3365 if (device
->state
.role
== R_PRIMARY
)
3370 drbd_set_ed_uuid(device
, val
);
3373 device
->ldev
->md
.uuid
[idx
] = val
;
3374 drbd_md_mark_dirty(device
);
3377 void _drbd_uuid_set(struct drbd_device
*device
, int idx
, u64 val
) __must_hold(local
)
3379 unsigned long flags
;
3380 spin_lock_irqsave(&device
->ldev
->md
.uuid_lock
, flags
);
3381 __drbd_uuid_set(device
, idx
, val
);
3382 spin_unlock_irqrestore(&device
->ldev
->md
.uuid_lock
, flags
);
3385 void drbd_uuid_set(struct drbd_device
*device
, int idx
, u64 val
) __must_hold(local
)
3387 unsigned long flags
;
3388 spin_lock_irqsave(&device
->ldev
->md
.uuid_lock
, flags
);
3389 if (device
->ldev
->md
.uuid
[idx
]) {
3390 drbd_uuid_move_history(device
);
3391 device
->ldev
->md
.uuid
[UI_HISTORY_START
] = device
->ldev
->md
.uuid
[idx
];
3393 __drbd_uuid_set(device
, idx
, val
);
3394 spin_unlock_irqrestore(&device
->ldev
->md
.uuid_lock
, flags
);
3398 * drbd_uuid_new_current() - Creates a new current UUID
3399 * @device: DRBD device.
3401 * Creates a new current UUID, and rotates the old current UUID into
3402 * the bitmap slot. Causes an incremental resync upon next connect.
3404 void drbd_uuid_new_current(struct drbd_device
*device
) __must_hold(local
)
3407 unsigned long long bm_uuid
;
3409 get_random_bytes(&val
, sizeof(u64
));
3411 spin_lock_irq(&device
->ldev
->md
.uuid_lock
);
3412 bm_uuid
= device
->ldev
->md
.uuid
[UI_BITMAP
];
3415 drbd_warn(device
, "bm UUID was already set: %llX\n", bm_uuid
);
3417 device
->ldev
->md
.uuid
[UI_BITMAP
] = device
->ldev
->md
.uuid
[UI_CURRENT
];
3418 __drbd_uuid_set(device
, UI_CURRENT
, val
);
3419 spin_unlock_irq(&device
->ldev
->md
.uuid_lock
);
3421 drbd_print_uuids(device
, "new current UUID");
3422 /* get it to stable storage _now_ */
3423 drbd_md_sync(device
);
3426 void drbd_uuid_set_bm(struct drbd_device
*device
, u64 val
) __must_hold(local
)
3428 unsigned long flags
;
3429 if (device
->ldev
->md
.uuid
[UI_BITMAP
] == 0 && val
== 0)
3432 spin_lock_irqsave(&device
->ldev
->md
.uuid_lock
, flags
);
3434 drbd_uuid_move_history(device
);
3435 device
->ldev
->md
.uuid
[UI_HISTORY_START
] = device
->ldev
->md
.uuid
[UI_BITMAP
];
3436 device
->ldev
->md
.uuid
[UI_BITMAP
] = 0;
3438 unsigned long long bm_uuid
= device
->ldev
->md
.uuid
[UI_BITMAP
];
3440 drbd_warn(device
, "bm UUID was already set: %llX\n", bm_uuid
);
3442 device
->ldev
->md
.uuid
[UI_BITMAP
] = val
& ~((u64
)1);
3444 spin_unlock_irqrestore(&device
->ldev
->md
.uuid_lock
, flags
);
3446 drbd_md_mark_dirty(device
);
3450 * drbd_bmio_set_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
3451 * @device: DRBD device.
3453 * Sets all bits in the bitmap and writes the whole bitmap to stable storage.
3455 int drbd_bmio_set_n_write(struct drbd_device
*device
) __must_hold(local
)
3459 drbd_md_set_flag(device
, MDF_FULL_SYNC
);
3460 drbd_md_sync(device
);
3461 drbd_bm_set_all(device
);
3463 rv
= drbd_bm_write(device
);
3466 drbd_md_clear_flag(device
, MDF_FULL_SYNC
);
3467 drbd_md_sync(device
);
3474 * drbd_bmio_clear_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
3475 * @device: DRBD device.
3477 * Clears all bits in the bitmap and writes the whole bitmap to stable storage.
3479 int drbd_bmio_clear_n_write(struct drbd_device
*device
) __must_hold(local
)
3481 drbd_resume_al(device
);
3482 drbd_bm_clear_all(device
);
3483 return drbd_bm_write(device
);
3486 static int w_bitmap_io(struct drbd_work
*w
, int unused
)
3488 struct drbd_device
*device
=
3489 container_of(w
, struct drbd_device
, bm_io_work
.w
);
3490 struct bm_io_work
*work
= &device
->bm_io_work
;
3493 if (work
->flags
!= BM_LOCKED_CHANGE_ALLOWED
) {
3494 int cnt
= atomic_read(&device
->ap_bio_cnt
);
3496 drbd_err(device
, "FIXME: ap_bio_cnt %d, expected 0; queued for '%s'\n",
3500 if (get_ldev(device
)) {
3501 drbd_bm_lock(device
, work
->why
, work
->flags
);
3502 rv
= work
->io_fn(device
);
3503 drbd_bm_unlock(device
);
3507 clear_bit_unlock(BITMAP_IO
, &device
->flags
);
3508 wake_up(&device
->misc_wait
);
3511 work
->done(device
, rv
);
3513 clear_bit(BITMAP_IO_QUEUED
, &device
->flags
);
3521 * drbd_queue_bitmap_io() - Queues an IO operation on the whole bitmap
3522 * @device: DRBD device.
3523 * @io_fn: IO callback to be called when bitmap IO is possible
3524 * @done: callback to be called after the bitmap IO was performed
3525 * @why: Descriptive text of the reason for doing the IO
3527 * While IO on the bitmap happens we freeze application IO thus we ensure
3528 * that drbd_set_out_of_sync() can not be called. This function MAY ONLY be
3529 * called from worker context. It MUST NOT be used while a previous such
3530 * work is still pending!
3532 * Its worker function encloses the call of io_fn() by get_ldev() and
3535 void drbd_queue_bitmap_io(struct drbd_device
*device
,
3536 int (*io_fn
)(struct drbd_device
*),
3537 void (*done
)(struct drbd_device
*, int),
3538 char *why
, enum bm_flag flags
)
3540 D_ASSERT(device
, current
== first_peer_device(device
)->connection
->worker
.task
);
3542 D_ASSERT(device
, !test_bit(BITMAP_IO_QUEUED
, &device
->flags
));
3543 D_ASSERT(device
, !test_bit(BITMAP_IO
, &device
->flags
));
3544 D_ASSERT(device
, list_empty(&device
->bm_io_work
.w
.list
));
3545 if (device
->bm_io_work
.why
)
3546 drbd_err(device
, "FIXME going to queue '%s' but '%s' still pending?\n",
3547 why
, device
->bm_io_work
.why
);
3549 device
->bm_io_work
.io_fn
= io_fn
;
3550 device
->bm_io_work
.done
= done
;
3551 device
->bm_io_work
.why
= why
;
3552 device
->bm_io_work
.flags
= flags
;
3554 spin_lock_irq(&device
->resource
->req_lock
);
3555 set_bit(BITMAP_IO
, &device
->flags
);
3556 /* don't wait for pending application IO if the caller indicates that
3557 * application IO does not conflict anyways. */
3558 if (flags
== BM_LOCKED_CHANGE_ALLOWED
|| atomic_read(&device
->ap_bio_cnt
) == 0) {
3559 if (!test_and_set_bit(BITMAP_IO_QUEUED
, &device
->flags
))
3560 drbd_queue_work(&first_peer_device(device
)->connection
->sender_work
,
3561 &device
->bm_io_work
.w
);
3563 spin_unlock_irq(&device
->resource
->req_lock
);
3567 * drbd_bitmap_io() - Does an IO operation on the whole bitmap
3568 * @device: DRBD device.
3569 * @io_fn: IO callback to be called when bitmap IO is possible
3570 * @why: Descriptive text of the reason for doing the IO
3572 * freezes application IO while that the actual IO operations runs. This
3573 * functions MAY NOT be called from worker context.
3575 int drbd_bitmap_io(struct drbd_device
*device
, int (*io_fn
)(struct drbd_device
*),
3576 char *why
, enum bm_flag flags
)
3578 /* Only suspend io, if some operation is supposed to be locked out */
3579 const bool do_suspend_io
= flags
& (BM_DONT_CLEAR
|BM_DONT_SET
|BM_DONT_TEST
);
3582 D_ASSERT(device
, current
!= first_peer_device(device
)->connection
->worker
.task
);
3585 drbd_suspend_io(device
);
3587 drbd_bm_lock(device
, why
, flags
);
3589 drbd_bm_unlock(device
);
3592 drbd_resume_io(device
);
3597 void drbd_md_set_flag(struct drbd_device
*device
, int flag
) __must_hold(local
)
3599 if ((device
->ldev
->md
.flags
& flag
) != flag
) {
3600 drbd_md_mark_dirty(device
);
3601 device
->ldev
->md
.flags
|= flag
;
3605 void drbd_md_clear_flag(struct drbd_device
*device
, int flag
) __must_hold(local
)
3607 if ((device
->ldev
->md
.flags
& flag
) != 0) {
3608 drbd_md_mark_dirty(device
);
3609 device
->ldev
->md
.flags
&= ~flag
;
3612 int drbd_md_test_flag(struct drbd_backing_dev
*bdev
, int flag
)
3614 return (bdev
->md
.flags
& flag
) != 0;
3617 static void md_sync_timer_fn(struct timer_list
*t
)
3619 struct drbd_device
*device
= from_timer(device
, t
, md_sync_timer
);
3620 drbd_device_post_work(device
, MD_SYNC
);
3623 const char *cmdname(enum drbd_packet cmd
)
3625 /* THINK may need to become several global tables
3626 * when we want to support more than
3627 * one PRO_VERSION */
3628 static const char *cmdnames
[] = {
3630 [P_WSAME
] = "WriteSame",
3632 [P_DATA_REPLY
] = "DataReply",
3633 [P_RS_DATA_REPLY
] = "RSDataReply",
3634 [P_BARRIER
] = "Barrier",
3635 [P_BITMAP
] = "ReportBitMap",
3636 [P_BECOME_SYNC_TARGET
] = "BecomeSyncTarget",
3637 [P_BECOME_SYNC_SOURCE
] = "BecomeSyncSource",
3638 [P_UNPLUG_REMOTE
] = "UnplugRemote",
3639 [P_DATA_REQUEST
] = "DataRequest",
3640 [P_RS_DATA_REQUEST
] = "RSDataRequest",
3641 [P_SYNC_PARAM
] = "SyncParam",
3642 [P_SYNC_PARAM89
] = "SyncParam89",
3643 [P_PROTOCOL
] = "ReportProtocol",
3644 [P_UUIDS
] = "ReportUUIDs",
3645 [P_SIZES
] = "ReportSizes",
3646 [P_STATE
] = "ReportState",
3647 [P_SYNC_UUID
] = "ReportSyncUUID",
3648 [P_AUTH_CHALLENGE
] = "AuthChallenge",
3649 [P_AUTH_RESPONSE
] = "AuthResponse",
3651 [P_PING_ACK
] = "PingAck",
3652 [P_RECV_ACK
] = "RecvAck",
3653 [P_WRITE_ACK
] = "WriteAck",
3654 [P_RS_WRITE_ACK
] = "RSWriteAck",
3655 [P_SUPERSEDED
] = "Superseded",
3656 [P_NEG_ACK
] = "NegAck",
3657 [P_NEG_DREPLY
] = "NegDReply",
3658 [P_NEG_RS_DREPLY
] = "NegRSDReply",
3659 [P_BARRIER_ACK
] = "BarrierAck",
3660 [P_STATE_CHG_REQ
] = "StateChgRequest",
3661 [P_STATE_CHG_REPLY
] = "StateChgReply",
3662 [P_OV_REQUEST
] = "OVRequest",
3663 [P_OV_REPLY
] = "OVReply",
3664 [P_OV_RESULT
] = "OVResult",
3665 [P_CSUM_RS_REQUEST
] = "CsumRSRequest",
3666 [P_RS_IS_IN_SYNC
] = "CsumRSIsInSync",
3667 [P_COMPRESSED_BITMAP
] = "CBitmap",
3668 [P_DELAY_PROBE
] = "DelayProbe",
3669 [P_OUT_OF_SYNC
] = "OutOfSync",
3670 [P_RETRY_WRITE
] = "RetryWrite",
3671 [P_RS_CANCEL
] = "RSCancel",
3672 [P_CONN_ST_CHG_REQ
] = "conn_st_chg_req",
3673 [P_CONN_ST_CHG_REPLY
] = "conn_st_chg_reply",
3674 [P_RETRY_WRITE
] = "retry_write",
3675 [P_PROTOCOL_UPDATE
] = "protocol_update",
3676 [P_RS_THIN_REQ
] = "rs_thin_req",
3677 [P_RS_DEALLOCATED
] = "rs_deallocated",
3679 /* enum drbd_packet, but not commands - obsoleted flags:
3685 /* too big for the array: 0xfffX */
3686 if (cmd
== P_INITIAL_META
)
3687 return "InitialMeta";
3688 if (cmd
== P_INITIAL_DATA
)
3689 return "InitialData";
3690 if (cmd
== P_CONNECTION_FEATURES
)
3691 return "ConnectionFeatures";
3692 if (cmd
>= ARRAY_SIZE(cmdnames
))
3694 return cmdnames
[cmd
];
3698 * drbd_wait_misc - wait for a request to make progress
3699 * @device: device associated with the request
3700 * @i: the struct drbd_interval embedded in struct drbd_request or
3701 * struct drbd_peer_request
3703 int drbd_wait_misc(struct drbd_device
*device
, struct drbd_interval
*i
)
3705 struct net_conf
*nc
;
3710 nc
= rcu_dereference(first_peer_device(device
)->connection
->net_conf
);
3715 timeout
= nc
->ko_count
? nc
->timeout
* HZ
/ 10 * nc
->ko_count
: MAX_SCHEDULE_TIMEOUT
;
3718 /* Indicate to wake up device->misc_wait on progress. */
3720 prepare_to_wait(&device
->misc_wait
, &wait
, TASK_INTERRUPTIBLE
);
3721 spin_unlock_irq(&device
->resource
->req_lock
);
3722 timeout
= schedule_timeout(timeout
);
3723 finish_wait(&device
->misc_wait
, &wait
);
3724 spin_lock_irq(&device
->resource
->req_lock
);
3725 if (!timeout
|| device
->state
.conn
< C_CONNECTED
)
3727 if (signal_pending(current
))
3728 return -ERESTARTSYS
;
3732 void lock_all_resources(void)
3734 struct drbd_resource
*resource
;
3735 int __maybe_unused i
= 0;
3737 mutex_lock(&resources_mutex
);
3738 local_irq_disable();
3739 for_each_resource(resource
, &drbd_resources
)
3740 spin_lock_nested(&resource
->req_lock
, i
++);
3743 void unlock_all_resources(void)
3745 struct drbd_resource
*resource
;
3747 for_each_resource(resource
, &drbd_resources
)
3748 spin_unlock(&resource
->req_lock
);
3750 mutex_unlock(&resources_mutex
);
3753 #ifdef CONFIG_DRBD_FAULT_INJECTION
3754 /* Fault insertion support including random number generator shamelessly
3755 * stolen from kernel/rcutorture.c */
3756 struct fault_random_state
{
3757 unsigned long state
;
3758 unsigned long count
;
3761 #define FAULT_RANDOM_MULT 39916801 /* prime */
3762 #define FAULT_RANDOM_ADD 479001701 /* prime */
3763 #define FAULT_RANDOM_REFRESH 10000
3766 * Crude but fast random-number generator. Uses a linear congruential
3767 * generator, with occasional help from get_random_bytes().
3769 static unsigned long
3770 _drbd_fault_random(struct fault_random_state
*rsp
)
3774 if (!rsp
->count
--) {
3775 get_random_bytes(&refresh
, sizeof(refresh
));
3776 rsp
->state
+= refresh
;
3777 rsp
->count
= FAULT_RANDOM_REFRESH
;
3779 rsp
->state
= rsp
->state
* FAULT_RANDOM_MULT
+ FAULT_RANDOM_ADD
;
3780 return swahw32(rsp
->state
);
3784 _drbd_fault_str(unsigned int type
) {
3785 static char *_faults
[] = {
3786 [DRBD_FAULT_MD_WR
] = "Meta-data write",
3787 [DRBD_FAULT_MD_RD
] = "Meta-data read",
3788 [DRBD_FAULT_RS_WR
] = "Resync write",
3789 [DRBD_FAULT_RS_RD
] = "Resync read",
3790 [DRBD_FAULT_DT_WR
] = "Data write",
3791 [DRBD_FAULT_DT_RD
] = "Data read",
3792 [DRBD_FAULT_DT_RA
] = "Data read ahead",
3793 [DRBD_FAULT_BM_ALLOC
] = "BM allocation",
3794 [DRBD_FAULT_AL_EE
] = "EE allocation",
3795 [DRBD_FAULT_RECEIVE
] = "receive data corruption",
3798 return (type
< DRBD_FAULT_MAX
) ? _faults
[type
] : "**Unknown**";
3802 _drbd_insert_fault(struct drbd_device
*device
, unsigned int type
)
3804 static struct fault_random_state rrs
= {0, 0};
3806 unsigned int ret
= (
3807 (drbd_fault_devs
== 0 ||
3808 ((1 << device_to_minor(device
)) & drbd_fault_devs
) != 0) &&
3809 (((_drbd_fault_random(&rrs
) % 100) + 1) <= drbd_fault_rate
));
3814 if (__ratelimit(&drbd_ratelimit_state
))
3815 drbd_warn(device
, "***Simulating %s failure\n",
3816 _drbd_fault_str(type
));
3823 const char *drbd_buildtag(void)
3825 /* DRBD built from external sources has here a reference to the
3826 git hash of the source code. */
3828 static char buildtag
[38] = "\0uilt-in";
3830 if (buildtag
[0] == 0) {
3832 sprintf(buildtag
, "srcversion: %-24s", THIS_MODULE
->srcversion
);
3841 module_init(drbd_init
)
3842 module_exit(drbd_cleanup
)
3844 EXPORT_SYMBOL(drbd_conn_str
);
3845 EXPORT_SYMBOL(drbd_role_str
);
3846 EXPORT_SYMBOL(drbd_disk_str
);
3847 EXPORT_SYMBOL(drbd_set_st_err_str
);