blob: 53ba2dddba6e6e55f60628840afe810cebce2234 [file] [log] [blame]
Thomas Gleixnerc6ae4c02019-05-22 09:51:37 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Philipp Reisnerb411b362009-09-25 16:07:19 -07002/*
3 drbd.c
4
5 This file is part of DRBD by Philipp Reisner and Lars Ellenberg.
6
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>.
10
11 Thanks to Carter Burden, Bart Grantham and Gennadiy Nerubayev
12 from Logicworks, Inc. for making SDP replication support possible.
13
Philipp Reisnerb411b362009-09-25 16:07:19 -070014
15 */
16
Lars Ellenbergf88c5d92014-03-27 14:10:55 +010017#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
18
Philipp Reisnerb411b362009-09-25 16:07:19 -070019#include <linux/module.h>
Lars Ellenberge5f891b2013-11-22 12:32:01 +010020#include <linux/jiffies.h>
Philipp Reisnerb411b362009-09-25 16:07:19 -070021#include <linux/drbd.h>
Fabian Frederick7e5fec32016-06-14 00:26:35 +020022#include <linux/uaccess.h>
Philipp Reisnerb411b362009-09-25 16:07:19 -070023#include <asm/types.h>
24#include <net/sock.h>
25#include <linux/ctype.h>
Arnd Bergmann2a48fc02010-06-02 14:28:52 +020026#include <linux/mutex.h>
Philipp Reisnerb411b362009-09-25 16:07:19 -070027#include <linux/fs.h>
28#include <linux/file.h>
29#include <linux/proc_fs.h>
30#include <linux/init.h>
31#include <linux/mm.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>
Lars Ellenberg113fef92013-03-22 18:14:40 -060039#include <linux/workqueue.h>
Philipp Reisnerb411b362009-09-25 16:07:19 -070040#define __KERNEL_SYSCALLS__
41#include <linux/unistd.h>
42#include <linux/vmalloc.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010043#include <linux/sched/signal.h>
Philipp Reisnerb411b362009-09-25 16:07:19 -070044
45#include <linux/drbd_limits.h>
46#include "drbd_int.h"
Andreas Gruenbachera3603a62011-05-30 11:47:37 +020047#include "drbd_protocol.h"
Philipp Reisnerb411b362009-09-25 16:07:19 -070048#include "drbd_req.h" /* only for _req_mod in tl_release and tl_clear */
Philipp Reisnerb411b362009-09-25 16:07:19 -070049#include "drbd_vli.h"
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +020050#include "drbd_debugfs.h"
Philipp Reisnerb411b362009-09-25 16:07:19 -070051
Arnd Bergmann2a48fc02010-06-02 14:28:52 +020052static DEFINE_MUTEX(drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -070053static int drbd_open(struct block_device *bdev, fmode_t mode);
Al Virodb2a1442013-05-05 21:52:57 -040054static void drbd_release(struct gendisk *gd, fmode_t mode);
Kees Cook2bccef32017-10-17 20:33:01 -070055static void md_sync_timer_fn(struct timer_list *t);
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +010056static int w_bitmap_io(struct drbd_work *w, int unused);
Philipp Reisnerb411b362009-09-25 16:07:19 -070057
Philipp Reisnerb411b362009-09-25 16:07:19 -070058MODULE_AUTHOR("Philipp Reisner <phil@linbit.com>, "
59 "Lars Ellenberg <lars@linbit.com>");
60MODULE_DESCRIPTION("drbd - Distributed Replicated Block Device v" REL_VERSION);
61MODULE_VERSION(REL_VERSION);
62MODULE_LICENSE("GPL");
Philipp Reisner81a5d602011-02-22 19:53:16 -050063MODULE_PARM_DESC(minor_count, "Approximate number of drbd devices ("
Philipp Reisner2b8a90b2011-01-10 11:15:17 +010064 __stringify(DRBD_MINOR_COUNT_MIN) "-" __stringify(DRBD_MINOR_COUNT_MAX) ")");
Philipp Reisnerb411b362009-09-25 16:07:19 -070065MODULE_ALIAS_BLOCKDEV_MAJOR(DRBD_MAJOR);
66
67#include <linux/moduleparam.h>
Philipp Reisnerb411b362009-09-25 16:07:19 -070068/* thanks to these macros, if compiled into the kernel (not-module),
Roland Kammerer183ece32017-08-29 10:20:46 +020069 * these become boot parameters (e.g., drbd.minor_count) */
Philipp Reisnerb411b362009-09-25 16:07:19 -070070
71#ifdef CONFIG_DRBD_FAULT_INJECTION
Roland Kammerer183ece32017-08-29 10:20:46 +020072int drbd_enable_faults;
73int drbd_fault_rate;
74static int drbd_fault_count;
75static int drbd_fault_devs;
Philipp Reisnerb411b362009-09-25 16:07:19 -070076/* bitmap of enabled faults */
Roland Kammerer183ece32017-08-29 10:20:46 +020077module_param_named(enable_faults, drbd_enable_faults, int, 0664);
Philipp Reisnerb411b362009-09-25 16:07:19 -070078/* fault rate % value - applies to all enabled faults */
Roland Kammerer183ece32017-08-29 10:20:46 +020079module_param_named(fault_rate, drbd_fault_rate, int, 0664);
Philipp Reisnerb411b362009-09-25 16:07:19 -070080/* count of faults inserted */
Roland Kammerer183ece32017-08-29 10:20:46 +020081module_param_named(fault_count, drbd_fault_count, int, 0664);
Philipp Reisnerb411b362009-09-25 16:07:19 -070082/* bitmap of devices to insert faults on */
Roland Kammerer183ece32017-08-29 10:20:46 +020083module_param_named(fault_devs, drbd_fault_devs, int, 0644);
Philipp Reisnerb411b362009-09-25 16:07:19 -070084#endif
85
Roland Kammerer183ece32017-08-29 10:20:46 +020086/* module parameters we can keep static */
87static bool drbd_allow_oos; /* allow_open_on_secondary */
88static bool drbd_disable_sendpage;
89MODULE_PARM_DESC(allow_oos, "DONT USE!");
90module_param_named(allow_oos, drbd_allow_oos, bool, 0);
91module_param_named(disable_sendpage, drbd_disable_sendpage, bool, 0644);
Philipp Reisnerb411b362009-09-25 16:07:19 -070092
Roland Kammerer183ece32017-08-29 10:20:46 +020093/* module parameters we share */
94int drbd_proc_details; /* Detail level in proc drbd*/
95module_param_named(proc_details, drbd_proc_details, int, 0644);
96/* module parameters shared with defaults */
97unsigned int drbd_minor_count = DRBD_MINOR_COUNT_DEF;
Philipp Reisnerb411b362009-09-25 16:07:19 -070098/* Module parameter for setting the user mode helper program
99 * to run. Default is /sbin/drbdadm */
Greg Kroah-Hartman8ab761e2017-08-29 10:20:45 +0200100char drbd_usermode_helper[80] = "/sbin/drbdadm";
Roland Kammerer183ece32017-08-29 10:20:46 +0200101module_param_named(minor_count, drbd_minor_count, uint, 0444);
Greg Kroah-Hartman8ab761e2017-08-29 10:20:45 +0200102module_param_string(usermode_helper, drbd_usermode_helper, sizeof(drbd_usermode_helper), 0644);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700103
104/* in 2.6.x, our device mapping and config info contains our virtual gendisks
105 * as member "struct gendisk *vdisk;"
106 */
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +0200107struct idr drbd_devices;
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +0200108struct list_head drbd_resources;
Andreas Gruenbacher28bc3b82014-08-14 18:33:30 +0200109struct mutex resources_mutex;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700110
111struct kmem_cache *drbd_request_cache;
Andreas Gruenbacher6c852be2011-02-04 15:38:52 +0100112struct kmem_cache *drbd_ee_cache; /* peer requests */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700113struct kmem_cache *drbd_bm_ext_cache; /* bitmap extents */
114struct kmem_cache *drbd_al_ext_cache; /* activity log extents */
Kent Overstreet0892fac2018-05-20 18:25:48 -0400115mempool_t drbd_request_mempool;
116mempool_t drbd_ee_mempool;
117mempool_t drbd_md_io_page_pool;
118struct bio_set drbd_md_io_bio_set;
119struct bio_set drbd_io_bio_set;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700120
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.
126 */
127struct page *drbd_pp_pool;
Guobin Huang9c282c22021-04-06 20:09:48 +0800128DEFINE_SPINLOCK(drbd_pp_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700129int drbd_pp_vacant;
130wait_queue_head_t drbd_pp_wait;
131
132DEFINE_RATELIMIT_STATE(drbd_ratelimit_state, 5 * HZ, 5);
133
Emese Revfy7d4e9d02009-12-14 00:59:30 +0100134static const struct block_device_operations drbd_ops = {
Christoph Hellwigc62b37d2020-07-01 10:59:43 +0200135 .owner = THIS_MODULE,
136 .submit_bio = drbd_submit_bio,
137 .open = drbd_open,
138 .release = drbd_release,
Philipp Reisnerb411b362009-09-25 16:07:19 -0700139};
140
Philipp Reisnerb411b362009-09-25 16:07:19 -0700141#ifdef __CHECKER__
142/* When checking with sparse, and this is an inline function, sparse will
143 give tons of false positives. When this is a real functions sparse works.
144 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200145int _get_ldev_if_state(struct drbd_device *device, enum drbd_disk_state mins)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700146{
147 int io_allowed;
148
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200149 atomic_inc(&device->local_cnt);
150 io_allowed = (device->state.disk >= mins);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700151 if (!io_allowed) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200152 if (atomic_dec_and_test(&device->local_cnt))
153 wake_up(&device->misc_wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700154 }
155 return io_allowed;
156}
157
158#endif
159
160/**
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100161 * tl_release() - mark as BARRIER_ACKED all requests in the corresponding transfer log epoch
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200162 * @connection: DRBD connection.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700163 * @barrier_nr: Expected identifier of the DRBD write barrier packet.
164 * @set_size: Expected number of requests before that barrier.
165 *
166 * In case the passed barrier_nr or set_size does not match the oldest
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100167 * epoch of not yet barrier-acked requests, this function will cause a
168 * termination of the connection.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700169 */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200170void tl_release(struct drbd_connection *connection, unsigned int barrier_nr,
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100171 unsigned int set_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700172{
Philipp Reisnerb411b362009-09-25 16:07:19 -0700173 struct drbd_request *r;
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100174 struct drbd_request *req = NULL;
175 int expect_epoch = 0;
176 int expect_size = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700177
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200178 spin_lock_irq(&connection->resource->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700179
Philipp Reisner98683652012-11-09 14:18:43 +0100180 /* find oldest not yet barrier-acked write request,
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100181 * count writes in its epoch. */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200182 list_for_each_entry(r, &connection->transfer_log, tl_requests) {
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100183 const unsigned s = r->rq_state;
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100184 if (!req) {
185 if (!(s & RQ_WRITE))
186 continue;
187 if (!(s & RQ_NET_MASK))
188 continue;
189 if (s & RQ_NET_DONE)
190 continue;
191 req = r;
192 expect_epoch = req->epoch;
193 expect_size ++;
194 } else {
195 if (r->epoch != expect_epoch)
196 break;
197 if (!(s & RQ_WRITE))
198 continue;
199 /* if (s & RQ_DONE): not expected */
200 /* if (!(s & RQ_NET_MASK)): not expected */
201 expect_size++;
202 }
203 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700204
205 /* first some paranoia code */
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100206 if (req == NULL) {
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +0200207 drbd_err(connection, "BAD! BarrierAck #%u received, but no epoch in tl!?\n",
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100208 barrier_nr);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700209 goto bail;
210 }
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100211 if (expect_epoch != barrier_nr) {
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +0200212 drbd_err(connection, "BAD! BarrierAck #%u received, expected #%u!\n",
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100213 barrier_nr, expect_epoch);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700214 goto bail;
215 }
216
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100217 if (expect_size != set_size) {
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +0200218 drbd_err(connection, "BAD! BarrierAck #%u received with n_writes=%u, expected n_writes=%u!\n",
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100219 barrier_nr, set_size, expect_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700220 goto bail;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700221 }
222
Philipp Reisner98683652012-11-09 14:18:43 +0100223 /* Clean up list of requests processed during current epoch. */
224 /* this extra list walk restart is paranoia,
225 * to catch requests being barrier-acked "unexpectedly".
226 * It usually should find the same req again, or some READ preceding it. */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200227 list_for_each_entry(req, &connection->transfer_log, tl_requests)
Philipp Reisner98683652012-11-09 14:18:43 +0100228 if (req->epoch == expect_epoch)
229 break;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200230 list_for_each_entry_safe_from(req, r, &connection->transfer_log, tl_requests) {
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100231 if (req->epoch != expect_epoch)
232 break;
233 _req_mod(req, BARRIER_ACKED);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700234 }
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200235 spin_unlock_irq(&connection->resource->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700236
237 return;
238
239bail:
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200240 spin_unlock_irq(&connection->resource->req_lock);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200241 conn_request_state(connection, NS(conn, C_PROTOCOL_ERROR), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700242}
243
Philipp Reisner617049a2010-12-22 12:48:31 +0100244
Philipp Reisner11b58e72010-05-12 17:08:26 +0200245/**
246 * _tl_restart() - Walks the transfer log, and applies an action to all requests
Lars Ellenberge5f891b2013-11-22 12:32:01 +0100247 * @connection: DRBD connection to operate on.
Philipp Reisner11b58e72010-05-12 17:08:26 +0200248 * @what: The action/event to perform with all request objects
249 *
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100250 * @what might be one of CONNECTION_LOST_WHILE_PENDING, RESEND, FAIL_FROZEN_DISK_IO,
251 * RESTART_FROZEN_DISK_IO.
Philipp Reisner11b58e72010-05-12 17:08:26 +0200252 */
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100253/* must hold resource->req_lock */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200254void _tl_restart(struct drbd_connection *connection, enum drbd_req_event what)
Philipp Reisner11b58e72010-05-12 17:08:26 +0200255{
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100256 struct drbd_request *req, *r;
Philipp Reisner11b58e72010-05-12 17:08:26 +0200257
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200258 list_for_each_entry_safe(req, r, &connection->transfer_log, tl_requests)
Philipp Reisner509fc012012-07-31 11:22:58 +0200259 _req_mod(req, what);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200260}
261
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200262void tl_restart(struct drbd_connection *connection, enum drbd_req_event what)
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100263{
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200264 spin_lock_irq(&connection->resource->req_lock);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200265 _tl_restart(connection, what);
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200266 spin_unlock_irq(&connection->resource->req_lock);
Philipp Reisnercdfda632011-07-05 15:38:59 +0200267}
Philipp Reisnerb411b362009-09-25 16:07:19 -0700268
269/**
270 * tl_clear() - Clears all requests and &struct drbd_tl_epoch objects out of the TL
Lee Jones584164c2021-03-12 10:55:27 +0000271 * @connection: DRBD connection.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700272 *
273 * This is called after the connection to the peer was lost. The storage covered
274 * by the requests on the transfer gets marked as our of sync. Called from the
275 * receiver thread and the worker thread.
276 */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200277void tl_clear(struct drbd_connection *connection)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700278{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200279 tl_restart(connection, CONNECTION_LOST_WHILE_PENDING);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700280}
281
282/**
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200283 * tl_abort_disk_io() - Abort disk I/O for all requests for a certain device in the TL
284 * @device: DRBD device.
Philipp Reisnerfd2491f2011-07-18 16:25:15 +0200285 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200286void tl_abort_disk_io(struct drbd_device *device)
Philipp Reisnerfd2491f2011-07-18 16:25:15 +0200287{
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +0200288 struct drbd_connection *connection = first_peer_device(device)->connection;
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100289 struct drbd_request *req, *r;
Philipp Reisnerfd2491f2011-07-18 16:25:15 +0200290
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200291 spin_lock_irq(&connection->resource->req_lock);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200292 list_for_each_entry_safe(req, r, &connection->transfer_log, tl_requests) {
Philipp Reisnerfd2491f2011-07-18 16:25:15 +0200293 if (!(req->rq_state & RQ_LOCAL_PENDING))
294 continue;
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200295 if (req->device != device)
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100296 continue;
297 _req_mod(req, ABORT_DISK_IO);
Philipp Reisnerfd2491f2011-07-18 16:25:15 +0200298 }
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200299 spin_unlock_irq(&connection->resource->req_lock);
Philipp Reisnerfd2491f2011-07-18 16:25:15 +0200300}
301
Philipp Reisnerb411b362009-09-25 16:07:19 -0700302static int drbd_thread_setup(void *arg)
303{
304 struct drbd_thread *thi = (struct drbd_thread *) arg;
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200305 struct drbd_resource *resource = thi->resource;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700306 unsigned long flags;
307 int retval;
308
Philipp Reisnerf1b3a6e2011-02-08 15:35:58 +0100309 snprintf(current->comm, sizeof(current->comm), "drbd_%c_%s",
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +0200310 thi->name[0],
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200311 resource->name);
Philipp Reisnerf1b3a6e2011-02-08 15:35:58 +0100312
Eric W. Biederman33da8e72019-08-16 12:33:54 -0500313 allow_kernel_signal(DRBD_SIGKILL);
314 allow_kernel_signal(SIGXCPU);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700315restart:
316 retval = thi->function(thi);
317
318 spin_lock_irqsave(&thi->t_lock, flags);
319
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100320 /* if the receiver has been "EXITING", the last thing it did
Philipp Reisnerb411b362009-09-25 16:07:19 -0700321 * was set the conn state to "StandAlone",
322 * if now a re-connect request comes in, conn state goes C_UNCONNECTED,
323 * and receiver thread will be "started".
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100324 * drbd_thread_start needs to set "RESTARTING" in that case.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700325 * t_state check and assignment needs to be within the same spinlock,
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100326 * so either thread_start sees EXITING, and can remap to RESTARTING,
327 * or thread_start see NONE, and can proceed as normal.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700328 */
329
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100330 if (thi->t_state == RESTARTING) {
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200331 drbd_info(resource, "Restarting %s thread\n", thi->name);
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100332 thi->t_state = RUNNING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700333 spin_unlock_irqrestore(&thi->t_lock, flags);
334 goto restart;
335 }
336
337 thi->task = NULL;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100338 thi->t_state = NONE;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700339 smp_mb();
Lars Ellenberg992d6e92011-05-02 11:47:18 +0200340 complete_all(&thi->stop);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700341 spin_unlock_irqrestore(&thi->t_lock, flags);
342
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200343 drbd_info(resource, "Terminating %s\n", current->comm);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700344
345 /* Release mod reference taken when thread was started */
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +0200346
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200347 if (thi->connection)
348 kref_put(&thi->connection->kref, drbd_destroy_connection);
349 kref_put(&resource->kref, drbd_destroy_resource);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700350 module_put(THIS_MODULE);
351 return retval;
352}
353
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200354static void drbd_thread_init(struct drbd_resource *resource, struct drbd_thread *thi,
Andreas Gruenbacherc60b0252011-08-10 15:05:02 +0200355 int (*func) (struct drbd_thread *), const char *name)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700356{
357 spin_lock_init(&thi->t_lock);
358 thi->task = NULL;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100359 thi->t_state = NONE;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700360 thi->function = func;
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200361 thi->resource = resource;
362 thi->connection = NULL;
Andreas Gruenbacherc60b0252011-08-10 15:05:02 +0200363 thi->name = name;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700364}
365
366int drbd_thread_start(struct drbd_thread *thi)
367{
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200368 struct drbd_resource *resource = thi->resource;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700369 struct task_struct *nt;
370 unsigned long flags;
371
Philipp Reisnerb411b362009-09-25 16:07:19 -0700372 /* is used from state engine doing drbd_thread_stop_nowait,
373 * while holding the req lock irqsave */
374 spin_lock_irqsave(&thi->t_lock, flags);
375
376 switch (thi->t_state) {
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100377 case NONE:
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200378 drbd_info(resource, "Starting %s thread (from %s [%d])\n",
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100379 thi->name, current->comm, current->pid);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700380
381 /* Get ref on module for thread - this is released when thread exits */
382 if (!try_module_get(THIS_MODULE)) {
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200383 drbd_err(resource, "Failed to get module reference in drbd_thread_start\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700384 spin_unlock_irqrestore(&thi->t_lock, flags);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100385 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700386 }
387
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200388 kref_get(&resource->kref);
389 if (thi->connection)
390 kref_get(&thi->connection->kref);
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +0200391
Philipp Reisnerb411b362009-09-25 16:07:19 -0700392 init_completion(&thi->stop);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700393 thi->reset_cpu_mask = 1;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100394 thi->t_state = RUNNING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700395 spin_unlock_irqrestore(&thi->t_lock, flags);
396 flush_signals(current); /* otherw. may get -ERESTARTNOINTR */
397
398 nt = kthread_create(drbd_thread_setup, (void *) thi,
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200399 "drbd_%c_%s", thi->name[0], thi->resource->name);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700400
401 if (IS_ERR(nt)) {
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200402 drbd_err(resource, "Couldn't start thread\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700403
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200404 if (thi->connection)
405 kref_put(&thi->connection->kref, drbd_destroy_connection);
406 kref_put(&resource->kref, drbd_destroy_resource);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700407 module_put(THIS_MODULE);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100408 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700409 }
410 spin_lock_irqsave(&thi->t_lock, flags);
411 thi->task = nt;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100412 thi->t_state = RUNNING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700413 spin_unlock_irqrestore(&thi->t_lock, flags);
414 wake_up_process(nt);
415 break;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100416 case EXITING:
417 thi->t_state = RESTARTING;
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200418 drbd_info(resource, "Restarting %s thread (from %s [%d])\n",
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100419 thi->name, current->comm, current->pid);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -0500420 fallthrough;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100421 case RUNNING:
422 case RESTARTING:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700423 default:
424 spin_unlock_irqrestore(&thi->t_lock, flags);
425 break;
426 }
427
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100428 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700429}
430
431
432void _drbd_thread_stop(struct drbd_thread *thi, int restart, int wait)
433{
434 unsigned long flags;
435
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100436 enum drbd_thread_state ns = restart ? RESTARTING : EXITING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700437
438 /* may be called from state engine, holding the req lock irqsave */
439 spin_lock_irqsave(&thi->t_lock, flags);
440
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100441 if (thi->t_state == NONE) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700442 spin_unlock_irqrestore(&thi->t_lock, flags);
443 if (restart)
444 drbd_thread_start(thi);
445 return;
446 }
447
448 if (thi->t_state != ns) {
449 if (thi->task == NULL) {
450 spin_unlock_irqrestore(&thi->t_lock, flags);
451 return;
452 }
453
454 thi->t_state = ns;
455 smp_mb();
456 init_completion(&thi->stop);
457 if (thi->task != current)
Eric W. Biedermanfee10992019-02-05 17:25:02 -0600458 send_sig(DRBD_SIGKILL, thi->task, 1);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700459 }
460
461 spin_unlock_irqrestore(&thi->t_lock, flags);
462
463 if (wait)
464 wait_for_completion(&thi->stop);
465}
466
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200467int conn_lowest_minor(struct drbd_connection *connection)
Philipp Reisner80822282011-02-08 12:46:30 +0100468{
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +0200469 struct drbd_peer_device *peer_device;
470 int vnr = 0, minor = -1;
Philipp Reisner774b3052011-02-22 02:07:03 -0500471
Philipp Reisner695d08f2011-04-11 22:53:32 -0700472 rcu_read_lock();
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +0200473 peer_device = idr_get_next(&connection->peer_devices, &vnr);
474 if (peer_device)
475 minor = device_to_minor(peer_device->device);
Philipp Reisner695d08f2011-04-11 22:53:32 -0700476 rcu_read_unlock();
477
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +0200478 return minor;
Philipp Reisner80822282011-02-08 12:46:30 +0100479}
Philipp Reisner774b3052011-02-22 02:07:03 -0500480
Philipp Reisnerb411b362009-09-25 16:07:19 -0700481#ifdef CONFIG_SMP
Lee Jones584164c2021-03-12 10:55:27 +0000482/*
Philipp Reisnerb411b362009-09-25 16:07:19 -0700483 * drbd_calc_cpu_mask() - Generate CPU masks, spread over all CPUs
Philipp Reisnerb411b362009-09-25 16:07:19 -0700484 *
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +0200485 * Forces all threads of a resource onto the same CPU. This is beneficial for
Philipp Reisnerb411b362009-09-25 16:07:19 -0700486 * DRBD's performance. May be overwritten by user's configuration.
487 */
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +0200488static void drbd_calc_cpu_mask(cpumask_var_t *cpu_mask)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700489{
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +0200490 unsigned int *resources_per_cpu, min_index = ~0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700491
Kees Cook6396bb22018-06-12 14:03:40 -0700492 resources_per_cpu = kcalloc(nr_cpu_ids, sizeof(*resources_per_cpu),
493 GFP_KERNEL);
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +0200494 if (resources_per_cpu) {
495 struct drbd_resource *resource;
496 unsigned int cpu, min = ~0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700497
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +0200498 rcu_read_lock();
499 for_each_resource_rcu(resource, &drbd_resources) {
500 for_each_cpu(cpu, resource->cpu_mask)
501 resources_per_cpu[cpu]++;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700502 }
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +0200503 rcu_read_unlock();
504 for_each_online_cpu(cpu) {
505 if (resources_per_cpu[cpu] < min) {
506 min = resources_per_cpu[cpu];
507 min_index = cpu;
508 }
509 }
510 kfree(resources_per_cpu);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700511 }
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +0200512 if (min_index == ~0) {
513 cpumask_setall(*cpu_mask);
514 return;
515 }
516 cpumask_set_cpu(min_index, *cpu_mask);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700517}
518
519/**
520 * drbd_thread_current_set_cpu() - modifies the cpu mask of the _current_ thread
Philipp Reisnerbc31fe32011-02-07 11:14:38 +0100521 * @thi: drbd_thread object
Philipp Reisnerb411b362009-09-25 16:07:19 -0700522 *
523 * call in the "main loop" of _all_ threads, no need for any mutex, current won't die
524 * prematurely.
525 */
Philipp Reisner80822282011-02-08 12:46:30 +0100526void drbd_thread_current_set_cpu(struct drbd_thread *thi)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700527{
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200528 struct drbd_resource *resource = thi->resource;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700529 struct task_struct *p = current;
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100530
Philipp Reisnerb411b362009-09-25 16:07:19 -0700531 if (!thi->reset_cpu_mask)
532 return;
533 thi->reset_cpu_mask = 0;
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200534 set_cpus_allowed_ptr(p, resource->cpu_mask);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700535}
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +0200536#else
537#define drbd_calc_cpu_mask(A) ({})
Philipp Reisnerb411b362009-09-25 16:07:19 -0700538#endif
539
Lee Jones584164c2021-03-12 10:55:27 +0000540/*
Andreas Gruenbacher52b061a2011-03-30 11:38:49 +0200541 * drbd_header_size - size of a packet header
542 *
543 * The header size is a multiple of 8, so any payload following the header is
544 * word aligned on 64-bit architectures. (The bitmap send and receive code
545 * relies on this.)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700546 */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200547unsigned int drbd_header_size(struct drbd_connection *connection)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700548{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200549 if (connection->agreed_pro_version >= 100) {
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200550 BUILD_BUG_ON(!IS_ALIGNED(sizeof(struct p_header100), 8));
551 return sizeof(struct p_header100);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700552 } else {
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200553 BUILD_BUG_ON(sizeof(struct p_header80) !=
554 sizeof(struct p_header95));
555 BUILD_BUG_ON(!IS_ALIGNED(sizeof(struct p_header80), 8));
556 return sizeof(struct p_header80);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700557 }
Andreas Gruenbacher52b061a2011-03-30 11:38:49 +0200558}
Philipp Reisnerb411b362009-09-25 16:07:19 -0700559
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200560static unsigned int prepare_header80(struct p_header80 *h, enum drbd_packet cmd, int size)
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100561{
562 h->magic = cpu_to_be32(DRBD_MAGIC);
563 h->command = cpu_to_be16(cmd);
564 h->length = cpu_to_be16(size);
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200565 return sizeof(struct p_header80);
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100566}
Philipp Reisnerb411b362009-09-25 16:07:19 -0700567
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200568static unsigned int prepare_header95(struct p_header95 *h, enum drbd_packet cmd, int size)
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100569{
570 h->magic = cpu_to_be16(DRBD_MAGIC_BIG);
571 h->command = cpu_to_be16(cmd);
Andreas Gruenbacherb55d84b2011-03-22 13:17:47 +0100572 h->length = cpu_to_be32(size);
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200573 return sizeof(struct p_header95);
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100574}
575
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200576static unsigned int prepare_header100(struct p_header100 *h, enum drbd_packet cmd,
577 int size, int vnr)
Philipp Reisnerd38e7872011-02-07 15:32:04 +0100578{
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200579 h->magic = cpu_to_be32(DRBD_MAGIC_100);
580 h->volume = cpu_to_be16(vnr);
581 h->command = cpu_to_be16(cmd);
582 h->length = cpu_to_be32(size);
583 h->pad = 0;
584 return sizeof(struct p_header100);
585}
586
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200587static unsigned int prepare_header(struct drbd_connection *connection, int vnr,
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200588 void *buffer, enum drbd_packet cmd, int size)
589{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200590 if (connection->agreed_pro_version >= 100)
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200591 return prepare_header100(buffer, cmd, size, vnr);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200592 else if (connection->agreed_pro_version >= 95 &&
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200593 size > DRBD_MAX_SIZE_H80_PACKET)
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200594 return prepare_header95(buffer, cmd, size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700595 else
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200596 return prepare_header80(buffer, cmd, size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700597}
598
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200599static void *__conn_prepare_command(struct drbd_connection *connection,
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200600 struct drbd_socket *sock)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700601{
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200602 if (!sock->socket)
603 return NULL;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200604 return sock->sbuf + drbd_header_size(connection);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700605}
606
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200607void *conn_prepare_command(struct drbd_connection *connection, struct drbd_socket *sock)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700608{
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200609 void *p;
610
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200611 mutex_lock(&sock->mutex);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200612 p = __conn_prepare_command(connection, sock);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200613 if (!p)
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200614 mutex_unlock(&sock->mutex);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200615
616 return p;
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200617}
618
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200619void *drbd_prepare_command(struct drbd_peer_device *peer_device, struct drbd_socket *sock)
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200620{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200621 return conn_prepare_command(peer_device->connection, sock);
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200622}
623
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200624static int __send_command(struct drbd_connection *connection, int vnr,
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200625 struct drbd_socket *sock, enum drbd_packet cmd,
626 unsigned int header_size, void *data,
627 unsigned int size)
628{
629 int msg_flags;
630 int err;
631
632 /*
633 * Called with @data == NULL and the size of the data blocks in @size
634 * for commands that send data blocks. For those commands, omit the
635 * MSG_MORE flag: this will increase the likelihood that data blocks
636 * which are page aligned on the sender will end up page aligned on the
637 * receiver.
638 */
639 msg_flags = data ? MSG_MORE : 0;
640
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200641 header_size += prepare_header(connection, vnr, sock->sbuf, cmd,
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200642 header_size + size);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200643 err = drbd_send_all(connection, sock->socket, sock->sbuf, header_size,
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200644 msg_flags);
645 if (data && !err)
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200646 err = drbd_send_all(connection, sock->socket, data, size, 0);
Lars Ellenberg123ff122014-02-05 06:13:53 +0100647 /* DRBD protocol "pings" are latency critical.
648 * This is supposed to trigger tcp_push_pending_frames() */
649 if (!err && (cmd == P_PING || cmd == P_PING_ACK))
Christoph Hellwig12abc5e2020-05-28 07:12:19 +0200650 tcp_sock_set_nodelay(sock->socket->sk);
Lars Ellenberg123ff122014-02-05 06:13:53 +0100651
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200652 return err;
653}
654
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200655static int __conn_send_command(struct drbd_connection *connection, struct drbd_socket *sock,
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200656 enum drbd_packet cmd, unsigned int header_size,
657 void *data, unsigned int size)
658{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200659 return __send_command(connection, 0, sock, cmd, header_size, data, size);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200660}
661
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200662int conn_send_command(struct drbd_connection *connection, struct drbd_socket *sock,
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200663 enum drbd_packet cmd, unsigned int header_size,
664 void *data, unsigned int size)
665{
666 int err;
667
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200668 err = __conn_send_command(connection, sock, cmd, header_size, data, size);
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200669 mutex_unlock(&sock->mutex);
670 return err;
671}
672
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200673int drbd_send_command(struct drbd_peer_device *peer_device, struct drbd_socket *sock,
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200674 enum drbd_packet cmd, unsigned int header_size,
675 void *data, unsigned int size)
676{
677 int err;
678
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200679 err = __send_command(peer_device->connection, peer_device->device->vnr,
680 sock, cmd, header_size, data, size);
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200681 mutex_unlock(&sock->mutex);
682 return err;
683}
684
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200685int drbd_send_ping(struct drbd_connection *connection)
Andreas Gruenbachere307f352011-03-22 10:55:48 +0100686{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200687 struct drbd_socket *sock;
688
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200689 sock = &connection->meta;
690 if (!conn_prepare_command(connection, sock))
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200691 return -EIO;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200692 return conn_send_command(connection, sock, P_PING, 0, NULL, 0);
Andreas Gruenbachere307f352011-03-22 10:55:48 +0100693}
694
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200695int drbd_send_ping_ack(struct drbd_connection *connection)
Andreas Gruenbachere307f352011-03-22 10:55:48 +0100696{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200697 struct drbd_socket *sock;
698
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200699 sock = &connection->meta;
700 if (!conn_prepare_command(connection, sock))
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200701 return -EIO;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200702 return conn_send_command(connection, sock, P_PING_ACK, 0, NULL, 0);
Andreas Gruenbachere307f352011-03-22 10:55:48 +0100703}
704
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200705int drbd_send_sync_param(struct drbd_peer_device *peer_device)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700706{
Andreas Gruenbacher7c967152011-03-22 00:49:36 +0100707 struct drbd_socket *sock;
Philipp Reisner8e26f9c2010-07-06 17:25:54 +0200708 struct p_rs_param_95 *p;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200709 int size;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200710 const int apv = peer_device->connection->agreed_pro_version;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200711 enum drbd_packet cmd;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200712 struct net_conf *nc;
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200713 struct disk_conf *dc;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200714
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200715 sock = &peer_device->connection->data;
716 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200717 if (!p)
718 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700719
Philipp Reisner44ed1672011-04-19 17:10:19 +0200720 rcu_read_lock();
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200721 nc = rcu_dereference(peer_device->connection->net_conf);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700722
723 size = apv <= 87 ? sizeof(struct p_rs_param)
724 : apv == 88 ? sizeof(struct p_rs_param)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200725 + strlen(nc->verify_alg) + 1
Philipp Reisner8e26f9c2010-07-06 17:25:54 +0200726 : apv <= 94 ? sizeof(struct p_rs_param_89)
727 : /* apv >= 95 */ sizeof(struct p_rs_param_95);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700728
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200729 cmd = apv >= 89 ? P_SYNC_PARAM89 : P_SYNC_PARAM;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700730
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200731 /* initialize verify_alg and csums_alg */
732 memset(p->verify_alg, 0, 2 * SHARED_SECRET_MAX);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700733
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200734 if (get_ldev(peer_device->device)) {
735 dc = rcu_dereference(peer_device->device->ldev->disk_conf);
Andreas Gruenbacher6394b932011-05-11 14:29:52 +0200736 p->resync_rate = cpu_to_be32(dc->resync_rate);
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200737 p->c_plan_ahead = cpu_to_be32(dc->c_plan_ahead);
738 p->c_delay_target = cpu_to_be32(dc->c_delay_target);
739 p->c_fill_target = cpu_to_be32(dc->c_fill_target);
740 p->c_max_rate = cpu_to_be32(dc->c_max_rate);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200741 put_ldev(peer_device->device);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200742 } else {
Andreas Gruenbacher6394b932011-05-11 14:29:52 +0200743 p->resync_rate = cpu_to_be32(DRBD_RESYNC_RATE_DEF);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200744 p->c_plan_ahead = cpu_to_be32(DRBD_C_PLAN_AHEAD_DEF);
745 p->c_delay_target = cpu_to_be32(DRBD_C_DELAY_TARGET_DEF);
746 p->c_fill_target = cpu_to_be32(DRBD_C_FILL_TARGET_DEF);
747 p->c_max_rate = cpu_to_be32(DRBD_C_MAX_RATE_DEF);
748 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700749
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200750 if (apv >= 88)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200751 strcpy(p->verify_alg, nc->verify_alg);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200752 if (apv >= 89)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200753 strcpy(p->csums_alg, nc->csums_alg);
754 rcu_read_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -0700755
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200756 return drbd_send_command(peer_device, sock, cmd, size, NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700757}
758
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200759int __drbd_send_protocol(struct drbd_connection *connection, enum drbd_packet cmd)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700760{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200761 struct drbd_socket *sock;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700762 struct p_protocol *p;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200763 struct net_conf *nc;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200764 int size, cf;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700765
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200766 sock = &connection->data;
767 p = __conn_prepare_command(connection, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200768 if (!p)
769 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700770
Philipp Reisner44ed1672011-04-19 17:10:19 +0200771 rcu_read_lock();
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200772 nc = rcu_dereference(connection->net_conf);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700773
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200774 if (nc->tentative && connection->agreed_pro_version < 92) {
Philipp Reisner44ed1672011-04-19 17:10:19 +0200775 rcu_read_unlock();
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +0200776 drbd_err(connection, "--dry-run is not supported by peer");
Philipp Reisner44ed1672011-04-19 17:10:19 +0200777 return -EOPNOTSUPP;
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100778 }
Philipp Reisner44ed1672011-04-19 17:10:19 +0200779
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200780 size = sizeof(*p);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200781 if (connection->agreed_pro_version >= 87)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200782 size += strlen(nc->integrity_alg) + 1;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700783
Philipp Reisner44ed1672011-04-19 17:10:19 +0200784 p->protocol = cpu_to_be32(nc->wire_protocol);
785 p->after_sb_0p = cpu_to_be32(nc->after_sb_0p);
786 p->after_sb_1p = cpu_to_be32(nc->after_sb_1p);
787 p->after_sb_2p = cpu_to_be32(nc->after_sb_2p);
788 p->two_primaries = cpu_to_be32(nc->two_primaries);
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100789 cf = 0;
Andreas Gruenbacher6139f602011-05-06 20:00:02 +0200790 if (nc->discard_my_data)
791 cf |= CF_DISCARD_MY_DATA;
Andreas Gruenbacher6dff2902011-06-28 14:18:12 +0200792 if (nc->tentative)
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200793 cf |= CF_DRY_RUN;
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100794 p->conn_flags = cpu_to_be32(cf);
795
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200796 if (connection->agreed_pro_version >= 87)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200797 strcpy(p->integrity_alg, nc->integrity_alg);
798 rcu_read_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -0700799
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200800 return __conn_send_command(connection, sock, cmd, size, NULL, 0);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200801}
802
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200803int drbd_send_protocol(struct drbd_connection *connection)
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200804{
805 int err;
806
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200807 mutex_lock(&connection->data.mutex);
808 err = __drbd_send_protocol(connection, P_PROTOCOL);
809 mutex_unlock(&connection->data.mutex);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200810
811 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700812}
813
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200814static int _drbd_send_uuids(struct drbd_peer_device *peer_device, u64 uuid_flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700815{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200816 struct drbd_device *device = peer_device->device;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200817 struct drbd_socket *sock;
818 struct p_uuids *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700819 int i;
820
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200821 if (!get_ldev_if_state(device, D_NEGOTIATING))
Andreas Gruenbacher2ae5f952011-03-16 01:07:20 +0100822 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700823
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200824 sock = &peer_device->connection->data;
825 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200826 if (!p) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200827 put_ldev(device);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200828 return -EIO;
829 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200830 spin_lock_irq(&device->ldev->md.uuid_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700831 for (i = UI_CURRENT; i < UI_SIZE; i++)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200832 p->uuid[i] = cpu_to_be64(device->ldev->md.uuid[i]);
833 spin_unlock_irq(&device->ldev->md.uuid_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700834
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200835 device->comm_bm_set = drbd_bm_total_weight(device);
836 p->uuid[UI_SIZE] = cpu_to_be64(device->comm_bm_set);
Philipp Reisner44ed1672011-04-19 17:10:19 +0200837 rcu_read_lock();
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200838 uuid_flags |= rcu_dereference(peer_device->connection->net_conf)->discard_my_data ? 1 : 0;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200839 rcu_read_unlock();
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200840 uuid_flags |= test_bit(CRASHED_PRIMARY, &device->flags) ? 2 : 0;
841 uuid_flags |= device->new_state_tmp.disk == D_INCONSISTENT ? 4 : 0;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200842 p->uuid[UI_FLAGS] = cpu_to_be64(uuid_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700843
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200844 put_ldev(device);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200845 return drbd_send_command(peer_device, sock, P_UUIDS, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700846}
847
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200848int drbd_send_uuids(struct drbd_peer_device *peer_device)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700849{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200850 return _drbd_send_uuids(peer_device, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700851}
852
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200853int drbd_send_uuids_skip_initial_sync(struct drbd_peer_device *peer_device)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700854{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200855 return _drbd_send_uuids(peer_device, 8);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700856}
857
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200858void drbd_print_uuids(struct drbd_device *device, const char *text)
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100859{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200860 if (get_ldev_if_state(device, D_NEGOTIATING)) {
861 u64 *uuid = device->ldev->md.uuid;
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200862 drbd_info(device, "%s %016llX:%016llX:%016llX:%016llX\n",
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100863 text,
864 (unsigned long long)uuid[UI_CURRENT],
865 (unsigned long long)uuid[UI_BITMAP],
866 (unsigned long long)uuid[UI_HISTORY_START],
867 (unsigned long long)uuid[UI_HISTORY_END]);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200868 put_ldev(device);
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100869 } else {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200870 drbd_info(device, "%s effective data uuid: %016llX\n",
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100871 text,
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200872 (unsigned long long)device->ed_uuid);
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100873 }
874}
875
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200876void drbd_gen_and_send_sync_uuid(struct drbd_peer_device *peer_device)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700877{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200878 struct drbd_device *device = peer_device->device;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200879 struct drbd_socket *sock;
880 struct p_rs_uuid *p;
Lars Ellenberg5a22db82010-12-17 21:14:23 +0100881 u64 uuid;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700882
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200883 D_ASSERT(device, device->state.disk == D_UP_TO_DATE);
Lars Ellenberg5a22db82010-12-17 21:14:23 +0100884
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200885 uuid = device->ldev->md.uuid[UI_BITMAP];
Philipp Reisner5ba3dac2011-10-05 15:54:18 +0200886 if (uuid && uuid != UUID_JUST_CREATED)
887 uuid = uuid + UUID_NEW_BM_OFFSET;
888 else
889 get_random_bytes(&uuid, sizeof(u64));
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200890 drbd_uuid_set(device, UI_BITMAP, uuid);
891 drbd_print_uuids(device, "updated sync UUID");
892 drbd_md_sync(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700893
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200894 sock = &peer_device->connection->data;
895 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200896 if (p) {
897 p->uuid = cpu_to_be64(uuid);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200898 drbd_send_command(peer_device, sock, P_SYNC_UUID, sizeof(*p), NULL, 0);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200899 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700900}
901
Lars Ellenberg9104d312016-06-14 00:26:31 +0200902/* communicated if (agreed_features & DRBD_FF_WSAME) */
Baoyou Xie1ffa7bf2017-08-29 10:20:36 +0200903static void
904assign_p_sizes_qlim(struct drbd_device *device, struct p_sizes *p,
905 struct request_queue *q)
Lars Ellenberg9104d312016-06-14 00:26:31 +0200906{
907 if (q) {
908 p->qlim->physical_block_size = cpu_to_be32(queue_physical_block_size(q));
909 p->qlim->logical_block_size = cpu_to_be32(queue_logical_block_size(q));
910 p->qlim->alignment_offset = cpu_to_be32(queue_alignment_offset(q));
911 p->qlim->io_min = cpu_to_be32(queue_io_min(q));
912 p->qlim->io_opt = cpu_to_be32(queue_io_opt(q));
913 p->qlim->discard_enabled = blk_queue_discard(q);
Lars Ellenberg9104d312016-06-14 00:26:31 +0200914 p->qlim->write_same_capable = !!q->limits.max_write_same_sectors;
915 } else {
916 q = device->rq_queue;
917 p->qlim->physical_block_size = cpu_to_be32(queue_physical_block_size(q));
918 p->qlim->logical_block_size = cpu_to_be32(queue_logical_block_size(q));
919 p->qlim->alignment_offset = 0;
920 p->qlim->io_min = cpu_to_be32(queue_io_min(q));
921 p->qlim->io_opt = cpu_to_be32(queue_io_opt(q));
922 p->qlim->discard_enabled = 0;
Lars Ellenberg9104d312016-06-14 00:26:31 +0200923 p->qlim->write_same_capable = 0;
924 }
925}
926
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200927int drbd_send_sizes(struct drbd_peer_device *peer_device, int trigger_reply, enum dds_flags flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700928{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200929 struct drbd_device *device = peer_device->device;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200930 struct drbd_socket *sock;
931 struct p_sizes *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700932 sector_t d_size, u_size;
Lars Ellenbergdb141b22012-06-25 19:15:58 +0200933 int q_order_type;
934 unsigned int max_bio_size;
Lars Ellenberg9104d312016-06-14 00:26:31 +0200935 unsigned int packet_size;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700936
Lars Ellenberg9104d312016-06-14 00:26:31 +0200937 sock = &peer_device->connection->data;
938 p = drbd_prepare_command(peer_device, sock);
939 if (!p)
940 return -EIO;
941
942 packet_size = sizeof(*p);
943 if (peer_device->connection->agreed_features & DRBD_FF_WSAME)
944 packet_size += sizeof(p->qlim[0]);
945
946 memset(p, 0, packet_size);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200947 if (get_ldev_if_state(device, D_NEGOTIATING)) {
Lars Ellenberg9104d312016-06-14 00:26:31 +0200948 struct request_queue *q = bdev_get_queue(device->ldev->backing_bdev);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200949 d_size = drbd_get_max_capacity(device->ldev);
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200950 rcu_read_lock();
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200951 u_size = rcu_dereference(device->ldev->disk_conf)->disk_size;
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200952 rcu_read_unlock();
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200953 q_order_type = drbd_queue_order_type(device);
Lars Ellenberg9104d312016-06-14 00:26:31 +0200954 max_bio_size = queue_max_hw_sectors(q) << 9;
Lars Ellenbergdb141b22012-06-25 19:15:58 +0200955 max_bio_size = min(max_bio_size, DRBD_MAX_BIO_SIZE);
Lars Ellenberg9104d312016-06-14 00:26:31 +0200956 assign_p_sizes_qlim(device, p, q);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200957 put_ldev(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700958 } else {
959 d_size = 0;
960 u_size = 0;
961 q_order_type = QUEUE_ORDERED_NONE;
Philipp Reisner99432fc2011-05-20 16:39:13 +0200962 max_bio_size = DRBD_MAX_BIO_SIZE; /* ... multiple BIOs per peer_request */
Lars Ellenberg9104d312016-06-14 00:26:31 +0200963 assign_p_sizes_qlim(device, p, NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700964 }
965
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200966 if (peer_device->connection->agreed_pro_version <= 94)
Lars Ellenbergdb141b22012-06-25 19:15:58 +0200967 max_bio_size = min(max_bio_size, DRBD_MAX_SIZE_H80_PACKET);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200968 else if (peer_device->connection->agreed_pro_version < 100)
Philipp Reisner98683652012-11-09 14:18:43 +0100969 max_bio_size = min(max_bio_size, DRBD_MAX_BIO_SIZE_P95);
Philipp Reisner68093842011-06-30 15:43:06 +0200970
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200971 p->d_size = cpu_to_be64(d_size);
972 p->u_size = cpu_to_be64(u_size);
Christoph Hellwig155bd9d2020-09-25 18:06:17 +0200973 if (trigger_reply)
974 p->c_size = 0;
975 else
976 p->c_size = cpu_to_be64(get_capacity(device->vdisk));
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200977 p->max_bio_size = cpu_to_be32(max_bio_size);
978 p->queue_order_type = cpu_to_be16(q_order_type);
979 p->dds_flags = cpu_to_be16(flags);
Lars Ellenberg9104d312016-06-14 00:26:31 +0200980
981 return drbd_send_command(peer_device, sock, P_SIZES, packet_size, NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700982}
983
984/**
Lars Ellenbergf479ea02011-10-27 16:52:30 +0200985 * drbd_send_current_state() - Sends the drbd state to the peer
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200986 * @peer_device: DRBD peer device.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700987 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200988int drbd_send_current_state(struct drbd_peer_device *peer_device)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700989{
Andreas Gruenbacher7c967152011-03-22 00:49:36 +0100990 struct drbd_socket *sock;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200991 struct p_state *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700992
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200993 sock = &peer_device->connection->data;
994 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200995 if (!p)
996 return -EIO;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200997 p->state = cpu_to_be32(peer_device->device->state.i); /* Within the send mutex */
998 return drbd_send_command(peer_device, sock, P_STATE, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700999}
1000
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001001/**
1002 * drbd_send_state() - After a state change, sends the new state to the peer
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001003 * @peer_device: DRBD peer device.
Philipp Reisner43de7c82011-11-10 13:16:13 +01001004 * @state: the state to send, not necessarily the current state.
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001005 *
1006 * Each state change queues an "after_state_ch" work, which will eventually
1007 * send the resulting new state to the peer. If more state changes happen
1008 * between queuing and processing of the after_state_ch work, we still
1009 * want to send each intermediary state in the order it occurred.
1010 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001011int drbd_send_state(struct drbd_peer_device *peer_device, union drbd_state state)
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001012{
Philipp Reisner43de7c82011-11-10 13:16:13 +01001013 struct drbd_socket *sock;
1014 struct p_state *p;
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001015
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001016 sock = &peer_device->connection->data;
1017 p = drbd_prepare_command(peer_device, sock);
Philipp Reisner43de7c82011-11-10 13:16:13 +01001018 if (!p)
1019 return -EIO;
1020 p->state = cpu_to_be32(state.i); /* Within the send mutex */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001021 return drbd_send_command(peer_device, sock, P_STATE, sizeof(*p), NULL, 0);
Philipp Reisner43de7c82011-11-10 13:16:13 +01001022}
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001023
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001024int drbd_send_state_req(struct drbd_peer_device *peer_device, union drbd_state mask, union drbd_state val)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001025{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001026 struct drbd_socket *sock;
1027 struct p_req_state *p;
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001028
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001029 sock = &peer_device->connection->data;
1030 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001031 if (!p)
1032 return -EIO;
1033 p->mask = cpu_to_be32(mask.i);
1034 p->val = cpu_to_be32(val.i);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001035 return drbd_send_command(peer_device, sock, P_STATE_CHG_REQ, sizeof(*p), NULL, 0);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001036}
1037
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001038int conn_send_state_req(struct drbd_connection *connection, union drbd_state mask, union drbd_state val)
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001039{
1040 enum drbd_packet cmd;
1041 struct drbd_socket *sock;
1042 struct p_req_state *p;
1043
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001044 cmd = connection->agreed_pro_version < 100 ? P_STATE_CHG_REQ : P_CONN_ST_CHG_REQ;
1045 sock = &connection->data;
1046 p = conn_prepare_command(connection, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001047 if (!p)
1048 return -EIO;
1049 p->mask = cpu_to_be32(mask.i);
1050 p->val = cpu_to_be32(val.i);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001051 return conn_send_command(connection, sock, cmd, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001052}
1053
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001054void drbd_send_sr_reply(struct drbd_peer_device *peer_device, enum drbd_state_rv retcode)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001055{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001056 struct drbd_socket *sock;
1057 struct p_req_state_reply *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001058
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001059 sock = &peer_device->connection->meta;
1060 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001061 if (p) {
1062 p->retcode = cpu_to_be32(retcode);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001063 drbd_send_command(peer_device, sock, P_STATE_CHG_REPLY, sizeof(*p), NULL, 0);
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001064 }
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001065}
1066
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001067void conn_send_sr_reply(struct drbd_connection *connection, enum drbd_state_rv retcode)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001068{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001069 struct drbd_socket *sock;
1070 struct p_req_state_reply *p;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001071 enum drbd_packet cmd = connection->agreed_pro_version < 100 ? P_STATE_CHG_REPLY : P_CONN_ST_CHG_REPLY;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001072
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001073 sock = &connection->meta;
1074 p = conn_prepare_command(connection, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001075 if (p) {
1076 p->retcode = cpu_to_be32(retcode);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001077 conn_send_command(connection, sock, cmd, sizeof(*p), NULL, 0);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001078 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001079}
1080
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001081static void dcbp_set_code(struct p_compressed_bm *p, enum drbd_bitmap_code code)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001082{
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001083 BUG_ON(code & ~0xf);
1084 p->encoding = (p->encoding & ~0xf) | code;
1085}
Philipp Reisnerb411b362009-09-25 16:07:19 -07001086
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001087static void dcbp_set_start(struct p_compressed_bm *p, int set)
1088{
1089 p->encoding = (p->encoding & ~0x80) | (set ? 0x80 : 0);
1090}
Philipp Reisnerb411b362009-09-25 16:07:19 -07001091
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001092static void dcbp_set_pad_bits(struct p_compressed_bm *p, int n)
1093{
1094 BUG_ON(n & ~0x7);
1095 p->encoding = (p->encoding & (~0x7 << 4)) | (n << 4);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001096}
1097
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001098static int fill_bitmap_rle_bits(struct drbd_device *device,
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001099 struct p_compressed_bm *p,
1100 unsigned int size,
1101 struct bm_xfer_ctx *c)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001102{
1103 struct bitstream bs;
1104 unsigned long plain_bits;
1105 unsigned long tmp;
1106 unsigned long rl;
1107 unsigned len;
1108 unsigned toggle;
Philipp Reisner44ed1672011-04-19 17:10:19 +02001109 int bits, use_rle;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001110
1111 /* may we use this feature? */
Philipp Reisner44ed1672011-04-19 17:10:19 +02001112 rcu_read_lock();
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001113 use_rle = rcu_dereference(first_peer_device(device)->connection->net_conf)->use_rle;
Philipp Reisner44ed1672011-04-19 17:10:19 +02001114 rcu_read_unlock();
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001115 if (!use_rle || first_peer_device(device)->connection->agreed_pro_version < 90)
Philipp Reisner44ed1672011-04-19 17:10:19 +02001116 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001117
1118 if (c->bit_offset >= c->bm_bits)
1119 return 0; /* nothing to do. */
1120
1121 /* use at most thus many bytes */
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001122 bitstream_init(&bs, p->code, size, 0);
1123 memset(p->code, 0, size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001124 /* plain bits covered in this code string */
1125 plain_bits = 0;
1126
1127 /* p->encoding & 0x80 stores whether the first run length is set.
1128 * bit offset is implicit.
1129 * start with toggle == 2 to be able to tell the first iteration */
1130 toggle = 2;
1131
1132 /* see how much plain bits we can stuff into one packet
1133 * using RLE and VLI. */
1134 do {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001135 tmp = (toggle == 0) ? _drbd_bm_find_next_zero(device, c->bit_offset)
1136 : _drbd_bm_find_next(device, c->bit_offset);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001137 if (tmp == -1UL)
1138 tmp = c->bm_bits;
1139 rl = tmp - c->bit_offset;
1140
1141 if (toggle == 2) { /* first iteration */
1142 if (rl == 0) {
1143 /* the first checked bit was set,
1144 * store start value, */
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001145 dcbp_set_start(p, 1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001146 /* but skip encoding of zero run length */
1147 toggle = !toggle;
1148 continue;
1149 }
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001150 dcbp_set_start(p, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001151 }
1152
1153 /* paranoia: catch zero runlength.
1154 * can only happen if bitmap is modified while we scan it. */
1155 if (rl == 0) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001156 drbd_err(device, "unexpected zero runlength while encoding bitmap "
Philipp Reisnerb411b362009-09-25 16:07:19 -07001157 "t:%u bo:%lu\n", toggle, c->bit_offset);
1158 return -1;
1159 }
1160
1161 bits = vli_encode_bits(&bs, rl);
1162 if (bits == -ENOBUFS) /* buffer full */
1163 break;
1164 if (bits <= 0) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001165 drbd_err(device, "error while encoding bitmap: %d\n", bits);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001166 return 0;
1167 }
1168
1169 toggle = !toggle;
1170 plain_bits += rl;
1171 c->bit_offset = tmp;
1172 } while (c->bit_offset < c->bm_bits);
1173
1174 len = bs.cur.b - p->code + !!bs.cur.bit;
1175
1176 if (plain_bits < (len << 3)) {
1177 /* incompressible with this method.
1178 * we need to rewind both word and bit position. */
1179 c->bit_offset -= plain_bits;
1180 bm_xfer_ctx_bit_to_word_offset(c);
1181 c->bit_offset = c->word_offset * BITS_PER_LONG;
1182 return 0;
1183 }
1184
1185 /* RLE + VLI was able to compress it just fine.
1186 * update c->word_offset. */
1187 bm_xfer_ctx_bit_to_word_offset(c);
1188
1189 /* store pad_bits */
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001190 dcbp_set_pad_bits(p, (8 - bs.cur.bit) & 0x7);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001191
1192 return len;
1193}
1194
Lee Jones584164c2021-03-12 10:55:27 +00001195/*
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001196 * send_bitmap_rle_or_plain
1197 *
1198 * Return 0 when done, 1 when another iteration is needed, and a negative error
1199 * code upon failure.
1200 */
1201static int
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001202send_bitmap_rle_or_plain(struct drbd_device *device, struct bm_xfer_ctx *c)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001203{
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001204 struct drbd_socket *sock = &first_peer_device(device)->connection->data;
1205 unsigned int header_size = drbd_header_size(first_peer_device(device)->connection);
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001206 struct p_compressed_bm *p = sock->sbuf + header_size;
Andreas Gruenbachera982dd52010-12-10 00:45:25 +01001207 int len, err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001208
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001209 len = fill_bitmap_rle_bits(device, p,
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001210 DRBD_SOCKET_BUFFER_SIZE - header_size - sizeof(*p), c);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001211 if (len < 0)
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001212 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001213
1214 if (len) {
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001215 dcbp_set_code(p, RLE_VLI_Bits);
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001216 err = __send_command(first_peer_device(device)->connection, device->vnr, sock,
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001217 P_COMPRESSED_BITMAP, sizeof(*p) + len,
1218 NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001219 c->packets[0]++;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001220 c->bytes[0] += header_size + sizeof(*p) + len;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001221
1222 if (c->bit_offset >= c->bm_bits)
1223 len = 0; /* DONE */
1224 } else {
1225 /* was not compressible.
1226 * send a buffer full of plain text bits instead. */
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001227 unsigned int data_size;
1228 unsigned long num_words;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001229 unsigned long *p = sock->sbuf + header_size;
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001230
1231 data_size = DRBD_SOCKET_BUFFER_SIZE - header_size;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001232 num_words = min_t(size_t, data_size / sizeof(*p),
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001233 c->bm_words - c->word_offset);
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001234 len = num_words * sizeof(*p);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001235 if (len)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001236 drbd_bm_get_lel(device, c->word_offset, num_words, p);
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001237 err = __send_command(first_peer_device(device)->connection, device->vnr, sock, P_BITMAP, len, NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001238 c->word_offset += num_words;
1239 c->bit_offset = c->word_offset * BITS_PER_LONG;
1240
1241 c->packets[1]++;
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001242 c->bytes[1] += header_size + len;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001243
1244 if (c->bit_offset > c->bm_bits)
1245 c->bit_offset = c->bm_bits;
1246 }
Andreas Gruenbachera982dd52010-12-10 00:45:25 +01001247 if (!err) {
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001248 if (len == 0) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001249 INFO_bm_xfer_stats(device, "send", c);
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001250 return 0;
1251 } else
1252 return 1;
1253 }
1254 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001255}
1256
1257/* See the comment at receive_bitmap() */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001258static int _drbd_send_bitmap(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001259{
1260 struct bm_xfer_ctx c;
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001261 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001262
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001263 if (!expect(device->bitmap))
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001264 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001265
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001266 if (get_ldev(device)) {
1267 if (drbd_md_test_flag(device->ldev, MDF_FULL_SYNC)) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001268 drbd_info(device, "Writing the whole bitmap, MDF_FullSync was set.\n");
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001269 drbd_bm_set_all(device);
1270 if (drbd_bm_write(device)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001271 /* write_bm did fail! Leave full sync flag set in Meta P_DATA
1272 * but otherwise process as per normal - need to tell other
1273 * side that a full resync is required! */
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001274 drbd_err(device, "Failed to write bitmap to disk!\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07001275 } else {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001276 drbd_md_clear_flag(device, MDF_FULL_SYNC);
1277 drbd_md_sync(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001278 }
1279 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001280 put_ldev(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001281 }
1282
1283 c = (struct bm_xfer_ctx) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001284 .bm_bits = drbd_bm_bits(device),
1285 .bm_words = drbd_bm_words(device),
Philipp Reisnerb411b362009-09-25 16:07:19 -07001286 };
1287
1288 do {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001289 err = send_bitmap_rle_or_plain(device, &c);
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001290 } while (err > 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001291
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001292 return err == 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001293}
1294
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001295int drbd_send_bitmap(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001296{
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001297 struct drbd_socket *sock = &first_peer_device(device)->connection->data;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001298 int err = -1;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001299
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001300 mutex_lock(&sock->mutex);
1301 if (sock->socket)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001302 err = !_drbd_send_bitmap(device);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001303 mutex_unlock(&sock->mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001304 return err;
1305}
1306
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001307void drbd_send_b_ack(struct drbd_connection *connection, u32 barrier_nr, u32 set_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001308{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001309 struct drbd_socket *sock;
1310 struct p_barrier_ack *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001311
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001312 if (connection->cstate < C_WF_REPORT_PARAMS)
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001313 return;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001314
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001315 sock = &connection->meta;
1316 p = conn_prepare_command(connection, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001317 if (!p)
1318 return;
1319 p->barrier = barrier_nr;
1320 p->set_size = cpu_to_be32(set_size);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001321 conn_send_command(connection, sock, P_BARRIER_ACK, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001322}
1323
1324/**
1325 * _drbd_send_ack() - Sends an ack packet
Lee Jones584164c2021-03-12 10:55:27 +00001326 * @peer_device: DRBD peer device.
1327 * @cmd: Packet command code.
1328 * @sector: sector, needs to be in big endian byte order
1329 * @blksize: size in byte, needs to be in big endian byte order
1330 * @block_id: Id, big endian byte order
Philipp Reisnerb411b362009-09-25 16:07:19 -07001331 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001332static int _drbd_send_ack(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001333 u64 sector, u32 blksize, u64 block_id)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001334{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001335 struct drbd_socket *sock;
1336 struct p_block_ack *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001337
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001338 if (peer_device->device->state.conn < C_CONNECTED)
Andreas Gruenbachera8c32aa2011-03-16 01:27:22 +01001339 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001340
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001341 sock = &peer_device->connection->meta;
1342 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001343 if (!p)
1344 return -EIO;
1345 p->sector = sector;
1346 p->block_id = block_id;
1347 p->blksize = blksize;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001348 p->seq_num = cpu_to_be32(atomic_inc_return(&peer_device->device->packet_seq));
1349 return drbd_send_command(peer_device, sock, cmd, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001350}
1351
Lars Ellenberg2b2bf212010-10-06 11:46:55 +02001352/* dp->sector and dp->block_id already/still in network byte order,
1353 * data_size is payload size according to dp->head,
1354 * and may need to be corrected for digest size. */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001355void drbd_send_ack_dp(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
Andreas Gruenbachera9a99942011-03-16 01:30:14 +01001356 struct p_data *dp, int data_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001357{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001358 if (peer_device->connection->peer_integrity_tfm)
Kees Cook3d0e6372018-08-06 16:32:16 -07001359 data_size -= crypto_shash_digestsize(peer_device->connection->peer_integrity_tfm);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001360 _drbd_send_ack(peer_device, cmd, dp->sector, cpu_to_be32(data_size),
Andreas Gruenbachera9a99942011-03-16 01:30:14 +01001361 dp->block_id);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001362}
1363
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001364void drbd_send_ack_rp(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
Andreas Gruenbachera9a99942011-03-16 01:30:14 +01001365 struct p_block_req *rp)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001366{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001367 _drbd_send_ack(peer_device, cmd, rp->sector, rp->blksize, rp->block_id);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001368}
1369
1370/**
1371 * drbd_send_ack() - Sends an ack packet
Lee Jones584164c2021-03-12 10:55:27 +00001372 * @peer_device: DRBD peer device
1373 * @cmd: packet command code
1374 * @peer_req: peer request
Philipp Reisnerb411b362009-09-25 16:07:19 -07001375 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001376int drbd_send_ack(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001377 struct drbd_peer_request *peer_req)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001378{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001379 return _drbd_send_ack(peer_device, cmd,
Andreas Gruenbacherdd516122011-03-16 15:39:08 +01001380 cpu_to_be64(peer_req->i.sector),
1381 cpu_to_be32(peer_req->i.size),
1382 peer_req->block_id);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001383}
1384
1385/* This function misuses the block_id field to signal if the blocks
1386 * are is sync or not. */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001387int drbd_send_ack_ex(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001388 sector_t sector, int blksize, u64 block_id)
1389{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001390 return _drbd_send_ack(peer_device, cmd,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001391 cpu_to_be64(sector),
1392 cpu_to_be32(blksize),
1393 cpu_to_be64(block_id));
1394}
1395
Philipp Reisner700ca8c2016-06-14 00:26:13 +02001396int drbd_send_rs_deallocated(struct drbd_peer_device *peer_device,
1397 struct drbd_peer_request *peer_req)
1398{
1399 struct drbd_socket *sock;
1400 struct p_block_desc *p;
1401
1402 sock = &peer_device->connection->data;
1403 p = drbd_prepare_command(peer_device, sock);
1404 if (!p)
1405 return -EIO;
1406 p->sector = cpu_to_be64(peer_req->i.sector);
1407 p->blksize = cpu_to_be32(peer_req->i.size);
1408 p->pad = 0;
1409 return drbd_send_command(peer_device, sock, P_RS_DEALLOCATED, sizeof(*p), NULL, 0);
1410}
1411
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001412int drbd_send_drequest(struct drbd_peer_device *peer_device, int cmd,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001413 sector_t sector, int size, u64 block_id)
1414{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001415 struct drbd_socket *sock;
1416 struct p_block_req *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001417
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001418 sock = &peer_device->connection->data;
1419 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001420 if (!p)
1421 return -EIO;
1422 p->sector = cpu_to_be64(sector);
1423 p->block_id = block_id;
1424 p->blksize = cpu_to_be32(size);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001425 return drbd_send_command(peer_device, sock, cmd, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001426}
1427
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001428int drbd_send_drequest_csum(struct drbd_peer_device *peer_device, sector_t sector, int size,
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001429 void *digest, int digest_size, enum drbd_packet cmd)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001430{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001431 struct drbd_socket *sock;
1432 struct p_block_req *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001433
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001434 /* FIXME: Put the digest into the preallocated socket buffer. */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001435
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001436 sock = &peer_device->connection->data;
1437 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001438 if (!p)
1439 return -EIO;
1440 p->sector = cpu_to_be64(sector);
1441 p->block_id = ID_SYNCER /* unused */;
1442 p->blksize = cpu_to_be32(size);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001443 return drbd_send_command(peer_device, sock, cmd, sizeof(*p), digest, digest_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001444}
1445
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001446int drbd_send_ov_request(struct drbd_peer_device *peer_device, sector_t sector, int size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001447{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001448 struct drbd_socket *sock;
1449 struct p_block_req *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001450
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001451 sock = &peer_device->connection->data;
1452 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001453 if (!p)
1454 return -EIO;
1455 p->sector = cpu_to_be64(sector);
1456 p->block_id = ID_SYNCER /* unused */;
1457 p->blksize = cpu_to_be32(size);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001458 return drbd_send_command(peer_device, sock, P_OV_REQUEST, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001459}
1460
1461/* called on sndtimeo
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001462 * returns false if we should retry,
1463 * true if we think connection is dead
Philipp Reisnerb411b362009-09-25 16:07:19 -07001464 */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001465static int we_should_drop_the_connection(struct drbd_connection *connection, struct socket *sock)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001466{
1467 int drop_it;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001468 /* long elapsed = (long)(jiffies - device->last_received); */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001469
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001470 drop_it = connection->meta.socket == sock
Philipp Reisner1c03e522015-03-16 15:01:00 +01001471 || !connection->ack_receiver.task
1472 || get_t_state(&connection->ack_receiver) != RUNNING
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001473 || connection->cstate < C_WF_REPORT_PARAMS;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001474
1475 if (drop_it)
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001476 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001477
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001478 drop_it = !--connection->ko_count;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001479 if (!drop_it) {
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +02001480 drbd_err(connection, "[%s/%d] sock_sendmsg time expired, ko = %u\n",
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001481 current->comm, current->pid, connection->ko_count);
1482 request_ping(connection);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001483 }
1484
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001485 return drop_it; /* && (device->state == R_PRIMARY) */;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001486}
1487
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001488static void drbd_update_congested(struct drbd_connection *connection)
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001489{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001490 struct sock *sk = connection->data.socket->sk;
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001491 if (sk->sk_wmem_queued > sk->sk_sndbuf * 4 / 5)
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001492 set_bit(NET_CONGESTED, &connection->flags);
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001493}
1494
Philipp Reisnerb411b362009-09-25 16:07:19 -07001495/* The idea of sendpage seems to be to put some kind of reference
1496 * to the page into the skb, and to hand it over to the NIC. In
1497 * this process get_page() gets called.
1498 *
1499 * As soon as the page was really sent over the network put_page()
1500 * gets called by some part of the network layer. [ NIC driver? ]
1501 *
1502 * [ get_page() / put_page() increment/decrement the count. If count
1503 * reaches 0 the page will be freed. ]
1504 *
1505 * This works nicely with pages from FSs.
1506 * But this means that in protocol A we might signal IO completion too early!
1507 *
1508 * In order not to corrupt data during a resync we must make sure
1509 * that we do not reuse our own buffer pages (EEs) to early, therefore
1510 * we have the net_ee list.
1511 *
1512 * XFS seems to have problems, still, it submits pages with page_count == 0!
1513 * As a workaround, we disable sendpage on pages
1514 * with page_count == 0 or PageSlab.
1515 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001516static int _drbd_no_send_page(struct drbd_peer_device *peer_device, struct page *page,
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001517 int offset, size_t size, unsigned msg_flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001518{
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001519 struct socket *socket;
1520 void *addr;
1521 int err;
1522
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001523 socket = peer_device->connection->data.socket;
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001524 addr = kmap(page) + offset;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001525 err = drbd_send_all(peer_device->connection, socket, addr, size, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001526 kunmap(page);
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001527 if (!err)
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001528 peer_device->device->send_cnt += size >> 9;
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001529 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001530}
1531
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001532static int _drbd_send_page(struct drbd_peer_device *peer_device, struct page *page,
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001533 int offset, size_t size, unsigned msg_flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001534{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001535 struct socket *socket = peer_device->connection->data.socket;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001536 int len = size;
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001537 int err = -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001538
1539 /* e.g. XFS meta- & log-data is in slab pages, which have a
1540 * page_count of 0 and/or have PageSlab() set.
1541 * we cannot use send_page for those, as that does get_page();
1542 * put_page(); and would cause either a VM_BUG directly, or
1543 * __page_cache_release a page that would actually still be referenced
1544 * by someone, leading to some obscure delayed Oops somewhere else. */
Coly Lifb25ebe2020-10-02 16:27:32 +08001545 if (drbd_disable_sendpage || !sendpage_ok(page))
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001546 return _drbd_no_send_page(peer_device, page, offset, size, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001547
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001548 msg_flags |= MSG_NOSIGNAL;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001549 drbd_update_congested(peer_device->connection);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001550 do {
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001551 int sent;
1552
1553 sent = socket->ops->sendpage(socket, page, offset, len, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001554 if (sent <= 0) {
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001555 if (sent == -EAGAIN) {
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001556 if (we_should_drop_the_connection(peer_device->connection, socket))
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001557 break;
1558 continue;
1559 }
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001560 drbd_warn(peer_device->device, "%s: size=%d len=%d sent=%d\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -07001561 __func__, (int)size, len, sent);
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001562 if (sent < 0)
1563 err = sent;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001564 break;
1565 }
1566 len -= sent;
1567 offset += sent;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001568 } while (len > 0 /* THINK && device->cstate >= C_CONNECTED*/);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001569 clear_bit(NET_CONGESTED, &peer_device->connection->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001570
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001571 if (len == 0) {
1572 err = 0;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001573 peer_device->device->send_cnt += size >> 9;
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001574 }
1575 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001576}
1577
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001578static int _drbd_send_bio(struct drbd_peer_device *peer_device, struct bio *bio)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001579{
Kent Overstreet79886132013-11-23 17:19:00 -08001580 struct bio_vec bvec;
1581 struct bvec_iter iter;
1582
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001583 /* hint all but last page with MSG_MORE */
Kent Overstreet79886132013-11-23 17:19:00 -08001584 bio_for_each_segment(bvec, bio, iter) {
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001585 int err;
1586
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001587 err = _drbd_no_send_page(peer_device, bvec.bv_page,
Kent Overstreet79886132013-11-23 17:19:00 -08001588 bvec.bv_offset, bvec.bv_len,
Kent Overstreet4550dd62013-08-07 14:26:21 -07001589 bio_iter_last(bvec, iter)
Kent Overstreet79886132013-11-23 17:19:00 -08001590 ? 0 : MSG_MORE);
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001591 if (err)
1592 return err;
Lars Ellenberg9104d312016-06-14 00:26:31 +02001593 /* REQ_OP_WRITE_SAME has only one segment */
1594 if (bio_op(bio) == REQ_OP_WRITE_SAME)
1595 break;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001596 }
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001597 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001598}
1599
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001600static int _drbd_send_zc_bio(struct drbd_peer_device *peer_device, struct bio *bio)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001601{
Kent Overstreet79886132013-11-23 17:19:00 -08001602 struct bio_vec bvec;
1603 struct bvec_iter iter;
1604
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001605 /* hint all but last page with MSG_MORE */
Kent Overstreet79886132013-11-23 17:19:00 -08001606 bio_for_each_segment(bvec, bio, iter) {
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001607 int err;
1608
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001609 err = _drbd_send_page(peer_device, bvec.bv_page,
Kent Overstreet79886132013-11-23 17:19:00 -08001610 bvec.bv_offset, bvec.bv_len,
Kent Overstreet4550dd62013-08-07 14:26:21 -07001611 bio_iter_last(bvec, iter) ? 0 : MSG_MORE);
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001612 if (err)
1613 return err;
Lars Ellenberg9104d312016-06-14 00:26:31 +02001614 /* REQ_OP_WRITE_SAME has only one segment */
1615 if (bio_op(bio) == REQ_OP_WRITE_SAME)
1616 break;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001617 }
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001618 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001619}
1620
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001621static int _drbd_send_zc_ee(struct drbd_peer_device *peer_device,
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001622 struct drbd_peer_request *peer_req)
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001623{
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001624 struct page *page = peer_req->pages;
1625 unsigned len = peer_req->i.size;
Andreas Gruenbacher9f692302011-03-16 10:49:09 +01001626 int err;
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001627
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001628 /* hint all but last page with MSG_MORE */
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001629 page_chain_for_each(page) {
1630 unsigned l = min_t(unsigned, len, PAGE_SIZE);
Andreas Gruenbacher9f692302011-03-16 10:49:09 +01001631
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001632 err = _drbd_send_page(peer_device, page, 0, l,
Andreas Gruenbacher9f692302011-03-16 10:49:09 +01001633 page_chain_next(page) ? MSG_MORE : 0);
1634 if (err)
1635 return err;
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001636 len -= l;
1637 }
Andreas Gruenbacher9f692302011-03-16 10:49:09 +01001638 return 0;
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001639}
1640
Mike Christiebb3cc852016-06-05 14:32:06 -05001641static u32 bio_flags_to_wire(struct drbd_connection *connection,
1642 struct bio *bio)
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001643{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001644 if (connection->agreed_pro_version >= 95)
Jens Axboe1eff9d32016-08-05 15:35:16 -06001645 return (bio->bi_opf & REQ_SYNC ? DP_RW_SYNC : 0) |
1646 (bio->bi_opf & REQ_FUA ? DP_FUA : 0) |
1647 (bio->bi_opf & REQ_PREFLUSH ? DP_FLUSH : 0) |
Lars Ellenberg9104d312016-06-14 00:26:31 +02001648 (bio_op(bio) == REQ_OP_WRITE_SAME ? DP_WSAME : 0) |
Christoph Hellwig45c21792017-04-05 19:21:22 +02001649 (bio_op(bio) == REQ_OP_DISCARD ? DP_DISCARD : 0) |
Lars Ellenbergf31e5832018-12-20 17:23:42 +01001650 (bio_op(bio) == REQ_OP_WRITE_ZEROES ?
1651 ((connection->agreed_features & DRBD_FF_WZEROES) ?
1652 (DP_ZEROES |(!(bio->bi_opf & REQ_NOUNMAP) ? DP_DISCARD : 0))
1653 : DP_DISCARD)
1654 : 0);
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001655 else
Jens Axboe1eff9d32016-08-05 15:35:16 -06001656 return bio->bi_opf & REQ_SYNC ? DP_RW_SYNC : 0;
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001657}
1658
Bart Van Assche93054552018-10-03 13:56:25 -07001659/* Used to send write or TRIM aka REQ_OP_DISCARD requests
Lars Ellenberg2f632ae2014-04-28 18:43:24 +02001660 * R_PRIMARY -> Peer (P_DATA, P_TRIM)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001661 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001662int drbd_send_dblock(struct drbd_peer_device *peer_device, struct drbd_request *req)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001663{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001664 struct drbd_device *device = peer_device->device;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001665 struct drbd_socket *sock;
1666 struct p_data *p;
Lars Ellenberg9104d312016-06-14 00:26:31 +02001667 struct p_wsame *wsame = NULL;
1668 void *digest_out;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001669 unsigned int dp_flags = 0;
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001670 int digest_size;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001671 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001672
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001673 sock = &peer_device->connection->data;
1674 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001675 digest_size = peer_device->connection->integrity_tfm ?
Kees Cook3d0e6372018-08-06 16:32:16 -07001676 crypto_shash_digestsize(peer_device->connection->integrity_tfm) : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001677
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001678 if (!p)
1679 return -EIO;
1680 p->sector = cpu_to_be64(req->i.sector);
1681 p->block_id = (unsigned long)req;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001682 p->seq_num = cpu_to_be32(atomic_inc_return(&device->packet_seq));
Mike Christiebb3cc852016-06-05 14:32:06 -05001683 dp_flags = bio_flags_to_wire(peer_device->connection, req->master_bio);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001684 if (device->state.conn >= C_SYNC_SOURCE &&
1685 device->state.conn <= C_PAUSED_SYNC_T)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001686 dp_flags |= DP_MAY_SET_IN_SYNC;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001687 if (peer_device->connection->agreed_pro_version >= 100) {
Philipp Reisner303d1442011-04-13 16:24:47 -07001688 if (req->rq_state & RQ_EXP_RECEIVE_ACK)
1689 dp_flags |= DP_SEND_RECEIVE_ACK;
Lars Ellenberg08d0dab2014-03-20 11:19:22 +01001690 /* During resync, request an explicit write ack,
1691 * even in protocol != C */
1692 if (req->rq_state & RQ_EXP_WRITE_ACK
1693 || (dp_flags & DP_MAY_SET_IN_SYNC))
Philipp Reisner303d1442011-04-13 16:24:47 -07001694 dp_flags |= DP_SEND_WRITE_ACK;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001695 }
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001696 p->dp_flags = cpu_to_be32(dp_flags);
Lars Ellenberg2f632ae2014-04-28 18:43:24 +02001697
Lars Ellenbergf31e5832018-12-20 17:23:42 +01001698 if (dp_flags & (DP_DISCARD|DP_ZEROES)) {
1699 enum drbd_packet cmd = (dp_flags & DP_ZEROES) ? P_ZEROES : P_TRIM;
Lars Ellenberg2f632ae2014-04-28 18:43:24 +02001700 struct p_trim *t = (struct p_trim*)p;
1701 t->size = cpu_to_be32(req->i.size);
Lars Ellenbergf31e5832018-12-20 17:23:42 +01001702 err = __send_command(peer_device->connection, device->vnr, sock, cmd, sizeof(*t), NULL, 0);
Lars Ellenberg2f632ae2014-04-28 18:43:24 +02001703 goto out;
1704 }
Lars Ellenberg9104d312016-06-14 00:26:31 +02001705 if (dp_flags & DP_WSAME) {
1706 /* this will only work if DRBD_FF_WSAME is set AND the
1707 * handshake agreed that all nodes and backend devices are
1708 * WRITE_SAME capable and agree on logical_block_size */
1709 wsame = (struct p_wsame*)p;
1710 digest_out = wsame + 1;
1711 wsame->size = cpu_to_be32(req->i.size);
1712 } else
1713 digest_out = p + 1;
Lars Ellenberg2f632ae2014-04-28 18:43:24 +02001714
1715 /* our digest is still only over the payload.
1716 * TRIM does not carry any payload. */
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001717 if (digest_size)
Lars Ellenberg9104d312016-06-14 00:26:31 +02001718 drbd_csum_bio(peer_device->connection->integrity_tfm, req->master_bio, digest_out);
1719 if (wsame) {
1720 err =
1721 __send_command(peer_device->connection, device->vnr, sock, P_WSAME,
1722 sizeof(*wsame) + digest_size, NULL,
1723 bio_iovec(req->master_bio).bv_len);
1724 } else
1725 err =
1726 __send_command(peer_device->connection, device->vnr, sock, P_DATA,
1727 sizeof(*p) + digest_size, NULL, req->i.size);
Andreas Gruenbacher6bdb9b02011-03-16 11:52:58 +01001728 if (!err) {
Lars Ellenberg470be442010-11-10 10:36:52 +01001729 /* For protocol A, we have to memcpy the payload into
1730 * socket buffers, as we may complete right away
1731 * as soon as we handed it over to tcp, at which point the data
1732 * pages may become invalid.
1733 *
1734 * For data-integrity enabled, we copy it as well, so we can be
1735 * sure that even if the bio pages may still be modified, it
1736 * won't change the data on the wire, thus if the digest checks
1737 * out ok after sending on this side, but does not fit on the
1738 * receiving side, we sure have detected corruption elsewhere.
1739 */
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001740 if (!(req->rq_state & (RQ_EXP_RECEIVE_ACK | RQ_EXP_WRITE_ACK)) || digest_size)
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001741 err = _drbd_send_bio(peer_device, req->master_bio);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001742 else
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001743 err = _drbd_send_zc_bio(peer_device, req->master_bio);
Lars Ellenberg470be442010-11-10 10:36:52 +01001744
1745 /* double check digest, sometimes buffers have been modified in flight. */
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001746 if (digest_size > 0 && digest_size <= 64) {
Bart Van Assche24c48302011-05-21 18:32:29 +02001747 /* 64 byte, 512 bit, is the largest digest size
Lars Ellenberg470be442010-11-10 10:36:52 +01001748 * currently supported in kernel crypto. */
1749 unsigned char digest[64];
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001750 drbd_csum_bio(peer_device->connection->integrity_tfm, req->master_bio, digest);
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001751 if (memcmp(p + 1, digest, digest_size)) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001752 drbd_warn(device,
Lars Ellenberg470be442010-11-10 10:36:52 +01001753 "Digest mismatch, buffer modified by upper layers during write: %llus +%u\n",
Andreas Gruenbacherace652a2011-01-03 17:09:58 +01001754 (unsigned long long)req->i.sector, req->i.size);
Lars Ellenberg470be442010-11-10 10:36:52 +01001755 }
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001756 } /* else if (digest_size > 64) {
Lars Ellenberg470be442010-11-10 10:36:52 +01001757 ... Be noisy about digest too large ...
1758 } */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001759 }
Lars Ellenberg2f632ae2014-04-28 18:43:24 +02001760out:
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001761 mutex_unlock(&sock->mutex); /* locked by drbd_prepare_command() */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001762
Andreas Gruenbacher6bdb9b02011-03-16 11:52:58 +01001763 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001764}
1765
1766/* answer packet, used to send data back for read requests:
1767 * Peer -> (diskless) R_PRIMARY (P_DATA_REPLY)
1768 * C_SYNC_SOURCE -> C_SYNC_TARGET (P_RS_DATA_REPLY)
1769 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001770int drbd_send_block(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001771 struct drbd_peer_request *peer_req)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001772{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001773 struct drbd_device *device = peer_device->device;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001774 struct drbd_socket *sock;
1775 struct p_data *p;
Andreas Gruenbacher7b57b89d2011-03-16 11:35:20 +01001776 int err;
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001777 int digest_size;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001778
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001779 sock = &peer_device->connection->data;
1780 p = drbd_prepare_command(peer_device, sock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001781
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001782 digest_size = peer_device->connection->integrity_tfm ?
Kees Cook3d0e6372018-08-06 16:32:16 -07001783 crypto_shash_digestsize(peer_device->connection->integrity_tfm) : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001784
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001785 if (!p)
1786 return -EIO;
1787 p->sector = cpu_to_be64(peer_req->i.sector);
1788 p->block_id = peer_req->block_id;
1789 p->seq_num = 0; /* unused */
Lars Ellenbergb17f33c2012-02-08 15:32:51 +01001790 p->dp_flags = 0;
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001791 if (digest_size)
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001792 drbd_csum_ee(peer_device->connection->integrity_tfm, peer_req, p + 1);
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001793 err = __send_command(peer_device->connection, device->vnr, sock, cmd, sizeof(*p) + digest_size, NULL, peer_req->i.size);
Andreas Gruenbacher7b57b89d2011-03-16 11:35:20 +01001794 if (!err)
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001795 err = _drbd_send_zc_ee(peer_device, peer_req);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001796 mutex_unlock(&sock->mutex); /* locked by drbd_prepare_command() */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001797
Andreas Gruenbacher7b57b89d2011-03-16 11:35:20 +01001798 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001799}
1800
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001801int drbd_send_out_of_sync(struct drbd_peer_device *peer_device, struct drbd_request *req)
Philipp Reisner73a01a12010-10-27 14:33:00 +02001802{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001803 struct drbd_socket *sock;
1804 struct p_block_desc *p;
Philipp Reisner73a01a12010-10-27 14:33:00 +02001805
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001806 sock = &peer_device->connection->data;
1807 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001808 if (!p)
1809 return -EIO;
1810 p->sector = cpu_to_be64(req->i.sector);
1811 p->blksize = cpu_to_be32(req->i.size);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001812 return drbd_send_command(peer_device, sock, P_OUT_OF_SYNC, sizeof(*p), NULL, 0);
Philipp Reisner73a01a12010-10-27 14:33:00 +02001813}
1814
Philipp Reisnerb411b362009-09-25 16:07:19 -07001815/*
1816 drbd_send distinguishes two cases:
1817
1818 Packets sent via the data socket "sock"
1819 and packets sent via the meta data socket "msock"
1820
1821 sock msock
1822 -----------------+-------------------------+------------------------------
1823 timeout conf.timeout / 2 conf.timeout / 2
1824 timeout action send a ping via msock Abort communication
1825 and close all sockets
1826*/
1827
1828/*
1829 * you must have down()ed the appropriate [m]sock_mutex elsewhere!
1830 */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001831int drbd_send(struct drbd_connection *connection, struct socket *sock,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001832 void *buf, size_t size, unsigned msg_flags)
1833{
Al Viro79ab80b2014-12-10 17:06:38 -05001834 struct kvec iov = {.iov_base = buf, .iov_len = size};
Al Virof7765c32017-09-20 20:05:43 -04001835 struct msghdr msg = {.msg_flags = msg_flags | MSG_NOSIGNAL};
Philipp Reisnerb411b362009-09-25 16:07:19 -07001836 int rv, sent = 0;
1837
1838 if (!sock)
Andreas Gruenbacherc0d42c82010-12-09 23:52:22 +01001839 return -EBADR;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001840
1841 /* THINK if (signal_pending) return ... ? */
1842
David Howellsaa563d72018-10-20 00:57:56 +01001843 iov_iter_kvec(&msg.msg_iter, WRITE, &iov, 1, size);
Al Viro79ab80b2014-12-10 17:06:38 -05001844
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001845 if (sock == connection->data.socket) {
Philipp Reisner44ed1672011-04-19 17:10:19 +02001846 rcu_read_lock();
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001847 connection->ko_count = rcu_dereference(connection->net_conf)->ko_count;
Philipp Reisner44ed1672011-04-19 17:10:19 +02001848 rcu_read_unlock();
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001849 drbd_update_congested(connection);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001850 }
1851 do {
Al Viro79ab80b2014-12-10 17:06:38 -05001852 rv = sock_sendmsg(sock, &msg);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001853 if (rv == -EAGAIN) {
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001854 if (we_should_drop_the_connection(connection, sock))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001855 break;
1856 else
1857 continue;
1858 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001859 if (rv == -EINTR) {
1860 flush_signals(current);
1861 rv = 0;
1862 }
1863 if (rv < 0)
1864 break;
1865 sent += rv;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001866 } while (sent < size);
1867
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001868 if (sock == connection->data.socket)
1869 clear_bit(NET_CONGESTED, &connection->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001870
1871 if (rv <= 0) {
1872 if (rv != -EAGAIN) {
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +02001873 drbd_err(connection, "%s_sendmsg returned %d\n",
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001874 sock == connection->meta.socket ? "msock" : "sock",
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001875 rv);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001876 conn_request_state(connection, NS(conn, C_BROKEN_PIPE), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001877 } else
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001878 conn_request_state(connection, NS(conn, C_TIMEOUT), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001879 }
1880
1881 return sent;
1882}
1883
Lee Jones584164c2021-03-12 10:55:27 +00001884/*
Andreas Gruenbacherfb708e42010-12-15 17:04:36 +01001885 * drbd_send_all - Send an entire buffer
1886 *
1887 * Returns 0 upon success and a negative error value otherwise.
1888 */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001889int drbd_send_all(struct drbd_connection *connection, struct socket *sock, void *buffer,
Andreas Gruenbacherfb708e42010-12-15 17:04:36 +01001890 size_t size, unsigned msg_flags)
1891{
1892 int err;
1893
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001894 err = drbd_send(connection, sock, buffer, size, msg_flags);
Andreas Gruenbacherfb708e42010-12-15 17:04:36 +01001895 if (err < 0)
1896 return err;
1897 if (err != size)
1898 return -EIO;
1899 return 0;
1900}
1901
Philipp Reisnerb411b362009-09-25 16:07:19 -07001902static int drbd_open(struct block_device *bdev, fmode_t mode)
1903{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001904 struct drbd_device *device = bdev->bd_disk->private_data;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001905 unsigned long flags;
1906 int rv = 0;
1907
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001908 mutex_lock(&drbd_main_mutex);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001909 spin_lock_irqsave(&device->resource->req_lock, flags);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001910 /* to have a stable device->state.role
Philipp Reisnerb411b362009-09-25 16:07:19 -07001911 * and no race with updating open_cnt */
1912
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001913 if (device->state.role != R_PRIMARY) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001914 if (mode & FMODE_WRITE)
1915 rv = -EROFS;
Roland Kammerer183ece32017-08-29 10:20:46 +02001916 else if (!drbd_allow_oos)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001917 rv = -EMEDIUMTYPE;
1918 }
1919
1920 if (!rv)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001921 device->open_cnt++;
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001922 spin_unlock_irqrestore(&device->resource->req_lock, flags);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001923 mutex_unlock(&drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001924
1925 return rv;
1926}
1927
Al Virodb2a1442013-05-05 21:52:57 -04001928static void drbd_release(struct gendisk *gd, fmode_t mode)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001929{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001930 struct drbd_device *device = gd->private_data;
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001931 mutex_lock(&drbd_main_mutex);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001932 device->open_cnt--;
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001933 mutex_unlock(&drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001934}
1935
Lars Ellenbergc51a0ef2017-08-29 10:20:32 +02001936/* need to hold resource->req_lock */
1937void drbd_queue_unplug(struct drbd_device *device)
1938{
1939 if (device->state.pdsk >= D_INCONSISTENT && device->state.conn >= C_CONNECTED) {
1940 D_ASSERT(device, device->state.role == R_PRIMARY);
1941 if (test_and_clear_bit(UNPLUG_REMOTE, &device->flags)) {
1942 drbd_queue_work_if_unqueued(
1943 &first_peer_device(device)->connection->sender_work,
1944 &device->unplug_work);
1945 }
1946 }
1947}
1948
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001949static void drbd_set_defaults(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001950{
Lars Ellenbergf3990022011-03-23 14:31:09 +01001951 /* Beware! The actual layout differs
1952 * between big endian and little endian */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001953 device->state = (union drbd_dev_state) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001954 { .role = R_SECONDARY,
1955 .peer = R_UNKNOWN,
1956 .conn = C_STANDALONE,
1957 .disk = D_DISKLESS,
1958 .pdsk = D_UNKNOWN,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001959 } };
1960}
1961
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001962void drbd_init_set_defaults(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001963{
1964 /* the memset(,0,) did most of this.
1965 * note: only assignments, no allocation in here */
1966
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001967 drbd_set_defaults(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001968
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001969 atomic_set(&device->ap_bio_cnt, 0);
Lars Ellenbergad3fee72013-12-20 11:22:13 +01001970 atomic_set(&device->ap_actlog_cnt, 0);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001971 atomic_set(&device->ap_pending_cnt, 0);
1972 atomic_set(&device->rs_pending_cnt, 0);
1973 atomic_set(&device->unacked_cnt, 0);
1974 atomic_set(&device->local_cnt, 0);
1975 atomic_set(&device->pp_in_use_by_net, 0);
1976 atomic_set(&device->rs_sect_in, 0);
1977 atomic_set(&device->rs_sect_ev, 0);
1978 atomic_set(&device->ap_in_flight, 0);
Lars Ellenberge37d2432014-04-01 23:53:30 +02001979 atomic_set(&device->md_io.in_use, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001980
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001981 mutex_init(&device->own_state_mutex);
1982 device->state_mutex = &device->own_state_mutex;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001983
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001984 spin_lock_init(&device->al_lock);
1985 spin_lock_init(&device->peer_seq_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001986
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001987 INIT_LIST_HEAD(&device->active_ee);
1988 INIT_LIST_HEAD(&device->sync_ee);
1989 INIT_LIST_HEAD(&device->done_ee);
1990 INIT_LIST_HEAD(&device->read_ee);
1991 INIT_LIST_HEAD(&device->net_ee);
1992 INIT_LIST_HEAD(&device->resync_reads);
1993 INIT_LIST_HEAD(&device->resync_work.list);
1994 INIT_LIST_HEAD(&device->unplug_work.list);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001995 INIT_LIST_HEAD(&device->bm_io_work.w.list);
Lars Ellenberg844a6ae72013-11-22 12:52:03 +01001996 INIT_LIST_HEAD(&device->pending_master_completion[0]);
1997 INIT_LIST_HEAD(&device->pending_master_completion[1]);
1998 INIT_LIST_HEAD(&device->pending_completion[0]);
1999 INIT_LIST_HEAD(&device->pending_completion[1]);
Philipp Reisner0ced55a2010-04-30 15:26:20 +02002000
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002001 device->resync_work.cb = w_resync_timer;
2002 device->unplug_work.cb = w_send_write_hint;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002003 device->bm_io_work.w.cb = w_bitmap_io;
Philipp Reisnera21e9292011-02-08 15:08:49 +01002004
Kees Cook2bccef32017-10-17 20:33:01 -07002005 timer_setup(&device->resync_timer, resync_timer_fn, 0);
2006 timer_setup(&device->md_sync_timer, md_sync_timer_fn, 0);
2007 timer_setup(&device->start_resync_timer, start_resync_timer_fn, 0);
2008 timer_setup(&device->request_timer, request_timer_fn, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002009
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002010 init_waitqueue_head(&device->misc_wait);
2011 init_waitqueue_head(&device->state_wait);
2012 init_waitqueue_head(&device->ee_wait);
2013 init_waitqueue_head(&device->al_wait);
2014 init_waitqueue_head(&device->seq_wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002015
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002016 device->resync_wenr = LC_FREE;
2017 device->peer_max_bio_size = DRBD_MAX_BIO_SIZE_SAFE;
2018 device->local_max_bio_size = DRBD_MAX_BIO_SIZE_SAFE;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002019}
2020
Lars Ellenbergd5412e82018-12-20 17:23:30 +01002021void drbd_set_my_capacity(struct drbd_device *device, sector_t size)
2022{
2023 char ppb[10];
Christoph Hellwig155bd9d2020-09-25 18:06:17 +02002024
Christoph Hellwigbc254eb2020-11-16 15:57:06 +01002025 set_capacity_and_notify(device->vdisk, size);
Christoph Hellwig155bd9d2020-09-25 18:06:17 +02002026
Lars Ellenbergd5412e82018-12-20 17:23:30 +01002027 drbd_info(device, "size = %s (%llu KB)\n",
2028 ppsize(ppb, size>>1), (unsigned long long)size>>1);
2029}
2030
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002031void drbd_device_cleanup(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002032{
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02002033 int i;
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02002034 if (first_peer_device(device)->connection->receiver.t_state != NONE)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002035 drbd_err(device, "ASSERT FAILED: receiver t_state == %d expected 0.\n",
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02002036 first_peer_device(device)->connection->receiver.t_state);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002037
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002038 device->al_writ_cnt =
2039 device->bm_writ_cnt =
2040 device->read_cnt =
2041 device->recv_cnt =
2042 device->send_cnt =
2043 device->writ_cnt =
2044 device->p_size =
2045 device->rs_start =
2046 device->rs_total =
2047 device->rs_failed = 0;
2048 device->rs_last_events = 0;
2049 device->rs_last_sect_ev = 0;
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02002050 for (i = 0; i < DRBD_SYNC_MARKS; i++) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002051 device->rs_mark_left[i] = 0;
2052 device->rs_mark_time[i] = 0;
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02002053 }
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02002054 D_ASSERT(device, first_peer_device(device)->connection->net_conf == NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002055
Christoph Hellwigbc254eb2020-11-16 15:57:06 +01002056 set_capacity_and_notify(device->vdisk, 0);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002057 if (device->bitmap) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002058 /* maybe never allocated. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002059 drbd_bm_resize(device, 0, 1);
2060 drbd_bm_cleanup(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002061 }
2062
Lars Ellenberg63a7c8a2015-03-26 20:53:55 +01002063 drbd_backing_dev_free(device, device->ldev);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002064 device->ldev = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002065
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002066 clear_bit(AL_SUSPENDED, &device->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002067
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02002068 D_ASSERT(device, list_empty(&device->active_ee));
2069 D_ASSERT(device, list_empty(&device->sync_ee));
2070 D_ASSERT(device, list_empty(&device->done_ee));
2071 D_ASSERT(device, list_empty(&device->read_ee));
2072 D_ASSERT(device, list_empty(&device->net_ee));
2073 D_ASSERT(device, list_empty(&device->resync_reads));
2074 D_ASSERT(device, list_empty(&first_peer_device(device)->connection->sender_work.q));
2075 D_ASSERT(device, list_empty(&device->resync_work.list));
2076 D_ASSERT(device, list_empty(&device->unplug_work.list));
Lars Ellenberg2265b472010-12-16 15:41:26 +01002077
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002078 drbd_set_defaults(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002079}
2080
2081
2082static void drbd_destroy_mempools(void)
2083{
2084 struct page *page;
2085
2086 while (drbd_pp_pool) {
2087 page = drbd_pp_pool;
2088 drbd_pp_pool = (struct page *)page_private(page);
2089 __free_page(page);
2090 drbd_pp_vacant--;
2091 }
2092
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02002093 /* D_ASSERT(device, atomic_read(&drbd_pp_vacant)==0); */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002094
Kent Overstreet0892fac2018-05-20 18:25:48 -04002095 bioset_exit(&drbd_io_bio_set);
2096 bioset_exit(&drbd_md_io_bio_set);
2097 mempool_exit(&drbd_md_io_page_pool);
2098 mempool_exit(&drbd_ee_mempool);
2099 mempool_exit(&drbd_request_mempool);
zhong jianga12fc002018-08-08 23:22:47 +08002100 kmem_cache_destroy(drbd_ee_cache);
2101 kmem_cache_destroy(drbd_request_cache);
2102 kmem_cache_destroy(drbd_bm_ext_cache);
2103 kmem_cache_destroy(drbd_al_ext_cache);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002104
Philipp Reisnerb411b362009-09-25 16:07:19 -07002105 drbd_ee_cache = NULL;
2106 drbd_request_cache = NULL;
2107 drbd_bm_ext_cache = NULL;
2108 drbd_al_ext_cache = NULL;
2109
2110 return;
2111}
2112
2113static int drbd_create_mempools(void)
2114{
2115 struct page *page;
Roland Kammerer183ece32017-08-29 10:20:46 +02002116 const int number = (DRBD_MAX_BIO_SIZE/PAGE_SIZE) * drbd_minor_count;
Kent Overstreet0892fac2018-05-20 18:25:48 -04002117 int i, ret;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002118
2119 /* caches */
2120 drbd_request_cache = kmem_cache_create(
2121 "drbd_req", sizeof(struct drbd_request), 0, 0, NULL);
2122 if (drbd_request_cache == NULL)
2123 goto Enomem;
2124
2125 drbd_ee_cache = kmem_cache_create(
Andreas Gruenbacherf6ffca92011-02-04 15:30:34 +01002126 "drbd_ee", sizeof(struct drbd_peer_request), 0, 0, NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002127 if (drbd_ee_cache == NULL)
2128 goto Enomem;
2129
2130 drbd_bm_ext_cache = kmem_cache_create(
2131 "drbd_bm", sizeof(struct bm_extent), 0, 0, NULL);
2132 if (drbd_bm_ext_cache == NULL)
2133 goto Enomem;
2134
2135 drbd_al_ext_cache = kmem_cache_create(
2136 "drbd_al", sizeof(struct lc_element), 0, 0, NULL);
2137 if (drbd_al_ext_cache == NULL)
2138 goto Enomem;
2139
2140 /* mempools */
Kent Overstreet0892fac2018-05-20 18:25:48 -04002141 ret = bioset_init(&drbd_io_bio_set, BIO_POOL_SIZE, 0, 0);
2142 if (ret)
NeilBrown8cb0def2017-06-18 14:38:58 +10002143 goto Enomem;
2144
Kent Overstreet0892fac2018-05-20 18:25:48 -04002145 ret = bioset_init(&drbd_md_io_bio_set, DRBD_MIN_POOL_PAGES, 0,
2146 BIOSET_NEED_BVECS);
2147 if (ret)
Lars Ellenberg9476f392011-02-23 17:02:01 +01002148 goto Enomem;
Lars Ellenberg9476f392011-02-23 17:02:01 +01002149
Kent Overstreet0892fac2018-05-20 18:25:48 -04002150 ret = mempool_init_page_pool(&drbd_md_io_page_pool, DRBD_MIN_POOL_PAGES, 0);
2151 if (ret)
Lars Ellenberg42818082011-02-23 12:39:46 +01002152 goto Enomem;
2153
Kent Overstreet0892fac2018-05-20 18:25:48 -04002154 ret = mempool_init_slab_pool(&drbd_request_mempool, number,
2155 drbd_request_cache);
2156 if (ret)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002157 goto Enomem;
2158
Kent Overstreet0892fac2018-05-20 18:25:48 -04002159 ret = mempool_init_slab_pool(&drbd_ee_mempool, number, drbd_ee_cache);
2160 if (ret)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002161 goto Enomem;
2162
Philipp Reisnerb411b362009-09-25 16:07:19 -07002163 for (i = 0; i < number; i++) {
2164 page = alloc_page(GFP_HIGHUSER);
2165 if (!page)
2166 goto Enomem;
2167 set_page_private(page, (unsigned long)drbd_pp_pool);
2168 drbd_pp_pool = page;
2169 }
2170 drbd_pp_vacant = number;
2171
2172 return 0;
2173
2174Enomem:
2175 drbd_destroy_mempools(); /* in case we allocated some */
2176 return -ENOMEM;
2177}
2178
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002179static void drbd_release_all_peer_reqs(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002180{
2181 int rr;
2182
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002183 rr = drbd_free_peer_reqs(device, &device->active_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002184 if (rr)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002185 drbd_err(device, "%d EEs in active list found!\n", rr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002186
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002187 rr = drbd_free_peer_reqs(device, &device->sync_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002188 if (rr)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002189 drbd_err(device, "%d EEs in sync list found!\n", rr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002190
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002191 rr = drbd_free_peer_reqs(device, &device->read_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002192 if (rr)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002193 drbd_err(device, "%d EEs in read list found!\n", rr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002194
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002195 rr = drbd_free_peer_reqs(device, &device->done_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002196 if (rr)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002197 drbd_err(device, "%d EEs in done list found!\n", rr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002198
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002199 rr = drbd_free_peer_reqs(device, &device->net_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002200 if (rr)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002201 drbd_err(device, "%d EEs in net list found!\n", rr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002202}
2203
Philipp Reisner774b3052011-02-22 02:07:03 -05002204/* caution. no locking. */
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +02002205void drbd_destroy_device(struct kref *kref)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002206{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002207 struct drbd_device *device = container_of(kref, struct drbd_device, kref);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002208 struct drbd_resource *resource = device->resource;
Lars Ellenberga8ba0d62014-05-14 21:34:47 +02002209 struct drbd_peer_device *peer_device, *tmp_peer_device;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002210
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002211 del_timer_sync(&device->request_timer);
Philipp Reisnerdfa8bed2011-06-29 14:06:08 +02002212
Philipp Reisnerb411b362009-09-25 16:07:19 -07002213 /* paranoia asserts */
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02002214 D_ASSERT(device, device->open_cnt == 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002215 /* end paranoia asserts */
2216
Philipp Reisnerb411b362009-09-25 16:07:19 -07002217 /* cleanup stuff that may have been allocated during
2218 * device (re-)configuration or state changes */
2219
Lars Ellenberg63a7c8a2015-03-26 20:53:55 +01002220 drbd_backing_dev_free(device, device->ldev);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002221 device->ldev = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002222
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002223 drbd_release_all_peer_reqs(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002224
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002225 lc_destroy(device->act_log);
2226 lc_destroy(device->resync);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002227
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002228 kfree(device->p_uuid);
2229 /* device->p_uuid = NULL; */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002230
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002231 if (device->bitmap) /* should no longer be there. */
2232 drbd_bm_cleanup(device);
Lars Ellenberge37d2432014-04-01 23:53:30 +02002233 __free_page(device->md_io.page);
Christoph Hellwigb647ad02021-05-21 07:50:57 +02002234 blk_cleanup_disk(device->vdisk);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002235 kfree(device->rs_plan_s);
Lars Ellenberga8ba0d62014-05-14 21:34:47 +02002236
2237 /* not for_each_connection(connection, resource):
2238 * those may have been cleaned up and disassociated already.
2239 */
2240 for_each_peer_device_safe(peer_device, tmp_peer_device, device) {
2241 kref_put(&peer_device->connection->kref, drbd_destroy_connection);
2242 kfree(peer_device);
2243 }
Lars Ellenbergc2258ff2014-05-14 21:35:21 +02002244 memset(device, 0xfd, sizeof(*device));
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002245 kfree(device);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002246 kref_put(&resource->kref, drbd_destroy_resource);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002247}
2248
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002249/* One global retry thread, if we need to push back some bio and have it
2250 * reinserted through our make request function.
2251 */
2252static struct retry_worker {
2253 struct workqueue_struct *wq;
2254 struct work_struct worker;
2255
2256 spinlock_t lock;
2257 struct list_head writes;
2258} retry;
2259
2260static void do_retry(struct work_struct *ws)
2261{
2262 struct retry_worker *retry = container_of(ws, struct retry_worker, worker);
2263 LIST_HEAD(writes);
2264 struct drbd_request *req, *tmp;
2265
2266 spin_lock_irq(&retry->lock);
2267 list_splice_init(&retry->writes, &writes);
2268 spin_unlock_irq(&retry->lock);
2269
2270 list_for_each_entry_safe(req, tmp, &writes, tl_requests) {
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02002271 struct drbd_device *device = req->device;
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002272 struct bio *bio = req->master_bio;
Lars Ellenberg9a278a72012-07-24 10:12:36 +02002273 bool expected;
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002274
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02002275 expected =
Lars Ellenberg9a278a72012-07-24 10:12:36 +02002276 expect(atomic_read(&req->completion_ref) == 0) &&
2277 expect(req->rq_state & RQ_POSTPONED) &&
2278 expect((req->rq_state & RQ_LOCAL_PENDING) == 0 ||
2279 (req->rq_state & RQ_LOCAL_ABORTED) != 0);
2280
2281 if (!expected)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002282 drbd_err(device, "req=%p completion_ref=%d rq_state=%x\n",
Lars Ellenberg9a278a72012-07-24 10:12:36 +02002283 req, atomic_read(&req->completion_ref),
2284 req->rq_state);
2285
2286 /* We still need to put one kref associated with the
2287 * "completion_ref" going zero in the code path that queued it
2288 * here. The request object may still be referenced by a
2289 * frozen local req->private_bio, in case we force-detached.
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002290 */
Lars Ellenberg9a278a72012-07-24 10:12:36 +02002291 kref_put(&req->kref, drbd_req_destroy);
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002292
2293 /* A single suspended or otherwise blocking device may stall
2294 * all others as well. Fortunately, this code path is to
2295 * recover from a situation that "should not happen":
2296 * concurrent writes in multi-primary setup.
2297 * In a "normal" lifecycle, this workqueue is supposed to be
2298 * destroyed without ever doing anything.
2299 * If it turns out to be an issue anyways, we can do per
2300 * resource (replication group) or per device (minor) retry
2301 * workqueues instead.
2302 */
2303
Christoph Hellwiged00aab2020-07-01 10:59:44 +02002304 /* We are not just doing submit_bio_noacct(),
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002305 * as we want to keep the start_time information. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002306 inc_ap_bio(device);
Guoqing Jiang370276b2021-01-21 15:21:50 +01002307 __drbd_make_request(device, bio);
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002308 }
2309}
2310
Lars Ellenberg844a6ae72013-11-22 12:52:03 +01002311/* called via drbd_req_put_completion_ref(),
2312 * holds resource->req_lock */
Lars Ellenberg9d05e7c2012-07-17 10:05:04 +02002313void drbd_restart_request(struct drbd_request *req)
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002314{
2315 unsigned long flags;
2316 spin_lock_irqsave(&retry.lock, flags);
2317 list_move_tail(&req->tl_requests, &retry.writes);
2318 spin_unlock_irqrestore(&retry.lock, flags);
2319
2320 /* Drop the extra reference that would otherwise
2321 * have been dropped by complete_master_bio.
2322 * do_retry() needs to grab a new one. */
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02002323 dec_ap_bio(req->device);
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002324
2325 queue_work(retry.wq, &retry.worker);
2326}
2327
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002328void drbd_destroy_resource(struct kref *kref)
2329{
2330 struct drbd_resource *resource =
2331 container_of(kref, struct drbd_resource, kref);
2332
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002333 idr_destroy(&resource->devices);
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +02002334 free_cpumask_var(resource->cpu_mask);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002335 kfree(resource->name);
Lars Ellenbergc2258ff2014-05-14 21:35:21 +02002336 memset(resource, 0xf2, sizeof(*resource));
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002337 kfree(resource);
2338}
2339
2340void drbd_free_resource(struct drbd_resource *resource)
2341{
2342 struct drbd_connection *connection, *tmp;
2343
2344 for_each_connection_safe(connection, tmp, resource) {
2345 list_del(&connection->connections);
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002346 drbd_debugfs_connection_cleanup(connection);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002347 kref_put(&connection->kref, drbd_destroy_connection);
2348 }
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002349 drbd_debugfs_resource_cleanup(resource);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002350 kref_put(&resource->kref, drbd_destroy_resource);
2351}
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002352
Philipp Reisnerb411b362009-09-25 16:07:19 -07002353static void drbd_cleanup(void)
2354{
2355 unsigned int i;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002356 struct drbd_device *device;
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002357 struct drbd_resource *resource, *tmp;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002358
Lars Ellenberg17a93f32010-11-24 10:37:35 +01002359 /* first remove proc,
2360 * drbdsetup uses it's presence to detect
2361 * whether DRBD is loaded.
2362 * If we would get stuck in proc removal,
2363 * but have netlink already deregistered,
2364 * some drbdsetup commands may wait forever
2365 * for an answer.
2366 */
2367 if (drbd_proc)
2368 remove_proc_entry("drbd", NULL);
2369
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002370 if (retry.wq)
2371 destroy_workqueue(retry.wq);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002372
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002373 drbd_genl_unregister();
Philipp Reisnerb411b362009-09-25 16:07:19 -07002374
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002375 idr_for_each_entry(&drbd_devices, device, i)
Andreas Gruenbacherf82795d2011-07-03 23:32:26 +02002376 drbd_delete_device(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002377
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002378 /* not _rcu since, no other updater anymore. Genl already unregistered */
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002379 for_each_resource_safe(resource, tmp, &drbd_resources) {
2380 list_del(&resource->resources);
2381 drbd_free_resource(resource);
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002382 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07002383
Lars Ellenberg3f1a1b72017-08-29 10:20:41 +02002384 drbd_debugfs_cleanup();
2385
Philipp Reisner81a5d602011-02-22 19:53:16 -05002386 drbd_destroy_mempools();
Philipp Reisnerb411b362009-09-25 16:07:19 -07002387 unregister_blkdev(DRBD_MAJOR, "drbd");
2388
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +02002389 idr_destroy(&drbd_devices);
Philipp Reisner81a5d602011-02-22 19:53:16 -05002390
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002391 pr_info("module cleanup done.\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07002392}
2393
Philipp Reisner6699b652011-02-09 11:10:24 +01002394static void drbd_init_workqueue(struct drbd_work_queue* wq)
2395{
Philipp Reisner6699b652011-02-09 11:10:24 +01002396 spin_lock_init(&wq->q_lock);
2397 INIT_LIST_HEAD(&wq->q);
Lars Ellenberg8c0785a2011-10-19 11:50:57 +02002398 init_waitqueue_head(&wq->q_wait);
Philipp Reisner6699b652011-02-09 11:10:24 +01002399}
2400
Andreas Gruenbacherb5043c52011-07-28 15:56:02 +02002401struct completion_work {
2402 struct drbd_work w;
2403 struct completion done;
2404};
2405
2406static int w_complete(struct drbd_work *w, int cancel)
2407{
2408 struct completion_work *completion_work =
2409 container_of(w, struct completion_work, w);
2410
2411 complete(&completion_work->done);
2412 return 0;
2413}
2414
2415void drbd_flush_workqueue(struct drbd_work_queue *work_queue)
2416{
2417 struct completion_work completion_work;
2418
2419 completion_work.w.cb = w_complete;
2420 init_completion(&completion_work.done);
2421 drbd_queue_work(work_queue, &completion_work.w);
2422 wait_for_completion(&completion_work.done);
2423}
2424
Andreas Gruenbacher4bc76042011-06-13 14:27:45 +02002425struct drbd_resource *drbd_find_resource(const char *name)
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002426{
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002427 struct drbd_resource *resource;
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002428
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002429 if (!name || !name[0])
2430 return NULL;
2431
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002432 rcu_read_lock();
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002433 for_each_resource_rcu(resource, &drbd_resources) {
2434 if (!strcmp(resource->name, name)) {
Andreas Gruenbacher4bc76042011-06-13 14:27:45 +02002435 kref_get(&resource->kref);
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002436 goto found;
Philipp Reisner0ace9df2011-04-24 10:53:19 +02002437 }
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002438 }
Andreas Gruenbacher4bc76042011-06-13 14:27:45 +02002439 resource = NULL;
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002440found:
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002441 rcu_read_unlock();
Andreas Gruenbacher4bc76042011-06-13 14:27:45 +02002442 return resource;
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002443}
2444
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002445struct drbd_connection *conn_get_by_addrs(void *my_addr, int my_addr_len,
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002446 void *peer_addr, int peer_addr_len)
2447{
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002448 struct drbd_resource *resource;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002449 struct drbd_connection *connection;
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002450
2451 rcu_read_lock();
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002452 for_each_resource_rcu(resource, &drbd_resources) {
2453 for_each_connection_rcu(connection, resource) {
2454 if (connection->my_addr_len == my_addr_len &&
2455 connection->peer_addr_len == peer_addr_len &&
2456 !memcmp(&connection->my_addr, my_addr, my_addr_len) &&
2457 !memcmp(&connection->peer_addr, peer_addr, peer_addr_len)) {
2458 kref_get(&connection->kref);
2459 goto found;
2460 }
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002461 }
2462 }
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002463 connection = NULL;
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002464found:
2465 rcu_read_unlock();
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002466 return connection;
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002467}
2468
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002469static int drbd_alloc_socket(struct drbd_socket *socket)
2470{
2471 socket->rbuf = (void *) __get_free_page(GFP_KERNEL);
2472 if (!socket->rbuf)
2473 return -ENOMEM;
Andreas Gruenbacher5a87d922011-03-24 21:17:52 +01002474 socket->sbuf = (void *) __get_free_page(GFP_KERNEL);
2475 if (!socket->sbuf)
2476 return -ENOMEM;
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002477 return 0;
2478}
2479
2480static void drbd_free_socket(struct drbd_socket *socket)
2481{
Andreas Gruenbacher5a87d922011-03-24 21:17:52 +01002482 free_page((unsigned long) socket->sbuf);
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002483 free_page((unsigned long) socket->rbuf);
2484}
2485
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002486void conn_free_crypto(struct drbd_connection *connection)
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002487{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002488 drbd_free_sock(connection);
Philipp Reisner1d041222011-04-22 15:20:23 +02002489
Kees Cook3d0e6372018-08-06 16:32:16 -07002490 crypto_free_shash(connection->csums_tfm);
2491 crypto_free_shash(connection->verify_tfm);
Herbert Xu9534d672016-01-24 21:19:21 +08002492 crypto_free_shash(connection->cram_hmac_tfm);
Kees Cook3d0e6372018-08-06 16:32:16 -07002493 crypto_free_shash(connection->integrity_tfm);
2494 crypto_free_shash(connection->peer_integrity_tfm);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002495 kfree(connection->int_dig_in);
2496 kfree(connection->int_dig_vv);
Philipp Reisner1d041222011-04-22 15:20:23 +02002497
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002498 connection->csums_tfm = NULL;
2499 connection->verify_tfm = NULL;
2500 connection->cram_hmac_tfm = NULL;
2501 connection->integrity_tfm = NULL;
2502 connection->peer_integrity_tfm = NULL;
2503 connection->int_dig_in = NULL;
2504 connection->int_dig_vv = NULL;
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002505}
2506
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002507int set_resource_options(struct drbd_resource *resource, struct res_opts *res_opts)
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002508{
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002509 struct drbd_connection *connection;
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002510 cpumask_var_t new_cpu_mask;
2511 int err;
2512
2513 if (!zalloc_cpumask_var(&new_cpu_mask, GFP_KERNEL))
2514 return -ENOMEM;
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002515
2516 /* silently ignore cpu mask on UP kernel */
2517 if (nr_cpu_ids > 1 && res_opts->cpu_mask[0] != 0) {
Andreas Gruenbacherf44d0432011-07-22 13:53:19 +02002518 err = bitmap_parse(res_opts->cpu_mask, DRBD_CPU_MASK_SIZE,
Philipp Reisnerc5b005a2012-04-30 12:53:52 +02002519 cpumask_bits(new_cpu_mask), nr_cpu_ids);
Lars Ellenberg1e391522014-05-19 09:52:02 +02002520 if (err == -EOVERFLOW) {
2521 /* So what. mask it out. */
2522 cpumask_var_t tmp_cpu_mask;
2523 if (zalloc_cpumask_var(&tmp_cpu_mask, GFP_KERNEL)) {
2524 cpumask_setall(tmp_cpu_mask);
2525 cpumask_and(new_cpu_mask, new_cpu_mask, tmp_cpu_mask);
2526 drbd_warn(resource, "Overflow in bitmap_parse(%.12s%s), truncating to %u bits\n",
2527 res_opts->cpu_mask,
2528 strlen(res_opts->cpu_mask) > 12 ? "..." : "",
2529 nr_cpu_ids);
2530 free_cpumask_var(tmp_cpu_mask);
2531 err = 0;
2532 }
2533 }
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002534 if (err) {
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +02002535 drbd_warn(resource, "bitmap_parse() failed with %d\n", err);
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002536 /* retcode = ERR_CPU_MASK_PARSE; */
2537 goto fail;
2538 }
2539 }
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002540 resource->res_opts = *res_opts;
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +02002541 if (cpumask_empty(new_cpu_mask))
2542 drbd_calc_cpu_mask(&new_cpu_mask);
2543 if (!cpumask_equal(resource->cpu_mask, new_cpu_mask)) {
2544 cpumask_copy(resource->cpu_mask, new_cpu_mask);
2545 for_each_connection_rcu(connection, resource) {
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002546 connection->receiver.reset_cpu_mask = 1;
Philipp Reisner1c03e522015-03-16 15:01:00 +01002547 connection->ack_receiver.reset_cpu_mask = 1;
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002548 connection->worker.reset_cpu_mask = 1;
2549 }
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002550 }
2551 err = 0;
2552
2553fail:
2554 free_cpumask_var(new_cpu_mask);
2555 return err;
2556
2557}
2558
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002559struct drbd_resource *drbd_create_resource(const char *name)
2560{
2561 struct drbd_resource *resource;
2562
Andreas Gruenbacher6bbf53c2011-07-08 01:19:44 +02002563 resource = kzalloc(sizeof(struct drbd_resource), GFP_KERNEL);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002564 if (!resource)
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +02002565 goto fail;
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002566 resource->name = kstrdup(name, GFP_KERNEL);
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +02002567 if (!resource->name)
2568 goto fail_free_resource;
2569 if (!zalloc_cpumask_var(&resource->cpu_mask, GFP_KERNEL))
2570 goto fail_free_name;
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002571 kref_init(&resource->kref);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002572 idr_init(&resource->devices);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002573 INIT_LIST_HEAD(&resource->connections);
Andreas Gruenbacherf6ba8632014-08-13 18:33:55 +02002574 resource->write_ordering = WO_BDEV_FLUSH;
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002575 list_add_tail_rcu(&resource->resources, &drbd_resources);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02002576 mutex_init(&resource->conf_update);
Lars Ellenberg9e276872014-04-28 18:43:22 +02002577 mutex_init(&resource->adm_mutex);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02002578 spin_lock_init(&resource->req_lock);
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002579 drbd_debugfs_resource_add(resource);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002580 return resource;
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +02002581
2582fail_free_name:
2583 kfree(resource->name);
2584fail_free_resource:
2585 kfree(resource);
2586fail:
2587 return NULL;
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002588}
2589
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002590/* caller must be under adm_mutex */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002591struct drbd_connection *conn_create(const char *name, struct res_opts *res_opts)
Philipp Reisner21114382011-01-19 12:26:59 +01002592{
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002593 struct drbd_resource *resource;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002594 struct drbd_connection *connection;
Philipp Reisner21114382011-01-19 12:26:59 +01002595
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002596 connection = kzalloc(sizeof(struct drbd_connection), GFP_KERNEL);
2597 if (!connection)
Philipp Reisner21114382011-01-19 12:26:59 +01002598 return NULL;
2599
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002600 if (drbd_alloc_socket(&connection->data))
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002601 goto fail;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002602 if (drbd_alloc_socket(&connection->meta))
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002603 goto fail;
2604
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002605 connection->current_epoch = kzalloc(sizeof(struct drbd_epoch), GFP_KERNEL);
2606 if (!connection->current_epoch)
Philipp Reisner12038a32011-11-09 19:18:00 +01002607 goto fail;
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01002608
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002609 INIT_LIST_HEAD(&connection->transfer_log);
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01002610
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002611 INIT_LIST_HEAD(&connection->current_epoch->list);
2612 connection->epochs = 1;
2613 spin_lock_init(&connection->epoch_lock);
Philipp Reisner4b0007c2011-11-09 20:12:34 +01002614
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002615 connection->send.seen_any_write_yet = false;
2616 connection->send.current_epoch_nr = 0;
2617 connection->send.current_epoch_writes = 0;
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01002618
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002619 resource = drbd_create_resource(name);
2620 if (!resource)
2621 goto fail;
2622
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002623 connection->cstate = C_STANDALONE;
2624 mutex_init(&connection->cstate_mutex);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002625 init_waitqueue_head(&connection->ping_wait);
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02002626 idr_init(&connection->peer_devices);
Philipp Reisnerb2fb6dbe2011-01-19 13:48:44 +01002627
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002628 drbd_init_workqueue(&connection->sender_work);
2629 mutex_init(&connection->data.mutex);
2630 mutex_init(&connection->meta.mutex);
Philipp Reisner6699b652011-02-09 11:10:24 +01002631
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +02002632 drbd_thread_init(resource, &connection->receiver, drbd_receiver, "receiver");
2633 connection->receiver.connection = connection;
2634 drbd_thread_init(resource, &connection->worker, drbd_worker, "worker");
2635 connection->worker.connection = connection;
Philipp Reisner1c03e522015-03-16 15:01:00 +01002636 drbd_thread_init(resource, &connection->ack_receiver, drbd_ack_receiver, "ack_recv");
2637 connection->ack_receiver.connection = connection;
Philipp Reisner392c8802011-02-09 10:33:31 +01002638
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002639 kref_init(&connection->kref);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002640
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002641 connection->resource = resource;
Philipp Reisner21114382011-01-19 12:26:59 +01002642
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002643 if (set_resource_options(resource, res_opts))
2644 goto fail_resource;
2645
2646 kref_get(&resource->kref);
2647 list_add_tail_rcu(&connection->connections, &resource->connections);
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002648 drbd_debugfs_connection_add(connection);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002649 return connection;
Philipp Reisner21114382011-01-19 12:26:59 +01002650
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002651fail_resource:
2652 list_del(&resource->resources);
2653 drbd_free_resource(resource);
Philipp Reisner21114382011-01-19 12:26:59 +01002654fail:
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002655 kfree(connection->current_epoch);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002656 drbd_free_socket(&connection->meta);
2657 drbd_free_socket(&connection->data);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002658 kfree(connection);
Philipp Reisner21114382011-01-19 12:26:59 +01002659 return NULL;
2660}
2661
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +02002662void drbd_destroy_connection(struct kref *kref)
Philipp Reisner21114382011-01-19 12:26:59 +01002663{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002664 struct drbd_connection *connection = container_of(kref, struct drbd_connection, kref);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002665 struct drbd_resource *resource = connection->resource;
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002666
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002667 if (atomic_read(&connection->current_epoch->epoch_size) != 0)
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +02002668 drbd_err(connection, "epoch_size:%d\n", atomic_read(&connection->current_epoch->epoch_size));
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002669 kfree(connection->current_epoch);
Philipp Reisner12038a32011-11-09 19:18:00 +01002670
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02002671 idr_destroy(&connection->peer_devices);
Philipp Reisner21114382011-01-19 12:26:59 +01002672
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002673 drbd_free_socket(&connection->meta);
2674 drbd_free_socket(&connection->data);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002675 kfree(connection->int_dig_in);
2676 kfree(connection->int_dig_vv);
Lars Ellenbergc2258ff2014-05-14 21:35:21 +02002677 memset(connection, 0xfc, sizeof(*connection));
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002678 kfree(connection);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002679 kref_put(&resource->kref, drbd_destroy_resource);
Philipp Reisner21114382011-01-19 12:26:59 +01002680}
2681
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002682static int init_submitter(struct drbd_device *device)
Lars Ellenberg113fef92013-03-22 18:14:40 -06002683{
2684 /* opencoded create_singlethread_workqueue(),
2685 * to be able to say "drbd%d", ..., minor */
Lars Ellenberg39e91a62015-03-24 10:40:26 +01002686 device->submit.wq =
2687 alloc_ordered_workqueue("drbd%u_submit", WQ_MEM_RECLAIM, device->minor);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002688 if (!device->submit.wq)
Lars Ellenberg113fef92013-03-22 18:14:40 -06002689 return -ENOMEM;
2690
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002691 INIT_WORK(&device->submit.worker, do_submit);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002692 INIT_LIST_HEAD(&device->submit.writes);
Lars Ellenberg113fef92013-03-22 18:14:40 -06002693 return 0;
2694}
2695
Lars Ellenberga910b122014-04-28 18:43:21 +02002696enum drbd_ret_code drbd_create_device(struct drbd_config_context *adm_ctx, unsigned int minor)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002697{
Lars Ellenberga910b122014-04-28 18:43:21 +02002698 struct drbd_resource *resource = adm_ctx->resource;
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002699 struct drbd_connection *connection;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002700 struct drbd_device *device;
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002701 struct drbd_peer_device *peer_device, *tmp_peer_device;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002702 struct gendisk *disk;
Andreas Gruenbacher93e4bf72013-05-23 14:57:17 +02002703 int id;
Lars Ellenberga910b122014-04-28 18:43:21 +02002704 int vnr = adm_ctx->volume;
Lars Ellenberg8432b312011-03-08 16:11:16 +01002705 enum drbd_ret_code err = ERR_NOMEM;
Philipp Reisner774b3052011-02-22 02:07:03 -05002706
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002707 device = minor_to_device(minor);
2708 if (device)
Andreas Gruenbacher179e20b82014-11-10 17:21:09 +01002709 return ERR_MINOR_OR_VOLUME_EXISTS;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002710
2711 /* GFP_KERNEL, we are outside of all write-out paths */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002712 device = kzalloc(sizeof(struct drbd_device), GFP_KERNEL);
2713 if (!device)
Philipp Reisner774b3052011-02-22 02:07:03 -05002714 return ERR_NOMEM;
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002715 kref_init(&device->kref);
2716
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002717 kref_get(&resource->kref);
2718 device->resource = resource;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002719 device->minor = minor;
2720 device->vnr = vnr;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002721
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002722 drbd_init_set_defaults(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002723
Christoph Hellwigb647ad02021-05-21 07:50:57 +02002724 disk = blk_alloc_disk(NUMA_NO_NODE);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002725 if (!disk)
2726 goto out_no_disk;
Christoph Hellwigb647ad02021-05-21 07:50:57 +02002727
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002728 device->vdisk = disk;
Christoph Hellwigb647ad02021-05-21 07:50:57 +02002729 device->rq_queue = disk->queue;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002730
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01002731 set_disk_ro(disk, true);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002732
Philipp Reisnerb411b362009-09-25 16:07:19 -07002733 disk->major = DRBD_MAJOR;
2734 disk->first_minor = minor;
Christoph Hellwigb647ad02021-05-21 07:50:57 +02002735 disk->minors = 1;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002736 disk->fops = &drbd_ops;
2737 sprintf(disk->disk_name, "drbd%d", minor);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002738 disk->private_data = device;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002739
Christoph Hellwigb647ad02021-05-21 07:50:57 +02002740 blk_queue_write_cache(disk->queue, true, true);
Philipp Reisner99432fc2011-05-20 16:39:13 +02002741 /* Setting the max_hw_sectors to an odd value of 8kibyte here
2742 This triggers a max_bio_size message upon first attach or connect */
Christoph Hellwigb647ad02021-05-21 07:50:57 +02002743 blk_queue_max_hw_sectors(disk->queue, DRBD_MAX_BIO_SIZE_SAFE >> 8);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002744
Lars Ellenberge37d2432014-04-01 23:53:30 +02002745 device->md_io.page = alloc_page(GFP_KERNEL);
2746 if (!device->md_io.page)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002747 goto out_no_io_page;
2748
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002749 if (drbd_bm_init(device))
Philipp Reisnerb411b362009-09-25 16:07:19 -07002750 goto out_no_bitmap;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002751 device->read_requests = RB_ROOT;
2752 device->write_requests = RB_ROOT;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002753
Andreas Gruenbacher93e4bf72013-05-23 14:57:17 +02002754 id = idr_alloc(&drbd_devices, device, minor, minor + 1, GFP_KERNEL);
2755 if (id < 0) {
Andreas Gruenbacherf221f4b2014-11-10 17:21:10 +01002756 if (id == -ENOSPC)
Andreas Gruenbacher179e20b82014-11-10 17:21:09 +01002757 err = ERR_MINOR_OR_VOLUME_EXISTS;
Lars Ellenberg8432b312011-03-08 16:11:16 +01002758 goto out_no_minor_idr;
Tejun Heo56de2102013-02-27 17:04:01 -08002759 }
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002760 kref_get(&device->kref);
2761
2762 id = idr_alloc(&resource->devices, device, vnr, vnr + 1, GFP_KERNEL);
2763 if (id < 0) {
Andreas Gruenbacherf221f4b2014-11-10 17:21:10 +01002764 if (id == -ENOSPC)
Andreas Gruenbacher179e20b82014-11-10 17:21:09 +01002765 err = ERR_MINOR_OR_VOLUME_EXISTS;
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002766 goto out_idr_remove_minor;
2767 }
2768 kref_get(&device->kref);
Tejun Heo56de2102013-02-27 17:04:01 -08002769
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002770 INIT_LIST_HEAD(&device->peer_devices);
Lars Ellenberg4ce49262014-05-06 00:44:59 +02002771 INIT_LIST_HEAD(&device->pending_bitmap_io);
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002772 for_each_connection(connection, resource) {
2773 peer_device = kzalloc(sizeof(struct drbd_peer_device), GFP_KERNEL);
2774 if (!peer_device)
2775 goto out_idr_remove_from_resource;
2776 peer_device->connection = connection;
2777 peer_device->device = device;
2778
2779 list_add(&peer_device->peer_devices, &device->peer_devices);
2780 kref_get(&device->kref);
2781
2782 id = idr_alloc(&connection->peer_devices, peer_device, vnr, vnr + 1, GFP_KERNEL);
2783 if (id < 0) {
Andreas Gruenbacherf221f4b2014-11-10 17:21:10 +01002784 if (id == -ENOSPC)
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002785 err = ERR_INVALID_REQUEST;
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002786 goto out_idr_remove_from_resource;
Tejun Heo56de2102013-02-27 17:04:01 -08002787 }
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002788 kref_get(&connection->kref);
Philipp Reisner668700b2015-03-16 16:08:29 +01002789 INIT_WORK(&peer_device->send_acks_work, drbd_send_acks_wf);
Lars Ellenberg569083c2011-03-07 09:49:02 +01002790 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07002791
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002792 if (init_submitter(device)) {
Lars Ellenberg113fef92013-03-22 18:14:40 -06002793 err = ERR_NOMEM;
Lars Ellenberg113fef92013-03-22 18:14:40 -06002794 goto out_idr_remove_vol;
2795 }
2796
Luis Chamberlaine92ab4e2021-09-27 15:00:59 -07002797 err = add_disk(disk);
2798 if (err)
Wu Bo27548082021-11-04 16:07:09 +08002799 goto out_idr_remove_vol;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002800
Philipp Reisner2325eb62011-03-15 16:56:18 +01002801 /* inherit the connection state */
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002802 device->state.conn = first_connection(resource)->cstate;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02002803 if (device->state.conn == C_WF_REPORT_PARAMS) {
2804 for_each_peer_device(peer_device, device)
2805 drbd_connected(peer_device);
2806 }
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002807 /* move to create_peer_device() */
2808 for_each_peer_device(peer_device, device)
2809 drbd_debugfs_peer_device_add(peer_device);
2810 drbd_debugfs_device_add(device);
Philipp Reisner774b3052011-02-22 02:07:03 -05002811 return NO_ERROR;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002812
Lars Ellenberg113fef92013-03-22 18:14:40 -06002813out_idr_remove_vol:
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02002814 idr_remove(&connection->peer_devices, vnr);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002815out_idr_remove_from_resource:
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002816 for_each_connection(connection, resource) {
Matthew Wilcoxd3e709e2016-12-22 13:30:22 -05002817 peer_device = idr_remove(&connection->peer_devices, vnr);
2818 if (peer_device)
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002819 kref_put(&connection->kref, drbd_destroy_connection);
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002820 }
2821 for_each_peer_device_safe(peer_device, tmp_peer_device, device) {
2822 list_del(&peer_device->peer_devices);
2823 kfree(peer_device);
2824 }
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002825 idr_remove(&resource->devices, vnr);
Lars Ellenberg8432b312011-03-08 16:11:16 +01002826out_idr_remove_minor:
Andreas Gruenbacher93e4bf72013-05-23 14:57:17 +02002827 idr_remove(&drbd_devices, minor);
Lars Ellenberg569083c2011-03-07 09:49:02 +01002828 synchronize_rcu();
Lars Ellenberg8432b312011-03-08 16:11:16 +01002829out_no_minor_idr:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002830 drbd_bm_cleanup(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002831out_no_bitmap:
Lars Ellenberge37d2432014-04-01 23:53:30 +02002832 __free_page(device->md_io.page);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002833out_no_io_page:
Christoph Hellwigb647ad02021-05-21 07:50:57 +02002834 blk_cleanup_disk(disk);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002835out_no_disk:
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002836 kref_put(&resource->kref, drbd_destroy_resource);
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02002837 kfree(device);
Lars Ellenberg8432b312011-03-08 16:11:16 +01002838 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002839}
2840
Andreas Gruenbacherf82795d2011-07-03 23:32:26 +02002841void drbd_delete_device(struct drbd_device *device)
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002842{
2843 struct drbd_resource *resource = device->resource;
2844 struct drbd_connection *connection;
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002845 struct drbd_peer_device *peer_device;
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002846
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002847 /* move to free_peer_device() */
2848 for_each_peer_device(peer_device, device)
2849 drbd_debugfs_peer_device_cleanup(peer_device);
2850 drbd_debugfs_device_cleanup(device);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002851 for_each_connection(connection, resource) {
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02002852 idr_remove(&connection->peer_devices, device->vnr);
Peter Zijlstrabdfafc42016-11-14 17:34:19 +01002853 kref_put(&device->kref, drbd_destroy_device);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002854 }
2855 idr_remove(&resource->devices, device->vnr);
Peter Zijlstrabdfafc42016-11-14 17:34:19 +01002856 kref_put(&device->kref, drbd_destroy_device);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002857 idr_remove(&drbd_devices, device_to_minor(device));
Peter Zijlstrabdfafc42016-11-14 17:34:19 +01002858 kref_put(&device->kref, drbd_destroy_device);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002859 del_gendisk(device->vdisk);
2860 synchronize_rcu();
Peter Zijlstrabdfafc42016-11-14 17:34:19 +01002861 kref_put(&device->kref, drbd_destroy_device);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002862}
2863
Lars Ellenberg8ce953a2014-02-27 09:46:18 +01002864static int __init drbd_init(void)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002865{
2866 int err;
2867
Roland Kammerer183ece32017-08-29 10:20:46 +02002868 if (drbd_minor_count < DRBD_MINOR_COUNT_MIN || drbd_minor_count > DRBD_MINOR_COUNT_MAX) {
2869 pr_err("invalid minor_count (%d)\n", drbd_minor_count);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002870#ifdef MODULE
2871 return -EINVAL;
2872#else
Philipp Reisner5fc1efd2017-08-30 13:47:11 +02002873 drbd_minor_count = DRBD_MINOR_COUNT_DEF;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002874#endif
2875 }
2876
Philipp Reisnerb411b362009-09-25 16:07:19 -07002877 err = register_blkdev(DRBD_MAJOR, "drbd");
2878 if (err) {
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002879 pr_err("unable to register block device major %d\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -07002880 DRBD_MAJOR);
2881 return err;
2882 }
2883
Philipp Reisnerb411b362009-09-25 16:07:19 -07002884 /*
2885 * allocate all necessary structs
2886 */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002887 init_waitqueue_head(&drbd_pp_wait);
2888
2889 drbd_proc = NULL; /* play safe for drbd_cleanup */
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +02002890 idr_init(&drbd_devices);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002891
Andreas Gruenbacher28bc3b82014-08-14 18:33:30 +02002892 mutex_init(&resources_mutex);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002893 INIT_LIST_HEAD(&drbd_resources);
Lars Ellenberg69babf02013-10-23 10:59:15 +02002894
2895 err = drbd_genl_register();
2896 if (err) {
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002897 pr_err("unable to register generic netlink family\n");
Lars Ellenberg69babf02013-10-23 10:59:15 +02002898 goto fail;
2899 }
2900
Philipp Reisnerb411b362009-09-25 16:07:19 -07002901 err = drbd_create_mempools();
2902 if (err)
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002903 goto fail;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002904
Wei Yongjun6110d702013-06-25 16:50:04 +02002905 err = -ENOMEM;
Linus Torvaldscf626b02018-06-04 10:00:01 -07002906 drbd_proc = proc_create_single("drbd", S_IFREG | 0444 , NULL, drbd_seq_show);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002907 if (!drbd_proc) {
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002908 pr_err("unable to register proc file\n");
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002909 goto fail;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002910 }
2911
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002912 retry.wq = create_singlethread_workqueue("drbd-reissue");
2913 if (!retry.wq) {
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002914 pr_err("unable to create retry workqueue\n");
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002915 goto fail;
2916 }
2917 INIT_WORK(&retry.worker, do_retry);
2918 spin_lock_init(&retry.lock);
2919 INIT_LIST_HEAD(&retry.writes);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002920
Greg Kroah-Hartmand27e84a2019-06-18 17:45:49 +02002921 drbd_debugfs_init();
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002922
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002923 pr_info("initialized. "
Philipp Reisnerb411b362009-09-25 16:07:19 -07002924 "Version: " REL_VERSION " (api:%d/proto:%d-%d)\n",
2925 API_VERSION, PRO_VERSION_MIN, PRO_VERSION_MAX);
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002926 pr_info("%s\n", drbd_buildtag());
2927 pr_info("registered as block device major %d\n", DRBD_MAJOR);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002928 return 0; /* Success! */
2929
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002930fail:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002931 drbd_cleanup();
2932 if (err == -ENOMEM)
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002933 pr_err("ran out of memory\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07002934 else
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002935 pr_err("initialization failure\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07002936 return err;
2937}
2938
Lars Ellenbergf4188152014-05-05 23:05:47 +02002939static void drbd_free_one_sock(struct drbd_socket *ds)
2940{
2941 struct socket *s;
2942 mutex_lock(&ds->mutex);
2943 s = ds->socket;
2944 ds->socket = NULL;
2945 mutex_unlock(&ds->mutex);
2946 if (s) {
2947 /* so debugfs does not need to mutex_lock() */
2948 synchronize_rcu();
2949 kernel_sock_shutdown(s, SHUT_RDWR);
2950 sock_release(s);
2951 }
2952}
2953
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002954void drbd_free_sock(struct drbd_connection *connection)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002955{
Lars Ellenbergf4188152014-05-05 23:05:47 +02002956 if (connection->data.socket)
2957 drbd_free_one_sock(&connection->data);
2958 if (connection->meta.socket)
2959 drbd_free_one_sock(&connection->meta);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002960}
2961
Philipp Reisnerb411b362009-09-25 16:07:19 -07002962/* meta data management */
2963
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002964void conn_md_sync(struct drbd_connection *connection)
Philipp Reisner19fffd72012-08-28 16:48:03 +02002965{
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02002966 struct drbd_peer_device *peer_device;
Philipp Reisner19fffd72012-08-28 16:48:03 +02002967 int vnr;
2968
2969 rcu_read_lock();
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02002970 idr_for_each_entry(&connection->peer_devices, peer_device, vnr) {
2971 struct drbd_device *device = peer_device->device;
2972
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002973 kref_get(&device->kref);
Philipp Reisner19fffd72012-08-28 16:48:03 +02002974 rcu_read_unlock();
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002975 drbd_md_sync(device);
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +02002976 kref_put(&device->kref, drbd_destroy_device);
Philipp Reisner19fffd72012-08-28 16:48:03 +02002977 rcu_read_lock();
2978 }
2979 rcu_read_unlock();
2980}
2981
Lars Ellenbergae8bf312013-03-19 18:16:43 +01002982/* aligned 4kByte */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002983struct meta_data_on_disk {
Lars Ellenbergcccac982013-03-19 18:16:46 +01002984 u64 la_size_sect; /* last agreed size. */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002985 u64 uuid[UI_SIZE]; /* UUIDs. */
2986 u64 device_uuid;
2987 u64 reserved_u64_1;
2988 u32 flags; /* MDF */
2989 u32 magic;
2990 u32 md_size_sect;
2991 u32 al_offset; /* offset to this block */
Lars Ellenbergae8bf312013-03-19 18:16:43 +01002992 u32 al_nr_extents; /* important for restoring the AL (userspace) */
Lars Ellenbergf3990022011-03-23 14:31:09 +01002993 /* `-- act_log->nr_elements <-- ldev->dc.al_extents */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002994 u32 bm_offset; /* offset to the bitmap, from here */
2995 u32 bm_bytes_per_bit; /* BM_BLOCK_SIZE */
Philipp Reisner99432fc2011-05-20 16:39:13 +02002996 u32 la_peer_max_bio_size; /* last peer max_bio_size */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002997
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01002998 /* see al_tr_number_to_on_disk_sector() */
2999 u32 al_stripes;
3000 u32 al_stripe_size_4k;
3001
3002 u8 reserved_u8[4096 - (7*8 + 10*4)];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003003} __packed;
3004
Philipp Reisnerd752b262013-06-25 16:50:08 +02003005
3006
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003007void drbd_md_write(struct drbd_device *device, void *b)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003008{
Philipp Reisnerd752b262013-06-25 16:50:08 +02003009 struct meta_data_on_disk *buffer = b;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003010 sector_t sector;
3011 int i;
3012
Lars Ellenbergae8bf312013-03-19 18:16:43 +01003013 memset(buffer, 0, sizeof(*buffer));
Philipp Reisnerb411b362009-09-25 16:07:19 -07003014
Christoph Hellwig155bd9d2020-09-25 18:06:17 +02003015 buffer->la_size_sect = cpu_to_be64(get_capacity(device->vdisk));
Philipp Reisnerb411b362009-09-25 16:07:19 -07003016 for (i = UI_CURRENT; i < UI_SIZE; i++)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003017 buffer->uuid[i] = cpu_to_be64(device->ldev->md.uuid[i]);
3018 buffer->flags = cpu_to_be32(device->ldev->md.flags);
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003019 buffer->magic = cpu_to_be32(DRBD_MD_MAGIC_84_UNCLEAN);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003020
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003021 buffer->md_size_sect = cpu_to_be32(device->ldev->md.md_size_sect);
3022 buffer->al_offset = cpu_to_be32(device->ldev->md.al_offset);
3023 buffer->al_nr_extents = cpu_to_be32(device->act_log->nr_elements);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003024 buffer->bm_bytes_per_bit = cpu_to_be32(BM_BLOCK_SIZE);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003025 buffer->device_uuid = cpu_to_be64(device->ldev->md.device_uuid);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003026
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003027 buffer->bm_offset = cpu_to_be32(device->ldev->md.bm_offset);
3028 buffer->la_peer_max_bio_size = cpu_to_be32(device->peer_max_bio_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003029
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003030 buffer->al_stripes = cpu_to_be32(device->ldev->md.al_stripes);
3031 buffer->al_stripe_size_4k = cpu_to_be32(device->ldev->md.al_stripe_size_4k);
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003032
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02003033 D_ASSERT(device, drbd_md_ss(device->ldev) == device->ldev->md.md_offset);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003034 sector = device->ldev->md.md_offset;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003035
Mike Christiebb3cc852016-06-05 14:32:06 -05003036 if (drbd_md_sync_page_io(device, device->ldev, sector, REQ_OP_WRITE)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07003037 /* this was a try anyways ... */
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003038 drbd_err(device, "meta data update failed!\n");
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003039 drbd_chk_io_error(device, 1, DRBD_META_IO_ERROR);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003040 }
Philipp Reisnerd752b262013-06-25 16:50:08 +02003041}
3042
3043/**
3044 * drbd_md_sync() - Writes the meta data super block if the MD_DIRTY flag bit is set
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003045 * @device: DRBD device.
Philipp Reisnerd752b262013-06-25 16:50:08 +02003046 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003047void drbd_md_sync(struct drbd_device *device)
Philipp Reisnerd752b262013-06-25 16:50:08 +02003048{
3049 struct meta_data_on_disk *buffer;
3050
3051 /* Don't accidentally change the DRBD meta data layout. */
3052 BUILD_BUG_ON(UI_SIZE != 4);
3053 BUILD_BUG_ON(sizeof(struct meta_data_on_disk) != 4096);
3054
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003055 del_timer(&device->md_sync_timer);
Philipp Reisnerd752b262013-06-25 16:50:08 +02003056 /* timer may be rearmed by drbd_md_mark_dirty() now. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003057 if (!test_and_clear_bit(MD_DIRTY, &device->flags))
Philipp Reisnerd752b262013-06-25 16:50:08 +02003058 return;
3059
3060 /* We use here D_FAILED and not D_ATTACHING because we try to write
3061 * metadata even if we detach due to a disk failure! */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003062 if (!get_ldev_if_state(device, D_FAILED))
Philipp Reisnerd752b262013-06-25 16:50:08 +02003063 return;
3064
Lars Ellenberge37d2432014-04-01 23:53:30 +02003065 buffer = drbd_md_get_buffer(device, __func__);
Philipp Reisnerd752b262013-06-25 16:50:08 +02003066 if (!buffer)
3067 goto out;
3068
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003069 drbd_md_write(device, buffer);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003070
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003071 /* Update device->ldev->md.la_size_sect,
Philipp Reisnerb411b362009-09-25 16:07:19 -07003072 * since we updated it on metadata. */
Christoph Hellwig155bd9d2020-09-25 18:06:17 +02003073 device->ldev->md.la_size_sect = get_capacity(device->vdisk);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003074
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003075 drbd_md_put_buffer(device);
Philipp Reisnere1711732011-06-27 11:51:46 +02003076out:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003077 put_ldev(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003078}
3079
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003080static int check_activity_log_stripe_size(struct drbd_device *device,
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003081 struct meta_data_on_disk *on_disk,
3082 struct drbd_md *in_core)
3083{
3084 u32 al_stripes = be32_to_cpu(on_disk->al_stripes);
3085 u32 al_stripe_size_4k = be32_to_cpu(on_disk->al_stripe_size_4k);
3086 u64 al_size_4k;
3087
3088 /* both not set: default to old fixed size activity log */
3089 if (al_stripes == 0 && al_stripe_size_4k == 0) {
3090 al_stripes = 1;
3091 al_stripe_size_4k = MD_32kB_SECT/8;
3092 }
3093
3094 /* some paranoia plausibility checks */
3095
3096 /* we need both values to be set */
3097 if (al_stripes == 0 || al_stripe_size_4k == 0)
3098 goto err;
3099
3100 al_size_4k = (u64)al_stripes * al_stripe_size_4k;
3101
3102 /* Upper limit of activity log area, to avoid potential overflow
3103 * problems in al_tr_number_to_on_disk_sector(). As right now, more
3104 * than 72 * 4k blocks total only increases the amount of history,
3105 * limiting this arbitrarily to 16 GB is not a real limitation ;-) */
3106 if (al_size_4k > (16 * 1024 * 1024/4))
3107 goto err;
3108
3109 /* Lower limit: we need at least 8 transaction slots (32kB)
3110 * to not break existing setups */
3111 if (al_size_4k < MD_32kB_SECT/8)
3112 goto err;
3113
3114 in_core->al_stripe_size_4k = al_stripe_size_4k;
3115 in_core->al_stripes = al_stripes;
3116 in_core->al_size_4k = al_size_4k;
3117
3118 return 0;
3119err:
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003120 drbd_err(device, "invalid activity log striping: al_stripes=%u, al_stripe_size_4k=%u\n",
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003121 al_stripes, al_stripe_size_4k);
3122 return -EINVAL;
3123}
3124
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003125static int check_offsets_and_sizes(struct drbd_device *device, struct drbd_backing_dev *bdev)
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003126{
3127 sector_t capacity = drbd_get_capacity(bdev->md_bdev);
3128 struct drbd_md *in_core = &bdev->md;
3129 s32 on_disk_al_sect;
3130 s32 on_disk_bm_sect;
3131
3132 /* The on-disk size of the activity log, calculated from offsets, and
3133 * the size of the activity log calculated from the stripe settings,
3134 * should match.
3135 * Though we could relax this a bit: it is ok, if the striped activity log
3136 * fits in the available on-disk activity log size.
3137 * Right now, that would break how resize is implemented.
3138 * TODO: make drbd_determine_dev_size() (and the drbdmeta tool) aware
3139 * of possible unused padding space in the on disk layout. */
3140 if (in_core->al_offset < 0) {
3141 if (in_core->bm_offset > in_core->al_offset)
3142 goto err;
3143 on_disk_al_sect = -in_core->al_offset;
3144 on_disk_bm_sect = in_core->al_offset - in_core->bm_offset;
3145 } else {
3146 if (in_core->al_offset != MD_4kB_SECT)
3147 goto err;
3148 if (in_core->bm_offset < in_core->al_offset + in_core->al_size_4k * MD_4kB_SECT)
3149 goto err;
3150
3151 on_disk_al_sect = in_core->bm_offset - MD_4kB_SECT;
3152 on_disk_bm_sect = in_core->md_size_sect - in_core->bm_offset;
3153 }
3154
3155 /* old fixed size meta data is exactly that: fixed. */
3156 if (in_core->meta_dev_idx >= 0) {
3157 if (in_core->md_size_sect != MD_128MB_SECT
3158 || in_core->al_offset != MD_4kB_SECT
3159 || in_core->bm_offset != MD_4kB_SECT + MD_32kB_SECT
3160 || in_core->al_stripes != 1
3161 || in_core->al_stripe_size_4k != MD_32kB_SECT/8)
3162 goto err;
3163 }
3164
3165 if (capacity < in_core->md_size_sect)
3166 goto err;
3167 if (capacity - in_core->md_size_sect < drbd_md_first_sector(bdev))
3168 goto err;
3169
3170 /* should be aligned, and at least 32k */
3171 if ((on_disk_al_sect & 7) || (on_disk_al_sect < MD_32kB_SECT))
3172 goto err;
3173
3174 /* should fit (for now: exactly) into the available on-disk space;
3175 * overflow prevention is in check_activity_log_stripe_size() above. */
3176 if (on_disk_al_sect != in_core->al_size_4k * MD_4kB_SECT)
3177 goto err;
3178
3179 /* again, should be aligned */
3180 if (in_core->bm_offset & 7)
3181 goto err;
3182
3183 /* FIXME check for device grow with flex external meta data? */
3184
3185 /* can the available bitmap space cover the last agreed device size? */
3186 if (on_disk_bm_sect < (in_core->la_size_sect+7)/MD_4kB_SECT/8/512)
3187 goto err;
3188
3189 return 0;
3190
3191err:
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003192 drbd_err(device, "meta data offsets don't make sense: idx=%d "
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003193 "al_s=%u, al_sz4k=%u, al_offset=%d, bm_offset=%d, "
3194 "md_size_sect=%u, la_size=%llu, md_capacity=%llu\n",
3195 in_core->meta_dev_idx,
3196 in_core->al_stripes, in_core->al_stripe_size_4k,
3197 in_core->al_offset, in_core->bm_offset, in_core->md_size_sect,
3198 (unsigned long long)in_core->la_size_sect,
3199 (unsigned long long)capacity);
3200
3201 return -EINVAL;
3202}
3203
3204
Philipp Reisnerb411b362009-09-25 16:07:19 -07003205/**
3206 * drbd_md_read() - Reads in the meta data super block
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003207 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003208 * @bdev: Device from which the meta data should be read in.
3209 *
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003210 * Return NO_ERROR on success, and an enum drbd_ret_code in case
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003211 * something goes wrong.
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003212 *
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003213 * Called exactly once during drbd_adm_attach(), while still being D_DISKLESS,
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003214 * even before @bdev is assigned to @device->ldev.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003215 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003216int drbd_md_read(struct drbd_device *device, struct drbd_backing_dev *bdev)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003217{
3218 struct meta_data_on_disk *buffer;
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003219 u32 magic, flags;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003220 int i, rv = NO_ERROR;
3221
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003222 if (device->state.disk != D_DISKLESS)
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003223 return ERR_DISK_CONFIGURED;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003224
Lars Ellenberge37d2432014-04-01 23:53:30 +02003225 buffer = drbd_md_get_buffer(device, __func__);
Philipp Reisnere1711732011-06-27 11:51:46 +02003226 if (!buffer)
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003227 return ERR_NOMEM;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003228
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003229 /* First, figure out where our meta data superblock is located,
3230 * and read it. */
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003231 bdev->md.meta_dev_idx = bdev->disk_conf->meta_dev_idx;
3232 bdev->md.md_offset = drbd_md_ss(bdev);
Lars Ellenbergedb5e5f2015-03-24 21:35:26 +01003233 /* Even for (flexible or indexed) external meta data,
3234 * initially restrict us to the 4k superblock for now.
3235 * Affects the paranoia out-of-range access check in drbd_md_sync_page_io(). */
3236 bdev->md.md_size_sect = 8;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003237
Mike Christiebb3cc852016-06-05 14:32:06 -05003238 if (drbd_md_sync_page_io(device, bdev, bdev->md.md_offset,
3239 REQ_OP_READ)) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003240 /* NOTE: can't do normal error processing here as this is
Philipp Reisnerb411b362009-09-25 16:07:19 -07003241 called BEFORE disk is attached */
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003242 drbd_err(device, "Error while reading metadata.\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07003243 rv = ERR_IO_MD_DISK;
3244 goto err;
3245 }
3246
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003247 magic = be32_to_cpu(buffer->magic);
3248 flags = be32_to_cpu(buffer->flags);
3249 if (magic == DRBD_MD_MAGIC_84_UNCLEAN ||
3250 (magic == DRBD_MD_MAGIC_08 && !(flags & MDF_AL_CLEAN))) {
3251 /* btw: that's Activity Log clean, not "all" clean. */
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003252 drbd_err(device, "Found unclean meta data. Did you \"drbdadm apply-al\"?\n");
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003253 rv = ERR_MD_UNCLEAN;
3254 goto err;
3255 }
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003256
3257 rv = ERR_MD_INVALID;
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003258 if (magic != DRBD_MD_MAGIC_08) {
Philipp Reisner43de7c82011-11-10 13:16:13 +01003259 if (magic == DRBD_MD_MAGIC_07)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003260 drbd_err(device, "Found old (0.7) meta data magic. Did you \"drbdadm create-md\"?\n");
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003261 else
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003262 drbd_err(device, "Meta data magic not found. Did you \"drbdadm create-md\"?\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07003263 goto err;
3264 }
3265
3266 if (be32_to_cpu(buffer->bm_bytes_per_bit) != BM_BLOCK_SIZE) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003267 drbd_err(device, "unexpected bm_bytes_per_bit: %u (expected %u)\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003268 be32_to_cpu(buffer->bm_bytes_per_bit), BM_BLOCK_SIZE);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003269 goto err;
3270 }
3271
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003272
3273 /* convert to in_core endian */
3274 bdev->md.la_size_sect = be64_to_cpu(buffer->la_size_sect);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003275 for (i = UI_CURRENT; i < UI_SIZE; i++)
3276 bdev->md.uuid[i] = be64_to_cpu(buffer->uuid[i]);
3277 bdev->md.flags = be32_to_cpu(buffer->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003278 bdev->md.device_uuid = be64_to_cpu(buffer->device_uuid);
3279
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003280 bdev->md.md_size_sect = be32_to_cpu(buffer->md_size_sect);
3281 bdev->md.al_offset = be32_to_cpu(buffer->al_offset);
3282 bdev->md.bm_offset = be32_to_cpu(buffer->bm_offset);
3283
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003284 if (check_activity_log_stripe_size(device, buffer, &bdev->md))
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003285 goto err;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003286 if (check_offsets_and_sizes(device, bdev))
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003287 goto err;
3288
Philipp Reisnerb411b362009-09-25 16:07:19 -07003289 if (be32_to_cpu(buffer->bm_offset) != bdev->md.bm_offset) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003290 drbd_err(device, "unexpected bm_offset: %d (expected %d)\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003291 be32_to_cpu(buffer->bm_offset), bdev->md.bm_offset);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003292 goto err;
3293 }
3294 if (be32_to_cpu(buffer->md_size_sect) != bdev->md.md_size_sect) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003295 drbd_err(device, "unexpected md_size: %u (expected %u)\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003296 be32_to_cpu(buffer->md_size_sect), bdev->md.md_size_sect);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003297 goto err;
3298 }
3299
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003300 rv = NO_ERROR;
3301
Andreas Gruenbacher05008132011-07-07 14:19:42 +02003302 spin_lock_irq(&device->resource->req_lock);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003303 if (device->state.conn < C_CONNECTED) {
Lars Ellenbergdb141b22012-06-25 19:15:58 +02003304 unsigned int peer;
Philipp Reisner99432fc2011-05-20 16:39:13 +02003305 peer = be32_to_cpu(buffer->la_peer_max_bio_size);
Lars Ellenbergdb141b22012-06-25 19:15:58 +02003306 peer = max(peer, DRBD_MAX_BIO_SIZE_SAFE);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003307 device->peer_max_bio_size = peer;
Philipp Reisner99432fc2011-05-20 16:39:13 +02003308 }
Andreas Gruenbacher05008132011-07-07 14:19:42 +02003309 spin_unlock_irq(&device->resource->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003310
3311 err:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003312 drbd_md_put_buffer(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003313
3314 return rv;
3315}
3316
3317/**
3318 * drbd_md_mark_dirty() - Mark meta data super block as dirty
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003319 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003320 *
3321 * Call this function if you change anything that should be written to
3322 * the meta-data super block. This function sets MD_DIRTY, and starts a
3323 * timer that ensures that within five seconds you have to call drbd_md_sync().
3324 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003325void drbd_md_mark_dirty(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003326{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003327 if (!test_and_set_bit(MD_DIRTY, &device->flags))
3328 mod_timer(&device->md_sync_timer, jiffies + 5*HZ);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003329}
Philipp Reisnerb411b362009-09-25 16:07:19 -07003330
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003331void drbd_uuid_move_history(struct drbd_device *device) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003332{
3333 int i;
3334
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003335 for (i = UI_HISTORY_START; i < UI_HISTORY_END; i++)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003336 device->ldev->md.uuid[i+1] = device->ldev->md.uuid[i];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003337}
3338
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003339void __drbd_uuid_set(struct drbd_device *device, int idx, u64 val) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003340{
3341 if (idx == UI_CURRENT) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003342 if (device->state.role == R_PRIMARY)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003343 val |= 1;
3344 else
3345 val &= ~((u64)1);
3346
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003347 drbd_set_ed_uuid(device, val);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003348 }
3349
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003350 device->ldev->md.uuid[idx] = val;
3351 drbd_md_mark_dirty(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003352}
3353
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003354void _drbd_uuid_set(struct drbd_device *device, int idx, u64 val) __must_hold(local)
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003355{
3356 unsigned long flags;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003357 spin_lock_irqsave(&device->ldev->md.uuid_lock, flags);
3358 __drbd_uuid_set(device, idx, val);
3359 spin_unlock_irqrestore(&device->ldev->md.uuid_lock, flags);
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003360}
Philipp Reisnerb411b362009-09-25 16:07:19 -07003361
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003362void drbd_uuid_set(struct drbd_device *device, int idx, u64 val) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003363{
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003364 unsigned long flags;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003365 spin_lock_irqsave(&device->ldev->md.uuid_lock, flags);
3366 if (device->ldev->md.uuid[idx]) {
3367 drbd_uuid_move_history(device);
3368 device->ldev->md.uuid[UI_HISTORY_START] = device->ldev->md.uuid[idx];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003369 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003370 __drbd_uuid_set(device, idx, val);
3371 spin_unlock_irqrestore(&device->ldev->md.uuid_lock, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003372}
3373
3374/**
3375 * drbd_uuid_new_current() - Creates a new current UUID
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003376 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003377 *
3378 * Creates a new current UUID, and rotates the old current UUID into
3379 * the bitmap slot. Causes an incremental resync upon next connect.
3380 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003381void drbd_uuid_new_current(struct drbd_device *device) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003382{
3383 u64 val;
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003384 unsigned long long bm_uuid;
3385
3386 get_random_bytes(&val, sizeof(u64));
3387
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003388 spin_lock_irq(&device->ldev->md.uuid_lock);
3389 bm_uuid = device->ldev->md.uuid[UI_BITMAP];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003390
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003391 if (bm_uuid)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003392 drbd_warn(device, "bm UUID was already set: %llX\n", bm_uuid);
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003393
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003394 device->ldev->md.uuid[UI_BITMAP] = device->ldev->md.uuid[UI_CURRENT];
3395 __drbd_uuid_set(device, UI_CURRENT, val);
3396 spin_unlock_irq(&device->ldev->md.uuid_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003397
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003398 drbd_print_uuids(device, "new current UUID");
Lars Ellenbergaaa8e2b2010-10-15 13:16:53 +02003399 /* get it to stable storage _now_ */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003400 drbd_md_sync(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003401}
3402
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003403void drbd_uuid_set_bm(struct drbd_device *device, u64 val) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003404{
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003405 unsigned long flags;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003406 if (device->ldev->md.uuid[UI_BITMAP] == 0 && val == 0)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003407 return;
3408
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003409 spin_lock_irqsave(&device->ldev->md.uuid_lock, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003410 if (val == 0) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003411 drbd_uuid_move_history(device);
3412 device->ldev->md.uuid[UI_HISTORY_START] = device->ldev->md.uuid[UI_BITMAP];
3413 device->ldev->md.uuid[UI_BITMAP] = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003414 } else {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003415 unsigned long long bm_uuid = device->ldev->md.uuid[UI_BITMAP];
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003416 if (bm_uuid)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003417 drbd_warn(device, "bm UUID was already set: %llX\n", bm_uuid);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003418
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003419 device->ldev->md.uuid[UI_BITMAP] = val & ~((u64)1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003420 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003421 spin_unlock_irqrestore(&device->ldev->md.uuid_lock, flags);
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003422
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003423 drbd_md_mark_dirty(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003424}
3425
3426/**
3427 * drbd_bmio_set_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003428 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003429 *
3430 * Sets all bits in the bitmap and writes the whole bitmap to stable storage.
3431 */
Philipp Reisner8fe39aa2013-11-22 13:22:13 +01003432int drbd_bmio_set_n_write(struct drbd_device *device) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003433{
3434 int rv = -EIO;
3435
Philipp Reisner8fe39aa2013-11-22 13:22:13 +01003436 drbd_md_set_flag(device, MDF_FULL_SYNC);
3437 drbd_md_sync(device);
3438 drbd_bm_set_all(device);
3439
3440 rv = drbd_bm_write(device);
3441
3442 if (!rv) {
3443 drbd_md_clear_flag(device, MDF_FULL_SYNC);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003444 drbd_md_sync(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003445 }
3446
3447 return rv;
3448}
3449
3450/**
3451 * drbd_bmio_clear_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003452 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003453 *
3454 * Clears all bits in the bitmap and writes the whole bitmap to stable storage.
3455 */
Philipp Reisner8fe39aa2013-11-22 13:22:13 +01003456int drbd_bmio_clear_n_write(struct drbd_device *device) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003457{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003458 drbd_resume_al(device);
Philipp Reisner8fe39aa2013-11-22 13:22:13 +01003459 drbd_bm_clear_all(device);
3460 return drbd_bm_write(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003461}
3462
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003463static int w_bitmap_io(struct drbd_work *w, int unused)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003464{
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02003465 struct drbd_device *device =
3466 container_of(w, struct drbd_device, bm_io_work.w);
3467 struct bm_io_work *work = &device->bm_io_work;
Lars Ellenberg02851e92010-12-16 14:47:39 +01003468 int rv = -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003469
Lars Ellenbergbca1cba2016-06-14 00:26:16 +02003470 if (work->flags != BM_LOCKED_CHANGE_ALLOWED) {
3471 int cnt = atomic_read(&device->ap_bio_cnt);
3472 if (cnt)
3473 drbd_err(device, "FIXME: ap_bio_cnt %d, expected 0; queued for '%s'\n",
3474 cnt, work->why);
3475 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07003476
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003477 if (get_ldev(device)) {
3478 drbd_bm_lock(device, work->why, work->flags);
3479 rv = work->io_fn(device);
3480 drbd_bm_unlock(device);
3481 put_ldev(device);
Lars Ellenberg02851e92010-12-16 14:47:39 +01003482 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07003483
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003484 clear_bit_unlock(BITMAP_IO, &device->flags);
3485 wake_up(&device->misc_wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003486
3487 if (work->done)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003488 work->done(device, rv);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003489
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003490 clear_bit(BITMAP_IO_QUEUED, &device->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003491 work->why = NULL;
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003492 work->flags = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003493
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003494 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003495}
3496
3497/**
3498 * drbd_queue_bitmap_io() - Queues an IO operation on the whole bitmap
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003499 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003500 * @io_fn: IO callback to be called when bitmap IO is possible
3501 * @done: callback to be called after the bitmap IO was performed
3502 * @why: Descriptive text of the reason for doing the IO
Lee Jones584164c2021-03-12 10:55:27 +00003503 * @flags: Bitmap flags
Philipp Reisnerb411b362009-09-25 16:07:19 -07003504 *
3505 * While IO on the bitmap happens we freeze application IO thus we ensure
3506 * that drbd_set_out_of_sync() can not be called. This function MAY ONLY be
3507 * called from worker context. It MUST NOT be used while a previous such
3508 * work is still pending!
Philipp Reisner8fe39aa2013-11-22 13:22:13 +01003509 *
3510 * Its worker function encloses the call of io_fn() by get_ldev() and
3511 * put_ldev().
Philipp Reisnerb411b362009-09-25 16:07:19 -07003512 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003513void drbd_queue_bitmap_io(struct drbd_device *device,
Andreas Gruenbacher54761692011-05-30 16:15:21 +02003514 int (*io_fn)(struct drbd_device *),
3515 void (*done)(struct drbd_device *, int),
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003516 char *why, enum bm_flag flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003517{
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02003518 D_ASSERT(device, current == first_peer_device(device)->connection->worker.task);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003519
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02003520 D_ASSERT(device, !test_bit(BITMAP_IO_QUEUED, &device->flags));
3521 D_ASSERT(device, !test_bit(BITMAP_IO, &device->flags));
3522 D_ASSERT(device, list_empty(&device->bm_io_work.w.list));
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003523 if (device->bm_io_work.why)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003524 drbd_err(device, "FIXME going to queue '%s' but '%s' still pending?\n",
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003525 why, device->bm_io_work.why);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003526
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003527 device->bm_io_work.io_fn = io_fn;
3528 device->bm_io_work.done = done;
3529 device->bm_io_work.why = why;
3530 device->bm_io_work.flags = flags;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003531
Andreas Gruenbacher05008132011-07-07 14:19:42 +02003532 spin_lock_irq(&device->resource->req_lock);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003533 set_bit(BITMAP_IO, &device->flags);
Lars Ellenberg5bded4e2015-04-16 16:51:34 +02003534 /* don't wait for pending application IO if the caller indicates that
3535 * application IO does not conflict anyways. */
3536 if (flags == BM_LOCKED_CHANGE_ALLOWED || atomic_read(&device->ap_bio_cnt) == 0) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003537 if (!test_and_set_bit(BITMAP_IO_QUEUED, &device->flags))
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02003538 drbd_queue_work(&first_peer_device(device)->connection->sender_work,
3539 &device->bm_io_work.w);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003540 }
Andreas Gruenbacher05008132011-07-07 14:19:42 +02003541 spin_unlock_irq(&device->resource->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003542}
3543
3544/**
3545 * drbd_bitmap_io() - Does an IO operation on the whole bitmap
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003546 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003547 * @io_fn: IO callback to be called when bitmap IO is possible
3548 * @why: Descriptive text of the reason for doing the IO
Lee Jones584164c2021-03-12 10:55:27 +00003549 * @flags: Bitmap flags
Philipp Reisnerb411b362009-09-25 16:07:19 -07003550 *
3551 * freezes application IO while that the actual IO operations runs. This
3552 * functions MAY NOT be called from worker context.
3553 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003554int drbd_bitmap_io(struct drbd_device *device, int (*io_fn)(struct drbd_device *),
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003555 char *why, enum bm_flag flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003556{
Lars Ellenbergc0065f92016-06-14 00:26:10 +02003557 /* Only suspend io, if some operation is supposed to be locked out */
3558 const bool do_suspend_io = flags & (BM_DONT_CLEAR|BM_DONT_SET|BM_DONT_TEST);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003559 int rv;
3560
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02003561 D_ASSERT(device, current != first_peer_device(device)->connection->worker.task);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003562
Lars Ellenbergc0065f92016-06-14 00:26:10 +02003563 if (do_suspend_io)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003564 drbd_suspend_io(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003565
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003566 drbd_bm_lock(device, why, flags);
3567 rv = io_fn(device);
3568 drbd_bm_unlock(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003569
Lars Ellenbergc0065f92016-06-14 00:26:10 +02003570 if (do_suspend_io)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003571 drbd_resume_io(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003572
3573 return rv;
3574}
3575
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003576void drbd_md_set_flag(struct drbd_device *device, int flag) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003577{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003578 if ((device->ldev->md.flags & flag) != flag) {
3579 drbd_md_mark_dirty(device);
3580 device->ldev->md.flags |= flag;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003581 }
3582}
3583
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003584void drbd_md_clear_flag(struct drbd_device *device, int flag) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003585{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003586 if ((device->ldev->md.flags & flag) != 0) {
3587 drbd_md_mark_dirty(device);
3588 device->ldev->md.flags &= ~flag;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003589 }
3590}
3591int drbd_md_test_flag(struct drbd_backing_dev *bdev, int flag)
3592{
3593 return (bdev->md.flags & flag) != 0;
3594}
3595
Kees Cook2bccef32017-10-17 20:33:01 -07003596static void md_sync_timer_fn(struct timer_list *t)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003597{
Kees Cook2bccef32017-10-17 20:33:01 -07003598 struct drbd_device *device = from_timer(device, t, md_sync_timer);
Lars Ellenbergac0acb92014-02-11 09:47:58 +01003599 drbd_device_post_work(device, MD_SYNC);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003600}
3601
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01003602const char *cmdname(enum drbd_packet cmd)
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003603{
3604 /* THINK may need to become several global tables
3605 * when we want to support more than
3606 * one PRO_VERSION */
3607 static const char *cmdnames[] = {
3608 [P_DATA] = "Data",
Lars Ellenberg9104d312016-06-14 00:26:31 +02003609 [P_WSAME] = "WriteSame",
3610 [P_TRIM] = "Trim",
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003611 [P_DATA_REPLY] = "DataReply",
3612 [P_RS_DATA_REPLY] = "RSDataReply",
3613 [P_BARRIER] = "Barrier",
3614 [P_BITMAP] = "ReportBitMap",
3615 [P_BECOME_SYNC_TARGET] = "BecomeSyncTarget",
3616 [P_BECOME_SYNC_SOURCE] = "BecomeSyncSource",
3617 [P_UNPLUG_REMOTE] = "UnplugRemote",
3618 [P_DATA_REQUEST] = "DataRequest",
3619 [P_RS_DATA_REQUEST] = "RSDataRequest",
3620 [P_SYNC_PARAM] = "SyncParam",
3621 [P_SYNC_PARAM89] = "SyncParam89",
3622 [P_PROTOCOL] = "ReportProtocol",
3623 [P_UUIDS] = "ReportUUIDs",
3624 [P_SIZES] = "ReportSizes",
3625 [P_STATE] = "ReportState",
3626 [P_SYNC_UUID] = "ReportSyncUUID",
3627 [P_AUTH_CHALLENGE] = "AuthChallenge",
3628 [P_AUTH_RESPONSE] = "AuthResponse",
3629 [P_PING] = "Ping",
3630 [P_PING_ACK] = "PingAck",
3631 [P_RECV_ACK] = "RecvAck",
3632 [P_WRITE_ACK] = "WriteAck",
3633 [P_RS_WRITE_ACK] = "RSWriteAck",
Lars Ellenbergd4dabbe2012-08-01 12:33:51 +02003634 [P_SUPERSEDED] = "Superseded",
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003635 [P_NEG_ACK] = "NegAck",
3636 [P_NEG_DREPLY] = "NegDReply",
3637 [P_NEG_RS_DREPLY] = "NegRSDReply",
3638 [P_BARRIER_ACK] = "BarrierAck",
3639 [P_STATE_CHG_REQ] = "StateChgRequest",
3640 [P_STATE_CHG_REPLY] = "StateChgReply",
3641 [P_OV_REQUEST] = "OVRequest",
3642 [P_OV_REPLY] = "OVReply",
3643 [P_OV_RESULT] = "OVResult",
3644 [P_CSUM_RS_REQUEST] = "CsumRSRequest",
3645 [P_RS_IS_IN_SYNC] = "CsumRSIsInSync",
3646 [P_COMPRESSED_BITMAP] = "CBitmap",
3647 [P_DELAY_PROBE] = "DelayProbe",
3648 [P_OUT_OF_SYNC] = "OutOfSync",
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003649 [P_RETRY_WRITE] = "RetryWrite",
Lars Ellenbergae25b332011-04-24 00:01:16 +02003650 [P_RS_CANCEL] = "RSCancel",
3651 [P_CONN_ST_CHG_REQ] = "conn_st_chg_req",
3652 [P_CONN_ST_CHG_REPLY] = "conn_st_chg_reply",
Philipp Reisner036b17e2011-05-16 17:38:11 +02003653 [P_PROTOCOL_UPDATE] = "protocol_update",
Philipp Reisner700ca8c2016-06-14 00:26:13 +02003654 [P_RS_THIN_REQ] = "rs_thin_req",
3655 [P_RS_DEALLOCATED] = "rs_deallocated",
Lars Ellenbergae25b332011-04-24 00:01:16 +02003656
3657 /* enum drbd_packet, but not commands - obsoleted flags:
3658 * P_MAY_IGNORE
3659 * P_MAX_OPT_CMD
3660 */
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003661 };
3662
Lars Ellenbergae25b332011-04-24 00:01:16 +02003663 /* too big for the array: 0xfffX */
Andreas Gruenbachere5d6f332011-03-28 16:44:40 +02003664 if (cmd == P_INITIAL_META)
3665 return "InitialMeta";
3666 if (cmd == P_INITIAL_DATA)
3667 return "InitialData";
Andreas Gruenbacher60381782011-03-28 17:05:50 +02003668 if (cmd == P_CONNECTION_FEATURES)
3669 return "ConnectionFeatures";
Andreas Gruenbacher6e849ce2011-03-14 17:27:45 +01003670 if (cmd >= ARRAY_SIZE(cmdnames))
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003671 return "Unknown";
3672 return cmdnames[cmd];
3673}
3674
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003675/**
3676 * drbd_wait_misc - wait for a request to make progress
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003677 * @device: device associated with the request
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003678 * @i: the struct drbd_interval embedded in struct drbd_request or
3679 * struct drbd_peer_request
3680 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003681int drbd_wait_misc(struct drbd_device *device, struct drbd_interval *i)
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003682{
Philipp Reisner44ed1672011-04-19 17:10:19 +02003683 struct net_conf *nc;
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003684 DEFINE_WAIT(wait);
3685 long timeout;
3686
Philipp Reisner44ed1672011-04-19 17:10:19 +02003687 rcu_read_lock();
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02003688 nc = rcu_dereference(first_peer_device(device)->connection->net_conf);
Philipp Reisner44ed1672011-04-19 17:10:19 +02003689 if (!nc) {
3690 rcu_read_unlock();
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003691 return -ETIMEDOUT;
Philipp Reisner44ed1672011-04-19 17:10:19 +02003692 }
3693 timeout = nc->ko_count ? nc->timeout * HZ / 10 * nc->ko_count : MAX_SCHEDULE_TIMEOUT;
3694 rcu_read_unlock();
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003695
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003696 /* Indicate to wake up device->misc_wait on progress. */
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003697 i->waiting = true;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003698 prepare_to_wait(&device->misc_wait, &wait, TASK_INTERRUPTIBLE);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02003699 spin_unlock_irq(&device->resource->req_lock);
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003700 timeout = schedule_timeout(timeout);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003701 finish_wait(&device->misc_wait, &wait);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02003702 spin_lock_irq(&device->resource->req_lock);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003703 if (!timeout || device->state.conn < C_CONNECTED)
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003704 return -ETIMEDOUT;
3705 if (signal_pending(current))
3706 return -ERESTARTSYS;
3707 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003708}
3709
Andreas Gruenbacher28bc3b82014-08-14 18:33:30 +02003710void lock_all_resources(void)
3711{
3712 struct drbd_resource *resource;
3713 int __maybe_unused i = 0;
3714
3715 mutex_lock(&resources_mutex);
3716 local_irq_disable();
3717 for_each_resource(resource, &drbd_resources)
3718 spin_lock_nested(&resource->req_lock, i++);
3719}
3720
3721void unlock_all_resources(void)
3722{
3723 struct drbd_resource *resource;
3724
3725 for_each_resource(resource, &drbd_resources)
3726 spin_unlock(&resource->req_lock);
3727 local_irq_enable();
3728 mutex_unlock(&resources_mutex);
3729}
3730
Philipp Reisnerb411b362009-09-25 16:07:19 -07003731#ifdef CONFIG_DRBD_FAULT_INJECTION
3732/* Fault insertion support including random number generator shamelessly
3733 * stolen from kernel/rcutorture.c */
3734struct fault_random_state {
3735 unsigned long state;
3736 unsigned long count;
3737};
3738
3739#define FAULT_RANDOM_MULT 39916801 /* prime */
3740#define FAULT_RANDOM_ADD 479001701 /* prime */
3741#define FAULT_RANDOM_REFRESH 10000
3742
3743/*
3744 * Crude but fast random-number generator. Uses a linear congruential
3745 * generator, with occasional help from get_random_bytes().
3746 */
3747static unsigned long
3748_drbd_fault_random(struct fault_random_state *rsp)
3749{
3750 long refresh;
3751
Roel Kluin49829ea2009-12-15 22:55:44 +01003752 if (!rsp->count--) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07003753 get_random_bytes(&refresh, sizeof(refresh));
3754 rsp->state += refresh;
3755 rsp->count = FAULT_RANDOM_REFRESH;
3756 }
3757 rsp->state = rsp->state * FAULT_RANDOM_MULT + FAULT_RANDOM_ADD;
3758 return swahw32(rsp->state);
3759}
3760
3761static char *
3762_drbd_fault_str(unsigned int type) {
3763 static char *_faults[] = {
3764 [DRBD_FAULT_MD_WR] = "Meta-data write",
3765 [DRBD_FAULT_MD_RD] = "Meta-data read",
3766 [DRBD_FAULT_RS_WR] = "Resync write",
3767 [DRBD_FAULT_RS_RD] = "Resync read",
3768 [DRBD_FAULT_DT_WR] = "Data write",
3769 [DRBD_FAULT_DT_RD] = "Data read",
3770 [DRBD_FAULT_DT_RA] = "Data read ahead",
3771 [DRBD_FAULT_BM_ALLOC] = "BM allocation",
Philipp Reisner6b4388a2010-04-26 14:11:45 +02003772 [DRBD_FAULT_AL_EE] = "EE allocation",
3773 [DRBD_FAULT_RECEIVE] = "receive data corruption",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003774 };
3775
3776 return (type < DRBD_FAULT_MAX) ? _faults[type] : "**Unknown**";
3777}
3778
3779unsigned int
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003780_drbd_insert_fault(struct drbd_device *device, unsigned int type)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003781{
3782 static struct fault_random_state rrs = {0, 0};
3783
3784 unsigned int ret = (
Roland Kammerer183ece32017-08-29 10:20:46 +02003785 (drbd_fault_devs == 0 ||
3786 ((1 << device_to_minor(device)) & drbd_fault_devs) != 0) &&
3787 (((_drbd_fault_random(&rrs) % 100) + 1) <= drbd_fault_rate));
Philipp Reisnerb411b362009-09-25 16:07:19 -07003788
3789 if (ret) {
Roland Kammerer183ece32017-08-29 10:20:46 +02003790 drbd_fault_count++;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003791
Lars Ellenberg73835062010-05-27 11:51:56 +02003792 if (__ratelimit(&drbd_ratelimit_state))
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003793 drbd_warn(device, "***Simulating %s failure\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003794 _drbd_fault_str(type));
3795 }
3796
3797 return ret;
3798}
3799#endif
3800
3801const char *drbd_buildtag(void)
3802{
3803 /* DRBD built from external sources has here a reference to the
3804 git hash of the source code. */
3805
3806 static char buildtag[38] = "\0uilt-in";
3807
3808 if (buildtag[0] == 0) {
Cong Wangbc4854b2012-04-03 14:13:36 +08003809#ifdef MODULE
3810 sprintf(buildtag, "srcversion: %-24s", THIS_MODULE->srcversion);
3811#else
3812 buildtag[0] = 'b';
Philipp Reisnerb411b362009-09-25 16:07:19 -07003813#endif
Philipp Reisnerb411b362009-09-25 16:07:19 -07003814 }
3815
3816 return buildtag;
3817}
3818
3819module_init(drbd_init)
3820module_exit(drbd_cleanup)
3821
Philipp Reisnerb411b362009-09-25 16:07:19 -07003822EXPORT_SYMBOL(drbd_conn_str);
3823EXPORT_SYMBOL(drbd_role_str);
3824EXPORT_SYMBOL(drbd_disk_str);
3825EXPORT_SYMBOL(drbd_set_st_err_str);