blob: 6f450816c4fa67fea37753d50b80d2237d24bded [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 */
Kees Cook52a0cab2021-11-18 12:37:12 -0800732 BUILD_BUG_ON(sizeof(p->algs) != 2 * SHARED_SECRET_MAX);
733 memset(&p->algs, 0, sizeof(p->algs));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700734
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200735 if (get_ldev(peer_device->device)) {
736 dc = rcu_dereference(peer_device->device->ldev->disk_conf);
Andreas Gruenbacher6394b932011-05-11 14:29:52 +0200737 p->resync_rate = cpu_to_be32(dc->resync_rate);
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200738 p->c_plan_ahead = cpu_to_be32(dc->c_plan_ahead);
739 p->c_delay_target = cpu_to_be32(dc->c_delay_target);
740 p->c_fill_target = cpu_to_be32(dc->c_fill_target);
741 p->c_max_rate = cpu_to_be32(dc->c_max_rate);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200742 put_ldev(peer_device->device);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200743 } else {
Andreas Gruenbacher6394b932011-05-11 14:29:52 +0200744 p->resync_rate = cpu_to_be32(DRBD_RESYNC_RATE_DEF);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200745 p->c_plan_ahead = cpu_to_be32(DRBD_C_PLAN_AHEAD_DEF);
746 p->c_delay_target = cpu_to_be32(DRBD_C_DELAY_TARGET_DEF);
747 p->c_fill_target = cpu_to_be32(DRBD_C_FILL_TARGET_DEF);
748 p->c_max_rate = cpu_to_be32(DRBD_C_MAX_RATE_DEF);
749 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700750
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200751 if (apv >= 88)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200752 strcpy(p->verify_alg, nc->verify_alg);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200753 if (apv >= 89)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200754 strcpy(p->csums_alg, nc->csums_alg);
755 rcu_read_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -0700756
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200757 return drbd_send_command(peer_device, sock, cmd, size, NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700758}
759
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200760int __drbd_send_protocol(struct drbd_connection *connection, enum drbd_packet cmd)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700761{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200762 struct drbd_socket *sock;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700763 struct p_protocol *p;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200764 struct net_conf *nc;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200765 int size, cf;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700766
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200767 sock = &connection->data;
768 p = __conn_prepare_command(connection, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200769 if (!p)
770 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700771
Philipp Reisner44ed1672011-04-19 17:10:19 +0200772 rcu_read_lock();
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200773 nc = rcu_dereference(connection->net_conf);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700774
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200775 if (nc->tentative && connection->agreed_pro_version < 92) {
Philipp Reisner44ed1672011-04-19 17:10:19 +0200776 rcu_read_unlock();
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +0200777 drbd_err(connection, "--dry-run is not supported by peer");
Philipp Reisner44ed1672011-04-19 17:10:19 +0200778 return -EOPNOTSUPP;
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100779 }
Philipp Reisner44ed1672011-04-19 17:10:19 +0200780
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200781 size = sizeof(*p);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200782 if (connection->agreed_pro_version >= 87)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200783 size += strlen(nc->integrity_alg) + 1;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700784
Philipp Reisner44ed1672011-04-19 17:10:19 +0200785 p->protocol = cpu_to_be32(nc->wire_protocol);
786 p->after_sb_0p = cpu_to_be32(nc->after_sb_0p);
787 p->after_sb_1p = cpu_to_be32(nc->after_sb_1p);
788 p->after_sb_2p = cpu_to_be32(nc->after_sb_2p);
789 p->two_primaries = cpu_to_be32(nc->two_primaries);
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100790 cf = 0;
Andreas Gruenbacher6139f602011-05-06 20:00:02 +0200791 if (nc->discard_my_data)
792 cf |= CF_DISCARD_MY_DATA;
Andreas Gruenbacher6dff2902011-06-28 14:18:12 +0200793 if (nc->tentative)
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200794 cf |= CF_DRY_RUN;
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100795 p->conn_flags = cpu_to_be32(cf);
796
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200797 if (connection->agreed_pro_version >= 87)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200798 strcpy(p->integrity_alg, nc->integrity_alg);
799 rcu_read_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -0700800
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200801 return __conn_send_command(connection, sock, cmd, size, NULL, 0);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200802}
803
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200804int drbd_send_protocol(struct drbd_connection *connection)
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200805{
806 int err;
807
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200808 mutex_lock(&connection->data.mutex);
809 err = __drbd_send_protocol(connection, P_PROTOCOL);
810 mutex_unlock(&connection->data.mutex);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200811
812 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700813}
814
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200815static int _drbd_send_uuids(struct drbd_peer_device *peer_device, u64 uuid_flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700816{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200817 struct drbd_device *device = peer_device->device;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200818 struct drbd_socket *sock;
819 struct p_uuids *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700820 int i;
821
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200822 if (!get_ldev_if_state(device, D_NEGOTIATING))
Andreas Gruenbacher2ae5f952011-03-16 01:07:20 +0100823 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700824
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200825 sock = &peer_device->connection->data;
826 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200827 if (!p) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200828 put_ldev(device);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200829 return -EIO;
830 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200831 spin_lock_irq(&device->ldev->md.uuid_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700832 for (i = UI_CURRENT; i < UI_SIZE; i++)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200833 p->uuid[i] = cpu_to_be64(device->ldev->md.uuid[i]);
834 spin_unlock_irq(&device->ldev->md.uuid_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700835
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200836 device->comm_bm_set = drbd_bm_total_weight(device);
837 p->uuid[UI_SIZE] = cpu_to_be64(device->comm_bm_set);
Philipp Reisner44ed1672011-04-19 17:10:19 +0200838 rcu_read_lock();
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200839 uuid_flags |= rcu_dereference(peer_device->connection->net_conf)->discard_my_data ? 1 : 0;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200840 rcu_read_unlock();
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200841 uuid_flags |= test_bit(CRASHED_PRIMARY, &device->flags) ? 2 : 0;
842 uuid_flags |= device->new_state_tmp.disk == D_INCONSISTENT ? 4 : 0;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200843 p->uuid[UI_FLAGS] = cpu_to_be64(uuid_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700844
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200845 put_ldev(device);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200846 return drbd_send_command(peer_device, sock, P_UUIDS, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700847}
848
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200849int drbd_send_uuids(struct drbd_peer_device *peer_device)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700850{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200851 return _drbd_send_uuids(peer_device, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700852}
853
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200854int drbd_send_uuids_skip_initial_sync(struct drbd_peer_device *peer_device)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700855{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200856 return _drbd_send_uuids(peer_device, 8);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700857}
858
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200859void drbd_print_uuids(struct drbd_device *device, const char *text)
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100860{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200861 if (get_ldev_if_state(device, D_NEGOTIATING)) {
862 u64 *uuid = device->ldev->md.uuid;
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200863 drbd_info(device, "%s %016llX:%016llX:%016llX:%016llX\n",
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100864 text,
865 (unsigned long long)uuid[UI_CURRENT],
866 (unsigned long long)uuid[UI_BITMAP],
867 (unsigned long long)uuid[UI_HISTORY_START],
868 (unsigned long long)uuid[UI_HISTORY_END]);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200869 put_ldev(device);
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100870 } else {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200871 drbd_info(device, "%s effective data uuid: %016llX\n",
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100872 text,
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200873 (unsigned long long)device->ed_uuid);
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100874 }
875}
876
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200877void drbd_gen_and_send_sync_uuid(struct drbd_peer_device *peer_device)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700878{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200879 struct drbd_device *device = peer_device->device;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200880 struct drbd_socket *sock;
881 struct p_rs_uuid *p;
Lars Ellenberg5a22db82010-12-17 21:14:23 +0100882 u64 uuid;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700883
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200884 D_ASSERT(device, device->state.disk == D_UP_TO_DATE);
Lars Ellenberg5a22db82010-12-17 21:14:23 +0100885
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200886 uuid = device->ldev->md.uuid[UI_BITMAP];
Philipp Reisner5ba3dac2011-10-05 15:54:18 +0200887 if (uuid && uuid != UUID_JUST_CREATED)
888 uuid = uuid + UUID_NEW_BM_OFFSET;
889 else
890 get_random_bytes(&uuid, sizeof(u64));
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200891 drbd_uuid_set(device, UI_BITMAP, uuid);
892 drbd_print_uuids(device, "updated sync UUID");
893 drbd_md_sync(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700894
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200895 sock = &peer_device->connection->data;
896 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200897 if (p) {
898 p->uuid = cpu_to_be64(uuid);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200899 drbd_send_command(peer_device, sock, P_SYNC_UUID, sizeof(*p), NULL, 0);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200900 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700901}
902
Lars Ellenberg9104d312016-06-14 00:26:31 +0200903/* communicated if (agreed_features & DRBD_FF_WSAME) */
Baoyou Xie1ffa7bf2017-08-29 10:20:36 +0200904static void
905assign_p_sizes_qlim(struct drbd_device *device, struct p_sizes *p,
906 struct request_queue *q)
Lars Ellenberg9104d312016-06-14 00:26:31 +0200907{
908 if (q) {
909 p->qlim->physical_block_size = cpu_to_be32(queue_physical_block_size(q));
910 p->qlim->logical_block_size = cpu_to_be32(queue_logical_block_size(q));
911 p->qlim->alignment_offset = cpu_to_be32(queue_alignment_offset(q));
912 p->qlim->io_min = cpu_to_be32(queue_io_min(q));
913 p->qlim->io_opt = cpu_to_be32(queue_io_opt(q));
914 p->qlim->discard_enabled = blk_queue_discard(q);
Lars Ellenberg9104d312016-06-14 00:26:31 +0200915 p->qlim->write_same_capable = !!q->limits.max_write_same_sectors;
916 } else {
917 q = device->rq_queue;
918 p->qlim->physical_block_size = cpu_to_be32(queue_physical_block_size(q));
919 p->qlim->logical_block_size = cpu_to_be32(queue_logical_block_size(q));
920 p->qlim->alignment_offset = 0;
921 p->qlim->io_min = cpu_to_be32(queue_io_min(q));
922 p->qlim->io_opt = cpu_to_be32(queue_io_opt(q));
923 p->qlim->discard_enabled = 0;
Lars Ellenberg9104d312016-06-14 00:26:31 +0200924 p->qlim->write_same_capable = 0;
925 }
926}
927
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200928int drbd_send_sizes(struct drbd_peer_device *peer_device, int trigger_reply, enum dds_flags flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700929{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200930 struct drbd_device *device = peer_device->device;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200931 struct drbd_socket *sock;
932 struct p_sizes *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700933 sector_t d_size, u_size;
Lars Ellenbergdb141b22012-06-25 19:15:58 +0200934 int q_order_type;
935 unsigned int max_bio_size;
Lars Ellenberg9104d312016-06-14 00:26:31 +0200936 unsigned int packet_size;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700937
Lars Ellenberg9104d312016-06-14 00:26:31 +0200938 sock = &peer_device->connection->data;
939 p = drbd_prepare_command(peer_device, sock);
940 if (!p)
941 return -EIO;
942
943 packet_size = sizeof(*p);
944 if (peer_device->connection->agreed_features & DRBD_FF_WSAME)
945 packet_size += sizeof(p->qlim[0]);
946
947 memset(p, 0, packet_size);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200948 if (get_ldev_if_state(device, D_NEGOTIATING)) {
Lars Ellenberg9104d312016-06-14 00:26:31 +0200949 struct request_queue *q = bdev_get_queue(device->ldev->backing_bdev);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200950 d_size = drbd_get_max_capacity(device->ldev);
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200951 rcu_read_lock();
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200952 u_size = rcu_dereference(device->ldev->disk_conf)->disk_size;
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200953 rcu_read_unlock();
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200954 q_order_type = drbd_queue_order_type(device);
Lars Ellenberg9104d312016-06-14 00:26:31 +0200955 max_bio_size = queue_max_hw_sectors(q) << 9;
Lars Ellenbergdb141b22012-06-25 19:15:58 +0200956 max_bio_size = min(max_bio_size, DRBD_MAX_BIO_SIZE);
Lars Ellenberg9104d312016-06-14 00:26:31 +0200957 assign_p_sizes_qlim(device, p, q);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200958 put_ldev(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700959 } else {
960 d_size = 0;
961 u_size = 0;
962 q_order_type = QUEUE_ORDERED_NONE;
Philipp Reisner99432fc2011-05-20 16:39:13 +0200963 max_bio_size = DRBD_MAX_BIO_SIZE; /* ... multiple BIOs per peer_request */
Lars Ellenberg9104d312016-06-14 00:26:31 +0200964 assign_p_sizes_qlim(device, p, NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700965 }
966
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200967 if (peer_device->connection->agreed_pro_version <= 94)
Lars Ellenbergdb141b22012-06-25 19:15:58 +0200968 max_bio_size = min(max_bio_size, DRBD_MAX_SIZE_H80_PACKET);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200969 else if (peer_device->connection->agreed_pro_version < 100)
Philipp Reisner98683652012-11-09 14:18:43 +0100970 max_bio_size = min(max_bio_size, DRBD_MAX_BIO_SIZE_P95);
Philipp Reisner68093842011-06-30 15:43:06 +0200971
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200972 p->d_size = cpu_to_be64(d_size);
973 p->u_size = cpu_to_be64(u_size);
Christoph Hellwig155bd9d2020-09-25 18:06:17 +0200974 if (trigger_reply)
975 p->c_size = 0;
976 else
977 p->c_size = cpu_to_be64(get_capacity(device->vdisk));
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200978 p->max_bio_size = cpu_to_be32(max_bio_size);
979 p->queue_order_type = cpu_to_be16(q_order_type);
980 p->dds_flags = cpu_to_be16(flags);
Lars Ellenberg9104d312016-06-14 00:26:31 +0200981
982 return drbd_send_command(peer_device, sock, P_SIZES, packet_size, NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700983}
984
985/**
Lars Ellenbergf479ea02011-10-27 16:52:30 +0200986 * drbd_send_current_state() - Sends the drbd state to the peer
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200987 * @peer_device: DRBD peer device.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700988 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200989int drbd_send_current_state(struct drbd_peer_device *peer_device)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700990{
Andreas Gruenbacher7c967152011-03-22 00:49:36 +0100991 struct drbd_socket *sock;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200992 struct p_state *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700993
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200994 sock = &peer_device->connection->data;
995 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200996 if (!p)
997 return -EIO;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200998 p->state = cpu_to_be32(peer_device->device->state.i); /* Within the send mutex */
999 return drbd_send_command(peer_device, sock, P_STATE, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001000}
1001
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001002/**
1003 * drbd_send_state() - After a state change, sends the new state to the peer
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001004 * @peer_device: DRBD peer device.
Philipp Reisner43de7c82011-11-10 13:16:13 +01001005 * @state: the state to send, not necessarily the current state.
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001006 *
1007 * Each state change queues an "after_state_ch" work, which will eventually
1008 * send the resulting new state to the peer. If more state changes happen
1009 * between queuing and processing of the after_state_ch work, we still
1010 * want to send each intermediary state in the order it occurred.
1011 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001012int drbd_send_state(struct drbd_peer_device *peer_device, union drbd_state state)
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001013{
Philipp Reisner43de7c82011-11-10 13:16:13 +01001014 struct drbd_socket *sock;
1015 struct p_state *p;
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001016
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001017 sock = &peer_device->connection->data;
1018 p = drbd_prepare_command(peer_device, sock);
Philipp Reisner43de7c82011-11-10 13:16:13 +01001019 if (!p)
1020 return -EIO;
1021 p->state = cpu_to_be32(state.i); /* Within the send mutex */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001022 return drbd_send_command(peer_device, sock, P_STATE, sizeof(*p), NULL, 0);
Philipp Reisner43de7c82011-11-10 13:16:13 +01001023}
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001024
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001025int 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 -07001026{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001027 struct drbd_socket *sock;
1028 struct p_req_state *p;
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001029
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001030 sock = &peer_device->connection->data;
1031 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001032 if (!p)
1033 return -EIO;
1034 p->mask = cpu_to_be32(mask.i);
1035 p->val = cpu_to_be32(val.i);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001036 return drbd_send_command(peer_device, sock, P_STATE_CHG_REQ, sizeof(*p), NULL, 0);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001037}
1038
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001039int conn_send_state_req(struct drbd_connection *connection, union drbd_state mask, union drbd_state val)
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001040{
1041 enum drbd_packet cmd;
1042 struct drbd_socket *sock;
1043 struct p_req_state *p;
1044
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001045 cmd = connection->agreed_pro_version < 100 ? P_STATE_CHG_REQ : P_CONN_ST_CHG_REQ;
1046 sock = &connection->data;
1047 p = conn_prepare_command(connection, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001048 if (!p)
1049 return -EIO;
1050 p->mask = cpu_to_be32(mask.i);
1051 p->val = cpu_to_be32(val.i);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001052 return conn_send_command(connection, sock, cmd, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001053}
1054
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001055void drbd_send_sr_reply(struct drbd_peer_device *peer_device, enum drbd_state_rv retcode)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001056{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001057 struct drbd_socket *sock;
1058 struct p_req_state_reply *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001059
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001060 sock = &peer_device->connection->meta;
1061 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001062 if (p) {
1063 p->retcode = cpu_to_be32(retcode);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001064 drbd_send_command(peer_device, sock, P_STATE_CHG_REPLY, sizeof(*p), NULL, 0);
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001065 }
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001066}
1067
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001068void conn_send_sr_reply(struct drbd_connection *connection, enum drbd_state_rv retcode)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001069{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001070 struct drbd_socket *sock;
1071 struct p_req_state_reply *p;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001072 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 -07001073
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001074 sock = &connection->meta;
1075 p = conn_prepare_command(connection, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001076 if (p) {
1077 p->retcode = cpu_to_be32(retcode);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001078 conn_send_command(connection, sock, cmd, sizeof(*p), NULL, 0);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001079 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001080}
1081
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001082static void dcbp_set_code(struct p_compressed_bm *p, enum drbd_bitmap_code code)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001083{
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001084 BUG_ON(code & ~0xf);
1085 p->encoding = (p->encoding & ~0xf) | code;
1086}
Philipp Reisnerb411b362009-09-25 16:07:19 -07001087
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001088static void dcbp_set_start(struct p_compressed_bm *p, int set)
1089{
1090 p->encoding = (p->encoding & ~0x80) | (set ? 0x80 : 0);
1091}
Philipp Reisnerb411b362009-09-25 16:07:19 -07001092
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001093static void dcbp_set_pad_bits(struct p_compressed_bm *p, int n)
1094{
1095 BUG_ON(n & ~0x7);
1096 p->encoding = (p->encoding & (~0x7 << 4)) | (n << 4);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001097}
1098
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001099static int fill_bitmap_rle_bits(struct drbd_device *device,
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001100 struct p_compressed_bm *p,
1101 unsigned int size,
1102 struct bm_xfer_ctx *c)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001103{
1104 struct bitstream bs;
1105 unsigned long plain_bits;
1106 unsigned long tmp;
1107 unsigned long rl;
1108 unsigned len;
1109 unsigned toggle;
Philipp Reisner44ed1672011-04-19 17:10:19 +02001110 int bits, use_rle;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001111
1112 /* may we use this feature? */
Philipp Reisner44ed1672011-04-19 17:10:19 +02001113 rcu_read_lock();
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001114 use_rle = rcu_dereference(first_peer_device(device)->connection->net_conf)->use_rle;
Philipp Reisner44ed1672011-04-19 17:10:19 +02001115 rcu_read_unlock();
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001116 if (!use_rle || first_peer_device(device)->connection->agreed_pro_version < 90)
Philipp Reisner44ed1672011-04-19 17:10:19 +02001117 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001118
1119 if (c->bit_offset >= c->bm_bits)
1120 return 0; /* nothing to do. */
1121
1122 /* use at most thus many bytes */
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001123 bitstream_init(&bs, p->code, size, 0);
1124 memset(p->code, 0, size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001125 /* plain bits covered in this code string */
1126 plain_bits = 0;
1127
1128 /* p->encoding & 0x80 stores whether the first run length is set.
1129 * bit offset is implicit.
1130 * start with toggle == 2 to be able to tell the first iteration */
1131 toggle = 2;
1132
1133 /* see how much plain bits we can stuff into one packet
1134 * using RLE and VLI. */
1135 do {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001136 tmp = (toggle == 0) ? _drbd_bm_find_next_zero(device, c->bit_offset)
1137 : _drbd_bm_find_next(device, c->bit_offset);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001138 if (tmp == -1UL)
1139 tmp = c->bm_bits;
1140 rl = tmp - c->bit_offset;
1141
1142 if (toggle == 2) { /* first iteration */
1143 if (rl == 0) {
1144 /* the first checked bit was set,
1145 * store start value, */
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001146 dcbp_set_start(p, 1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001147 /* but skip encoding of zero run length */
1148 toggle = !toggle;
1149 continue;
1150 }
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001151 dcbp_set_start(p, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001152 }
1153
1154 /* paranoia: catch zero runlength.
1155 * can only happen if bitmap is modified while we scan it. */
1156 if (rl == 0) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001157 drbd_err(device, "unexpected zero runlength while encoding bitmap "
Philipp Reisnerb411b362009-09-25 16:07:19 -07001158 "t:%u bo:%lu\n", toggle, c->bit_offset);
1159 return -1;
1160 }
1161
1162 bits = vli_encode_bits(&bs, rl);
1163 if (bits == -ENOBUFS) /* buffer full */
1164 break;
1165 if (bits <= 0) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001166 drbd_err(device, "error while encoding bitmap: %d\n", bits);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001167 return 0;
1168 }
1169
1170 toggle = !toggle;
1171 plain_bits += rl;
1172 c->bit_offset = tmp;
1173 } while (c->bit_offset < c->bm_bits);
1174
1175 len = bs.cur.b - p->code + !!bs.cur.bit;
1176
1177 if (plain_bits < (len << 3)) {
1178 /* incompressible with this method.
1179 * we need to rewind both word and bit position. */
1180 c->bit_offset -= plain_bits;
1181 bm_xfer_ctx_bit_to_word_offset(c);
1182 c->bit_offset = c->word_offset * BITS_PER_LONG;
1183 return 0;
1184 }
1185
1186 /* RLE + VLI was able to compress it just fine.
1187 * update c->word_offset. */
1188 bm_xfer_ctx_bit_to_word_offset(c);
1189
1190 /* store pad_bits */
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001191 dcbp_set_pad_bits(p, (8 - bs.cur.bit) & 0x7);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001192
1193 return len;
1194}
1195
Lee Jones584164c2021-03-12 10:55:27 +00001196/*
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001197 * send_bitmap_rle_or_plain
1198 *
1199 * Return 0 when done, 1 when another iteration is needed, and a negative error
1200 * code upon failure.
1201 */
1202static int
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001203send_bitmap_rle_or_plain(struct drbd_device *device, struct bm_xfer_ctx *c)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001204{
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001205 struct drbd_socket *sock = &first_peer_device(device)->connection->data;
1206 unsigned int header_size = drbd_header_size(first_peer_device(device)->connection);
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001207 struct p_compressed_bm *p = sock->sbuf + header_size;
Andreas Gruenbachera982dd52010-12-10 00:45:25 +01001208 int len, err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001209
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001210 len = fill_bitmap_rle_bits(device, p,
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001211 DRBD_SOCKET_BUFFER_SIZE - header_size - sizeof(*p), c);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001212 if (len < 0)
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001213 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001214
1215 if (len) {
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001216 dcbp_set_code(p, RLE_VLI_Bits);
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001217 err = __send_command(first_peer_device(device)->connection, device->vnr, sock,
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001218 P_COMPRESSED_BITMAP, sizeof(*p) + len,
1219 NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001220 c->packets[0]++;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001221 c->bytes[0] += header_size + sizeof(*p) + len;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001222
1223 if (c->bit_offset >= c->bm_bits)
1224 len = 0; /* DONE */
1225 } else {
1226 /* was not compressible.
1227 * send a buffer full of plain text bits instead. */
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001228 unsigned int data_size;
1229 unsigned long num_words;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001230 unsigned long *p = sock->sbuf + header_size;
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001231
1232 data_size = DRBD_SOCKET_BUFFER_SIZE - header_size;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001233 num_words = min_t(size_t, data_size / sizeof(*p),
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001234 c->bm_words - c->word_offset);
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001235 len = num_words * sizeof(*p);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001236 if (len)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001237 drbd_bm_get_lel(device, c->word_offset, num_words, p);
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001238 err = __send_command(first_peer_device(device)->connection, device->vnr, sock, P_BITMAP, len, NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001239 c->word_offset += num_words;
1240 c->bit_offset = c->word_offset * BITS_PER_LONG;
1241
1242 c->packets[1]++;
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001243 c->bytes[1] += header_size + len;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001244
1245 if (c->bit_offset > c->bm_bits)
1246 c->bit_offset = c->bm_bits;
1247 }
Andreas Gruenbachera982dd52010-12-10 00:45:25 +01001248 if (!err) {
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001249 if (len == 0) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001250 INFO_bm_xfer_stats(device, "send", c);
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001251 return 0;
1252 } else
1253 return 1;
1254 }
1255 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001256}
1257
1258/* See the comment at receive_bitmap() */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001259static int _drbd_send_bitmap(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001260{
1261 struct bm_xfer_ctx c;
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001262 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001263
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001264 if (!expect(device->bitmap))
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001265 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001266
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001267 if (get_ldev(device)) {
1268 if (drbd_md_test_flag(device->ldev, MDF_FULL_SYNC)) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001269 drbd_info(device, "Writing the whole bitmap, MDF_FullSync was set.\n");
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001270 drbd_bm_set_all(device);
1271 if (drbd_bm_write(device)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001272 /* write_bm did fail! Leave full sync flag set in Meta P_DATA
1273 * but otherwise process as per normal - need to tell other
1274 * side that a full resync is required! */
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001275 drbd_err(device, "Failed to write bitmap to disk!\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07001276 } else {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001277 drbd_md_clear_flag(device, MDF_FULL_SYNC);
1278 drbd_md_sync(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001279 }
1280 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001281 put_ldev(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001282 }
1283
1284 c = (struct bm_xfer_ctx) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001285 .bm_bits = drbd_bm_bits(device),
1286 .bm_words = drbd_bm_words(device),
Philipp Reisnerb411b362009-09-25 16:07:19 -07001287 };
1288
1289 do {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001290 err = send_bitmap_rle_or_plain(device, &c);
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001291 } while (err > 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001292
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001293 return err == 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001294}
1295
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001296int drbd_send_bitmap(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001297{
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001298 struct drbd_socket *sock = &first_peer_device(device)->connection->data;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001299 int err = -1;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001300
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001301 mutex_lock(&sock->mutex);
1302 if (sock->socket)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001303 err = !_drbd_send_bitmap(device);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001304 mutex_unlock(&sock->mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001305 return err;
1306}
1307
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001308void drbd_send_b_ack(struct drbd_connection *connection, u32 barrier_nr, u32 set_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001309{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001310 struct drbd_socket *sock;
1311 struct p_barrier_ack *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001312
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001313 if (connection->cstate < C_WF_REPORT_PARAMS)
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001314 return;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001315
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001316 sock = &connection->meta;
1317 p = conn_prepare_command(connection, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001318 if (!p)
1319 return;
1320 p->barrier = barrier_nr;
1321 p->set_size = cpu_to_be32(set_size);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001322 conn_send_command(connection, sock, P_BARRIER_ACK, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001323}
1324
1325/**
1326 * _drbd_send_ack() - Sends an ack packet
Lee Jones584164c2021-03-12 10:55:27 +00001327 * @peer_device: DRBD peer device.
1328 * @cmd: Packet command code.
1329 * @sector: sector, needs to be in big endian byte order
1330 * @blksize: size in byte, needs to be in big endian byte order
1331 * @block_id: Id, big endian byte order
Philipp Reisnerb411b362009-09-25 16:07:19 -07001332 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001333static int _drbd_send_ack(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001334 u64 sector, u32 blksize, u64 block_id)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001335{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001336 struct drbd_socket *sock;
1337 struct p_block_ack *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001338
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001339 if (peer_device->device->state.conn < C_CONNECTED)
Andreas Gruenbachera8c32aa2011-03-16 01:27:22 +01001340 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001341
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001342 sock = &peer_device->connection->meta;
1343 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001344 if (!p)
1345 return -EIO;
1346 p->sector = sector;
1347 p->block_id = block_id;
1348 p->blksize = blksize;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001349 p->seq_num = cpu_to_be32(atomic_inc_return(&peer_device->device->packet_seq));
1350 return drbd_send_command(peer_device, sock, cmd, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001351}
1352
Lars Ellenberg2b2bf212010-10-06 11:46:55 +02001353/* dp->sector and dp->block_id already/still in network byte order,
1354 * data_size is payload size according to dp->head,
1355 * and may need to be corrected for digest size. */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001356void drbd_send_ack_dp(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
Andreas Gruenbachera9a99942011-03-16 01:30:14 +01001357 struct p_data *dp, int data_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001358{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001359 if (peer_device->connection->peer_integrity_tfm)
Kees Cook3d0e6372018-08-06 16:32:16 -07001360 data_size -= crypto_shash_digestsize(peer_device->connection->peer_integrity_tfm);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001361 _drbd_send_ack(peer_device, cmd, dp->sector, cpu_to_be32(data_size),
Andreas Gruenbachera9a99942011-03-16 01:30:14 +01001362 dp->block_id);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001363}
1364
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001365void drbd_send_ack_rp(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
Andreas Gruenbachera9a99942011-03-16 01:30:14 +01001366 struct p_block_req *rp)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001367{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001368 _drbd_send_ack(peer_device, cmd, rp->sector, rp->blksize, rp->block_id);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001369}
1370
1371/**
1372 * drbd_send_ack() - Sends an ack packet
Lee Jones584164c2021-03-12 10:55:27 +00001373 * @peer_device: DRBD peer device
1374 * @cmd: packet command code
1375 * @peer_req: peer request
Philipp Reisnerb411b362009-09-25 16:07:19 -07001376 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001377int drbd_send_ack(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001378 struct drbd_peer_request *peer_req)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001379{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001380 return _drbd_send_ack(peer_device, cmd,
Andreas Gruenbacherdd516122011-03-16 15:39:08 +01001381 cpu_to_be64(peer_req->i.sector),
1382 cpu_to_be32(peer_req->i.size),
1383 peer_req->block_id);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001384}
1385
1386/* This function misuses the block_id field to signal if the blocks
1387 * are is sync or not. */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001388int drbd_send_ack_ex(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001389 sector_t sector, int blksize, u64 block_id)
1390{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001391 return _drbd_send_ack(peer_device, cmd,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001392 cpu_to_be64(sector),
1393 cpu_to_be32(blksize),
1394 cpu_to_be64(block_id));
1395}
1396
Philipp Reisner700ca8c2016-06-14 00:26:13 +02001397int drbd_send_rs_deallocated(struct drbd_peer_device *peer_device,
1398 struct drbd_peer_request *peer_req)
1399{
1400 struct drbd_socket *sock;
1401 struct p_block_desc *p;
1402
1403 sock = &peer_device->connection->data;
1404 p = drbd_prepare_command(peer_device, sock);
1405 if (!p)
1406 return -EIO;
1407 p->sector = cpu_to_be64(peer_req->i.sector);
1408 p->blksize = cpu_to_be32(peer_req->i.size);
1409 p->pad = 0;
1410 return drbd_send_command(peer_device, sock, P_RS_DEALLOCATED, sizeof(*p), NULL, 0);
1411}
1412
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001413int drbd_send_drequest(struct drbd_peer_device *peer_device, int cmd,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001414 sector_t sector, int size, u64 block_id)
1415{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001416 struct drbd_socket *sock;
1417 struct p_block_req *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001418
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001419 sock = &peer_device->connection->data;
1420 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001421 if (!p)
1422 return -EIO;
1423 p->sector = cpu_to_be64(sector);
1424 p->block_id = block_id;
1425 p->blksize = cpu_to_be32(size);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001426 return drbd_send_command(peer_device, sock, cmd, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001427}
1428
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001429int drbd_send_drequest_csum(struct drbd_peer_device *peer_device, sector_t sector, int size,
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001430 void *digest, int digest_size, enum drbd_packet cmd)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001431{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001432 struct drbd_socket *sock;
1433 struct p_block_req *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001434
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001435 /* FIXME: Put the digest into the preallocated socket buffer. */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001436
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001437 sock = &peer_device->connection->data;
1438 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001439 if (!p)
1440 return -EIO;
1441 p->sector = cpu_to_be64(sector);
1442 p->block_id = ID_SYNCER /* unused */;
1443 p->blksize = cpu_to_be32(size);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001444 return drbd_send_command(peer_device, sock, cmd, sizeof(*p), digest, digest_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001445}
1446
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001447int drbd_send_ov_request(struct drbd_peer_device *peer_device, sector_t sector, int size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001448{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001449 struct drbd_socket *sock;
1450 struct p_block_req *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001451
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001452 sock = &peer_device->connection->data;
1453 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001454 if (!p)
1455 return -EIO;
1456 p->sector = cpu_to_be64(sector);
1457 p->block_id = ID_SYNCER /* unused */;
1458 p->blksize = cpu_to_be32(size);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001459 return drbd_send_command(peer_device, sock, P_OV_REQUEST, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001460}
1461
1462/* called on sndtimeo
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001463 * returns false if we should retry,
1464 * true if we think connection is dead
Philipp Reisnerb411b362009-09-25 16:07:19 -07001465 */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001466static int we_should_drop_the_connection(struct drbd_connection *connection, struct socket *sock)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001467{
1468 int drop_it;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001469 /* long elapsed = (long)(jiffies - device->last_received); */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001470
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001471 drop_it = connection->meta.socket == sock
Philipp Reisner1c03e522015-03-16 15:01:00 +01001472 || !connection->ack_receiver.task
1473 || get_t_state(&connection->ack_receiver) != RUNNING
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001474 || connection->cstate < C_WF_REPORT_PARAMS;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001475
1476 if (drop_it)
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001477 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001478
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001479 drop_it = !--connection->ko_count;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001480 if (!drop_it) {
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +02001481 drbd_err(connection, "[%s/%d] sock_sendmsg time expired, ko = %u\n",
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001482 current->comm, current->pid, connection->ko_count);
1483 request_ping(connection);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001484 }
1485
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001486 return drop_it; /* && (device->state == R_PRIMARY) */;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001487}
1488
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001489static void drbd_update_congested(struct drbd_connection *connection)
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001490{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001491 struct sock *sk = connection->data.socket->sk;
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001492 if (sk->sk_wmem_queued > sk->sk_sndbuf * 4 / 5)
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001493 set_bit(NET_CONGESTED, &connection->flags);
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001494}
1495
Philipp Reisnerb411b362009-09-25 16:07:19 -07001496/* The idea of sendpage seems to be to put some kind of reference
1497 * to the page into the skb, and to hand it over to the NIC. In
1498 * this process get_page() gets called.
1499 *
1500 * As soon as the page was really sent over the network put_page()
1501 * gets called by some part of the network layer. [ NIC driver? ]
1502 *
1503 * [ get_page() / put_page() increment/decrement the count. If count
1504 * reaches 0 the page will be freed. ]
1505 *
1506 * This works nicely with pages from FSs.
1507 * But this means that in protocol A we might signal IO completion too early!
1508 *
1509 * In order not to corrupt data during a resync we must make sure
1510 * that we do not reuse our own buffer pages (EEs) to early, therefore
1511 * we have the net_ee list.
1512 *
1513 * XFS seems to have problems, still, it submits pages with page_count == 0!
1514 * As a workaround, we disable sendpage on pages
1515 * with page_count == 0 or PageSlab.
1516 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001517static int _drbd_no_send_page(struct drbd_peer_device *peer_device, struct page *page,
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001518 int offset, size_t size, unsigned msg_flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001519{
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001520 struct socket *socket;
1521 void *addr;
1522 int err;
1523
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001524 socket = peer_device->connection->data.socket;
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001525 addr = kmap(page) + offset;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001526 err = drbd_send_all(peer_device->connection, socket, addr, size, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001527 kunmap(page);
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001528 if (!err)
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001529 peer_device->device->send_cnt += size >> 9;
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001530 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001531}
1532
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001533static int _drbd_send_page(struct drbd_peer_device *peer_device, struct page *page,
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001534 int offset, size_t size, unsigned msg_flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001535{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001536 struct socket *socket = peer_device->connection->data.socket;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001537 int len = size;
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001538 int err = -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001539
1540 /* e.g. XFS meta- & log-data is in slab pages, which have a
1541 * page_count of 0 and/or have PageSlab() set.
1542 * we cannot use send_page for those, as that does get_page();
1543 * put_page(); and would cause either a VM_BUG directly, or
1544 * __page_cache_release a page that would actually still be referenced
1545 * by someone, leading to some obscure delayed Oops somewhere else. */
Coly Lifb25ebe2020-10-02 16:27:32 +08001546 if (drbd_disable_sendpage || !sendpage_ok(page))
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001547 return _drbd_no_send_page(peer_device, page, offset, size, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001548
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001549 msg_flags |= MSG_NOSIGNAL;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001550 drbd_update_congested(peer_device->connection);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001551 do {
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001552 int sent;
1553
1554 sent = socket->ops->sendpage(socket, page, offset, len, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001555 if (sent <= 0) {
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001556 if (sent == -EAGAIN) {
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001557 if (we_should_drop_the_connection(peer_device->connection, socket))
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001558 break;
1559 continue;
1560 }
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001561 drbd_warn(peer_device->device, "%s: size=%d len=%d sent=%d\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -07001562 __func__, (int)size, len, sent);
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001563 if (sent < 0)
1564 err = sent;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001565 break;
1566 }
1567 len -= sent;
1568 offset += sent;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001569 } while (len > 0 /* THINK && device->cstate >= C_CONNECTED*/);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001570 clear_bit(NET_CONGESTED, &peer_device->connection->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001571
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001572 if (len == 0) {
1573 err = 0;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001574 peer_device->device->send_cnt += size >> 9;
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001575 }
1576 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001577}
1578
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001579static int _drbd_send_bio(struct drbd_peer_device *peer_device, struct bio *bio)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001580{
Kent Overstreet79886132013-11-23 17:19:00 -08001581 struct bio_vec bvec;
1582 struct bvec_iter iter;
1583
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001584 /* hint all but last page with MSG_MORE */
Kent Overstreet79886132013-11-23 17:19:00 -08001585 bio_for_each_segment(bvec, bio, iter) {
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001586 int err;
1587
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001588 err = _drbd_no_send_page(peer_device, bvec.bv_page,
Kent Overstreet79886132013-11-23 17:19:00 -08001589 bvec.bv_offset, bvec.bv_len,
Kent Overstreet4550dd62013-08-07 14:26:21 -07001590 bio_iter_last(bvec, iter)
Kent Overstreet79886132013-11-23 17:19:00 -08001591 ? 0 : MSG_MORE);
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001592 if (err)
1593 return err;
Lars Ellenberg9104d312016-06-14 00:26:31 +02001594 /* REQ_OP_WRITE_SAME has only one segment */
1595 if (bio_op(bio) == REQ_OP_WRITE_SAME)
1596 break;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001597 }
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001598 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001599}
1600
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001601static int _drbd_send_zc_bio(struct drbd_peer_device *peer_device, struct bio *bio)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001602{
Kent Overstreet79886132013-11-23 17:19:00 -08001603 struct bio_vec bvec;
1604 struct bvec_iter iter;
1605
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001606 /* hint all but last page with MSG_MORE */
Kent Overstreet79886132013-11-23 17:19:00 -08001607 bio_for_each_segment(bvec, bio, iter) {
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001608 int err;
1609
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001610 err = _drbd_send_page(peer_device, bvec.bv_page,
Kent Overstreet79886132013-11-23 17:19:00 -08001611 bvec.bv_offset, bvec.bv_len,
Kent Overstreet4550dd62013-08-07 14:26:21 -07001612 bio_iter_last(bvec, iter) ? 0 : MSG_MORE);
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001613 if (err)
1614 return err;
Lars Ellenberg9104d312016-06-14 00:26:31 +02001615 /* REQ_OP_WRITE_SAME has only one segment */
1616 if (bio_op(bio) == REQ_OP_WRITE_SAME)
1617 break;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001618 }
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001619 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001620}
1621
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001622static int _drbd_send_zc_ee(struct drbd_peer_device *peer_device,
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001623 struct drbd_peer_request *peer_req)
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001624{
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001625 struct page *page = peer_req->pages;
1626 unsigned len = peer_req->i.size;
Andreas Gruenbacher9f692302011-03-16 10:49:09 +01001627 int err;
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001628
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001629 /* hint all but last page with MSG_MORE */
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001630 page_chain_for_each(page) {
1631 unsigned l = min_t(unsigned, len, PAGE_SIZE);
Andreas Gruenbacher9f692302011-03-16 10:49:09 +01001632
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001633 err = _drbd_send_page(peer_device, page, 0, l,
Andreas Gruenbacher9f692302011-03-16 10:49:09 +01001634 page_chain_next(page) ? MSG_MORE : 0);
1635 if (err)
1636 return err;
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001637 len -= l;
1638 }
Andreas Gruenbacher9f692302011-03-16 10:49:09 +01001639 return 0;
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001640}
1641
Mike Christiebb3cc852016-06-05 14:32:06 -05001642static u32 bio_flags_to_wire(struct drbd_connection *connection,
1643 struct bio *bio)
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001644{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001645 if (connection->agreed_pro_version >= 95)
Jens Axboe1eff9d32016-08-05 15:35:16 -06001646 return (bio->bi_opf & REQ_SYNC ? DP_RW_SYNC : 0) |
1647 (bio->bi_opf & REQ_FUA ? DP_FUA : 0) |
1648 (bio->bi_opf & REQ_PREFLUSH ? DP_FLUSH : 0) |
Lars Ellenberg9104d312016-06-14 00:26:31 +02001649 (bio_op(bio) == REQ_OP_WRITE_SAME ? DP_WSAME : 0) |
Christoph Hellwig45c21792017-04-05 19:21:22 +02001650 (bio_op(bio) == REQ_OP_DISCARD ? DP_DISCARD : 0) |
Lars Ellenbergf31e5832018-12-20 17:23:42 +01001651 (bio_op(bio) == REQ_OP_WRITE_ZEROES ?
1652 ((connection->agreed_features & DRBD_FF_WZEROES) ?
1653 (DP_ZEROES |(!(bio->bi_opf & REQ_NOUNMAP) ? DP_DISCARD : 0))
1654 : DP_DISCARD)
1655 : 0);
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001656 else
Jens Axboe1eff9d32016-08-05 15:35:16 -06001657 return bio->bi_opf & REQ_SYNC ? DP_RW_SYNC : 0;
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001658}
1659
Bart Van Assche93054552018-10-03 13:56:25 -07001660/* Used to send write or TRIM aka REQ_OP_DISCARD requests
Lars Ellenberg2f632ae2014-04-28 18:43:24 +02001661 * R_PRIMARY -> Peer (P_DATA, P_TRIM)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001662 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001663int drbd_send_dblock(struct drbd_peer_device *peer_device, struct drbd_request *req)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001664{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001665 struct drbd_device *device = peer_device->device;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001666 struct drbd_socket *sock;
1667 struct p_data *p;
Lars Ellenberg9104d312016-06-14 00:26:31 +02001668 struct p_wsame *wsame = NULL;
1669 void *digest_out;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001670 unsigned int dp_flags = 0;
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001671 int digest_size;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001672 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001673
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001674 sock = &peer_device->connection->data;
1675 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001676 digest_size = peer_device->connection->integrity_tfm ?
Kees Cook3d0e6372018-08-06 16:32:16 -07001677 crypto_shash_digestsize(peer_device->connection->integrity_tfm) : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001678
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001679 if (!p)
1680 return -EIO;
1681 p->sector = cpu_to_be64(req->i.sector);
1682 p->block_id = (unsigned long)req;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001683 p->seq_num = cpu_to_be32(atomic_inc_return(&device->packet_seq));
Mike Christiebb3cc852016-06-05 14:32:06 -05001684 dp_flags = bio_flags_to_wire(peer_device->connection, req->master_bio);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001685 if (device->state.conn >= C_SYNC_SOURCE &&
1686 device->state.conn <= C_PAUSED_SYNC_T)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001687 dp_flags |= DP_MAY_SET_IN_SYNC;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001688 if (peer_device->connection->agreed_pro_version >= 100) {
Philipp Reisner303d1442011-04-13 16:24:47 -07001689 if (req->rq_state & RQ_EXP_RECEIVE_ACK)
1690 dp_flags |= DP_SEND_RECEIVE_ACK;
Lars Ellenberg08d0dab2014-03-20 11:19:22 +01001691 /* During resync, request an explicit write ack,
1692 * even in protocol != C */
1693 if (req->rq_state & RQ_EXP_WRITE_ACK
1694 || (dp_flags & DP_MAY_SET_IN_SYNC))
Philipp Reisner303d1442011-04-13 16:24:47 -07001695 dp_flags |= DP_SEND_WRITE_ACK;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001696 }
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001697 p->dp_flags = cpu_to_be32(dp_flags);
Lars Ellenberg2f632ae2014-04-28 18:43:24 +02001698
Lars Ellenbergf31e5832018-12-20 17:23:42 +01001699 if (dp_flags & (DP_DISCARD|DP_ZEROES)) {
1700 enum drbd_packet cmd = (dp_flags & DP_ZEROES) ? P_ZEROES : P_TRIM;
Lars Ellenberg2f632ae2014-04-28 18:43:24 +02001701 struct p_trim *t = (struct p_trim*)p;
1702 t->size = cpu_to_be32(req->i.size);
Lars Ellenbergf31e5832018-12-20 17:23:42 +01001703 err = __send_command(peer_device->connection, device->vnr, sock, cmd, sizeof(*t), NULL, 0);
Lars Ellenberg2f632ae2014-04-28 18:43:24 +02001704 goto out;
1705 }
Lars Ellenberg9104d312016-06-14 00:26:31 +02001706 if (dp_flags & DP_WSAME) {
1707 /* this will only work if DRBD_FF_WSAME is set AND the
1708 * handshake agreed that all nodes and backend devices are
1709 * WRITE_SAME capable and agree on logical_block_size */
1710 wsame = (struct p_wsame*)p;
1711 digest_out = wsame + 1;
1712 wsame->size = cpu_to_be32(req->i.size);
1713 } else
1714 digest_out = p + 1;
Lars Ellenberg2f632ae2014-04-28 18:43:24 +02001715
1716 /* our digest is still only over the payload.
1717 * TRIM does not carry any payload. */
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001718 if (digest_size)
Lars Ellenberg9104d312016-06-14 00:26:31 +02001719 drbd_csum_bio(peer_device->connection->integrity_tfm, req->master_bio, digest_out);
1720 if (wsame) {
1721 err =
1722 __send_command(peer_device->connection, device->vnr, sock, P_WSAME,
1723 sizeof(*wsame) + digest_size, NULL,
1724 bio_iovec(req->master_bio).bv_len);
1725 } else
1726 err =
1727 __send_command(peer_device->connection, device->vnr, sock, P_DATA,
1728 sizeof(*p) + digest_size, NULL, req->i.size);
Andreas Gruenbacher6bdb9b02011-03-16 11:52:58 +01001729 if (!err) {
Lars Ellenberg470be442010-11-10 10:36:52 +01001730 /* For protocol A, we have to memcpy the payload into
1731 * socket buffers, as we may complete right away
1732 * as soon as we handed it over to tcp, at which point the data
1733 * pages may become invalid.
1734 *
1735 * For data-integrity enabled, we copy it as well, so we can be
1736 * sure that even if the bio pages may still be modified, it
1737 * won't change the data on the wire, thus if the digest checks
1738 * out ok after sending on this side, but does not fit on the
1739 * receiving side, we sure have detected corruption elsewhere.
1740 */
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001741 if (!(req->rq_state & (RQ_EXP_RECEIVE_ACK | RQ_EXP_WRITE_ACK)) || digest_size)
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001742 err = _drbd_send_bio(peer_device, req->master_bio);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001743 else
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001744 err = _drbd_send_zc_bio(peer_device, req->master_bio);
Lars Ellenberg470be442010-11-10 10:36:52 +01001745
1746 /* double check digest, sometimes buffers have been modified in flight. */
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001747 if (digest_size > 0 && digest_size <= 64) {
Bart Van Assche24c48302011-05-21 18:32:29 +02001748 /* 64 byte, 512 bit, is the largest digest size
Lars Ellenberg470be442010-11-10 10:36:52 +01001749 * currently supported in kernel crypto. */
1750 unsigned char digest[64];
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001751 drbd_csum_bio(peer_device->connection->integrity_tfm, req->master_bio, digest);
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001752 if (memcmp(p + 1, digest, digest_size)) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001753 drbd_warn(device,
Lars Ellenberg470be442010-11-10 10:36:52 +01001754 "Digest mismatch, buffer modified by upper layers during write: %llus +%u\n",
Andreas Gruenbacherace652a2011-01-03 17:09:58 +01001755 (unsigned long long)req->i.sector, req->i.size);
Lars Ellenberg470be442010-11-10 10:36:52 +01001756 }
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001757 } /* else if (digest_size > 64) {
Lars Ellenberg470be442010-11-10 10:36:52 +01001758 ... Be noisy about digest too large ...
1759 } */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001760 }
Lars Ellenberg2f632ae2014-04-28 18:43:24 +02001761out:
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001762 mutex_unlock(&sock->mutex); /* locked by drbd_prepare_command() */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001763
Andreas Gruenbacher6bdb9b02011-03-16 11:52:58 +01001764 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001765}
1766
1767/* answer packet, used to send data back for read requests:
1768 * Peer -> (diskless) R_PRIMARY (P_DATA_REPLY)
1769 * C_SYNC_SOURCE -> C_SYNC_TARGET (P_RS_DATA_REPLY)
1770 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001771int drbd_send_block(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001772 struct drbd_peer_request *peer_req)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001773{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001774 struct drbd_device *device = peer_device->device;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001775 struct drbd_socket *sock;
1776 struct p_data *p;
Andreas Gruenbacher7b57b89d2011-03-16 11:35:20 +01001777 int err;
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001778 int digest_size;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001779
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001780 sock = &peer_device->connection->data;
1781 p = drbd_prepare_command(peer_device, sock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001782
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001783 digest_size = peer_device->connection->integrity_tfm ?
Kees Cook3d0e6372018-08-06 16:32:16 -07001784 crypto_shash_digestsize(peer_device->connection->integrity_tfm) : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001785
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001786 if (!p)
1787 return -EIO;
1788 p->sector = cpu_to_be64(peer_req->i.sector);
1789 p->block_id = peer_req->block_id;
1790 p->seq_num = 0; /* unused */
Lars Ellenbergb17f33c2012-02-08 15:32:51 +01001791 p->dp_flags = 0;
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001792 if (digest_size)
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001793 drbd_csum_ee(peer_device->connection->integrity_tfm, peer_req, p + 1);
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001794 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 +01001795 if (!err)
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001796 err = _drbd_send_zc_ee(peer_device, peer_req);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001797 mutex_unlock(&sock->mutex); /* locked by drbd_prepare_command() */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001798
Andreas Gruenbacher7b57b89d2011-03-16 11:35:20 +01001799 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001800}
1801
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001802int drbd_send_out_of_sync(struct drbd_peer_device *peer_device, struct drbd_request *req)
Philipp Reisner73a01a12010-10-27 14:33:00 +02001803{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001804 struct drbd_socket *sock;
1805 struct p_block_desc *p;
Philipp Reisner73a01a12010-10-27 14:33:00 +02001806
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001807 sock = &peer_device->connection->data;
1808 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001809 if (!p)
1810 return -EIO;
1811 p->sector = cpu_to_be64(req->i.sector);
1812 p->blksize = cpu_to_be32(req->i.size);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001813 return drbd_send_command(peer_device, sock, P_OUT_OF_SYNC, sizeof(*p), NULL, 0);
Philipp Reisner73a01a12010-10-27 14:33:00 +02001814}
1815
Philipp Reisnerb411b362009-09-25 16:07:19 -07001816/*
1817 drbd_send distinguishes two cases:
1818
1819 Packets sent via the data socket "sock"
1820 and packets sent via the meta data socket "msock"
1821
1822 sock msock
1823 -----------------+-------------------------+------------------------------
1824 timeout conf.timeout / 2 conf.timeout / 2
1825 timeout action send a ping via msock Abort communication
1826 and close all sockets
1827*/
1828
1829/*
1830 * you must have down()ed the appropriate [m]sock_mutex elsewhere!
1831 */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001832int drbd_send(struct drbd_connection *connection, struct socket *sock,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001833 void *buf, size_t size, unsigned msg_flags)
1834{
Al Viro79ab80b2014-12-10 17:06:38 -05001835 struct kvec iov = {.iov_base = buf, .iov_len = size};
Al Virof7765c32017-09-20 20:05:43 -04001836 struct msghdr msg = {.msg_flags = msg_flags | MSG_NOSIGNAL};
Philipp Reisnerb411b362009-09-25 16:07:19 -07001837 int rv, sent = 0;
1838
1839 if (!sock)
Andreas Gruenbacherc0d42c82010-12-09 23:52:22 +01001840 return -EBADR;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001841
1842 /* THINK if (signal_pending) return ... ? */
1843
David Howellsaa563d72018-10-20 00:57:56 +01001844 iov_iter_kvec(&msg.msg_iter, WRITE, &iov, 1, size);
Al Viro79ab80b2014-12-10 17:06:38 -05001845
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001846 if (sock == connection->data.socket) {
Philipp Reisner44ed1672011-04-19 17:10:19 +02001847 rcu_read_lock();
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001848 connection->ko_count = rcu_dereference(connection->net_conf)->ko_count;
Philipp Reisner44ed1672011-04-19 17:10:19 +02001849 rcu_read_unlock();
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001850 drbd_update_congested(connection);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001851 }
1852 do {
Al Viro79ab80b2014-12-10 17:06:38 -05001853 rv = sock_sendmsg(sock, &msg);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001854 if (rv == -EAGAIN) {
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001855 if (we_should_drop_the_connection(connection, sock))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001856 break;
1857 else
1858 continue;
1859 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001860 if (rv == -EINTR) {
1861 flush_signals(current);
1862 rv = 0;
1863 }
1864 if (rv < 0)
1865 break;
1866 sent += rv;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001867 } while (sent < size);
1868
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001869 if (sock == connection->data.socket)
1870 clear_bit(NET_CONGESTED, &connection->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001871
1872 if (rv <= 0) {
1873 if (rv != -EAGAIN) {
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +02001874 drbd_err(connection, "%s_sendmsg returned %d\n",
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001875 sock == connection->meta.socket ? "msock" : "sock",
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001876 rv);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001877 conn_request_state(connection, NS(conn, C_BROKEN_PIPE), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001878 } else
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001879 conn_request_state(connection, NS(conn, C_TIMEOUT), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001880 }
1881
1882 return sent;
1883}
1884
Lee Jones584164c2021-03-12 10:55:27 +00001885/*
Andreas Gruenbacherfb708e42010-12-15 17:04:36 +01001886 * drbd_send_all - Send an entire buffer
1887 *
1888 * Returns 0 upon success and a negative error value otherwise.
1889 */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001890int drbd_send_all(struct drbd_connection *connection, struct socket *sock, void *buffer,
Andreas Gruenbacherfb708e42010-12-15 17:04:36 +01001891 size_t size, unsigned msg_flags)
1892{
1893 int err;
1894
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001895 err = drbd_send(connection, sock, buffer, size, msg_flags);
Andreas Gruenbacherfb708e42010-12-15 17:04:36 +01001896 if (err < 0)
1897 return err;
1898 if (err != size)
1899 return -EIO;
1900 return 0;
1901}
1902
Philipp Reisnerb411b362009-09-25 16:07:19 -07001903static int drbd_open(struct block_device *bdev, fmode_t mode)
1904{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001905 struct drbd_device *device = bdev->bd_disk->private_data;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001906 unsigned long flags;
1907 int rv = 0;
1908
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001909 mutex_lock(&drbd_main_mutex);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001910 spin_lock_irqsave(&device->resource->req_lock, flags);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001911 /* to have a stable device->state.role
Philipp Reisnerb411b362009-09-25 16:07:19 -07001912 * and no race with updating open_cnt */
1913
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001914 if (device->state.role != R_PRIMARY) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001915 if (mode & FMODE_WRITE)
1916 rv = -EROFS;
Roland Kammerer183ece32017-08-29 10:20:46 +02001917 else if (!drbd_allow_oos)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001918 rv = -EMEDIUMTYPE;
1919 }
1920
1921 if (!rv)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001922 device->open_cnt++;
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001923 spin_unlock_irqrestore(&device->resource->req_lock, flags);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001924 mutex_unlock(&drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001925
1926 return rv;
1927}
1928
Al Virodb2a1442013-05-05 21:52:57 -04001929static void drbd_release(struct gendisk *gd, fmode_t mode)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001930{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001931 struct drbd_device *device = gd->private_data;
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001932 mutex_lock(&drbd_main_mutex);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001933 device->open_cnt--;
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001934 mutex_unlock(&drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001935}
1936
Lars Ellenbergc51a0ef2017-08-29 10:20:32 +02001937/* need to hold resource->req_lock */
1938void drbd_queue_unplug(struct drbd_device *device)
1939{
1940 if (device->state.pdsk >= D_INCONSISTENT && device->state.conn >= C_CONNECTED) {
1941 D_ASSERT(device, device->state.role == R_PRIMARY);
1942 if (test_and_clear_bit(UNPLUG_REMOTE, &device->flags)) {
1943 drbd_queue_work_if_unqueued(
1944 &first_peer_device(device)->connection->sender_work,
1945 &device->unplug_work);
1946 }
1947 }
1948}
1949
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001950static void drbd_set_defaults(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001951{
Lars Ellenbergf3990022011-03-23 14:31:09 +01001952 /* Beware! The actual layout differs
1953 * between big endian and little endian */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001954 device->state = (union drbd_dev_state) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001955 { .role = R_SECONDARY,
1956 .peer = R_UNKNOWN,
1957 .conn = C_STANDALONE,
1958 .disk = D_DISKLESS,
1959 .pdsk = D_UNKNOWN,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001960 } };
1961}
1962
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001963void drbd_init_set_defaults(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001964{
1965 /* the memset(,0,) did most of this.
1966 * note: only assignments, no allocation in here */
1967
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001968 drbd_set_defaults(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001969
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001970 atomic_set(&device->ap_bio_cnt, 0);
Lars Ellenbergad3fee72013-12-20 11:22:13 +01001971 atomic_set(&device->ap_actlog_cnt, 0);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001972 atomic_set(&device->ap_pending_cnt, 0);
1973 atomic_set(&device->rs_pending_cnt, 0);
1974 atomic_set(&device->unacked_cnt, 0);
1975 atomic_set(&device->local_cnt, 0);
1976 atomic_set(&device->pp_in_use_by_net, 0);
1977 atomic_set(&device->rs_sect_in, 0);
1978 atomic_set(&device->rs_sect_ev, 0);
1979 atomic_set(&device->ap_in_flight, 0);
Lars Ellenberge37d2432014-04-01 23:53:30 +02001980 atomic_set(&device->md_io.in_use, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001981
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001982 mutex_init(&device->own_state_mutex);
1983 device->state_mutex = &device->own_state_mutex;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001984
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001985 spin_lock_init(&device->al_lock);
1986 spin_lock_init(&device->peer_seq_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001987
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001988 INIT_LIST_HEAD(&device->active_ee);
1989 INIT_LIST_HEAD(&device->sync_ee);
1990 INIT_LIST_HEAD(&device->done_ee);
1991 INIT_LIST_HEAD(&device->read_ee);
1992 INIT_LIST_HEAD(&device->net_ee);
1993 INIT_LIST_HEAD(&device->resync_reads);
1994 INIT_LIST_HEAD(&device->resync_work.list);
1995 INIT_LIST_HEAD(&device->unplug_work.list);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001996 INIT_LIST_HEAD(&device->bm_io_work.w.list);
Lars Ellenberg844a6ae72013-11-22 12:52:03 +01001997 INIT_LIST_HEAD(&device->pending_master_completion[0]);
1998 INIT_LIST_HEAD(&device->pending_master_completion[1]);
1999 INIT_LIST_HEAD(&device->pending_completion[0]);
2000 INIT_LIST_HEAD(&device->pending_completion[1]);
Philipp Reisner0ced55a2010-04-30 15:26:20 +02002001
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002002 device->resync_work.cb = w_resync_timer;
2003 device->unplug_work.cb = w_send_write_hint;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002004 device->bm_io_work.w.cb = w_bitmap_io;
Philipp Reisnera21e9292011-02-08 15:08:49 +01002005
Kees Cook2bccef32017-10-17 20:33:01 -07002006 timer_setup(&device->resync_timer, resync_timer_fn, 0);
2007 timer_setup(&device->md_sync_timer, md_sync_timer_fn, 0);
2008 timer_setup(&device->start_resync_timer, start_resync_timer_fn, 0);
2009 timer_setup(&device->request_timer, request_timer_fn, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002010
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002011 init_waitqueue_head(&device->misc_wait);
2012 init_waitqueue_head(&device->state_wait);
2013 init_waitqueue_head(&device->ee_wait);
2014 init_waitqueue_head(&device->al_wait);
2015 init_waitqueue_head(&device->seq_wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002016
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002017 device->resync_wenr = LC_FREE;
2018 device->peer_max_bio_size = DRBD_MAX_BIO_SIZE_SAFE;
2019 device->local_max_bio_size = DRBD_MAX_BIO_SIZE_SAFE;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002020}
2021
Lars Ellenbergd5412e82018-12-20 17:23:30 +01002022void drbd_set_my_capacity(struct drbd_device *device, sector_t size)
2023{
2024 char ppb[10];
Christoph Hellwig155bd9d2020-09-25 18:06:17 +02002025
Christoph Hellwigbc254eb2020-11-16 15:57:06 +01002026 set_capacity_and_notify(device->vdisk, size);
Christoph Hellwig155bd9d2020-09-25 18:06:17 +02002027
Lars Ellenbergd5412e82018-12-20 17:23:30 +01002028 drbd_info(device, "size = %s (%llu KB)\n",
2029 ppsize(ppb, size>>1), (unsigned long long)size>>1);
2030}
2031
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002032void drbd_device_cleanup(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002033{
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02002034 int i;
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02002035 if (first_peer_device(device)->connection->receiver.t_state != NONE)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002036 drbd_err(device, "ASSERT FAILED: receiver t_state == %d expected 0.\n",
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02002037 first_peer_device(device)->connection->receiver.t_state);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002038
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002039 device->al_writ_cnt =
2040 device->bm_writ_cnt =
2041 device->read_cnt =
2042 device->recv_cnt =
2043 device->send_cnt =
2044 device->writ_cnt =
2045 device->p_size =
2046 device->rs_start =
2047 device->rs_total =
2048 device->rs_failed = 0;
2049 device->rs_last_events = 0;
2050 device->rs_last_sect_ev = 0;
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02002051 for (i = 0; i < DRBD_SYNC_MARKS; i++) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002052 device->rs_mark_left[i] = 0;
2053 device->rs_mark_time[i] = 0;
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02002054 }
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02002055 D_ASSERT(device, first_peer_device(device)->connection->net_conf == NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002056
Christoph Hellwigbc254eb2020-11-16 15:57:06 +01002057 set_capacity_and_notify(device->vdisk, 0);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002058 if (device->bitmap) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002059 /* maybe never allocated. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002060 drbd_bm_resize(device, 0, 1);
2061 drbd_bm_cleanup(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002062 }
2063
Lars Ellenberg63a7c8a2015-03-26 20:53:55 +01002064 drbd_backing_dev_free(device, device->ldev);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002065 device->ldev = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002066
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002067 clear_bit(AL_SUSPENDED, &device->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002068
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02002069 D_ASSERT(device, list_empty(&device->active_ee));
2070 D_ASSERT(device, list_empty(&device->sync_ee));
2071 D_ASSERT(device, list_empty(&device->done_ee));
2072 D_ASSERT(device, list_empty(&device->read_ee));
2073 D_ASSERT(device, list_empty(&device->net_ee));
2074 D_ASSERT(device, list_empty(&device->resync_reads));
2075 D_ASSERT(device, list_empty(&first_peer_device(device)->connection->sender_work.q));
2076 D_ASSERT(device, list_empty(&device->resync_work.list));
2077 D_ASSERT(device, list_empty(&device->unplug_work.list));
Lars Ellenberg2265b472010-12-16 15:41:26 +01002078
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002079 drbd_set_defaults(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002080}
2081
2082
2083static void drbd_destroy_mempools(void)
2084{
2085 struct page *page;
2086
2087 while (drbd_pp_pool) {
2088 page = drbd_pp_pool;
2089 drbd_pp_pool = (struct page *)page_private(page);
2090 __free_page(page);
2091 drbd_pp_vacant--;
2092 }
2093
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02002094 /* D_ASSERT(device, atomic_read(&drbd_pp_vacant)==0); */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002095
Kent Overstreet0892fac2018-05-20 18:25:48 -04002096 bioset_exit(&drbd_io_bio_set);
2097 bioset_exit(&drbd_md_io_bio_set);
2098 mempool_exit(&drbd_md_io_page_pool);
2099 mempool_exit(&drbd_ee_mempool);
2100 mempool_exit(&drbd_request_mempool);
zhong jianga12fc002018-08-08 23:22:47 +08002101 kmem_cache_destroy(drbd_ee_cache);
2102 kmem_cache_destroy(drbd_request_cache);
2103 kmem_cache_destroy(drbd_bm_ext_cache);
2104 kmem_cache_destroy(drbd_al_ext_cache);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002105
Philipp Reisnerb411b362009-09-25 16:07:19 -07002106 drbd_ee_cache = NULL;
2107 drbd_request_cache = NULL;
2108 drbd_bm_ext_cache = NULL;
2109 drbd_al_ext_cache = NULL;
2110
2111 return;
2112}
2113
2114static int drbd_create_mempools(void)
2115{
2116 struct page *page;
Roland Kammerer183ece32017-08-29 10:20:46 +02002117 const int number = (DRBD_MAX_BIO_SIZE/PAGE_SIZE) * drbd_minor_count;
Kent Overstreet0892fac2018-05-20 18:25:48 -04002118 int i, ret;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002119
2120 /* caches */
2121 drbd_request_cache = kmem_cache_create(
2122 "drbd_req", sizeof(struct drbd_request), 0, 0, NULL);
2123 if (drbd_request_cache == NULL)
2124 goto Enomem;
2125
2126 drbd_ee_cache = kmem_cache_create(
Andreas Gruenbacherf6ffca92011-02-04 15:30:34 +01002127 "drbd_ee", sizeof(struct drbd_peer_request), 0, 0, NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002128 if (drbd_ee_cache == NULL)
2129 goto Enomem;
2130
2131 drbd_bm_ext_cache = kmem_cache_create(
2132 "drbd_bm", sizeof(struct bm_extent), 0, 0, NULL);
2133 if (drbd_bm_ext_cache == NULL)
2134 goto Enomem;
2135
2136 drbd_al_ext_cache = kmem_cache_create(
2137 "drbd_al", sizeof(struct lc_element), 0, 0, NULL);
2138 if (drbd_al_ext_cache == NULL)
2139 goto Enomem;
2140
2141 /* mempools */
Kent Overstreet0892fac2018-05-20 18:25:48 -04002142 ret = bioset_init(&drbd_io_bio_set, BIO_POOL_SIZE, 0, 0);
2143 if (ret)
NeilBrown8cb0def2017-06-18 14:38:58 +10002144 goto Enomem;
2145
Kent Overstreet0892fac2018-05-20 18:25:48 -04002146 ret = bioset_init(&drbd_md_io_bio_set, DRBD_MIN_POOL_PAGES, 0,
2147 BIOSET_NEED_BVECS);
2148 if (ret)
Lars Ellenberg9476f392011-02-23 17:02:01 +01002149 goto Enomem;
Lars Ellenberg9476f392011-02-23 17:02:01 +01002150
Kent Overstreet0892fac2018-05-20 18:25:48 -04002151 ret = mempool_init_page_pool(&drbd_md_io_page_pool, DRBD_MIN_POOL_PAGES, 0);
2152 if (ret)
Lars Ellenberg42818082011-02-23 12:39:46 +01002153 goto Enomem;
2154
Kent Overstreet0892fac2018-05-20 18:25:48 -04002155 ret = mempool_init_slab_pool(&drbd_request_mempool, number,
2156 drbd_request_cache);
2157 if (ret)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002158 goto Enomem;
2159
Kent Overstreet0892fac2018-05-20 18:25:48 -04002160 ret = mempool_init_slab_pool(&drbd_ee_mempool, number, drbd_ee_cache);
2161 if (ret)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002162 goto Enomem;
2163
Philipp Reisnerb411b362009-09-25 16:07:19 -07002164 for (i = 0; i < number; i++) {
2165 page = alloc_page(GFP_HIGHUSER);
2166 if (!page)
2167 goto Enomem;
2168 set_page_private(page, (unsigned long)drbd_pp_pool);
2169 drbd_pp_pool = page;
2170 }
2171 drbd_pp_vacant = number;
2172
2173 return 0;
2174
2175Enomem:
2176 drbd_destroy_mempools(); /* in case we allocated some */
2177 return -ENOMEM;
2178}
2179
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002180static void drbd_release_all_peer_reqs(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002181{
2182 int rr;
2183
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002184 rr = drbd_free_peer_reqs(device, &device->active_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002185 if (rr)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002186 drbd_err(device, "%d EEs in active list found!\n", rr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002187
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002188 rr = drbd_free_peer_reqs(device, &device->sync_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002189 if (rr)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002190 drbd_err(device, "%d EEs in sync list found!\n", rr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002191
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002192 rr = drbd_free_peer_reqs(device, &device->read_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002193 if (rr)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002194 drbd_err(device, "%d EEs in read list found!\n", rr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002195
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002196 rr = drbd_free_peer_reqs(device, &device->done_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002197 if (rr)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002198 drbd_err(device, "%d EEs in done list found!\n", rr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002199
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002200 rr = drbd_free_peer_reqs(device, &device->net_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002201 if (rr)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002202 drbd_err(device, "%d EEs in net list found!\n", rr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002203}
2204
Philipp Reisner774b3052011-02-22 02:07:03 -05002205/* caution. no locking. */
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +02002206void drbd_destroy_device(struct kref *kref)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002207{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002208 struct drbd_device *device = container_of(kref, struct drbd_device, kref);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002209 struct drbd_resource *resource = device->resource;
Lars Ellenberga8ba0d62014-05-14 21:34:47 +02002210 struct drbd_peer_device *peer_device, *tmp_peer_device;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002211
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002212 del_timer_sync(&device->request_timer);
Philipp Reisnerdfa8bed2011-06-29 14:06:08 +02002213
Philipp Reisnerb411b362009-09-25 16:07:19 -07002214 /* paranoia asserts */
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02002215 D_ASSERT(device, device->open_cnt == 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002216 /* end paranoia asserts */
2217
Philipp Reisnerb411b362009-09-25 16:07:19 -07002218 /* cleanup stuff that may have been allocated during
2219 * device (re-)configuration or state changes */
2220
Lars Ellenberg63a7c8a2015-03-26 20:53:55 +01002221 drbd_backing_dev_free(device, device->ldev);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002222 device->ldev = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002223
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002224 drbd_release_all_peer_reqs(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002225
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002226 lc_destroy(device->act_log);
2227 lc_destroy(device->resync);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002228
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002229 kfree(device->p_uuid);
2230 /* device->p_uuid = NULL; */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002231
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002232 if (device->bitmap) /* should no longer be there. */
2233 drbd_bm_cleanup(device);
Lars Ellenberge37d2432014-04-01 23:53:30 +02002234 __free_page(device->md_io.page);
Christoph Hellwigb647ad02021-05-21 07:50:57 +02002235 blk_cleanup_disk(device->vdisk);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002236 kfree(device->rs_plan_s);
Lars Ellenberga8ba0d62014-05-14 21:34:47 +02002237
2238 /* not for_each_connection(connection, resource):
2239 * those may have been cleaned up and disassociated already.
2240 */
2241 for_each_peer_device_safe(peer_device, tmp_peer_device, device) {
2242 kref_put(&peer_device->connection->kref, drbd_destroy_connection);
2243 kfree(peer_device);
2244 }
Lars Ellenbergc2258ff2014-05-14 21:35:21 +02002245 memset(device, 0xfd, sizeof(*device));
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002246 kfree(device);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002247 kref_put(&resource->kref, drbd_destroy_resource);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002248}
2249
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002250/* One global retry thread, if we need to push back some bio and have it
2251 * reinserted through our make request function.
2252 */
2253static struct retry_worker {
2254 struct workqueue_struct *wq;
2255 struct work_struct worker;
2256
2257 spinlock_t lock;
2258 struct list_head writes;
2259} retry;
2260
2261static void do_retry(struct work_struct *ws)
2262{
2263 struct retry_worker *retry = container_of(ws, struct retry_worker, worker);
2264 LIST_HEAD(writes);
2265 struct drbd_request *req, *tmp;
2266
2267 spin_lock_irq(&retry->lock);
2268 list_splice_init(&retry->writes, &writes);
2269 spin_unlock_irq(&retry->lock);
2270
2271 list_for_each_entry_safe(req, tmp, &writes, tl_requests) {
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02002272 struct drbd_device *device = req->device;
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002273 struct bio *bio = req->master_bio;
Lars Ellenberg9a278a72012-07-24 10:12:36 +02002274 bool expected;
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002275
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02002276 expected =
Lars Ellenberg9a278a72012-07-24 10:12:36 +02002277 expect(atomic_read(&req->completion_ref) == 0) &&
2278 expect(req->rq_state & RQ_POSTPONED) &&
2279 expect((req->rq_state & RQ_LOCAL_PENDING) == 0 ||
2280 (req->rq_state & RQ_LOCAL_ABORTED) != 0);
2281
2282 if (!expected)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002283 drbd_err(device, "req=%p completion_ref=%d rq_state=%x\n",
Lars Ellenberg9a278a72012-07-24 10:12:36 +02002284 req, atomic_read(&req->completion_ref),
2285 req->rq_state);
2286
2287 /* We still need to put one kref associated with the
2288 * "completion_ref" going zero in the code path that queued it
2289 * here. The request object may still be referenced by a
2290 * frozen local req->private_bio, in case we force-detached.
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002291 */
Lars Ellenberg9a278a72012-07-24 10:12:36 +02002292 kref_put(&req->kref, drbd_req_destroy);
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002293
2294 /* A single suspended or otherwise blocking device may stall
2295 * all others as well. Fortunately, this code path is to
2296 * recover from a situation that "should not happen":
2297 * concurrent writes in multi-primary setup.
2298 * In a "normal" lifecycle, this workqueue is supposed to be
2299 * destroyed without ever doing anything.
2300 * If it turns out to be an issue anyways, we can do per
2301 * resource (replication group) or per device (minor) retry
2302 * workqueues instead.
2303 */
2304
Christoph Hellwiged00aab2020-07-01 10:59:44 +02002305 /* We are not just doing submit_bio_noacct(),
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002306 * as we want to keep the start_time information. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002307 inc_ap_bio(device);
Guoqing Jiang370276b2021-01-21 15:21:50 +01002308 __drbd_make_request(device, bio);
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002309 }
2310}
2311
Lars Ellenberg844a6ae72013-11-22 12:52:03 +01002312/* called via drbd_req_put_completion_ref(),
2313 * holds resource->req_lock */
Lars Ellenberg9d05e7c2012-07-17 10:05:04 +02002314void drbd_restart_request(struct drbd_request *req)
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002315{
2316 unsigned long flags;
2317 spin_lock_irqsave(&retry.lock, flags);
2318 list_move_tail(&req->tl_requests, &retry.writes);
2319 spin_unlock_irqrestore(&retry.lock, flags);
2320
2321 /* Drop the extra reference that would otherwise
2322 * have been dropped by complete_master_bio.
2323 * do_retry() needs to grab a new one. */
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02002324 dec_ap_bio(req->device);
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002325
2326 queue_work(retry.wq, &retry.worker);
2327}
2328
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002329void drbd_destroy_resource(struct kref *kref)
2330{
2331 struct drbd_resource *resource =
2332 container_of(kref, struct drbd_resource, kref);
2333
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002334 idr_destroy(&resource->devices);
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +02002335 free_cpumask_var(resource->cpu_mask);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002336 kfree(resource->name);
Lars Ellenbergc2258ff2014-05-14 21:35:21 +02002337 memset(resource, 0xf2, sizeof(*resource));
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002338 kfree(resource);
2339}
2340
2341void drbd_free_resource(struct drbd_resource *resource)
2342{
2343 struct drbd_connection *connection, *tmp;
2344
2345 for_each_connection_safe(connection, tmp, resource) {
2346 list_del(&connection->connections);
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002347 drbd_debugfs_connection_cleanup(connection);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002348 kref_put(&connection->kref, drbd_destroy_connection);
2349 }
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002350 drbd_debugfs_resource_cleanup(resource);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002351 kref_put(&resource->kref, drbd_destroy_resource);
2352}
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002353
Philipp Reisnerb411b362009-09-25 16:07:19 -07002354static void drbd_cleanup(void)
2355{
2356 unsigned int i;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002357 struct drbd_device *device;
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002358 struct drbd_resource *resource, *tmp;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002359
Lars Ellenberg17a93f32010-11-24 10:37:35 +01002360 /* first remove proc,
2361 * drbdsetup uses it's presence to detect
2362 * whether DRBD is loaded.
2363 * If we would get stuck in proc removal,
2364 * but have netlink already deregistered,
2365 * some drbdsetup commands may wait forever
2366 * for an answer.
2367 */
2368 if (drbd_proc)
2369 remove_proc_entry("drbd", NULL);
2370
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002371 if (retry.wq)
2372 destroy_workqueue(retry.wq);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002373
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002374 drbd_genl_unregister();
Philipp Reisnerb411b362009-09-25 16:07:19 -07002375
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002376 idr_for_each_entry(&drbd_devices, device, i)
Andreas Gruenbacherf82795d2011-07-03 23:32:26 +02002377 drbd_delete_device(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002378
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002379 /* not _rcu since, no other updater anymore. Genl already unregistered */
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002380 for_each_resource_safe(resource, tmp, &drbd_resources) {
2381 list_del(&resource->resources);
2382 drbd_free_resource(resource);
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002383 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07002384
Lars Ellenberg3f1a1b72017-08-29 10:20:41 +02002385 drbd_debugfs_cleanup();
2386
Philipp Reisner81a5d602011-02-22 19:53:16 -05002387 drbd_destroy_mempools();
Philipp Reisnerb411b362009-09-25 16:07:19 -07002388 unregister_blkdev(DRBD_MAJOR, "drbd");
2389
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +02002390 idr_destroy(&drbd_devices);
Philipp Reisner81a5d602011-02-22 19:53:16 -05002391
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002392 pr_info("module cleanup done.\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07002393}
2394
Philipp Reisner6699b652011-02-09 11:10:24 +01002395static void drbd_init_workqueue(struct drbd_work_queue* wq)
2396{
Philipp Reisner6699b652011-02-09 11:10:24 +01002397 spin_lock_init(&wq->q_lock);
2398 INIT_LIST_HEAD(&wq->q);
Lars Ellenberg8c0785a2011-10-19 11:50:57 +02002399 init_waitqueue_head(&wq->q_wait);
Philipp Reisner6699b652011-02-09 11:10:24 +01002400}
2401
Andreas Gruenbacherb5043c52011-07-28 15:56:02 +02002402struct completion_work {
2403 struct drbd_work w;
2404 struct completion done;
2405};
2406
2407static int w_complete(struct drbd_work *w, int cancel)
2408{
2409 struct completion_work *completion_work =
2410 container_of(w, struct completion_work, w);
2411
2412 complete(&completion_work->done);
2413 return 0;
2414}
2415
2416void drbd_flush_workqueue(struct drbd_work_queue *work_queue)
2417{
2418 struct completion_work completion_work;
2419
2420 completion_work.w.cb = w_complete;
2421 init_completion(&completion_work.done);
2422 drbd_queue_work(work_queue, &completion_work.w);
2423 wait_for_completion(&completion_work.done);
2424}
2425
Andreas Gruenbacher4bc76042011-06-13 14:27:45 +02002426struct drbd_resource *drbd_find_resource(const char *name)
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002427{
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002428 struct drbd_resource *resource;
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002429
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002430 if (!name || !name[0])
2431 return NULL;
2432
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002433 rcu_read_lock();
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002434 for_each_resource_rcu(resource, &drbd_resources) {
2435 if (!strcmp(resource->name, name)) {
Andreas Gruenbacher4bc76042011-06-13 14:27:45 +02002436 kref_get(&resource->kref);
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002437 goto found;
Philipp Reisner0ace9df2011-04-24 10:53:19 +02002438 }
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002439 }
Andreas Gruenbacher4bc76042011-06-13 14:27:45 +02002440 resource = NULL;
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002441found:
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002442 rcu_read_unlock();
Andreas Gruenbacher4bc76042011-06-13 14:27:45 +02002443 return resource;
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002444}
2445
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002446struct drbd_connection *conn_get_by_addrs(void *my_addr, int my_addr_len,
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002447 void *peer_addr, int peer_addr_len)
2448{
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002449 struct drbd_resource *resource;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002450 struct drbd_connection *connection;
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002451
2452 rcu_read_lock();
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002453 for_each_resource_rcu(resource, &drbd_resources) {
2454 for_each_connection_rcu(connection, resource) {
2455 if (connection->my_addr_len == my_addr_len &&
2456 connection->peer_addr_len == peer_addr_len &&
2457 !memcmp(&connection->my_addr, my_addr, my_addr_len) &&
2458 !memcmp(&connection->peer_addr, peer_addr, peer_addr_len)) {
2459 kref_get(&connection->kref);
2460 goto found;
2461 }
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002462 }
2463 }
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002464 connection = NULL;
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002465found:
2466 rcu_read_unlock();
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002467 return connection;
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002468}
2469
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002470static int drbd_alloc_socket(struct drbd_socket *socket)
2471{
2472 socket->rbuf = (void *) __get_free_page(GFP_KERNEL);
2473 if (!socket->rbuf)
2474 return -ENOMEM;
Andreas Gruenbacher5a87d922011-03-24 21:17:52 +01002475 socket->sbuf = (void *) __get_free_page(GFP_KERNEL);
2476 if (!socket->sbuf)
2477 return -ENOMEM;
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002478 return 0;
2479}
2480
2481static void drbd_free_socket(struct drbd_socket *socket)
2482{
Andreas Gruenbacher5a87d922011-03-24 21:17:52 +01002483 free_page((unsigned long) socket->sbuf);
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002484 free_page((unsigned long) socket->rbuf);
2485}
2486
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002487void conn_free_crypto(struct drbd_connection *connection)
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002488{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002489 drbd_free_sock(connection);
Philipp Reisner1d041222011-04-22 15:20:23 +02002490
Kees Cook3d0e6372018-08-06 16:32:16 -07002491 crypto_free_shash(connection->csums_tfm);
2492 crypto_free_shash(connection->verify_tfm);
Herbert Xu9534d672016-01-24 21:19:21 +08002493 crypto_free_shash(connection->cram_hmac_tfm);
Kees Cook3d0e6372018-08-06 16:32:16 -07002494 crypto_free_shash(connection->integrity_tfm);
2495 crypto_free_shash(connection->peer_integrity_tfm);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002496 kfree(connection->int_dig_in);
2497 kfree(connection->int_dig_vv);
Philipp Reisner1d041222011-04-22 15:20:23 +02002498
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002499 connection->csums_tfm = NULL;
2500 connection->verify_tfm = NULL;
2501 connection->cram_hmac_tfm = NULL;
2502 connection->integrity_tfm = NULL;
2503 connection->peer_integrity_tfm = NULL;
2504 connection->int_dig_in = NULL;
2505 connection->int_dig_vv = NULL;
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002506}
2507
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002508int set_resource_options(struct drbd_resource *resource, struct res_opts *res_opts)
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002509{
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002510 struct drbd_connection *connection;
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002511 cpumask_var_t new_cpu_mask;
2512 int err;
2513
2514 if (!zalloc_cpumask_var(&new_cpu_mask, GFP_KERNEL))
2515 return -ENOMEM;
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002516
2517 /* silently ignore cpu mask on UP kernel */
2518 if (nr_cpu_ids > 1 && res_opts->cpu_mask[0] != 0) {
Andreas Gruenbacherf44d0432011-07-22 13:53:19 +02002519 err = bitmap_parse(res_opts->cpu_mask, DRBD_CPU_MASK_SIZE,
Philipp Reisnerc5b005a2012-04-30 12:53:52 +02002520 cpumask_bits(new_cpu_mask), nr_cpu_ids);
Lars Ellenberg1e391522014-05-19 09:52:02 +02002521 if (err == -EOVERFLOW) {
2522 /* So what. mask it out. */
2523 cpumask_var_t tmp_cpu_mask;
2524 if (zalloc_cpumask_var(&tmp_cpu_mask, GFP_KERNEL)) {
2525 cpumask_setall(tmp_cpu_mask);
2526 cpumask_and(new_cpu_mask, new_cpu_mask, tmp_cpu_mask);
2527 drbd_warn(resource, "Overflow in bitmap_parse(%.12s%s), truncating to %u bits\n",
2528 res_opts->cpu_mask,
2529 strlen(res_opts->cpu_mask) > 12 ? "..." : "",
2530 nr_cpu_ids);
2531 free_cpumask_var(tmp_cpu_mask);
2532 err = 0;
2533 }
2534 }
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002535 if (err) {
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +02002536 drbd_warn(resource, "bitmap_parse() failed with %d\n", err);
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002537 /* retcode = ERR_CPU_MASK_PARSE; */
2538 goto fail;
2539 }
2540 }
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002541 resource->res_opts = *res_opts;
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +02002542 if (cpumask_empty(new_cpu_mask))
2543 drbd_calc_cpu_mask(&new_cpu_mask);
2544 if (!cpumask_equal(resource->cpu_mask, new_cpu_mask)) {
2545 cpumask_copy(resource->cpu_mask, new_cpu_mask);
2546 for_each_connection_rcu(connection, resource) {
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002547 connection->receiver.reset_cpu_mask = 1;
Philipp Reisner1c03e522015-03-16 15:01:00 +01002548 connection->ack_receiver.reset_cpu_mask = 1;
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002549 connection->worker.reset_cpu_mask = 1;
2550 }
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002551 }
2552 err = 0;
2553
2554fail:
2555 free_cpumask_var(new_cpu_mask);
2556 return err;
2557
2558}
2559
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002560struct drbd_resource *drbd_create_resource(const char *name)
2561{
2562 struct drbd_resource *resource;
2563
Andreas Gruenbacher6bbf53c2011-07-08 01:19:44 +02002564 resource = kzalloc(sizeof(struct drbd_resource), GFP_KERNEL);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002565 if (!resource)
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +02002566 goto fail;
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002567 resource->name = kstrdup(name, GFP_KERNEL);
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +02002568 if (!resource->name)
2569 goto fail_free_resource;
2570 if (!zalloc_cpumask_var(&resource->cpu_mask, GFP_KERNEL))
2571 goto fail_free_name;
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002572 kref_init(&resource->kref);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002573 idr_init(&resource->devices);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002574 INIT_LIST_HEAD(&resource->connections);
Andreas Gruenbacherf6ba8632014-08-13 18:33:55 +02002575 resource->write_ordering = WO_BDEV_FLUSH;
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002576 list_add_tail_rcu(&resource->resources, &drbd_resources);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02002577 mutex_init(&resource->conf_update);
Lars Ellenberg9e276872014-04-28 18:43:22 +02002578 mutex_init(&resource->adm_mutex);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02002579 spin_lock_init(&resource->req_lock);
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002580 drbd_debugfs_resource_add(resource);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002581 return resource;
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +02002582
2583fail_free_name:
2584 kfree(resource->name);
2585fail_free_resource:
2586 kfree(resource);
2587fail:
2588 return NULL;
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002589}
2590
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002591/* caller must be under adm_mutex */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002592struct drbd_connection *conn_create(const char *name, struct res_opts *res_opts)
Philipp Reisner21114382011-01-19 12:26:59 +01002593{
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002594 struct drbd_resource *resource;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002595 struct drbd_connection *connection;
Philipp Reisner21114382011-01-19 12:26:59 +01002596
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002597 connection = kzalloc(sizeof(struct drbd_connection), GFP_KERNEL);
2598 if (!connection)
Philipp Reisner21114382011-01-19 12:26:59 +01002599 return NULL;
2600
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002601 if (drbd_alloc_socket(&connection->data))
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002602 goto fail;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002603 if (drbd_alloc_socket(&connection->meta))
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002604 goto fail;
2605
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002606 connection->current_epoch = kzalloc(sizeof(struct drbd_epoch), GFP_KERNEL);
2607 if (!connection->current_epoch)
Philipp Reisner12038a32011-11-09 19:18:00 +01002608 goto fail;
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01002609
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002610 INIT_LIST_HEAD(&connection->transfer_log);
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01002611
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002612 INIT_LIST_HEAD(&connection->current_epoch->list);
2613 connection->epochs = 1;
2614 spin_lock_init(&connection->epoch_lock);
Philipp Reisner4b0007c2011-11-09 20:12:34 +01002615
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002616 connection->send.seen_any_write_yet = false;
2617 connection->send.current_epoch_nr = 0;
2618 connection->send.current_epoch_writes = 0;
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01002619
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002620 resource = drbd_create_resource(name);
2621 if (!resource)
2622 goto fail;
2623
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002624 connection->cstate = C_STANDALONE;
2625 mutex_init(&connection->cstate_mutex);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002626 init_waitqueue_head(&connection->ping_wait);
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02002627 idr_init(&connection->peer_devices);
Philipp Reisnerb2fb6dbe2011-01-19 13:48:44 +01002628
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002629 drbd_init_workqueue(&connection->sender_work);
2630 mutex_init(&connection->data.mutex);
2631 mutex_init(&connection->meta.mutex);
Philipp Reisner6699b652011-02-09 11:10:24 +01002632
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +02002633 drbd_thread_init(resource, &connection->receiver, drbd_receiver, "receiver");
2634 connection->receiver.connection = connection;
2635 drbd_thread_init(resource, &connection->worker, drbd_worker, "worker");
2636 connection->worker.connection = connection;
Philipp Reisner1c03e522015-03-16 15:01:00 +01002637 drbd_thread_init(resource, &connection->ack_receiver, drbd_ack_receiver, "ack_recv");
2638 connection->ack_receiver.connection = connection;
Philipp Reisner392c8802011-02-09 10:33:31 +01002639
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002640 kref_init(&connection->kref);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002641
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002642 connection->resource = resource;
Philipp Reisner21114382011-01-19 12:26:59 +01002643
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002644 if (set_resource_options(resource, res_opts))
2645 goto fail_resource;
2646
2647 kref_get(&resource->kref);
2648 list_add_tail_rcu(&connection->connections, &resource->connections);
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002649 drbd_debugfs_connection_add(connection);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002650 return connection;
Philipp Reisner21114382011-01-19 12:26:59 +01002651
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002652fail_resource:
2653 list_del(&resource->resources);
2654 drbd_free_resource(resource);
Philipp Reisner21114382011-01-19 12:26:59 +01002655fail:
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002656 kfree(connection->current_epoch);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002657 drbd_free_socket(&connection->meta);
2658 drbd_free_socket(&connection->data);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002659 kfree(connection);
Philipp Reisner21114382011-01-19 12:26:59 +01002660 return NULL;
2661}
2662
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +02002663void drbd_destroy_connection(struct kref *kref)
Philipp Reisner21114382011-01-19 12:26:59 +01002664{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002665 struct drbd_connection *connection = container_of(kref, struct drbd_connection, kref);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002666 struct drbd_resource *resource = connection->resource;
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002667
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002668 if (atomic_read(&connection->current_epoch->epoch_size) != 0)
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +02002669 drbd_err(connection, "epoch_size:%d\n", atomic_read(&connection->current_epoch->epoch_size));
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002670 kfree(connection->current_epoch);
Philipp Reisner12038a32011-11-09 19:18:00 +01002671
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02002672 idr_destroy(&connection->peer_devices);
Philipp Reisner21114382011-01-19 12:26:59 +01002673
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002674 drbd_free_socket(&connection->meta);
2675 drbd_free_socket(&connection->data);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002676 kfree(connection->int_dig_in);
2677 kfree(connection->int_dig_vv);
Lars Ellenbergc2258ff2014-05-14 21:35:21 +02002678 memset(connection, 0xfc, sizeof(*connection));
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002679 kfree(connection);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002680 kref_put(&resource->kref, drbd_destroy_resource);
Philipp Reisner21114382011-01-19 12:26:59 +01002681}
2682
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002683static int init_submitter(struct drbd_device *device)
Lars Ellenberg113fef92013-03-22 18:14:40 -06002684{
2685 /* opencoded create_singlethread_workqueue(),
2686 * to be able to say "drbd%d", ..., minor */
Lars Ellenberg39e91a62015-03-24 10:40:26 +01002687 device->submit.wq =
2688 alloc_ordered_workqueue("drbd%u_submit", WQ_MEM_RECLAIM, device->minor);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002689 if (!device->submit.wq)
Lars Ellenberg113fef92013-03-22 18:14:40 -06002690 return -ENOMEM;
2691
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002692 INIT_WORK(&device->submit.worker, do_submit);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002693 INIT_LIST_HEAD(&device->submit.writes);
Lars Ellenberg113fef92013-03-22 18:14:40 -06002694 return 0;
2695}
2696
Lars Ellenberga910b122014-04-28 18:43:21 +02002697enum drbd_ret_code drbd_create_device(struct drbd_config_context *adm_ctx, unsigned int minor)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002698{
Lars Ellenberga910b122014-04-28 18:43:21 +02002699 struct drbd_resource *resource = adm_ctx->resource;
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002700 struct drbd_connection *connection;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002701 struct drbd_device *device;
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002702 struct drbd_peer_device *peer_device, *tmp_peer_device;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002703 struct gendisk *disk;
Andreas Gruenbacher93e4bf72013-05-23 14:57:17 +02002704 int id;
Lars Ellenberga910b122014-04-28 18:43:21 +02002705 int vnr = adm_ctx->volume;
Lars Ellenberg8432b312011-03-08 16:11:16 +01002706 enum drbd_ret_code err = ERR_NOMEM;
Philipp Reisner774b3052011-02-22 02:07:03 -05002707
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002708 device = minor_to_device(minor);
2709 if (device)
Andreas Gruenbacher179e20b82014-11-10 17:21:09 +01002710 return ERR_MINOR_OR_VOLUME_EXISTS;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002711
2712 /* GFP_KERNEL, we are outside of all write-out paths */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002713 device = kzalloc(sizeof(struct drbd_device), GFP_KERNEL);
2714 if (!device)
Philipp Reisner774b3052011-02-22 02:07:03 -05002715 return ERR_NOMEM;
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002716 kref_init(&device->kref);
2717
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002718 kref_get(&resource->kref);
2719 device->resource = resource;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002720 device->minor = minor;
2721 device->vnr = vnr;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002722
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002723 drbd_init_set_defaults(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002724
Christoph Hellwigb647ad02021-05-21 07:50:57 +02002725 disk = blk_alloc_disk(NUMA_NO_NODE);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002726 if (!disk)
2727 goto out_no_disk;
Christoph Hellwigb647ad02021-05-21 07:50:57 +02002728
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002729 device->vdisk = disk;
Christoph Hellwigb647ad02021-05-21 07:50:57 +02002730 device->rq_queue = disk->queue;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002731
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01002732 set_disk_ro(disk, true);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002733
Philipp Reisnerb411b362009-09-25 16:07:19 -07002734 disk->major = DRBD_MAJOR;
2735 disk->first_minor = minor;
Christoph Hellwigb647ad02021-05-21 07:50:57 +02002736 disk->minors = 1;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002737 disk->fops = &drbd_ops;
Christoph Hellwig1ebe2e52021-11-22 14:06:22 +01002738 disk->flags |= GENHD_FL_NO_PART;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002739 sprintf(disk->disk_name, "drbd%d", minor);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002740 disk->private_data = device;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002741
Christoph Hellwigb647ad02021-05-21 07:50:57 +02002742 blk_queue_write_cache(disk->queue, true, true);
Philipp Reisner99432fc2011-05-20 16:39:13 +02002743 /* Setting the max_hw_sectors to an odd value of 8kibyte here
2744 This triggers a max_bio_size message upon first attach or connect */
Christoph Hellwigb647ad02021-05-21 07:50:57 +02002745 blk_queue_max_hw_sectors(disk->queue, DRBD_MAX_BIO_SIZE_SAFE >> 8);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002746
Lars Ellenberge37d2432014-04-01 23:53:30 +02002747 device->md_io.page = alloc_page(GFP_KERNEL);
2748 if (!device->md_io.page)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002749 goto out_no_io_page;
2750
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002751 if (drbd_bm_init(device))
Philipp Reisnerb411b362009-09-25 16:07:19 -07002752 goto out_no_bitmap;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002753 device->read_requests = RB_ROOT;
2754 device->write_requests = RB_ROOT;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002755
Andreas Gruenbacher93e4bf72013-05-23 14:57:17 +02002756 id = idr_alloc(&drbd_devices, device, minor, minor + 1, GFP_KERNEL);
2757 if (id < 0) {
Andreas Gruenbacherf221f4b2014-11-10 17:21:10 +01002758 if (id == -ENOSPC)
Andreas Gruenbacher179e20b82014-11-10 17:21:09 +01002759 err = ERR_MINOR_OR_VOLUME_EXISTS;
Lars Ellenberg8432b312011-03-08 16:11:16 +01002760 goto out_no_minor_idr;
Tejun Heo56de2102013-02-27 17:04:01 -08002761 }
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002762 kref_get(&device->kref);
2763
2764 id = idr_alloc(&resource->devices, device, vnr, vnr + 1, GFP_KERNEL);
2765 if (id < 0) {
Andreas Gruenbacherf221f4b2014-11-10 17:21:10 +01002766 if (id == -ENOSPC)
Andreas Gruenbacher179e20b82014-11-10 17:21:09 +01002767 err = ERR_MINOR_OR_VOLUME_EXISTS;
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002768 goto out_idr_remove_minor;
2769 }
2770 kref_get(&device->kref);
Tejun Heo56de2102013-02-27 17:04:01 -08002771
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002772 INIT_LIST_HEAD(&device->peer_devices);
Lars Ellenberg4ce49262014-05-06 00:44:59 +02002773 INIT_LIST_HEAD(&device->pending_bitmap_io);
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002774 for_each_connection(connection, resource) {
2775 peer_device = kzalloc(sizeof(struct drbd_peer_device), GFP_KERNEL);
2776 if (!peer_device)
2777 goto out_idr_remove_from_resource;
2778 peer_device->connection = connection;
2779 peer_device->device = device;
2780
2781 list_add(&peer_device->peer_devices, &device->peer_devices);
2782 kref_get(&device->kref);
2783
2784 id = idr_alloc(&connection->peer_devices, peer_device, vnr, vnr + 1, GFP_KERNEL);
2785 if (id < 0) {
Andreas Gruenbacherf221f4b2014-11-10 17:21:10 +01002786 if (id == -ENOSPC)
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002787 err = ERR_INVALID_REQUEST;
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002788 goto out_idr_remove_from_resource;
Tejun Heo56de2102013-02-27 17:04:01 -08002789 }
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002790 kref_get(&connection->kref);
Philipp Reisner668700b2015-03-16 16:08:29 +01002791 INIT_WORK(&peer_device->send_acks_work, drbd_send_acks_wf);
Lars Ellenberg569083c2011-03-07 09:49:02 +01002792 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07002793
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002794 if (init_submitter(device)) {
Lars Ellenberg113fef92013-03-22 18:14:40 -06002795 err = ERR_NOMEM;
Lars Ellenberg113fef92013-03-22 18:14:40 -06002796 goto out_idr_remove_vol;
2797 }
2798
Luis Chamberlaine92ab4e2021-09-27 15:00:59 -07002799 err = add_disk(disk);
2800 if (err)
Wu Bo27548082021-11-04 16:07:09 +08002801 goto out_idr_remove_vol;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002802
Philipp Reisner2325eb62011-03-15 16:56:18 +01002803 /* inherit the connection state */
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002804 device->state.conn = first_connection(resource)->cstate;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02002805 if (device->state.conn == C_WF_REPORT_PARAMS) {
2806 for_each_peer_device(peer_device, device)
2807 drbd_connected(peer_device);
2808 }
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002809 /* move to create_peer_device() */
2810 for_each_peer_device(peer_device, device)
2811 drbd_debugfs_peer_device_add(peer_device);
2812 drbd_debugfs_device_add(device);
Philipp Reisner774b3052011-02-22 02:07:03 -05002813 return NO_ERROR;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002814
Lars Ellenberg113fef92013-03-22 18:14:40 -06002815out_idr_remove_vol:
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02002816 idr_remove(&connection->peer_devices, vnr);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002817out_idr_remove_from_resource:
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002818 for_each_connection(connection, resource) {
Matthew Wilcoxd3e709e2016-12-22 13:30:22 -05002819 peer_device = idr_remove(&connection->peer_devices, vnr);
2820 if (peer_device)
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002821 kref_put(&connection->kref, drbd_destroy_connection);
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002822 }
2823 for_each_peer_device_safe(peer_device, tmp_peer_device, device) {
2824 list_del(&peer_device->peer_devices);
2825 kfree(peer_device);
2826 }
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002827 idr_remove(&resource->devices, vnr);
Lars Ellenberg8432b312011-03-08 16:11:16 +01002828out_idr_remove_minor:
Andreas Gruenbacher93e4bf72013-05-23 14:57:17 +02002829 idr_remove(&drbd_devices, minor);
Lars Ellenberg569083c2011-03-07 09:49:02 +01002830 synchronize_rcu();
Lars Ellenberg8432b312011-03-08 16:11:16 +01002831out_no_minor_idr:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002832 drbd_bm_cleanup(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002833out_no_bitmap:
Lars Ellenberge37d2432014-04-01 23:53:30 +02002834 __free_page(device->md_io.page);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002835out_no_io_page:
Christoph Hellwigb647ad02021-05-21 07:50:57 +02002836 blk_cleanup_disk(disk);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002837out_no_disk:
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002838 kref_put(&resource->kref, drbd_destroy_resource);
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02002839 kfree(device);
Lars Ellenberg8432b312011-03-08 16:11:16 +01002840 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002841}
2842
Andreas Gruenbacherf82795d2011-07-03 23:32:26 +02002843void drbd_delete_device(struct drbd_device *device)
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002844{
2845 struct drbd_resource *resource = device->resource;
2846 struct drbd_connection *connection;
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002847 struct drbd_peer_device *peer_device;
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002848
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002849 /* move to free_peer_device() */
2850 for_each_peer_device(peer_device, device)
2851 drbd_debugfs_peer_device_cleanup(peer_device);
2852 drbd_debugfs_device_cleanup(device);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002853 for_each_connection(connection, resource) {
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02002854 idr_remove(&connection->peer_devices, device->vnr);
Peter Zijlstrabdfafc42016-11-14 17:34:19 +01002855 kref_put(&device->kref, drbd_destroy_device);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002856 }
2857 idr_remove(&resource->devices, device->vnr);
Peter Zijlstrabdfafc42016-11-14 17:34:19 +01002858 kref_put(&device->kref, drbd_destroy_device);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002859 idr_remove(&drbd_devices, device_to_minor(device));
Peter Zijlstrabdfafc42016-11-14 17:34:19 +01002860 kref_put(&device->kref, drbd_destroy_device);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002861 del_gendisk(device->vdisk);
2862 synchronize_rcu();
Peter Zijlstrabdfafc42016-11-14 17:34:19 +01002863 kref_put(&device->kref, drbd_destroy_device);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002864}
2865
Lars Ellenberg8ce953a2014-02-27 09:46:18 +01002866static int __init drbd_init(void)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002867{
2868 int err;
2869
Roland Kammerer183ece32017-08-29 10:20:46 +02002870 if (drbd_minor_count < DRBD_MINOR_COUNT_MIN || drbd_minor_count > DRBD_MINOR_COUNT_MAX) {
2871 pr_err("invalid minor_count (%d)\n", drbd_minor_count);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002872#ifdef MODULE
2873 return -EINVAL;
2874#else
Philipp Reisner5fc1efd2017-08-30 13:47:11 +02002875 drbd_minor_count = DRBD_MINOR_COUNT_DEF;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002876#endif
2877 }
2878
Philipp Reisnerb411b362009-09-25 16:07:19 -07002879 err = register_blkdev(DRBD_MAJOR, "drbd");
2880 if (err) {
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002881 pr_err("unable to register block device major %d\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -07002882 DRBD_MAJOR);
2883 return err;
2884 }
2885
Philipp Reisnerb411b362009-09-25 16:07:19 -07002886 /*
2887 * allocate all necessary structs
2888 */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002889 init_waitqueue_head(&drbd_pp_wait);
2890
2891 drbd_proc = NULL; /* play safe for drbd_cleanup */
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +02002892 idr_init(&drbd_devices);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002893
Andreas Gruenbacher28bc3b82014-08-14 18:33:30 +02002894 mutex_init(&resources_mutex);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002895 INIT_LIST_HEAD(&drbd_resources);
Lars Ellenberg69babf02013-10-23 10:59:15 +02002896
2897 err = drbd_genl_register();
2898 if (err) {
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002899 pr_err("unable to register generic netlink family\n");
Lars Ellenberg69babf02013-10-23 10:59:15 +02002900 goto fail;
2901 }
2902
Philipp Reisnerb411b362009-09-25 16:07:19 -07002903 err = drbd_create_mempools();
2904 if (err)
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002905 goto fail;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002906
Wei Yongjun6110d702013-06-25 16:50:04 +02002907 err = -ENOMEM;
Linus Torvaldscf626b02018-06-04 10:00:01 -07002908 drbd_proc = proc_create_single("drbd", S_IFREG | 0444 , NULL, drbd_seq_show);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002909 if (!drbd_proc) {
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002910 pr_err("unable to register proc file\n");
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002911 goto fail;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002912 }
2913
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002914 retry.wq = create_singlethread_workqueue("drbd-reissue");
2915 if (!retry.wq) {
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002916 pr_err("unable to create retry workqueue\n");
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002917 goto fail;
2918 }
2919 INIT_WORK(&retry.worker, do_retry);
2920 spin_lock_init(&retry.lock);
2921 INIT_LIST_HEAD(&retry.writes);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002922
Greg Kroah-Hartmand27e84a2019-06-18 17:45:49 +02002923 drbd_debugfs_init();
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002924
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002925 pr_info("initialized. "
Philipp Reisnerb411b362009-09-25 16:07:19 -07002926 "Version: " REL_VERSION " (api:%d/proto:%d-%d)\n",
2927 API_VERSION, PRO_VERSION_MIN, PRO_VERSION_MAX);
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002928 pr_info("%s\n", drbd_buildtag());
2929 pr_info("registered as block device major %d\n", DRBD_MAJOR);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002930 return 0; /* Success! */
2931
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002932fail:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002933 drbd_cleanup();
2934 if (err == -ENOMEM)
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002935 pr_err("ran out of memory\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07002936 else
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002937 pr_err("initialization failure\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07002938 return err;
2939}
2940
Lars Ellenbergf4188152014-05-05 23:05:47 +02002941static void drbd_free_one_sock(struct drbd_socket *ds)
2942{
2943 struct socket *s;
2944 mutex_lock(&ds->mutex);
2945 s = ds->socket;
2946 ds->socket = NULL;
2947 mutex_unlock(&ds->mutex);
2948 if (s) {
2949 /* so debugfs does not need to mutex_lock() */
2950 synchronize_rcu();
2951 kernel_sock_shutdown(s, SHUT_RDWR);
2952 sock_release(s);
2953 }
2954}
2955
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002956void drbd_free_sock(struct drbd_connection *connection)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002957{
Lars Ellenbergf4188152014-05-05 23:05:47 +02002958 if (connection->data.socket)
2959 drbd_free_one_sock(&connection->data);
2960 if (connection->meta.socket)
2961 drbd_free_one_sock(&connection->meta);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002962}
2963
Philipp Reisnerb411b362009-09-25 16:07:19 -07002964/* meta data management */
2965
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002966void conn_md_sync(struct drbd_connection *connection)
Philipp Reisner19fffd72012-08-28 16:48:03 +02002967{
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02002968 struct drbd_peer_device *peer_device;
Philipp Reisner19fffd72012-08-28 16:48:03 +02002969 int vnr;
2970
2971 rcu_read_lock();
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02002972 idr_for_each_entry(&connection->peer_devices, peer_device, vnr) {
2973 struct drbd_device *device = peer_device->device;
2974
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002975 kref_get(&device->kref);
Philipp Reisner19fffd72012-08-28 16:48:03 +02002976 rcu_read_unlock();
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002977 drbd_md_sync(device);
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +02002978 kref_put(&device->kref, drbd_destroy_device);
Philipp Reisner19fffd72012-08-28 16:48:03 +02002979 rcu_read_lock();
2980 }
2981 rcu_read_unlock();
2982}
2983
Lars Ellenbergae8bf312013-03-19 18:16:43 +01002984/* aligned 4kByte */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002985struct meta_data_on_disk {
Lars Ellenbergcccac982013-03-19 18:16:46 +01002986 u64 la_size_sect; /* last agreed size. */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002987 u64 uuid[UI_SIZE]; /* UUIDs. */
2988 u64 device_uuid;
2989 u64 reserved_u64_1;
2990 u32 flags; /* MDF */
2991 u32 magic;
2992 u32 md_size_sect;
2993 u32 al_offset; /* offset to this block */
Lars Ellenbergae8bf312013-03-19 18:16:43 +01002994 u32 al_nr_extents; /* important for restoring the AL (userspace) */
Lars Ellenbergf3990022011-03-23 14:31:09 +01002995 /* `-- act_log->nr_elements <-- ldev->dc.al_extents */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002996 u32 bm_offset; /* offset to the bitmap, from here */
2997 u32 bm_bytes_per_bit; /* BM_BLOCK_SIZE */
Philipp Reisner99432fc2011-05-20 16:39:13 +02002998 u32 la_peer_max_bio_size; /* last peer max_bio_size */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002999
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003000 /* see al_tr_number_to_on_disk_sector() */
3001 u32 al_stripes;
3002 u32 al_stripe_size_4k;
3003
3004 u8 reserved_u8[4096 - (7*8 + 10*4)];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003005} __packed;
3006
Philipp Reisnerd752b262013-06-25 16:50:08 +02003007
3008
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003009void drbd_md_write(struct drbd_device *device, void *b)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003010{
Philipp Reisnerd752b262013-06-25 16:50:08 +02003011 struct meta_data_on_disk *buffer = b;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003012 sector_t sector;
3013 int i;
3014
Lars Ellenbergae8bf312013-03-19 18:16:43 +01003015 memset(buffer, 0, sizeof(*buffer));
Philipp Reisnerb411b362009-09-25 16:07:19 -07003016
Christoph Hellwig155bd9d2020-09-25 18:06:17 +02003017 buffer->la_size_sect = cpu_to_be64(get_capacity(device->vdisk));
Philipp Reisnerb411b362009-09-25 16:07:19 -07003018 for (i = UI_CURRENT; i < UI_SIZE; i++)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003019 buffer->uuid[i] = cpu_to_be64(device->ldev->md.uuid[i]);
3020 buffer->flags = cpu_to_be32(device->ldev->md.flags);
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003021 buffer->magic = cpu_to_be32(DRBD_MD_MAGIC_84_UNCLEAN);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003022
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003023 buffer->md_size_sect = cpu_to_be32(device->ldev->md.md_size_sect);
3024 buffer->al_offset = cpu_to_be32(device->ldev->md.al_offset);
3025 buffer->al_nr_extents = cpu_to_be32(device->act_log->nr_elements);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003026 buffer->bm_bytes_per_bit = cpu_to_be32(BM_BLOCK_SIZE);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003027 buffer->device_uuid = cpu_to_be64(device->ldev->md.device_uuid);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003028
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003029 buffer->bm_offset = cpu_to_be32(device->ldev->md.bm_offset);
3030 buffer->la_peer_max_bio_size = cpu_to_be32(device->peer_max_bio_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003031
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003032 buffer->al_stripes = cpu_to_be32(device->ldev->md.al_stripes);
3033 buffer->al_stripe_size_4k = cpu_to_be32(device->ldev->md.al_stripe_size_4k);
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003034
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02003035 D_ASSERT(device, drbd_md_ss(device->ldev) == device->ldev->md.md_offset);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003036 sector = device->ldev->md.md_offset;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003037
Mike Christiebb3cc852016-06-05 14:32:06 -05003038 if (drbd_md_sync_page_io(device, device->ldev, sector, REQ_OP_WRITE)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07003039 /* this was a try anyways ... */
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003040 drbd_err(device, "meta data update failed!\n");
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003041 drbd_chk_io_error(device, 1, DRBD_META_IO_ERROR);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003042 }
Philipp Reisnerd752b262013-06-25 16:50:08 +02003043}
3044
3045/**
3046 * drbd_md_sync() - Writes the meta data super block if the MD_DIRTY flag bit is set
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003047 * @device: DRBD device.
Philipp Reisnerd752b262013-06-25 16:50:08 +02003048 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003049void drbd_md_sync(struct drbd_device *device)
Philipp Reisnerd752b262013-06-25 16:50:08 +02003050{
3051 struct meta_data_on_disk *buffer;
3052
3053 /* Don't accidentally change the DRBD meta data layout. */
3054 BUILD_BUG_ON(UI_SIZE != 4);
3055 BUILD_BUG_ON(sizeof(struct meta_data_on_disk) != 4096);
3056
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003057 del_timer(&device->md_sync_timer);
Philipp Reisnerd752b262013-06-25 16:50:08 +02003058 /* timer may be rearmed by drbd_md_mark_dirty() now. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003059 if (!test_and_clear_bit(MD_DIRTY, &device->flags))
Philipp Reisnerd752b262013-06-25 16:50:08 +02003060 return;
3061
3062 /* We use here D_FAILED and not D_ATTACHING because we try to write
3063 * metadata even if we detach due to a disk failure! */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003064 if (!get_ldev_if_state(device, D_FAILED))
Philipp Reisnerd752b262013-06-25 16:50:08 +02003065 return;
3066
Lars Ellenberge37d2432014-04-01 23:53:30 +02003067 buffer = drbd_md_get_buffer(device, __func__);
Philipp Reisnerd752b262013-06-25 16:50:08 +02003068 if (!buffer)
3069 goto out;
3070
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003071 drbd_md_write(device, buffer);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003072
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003073 /* Update device->ldev->md.la_size_sect,
Philipp Reisnerb411b362009-09-25 16:07:19 -07003074 * since we updated it on metadata. */
Christoph Hellwig155bd9d2020-09-25 18:06:17 +02003075 device->ldev->md.la_size_sect = get_capacity(device->vdisk);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003076
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003077 drbd_md_put_buffer(device);
Philipp Reisnere1711732011-06-27 11:51:46 +02003078out:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003079 put_ldev(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003080}
3081
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003082static int check_activity_log_stripe_size(struct drbd_device *device,
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003083 struct meta_data_on_disk *on_disk,
3084 struct drbd_md *in_core)
3085{
3086 u32 al_stripes = be32_to_cpu(on_disk->al_stripes);
3087 u32 al_stripe_size_4k = be32_to_cpu(on_disk->al_stripe_size_4k);
3088 u64 al_size_4k;
3089
3090 /* both not set: default to old fixed size activity log */
3091 if (al_stripes == 0 && al_stripe_size_4k == 0) {
3092 al_stripes = 1;
3093 al_stripe_size_4k = MD_32kB_SECT/8;
3094 }
3095
3096 /* some paranoia plausibility checks */
3097
3098 /* we need both values to be set */
3099 if (al_stripes == 0 || al_stripe_size_4k == 0)
3100 goto err;
3101
3102 al_size_4k = (u64)al_stripes * al_stripe_size_4k;
3103
3104 /* Upper limit of activity log area, to avoid potential overflow
3105 * problems in al_tr_number_to_on_disk_sector(). As right now, more
3106 * than 72 * 4k blocks total only increases the amount of history,
3107 * limiting this arbitrarily to 16 GB is not a real limitation ;-) */
3108 if (al_size_4k > (16 * 1024 * 1024/4))
3109 goto err;
3110
3111 /* Lower limit: we need at least 8 transaction slots (32kB)
3112 * to not break existing setups */
3113 if (al_size_4k < MD_32kB_SECT/8)
3114 goto err;
3115
3116 in_core->al_stripe_size_4k = al_stripe_size_4k;
3117 in_core->al_stripes = al_stripes;
3118 in_core->al_size_4k = al_size_4k;
3119
3120 return 0;
3121err:
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003122 drbd_err(device, "invalid activity log striping: al_stripes=%u, al_stripe_size_4k=%u\n",
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003123 al_stripes, al_stripe_size_4k);
3124 return -EINVAL;
3125}
3126
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003127static int check_offsets_and_sizes(struct drbd_device *device, struct drbd_backing_dev *bdev)
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003128{
3129 sector_t capacity = drbd_get_capacity(bdev->md_bdev);
3130 struct drbd_md *in_core = &bdev->md;
3131 s32 on_disk_al_sect;
3132 s32 on_disk_bm_sect;
3133
3134 /* The on-disk size of the activity log, calculated from offsets, and
3135 * the size of the activity log calculated from the stripe settings,
3136 * should match.
3137 * Though we could relax this a bit: it is ok, if the striped activity log
3138 * fits in the available on-disk activity log size.
3139 * Right now, that would break how resize is implemented.
3140 * TODO: make drbd_determine_dev_size() (and the drbdmeta tool) aware
3141 * of possible unused padding space in the on disk layout. */
3142 if (in_core->al_offset < 0) {
3143 if (in_core->bm_offset > in_core->al_offset)
3144 goto err;
3145 on_disk_al_sect = -in_core->al_offset;
3146 on_disk_bm_sect = in_core->al_offset - in_core->bm_offset;
3147 } else {
3148 if (in_core->al_offset != MD_4kB_SECT)
3149 goto err;
3150 if (in_core->bm_offset < in_core->al_offset + in_core->al_size_4k * MD_4kB_SECT)
3151 goto err;
3152
3153 on_disk_al_sect = in_core->bm_offset - MD_4kB_SECT;
3154 on_disk_bm_sect = in_core->md_size_sect - in_core->bm_offset;
3155 }
3156
3157 /* old fixed size meta data is exactly that: fixed. */
3158 if (in_core->meta_dev_idx >= 0) {
3159 if (in_core->md_size_sect != MD_128MB_SECT
3160 || in_core->al_offset != MD_4kB_SECT
3161 || in_core->bm_offset != MD_4kB_SECT + MD_32kB_SECT
3162 || in_core->al_stripes != 1
3163 || in_core->al_stripe_size_4k != MD_32kB_SECT/8)
3164 goto err;
3165 }
3166
3167 if (capacity < in_core->md_size_sect)
3168 goto err;
3169 if (capacity - in_core->md_size_sect < drbd_md_first_sector(bdev))
3170 goto err;
3171
3172 /* should be aligned, and at least 32k */
3173 if ((on_disk_al_sect & 7) || (on_disk_al_sect < MD_32kB_SECT))
3174 goto err;
3175
3176 /* should fit (for now: exactly) into the available on-disk space;
3177 * overflow prevention is in check_activity_log_stripe_size() above. */
3178 if (on_disk_al_sect != in_core->al_size_4k * MD_4kB_SECT)
3179 goto err;
3180
3181 /* again, should be aligned */
3182 if (in_core->bm_offset & 7)
3183 goto err;
3184
3185 /* FIXME check for device grow with flex external meta data? */
3186
3187 /* can the available bitmap space cover the last agreed device size? */
3188 if (on_disk_bm_sect < (in_core->la_size_sect+7)/MD_4kB_SECT/8/512)
3189 goto err;
3190
3191 return 0;
3192
3193err:
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003194 drbd_err(device, "meta data offsets don't make sense: idx=%d "
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003195 "al_s=%u, al_sz4k=%u, al_offset=%d, bm_offset=%d, "
3196 "md_size_sect=%u, la_size=%llu, md_capacity=%llu\n",
3197 in_core->meta_dev_idx,
3198 in_core->al_stripes, in_core->al_stripe_size_4k,
3199 in_core->al_offset, in_core->bm_offset, in_core->md_size_sect,
3200 (unsigned long long)in_core->la_size_sect,
3201 (unsigned long long)capacity);
3202
3203 return -EINVAL;
3204}
3205
3206
Philipp Reisnerb411b362009-09-25 16:07:19 -07003207/**
3208 * drbd_md_read() - Reads in the meta data super block
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003209 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003210 * @bdev: Device from which the meta data should be read in.
3211 *
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003212 * Return NO_ERROR on success, and an enum drbd_ret_code in case
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003213 * something goes wrong.
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003214 *
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003215 * Called exactly once during drbd_adm_attach(), while still being D_DISKLESS,
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003216 * even before @bdev is assigned to @device->ldev.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003217 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003218int drbd_md_read(struct drbd_device *device, struct drbd_backing_dev *bdev)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003219{
3220 struct meta_data_on_disk *buffer;
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003221 u32 magic, flags;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003222 int i, rv = NO_ERROR;
3223
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003224 if (device->state.disk != D_DISKLESS)
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003225 return ERR_DISK_CONFIGURED;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003226
Lars Ellenberge37d2432014-04-01 23:53:30 +02003227 buffer = drbd_md_get_buffer(device, __func__);
Philipp Reisnere1711732011-06-27 11:51:46 +02003228 if (!buffer)
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003229 return ERR_NOMEM;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003230
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003231 /* First, figure out where our meta data superblock is located,
3232 * and read it. */
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003233 bdev->md.meta_dev_idx = bdev->disk_conf->meta_dev_idx;
3234 bdev->md.md_offset = drbd_md_ss(bdev);
Lars Ellenbergedb5e5f2015-03-24 21:35:26 +01003235 /* Even for (flexible or indexed) external meta data,
3236 * initially restrict us to the 4k superblock for now.
3237 * Affects the paranoia out-of-range access check in drbd_md_sync_page_io(). */
3238 bdev->md.md_size_sect = 8;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003239
Mike Christiebb3cc852016-06-05 14:32:06 -05003240 if (drbd_md_sync_page_io(device, bdev, bdev->md.md_offset,
3241 REQ_OP_READ)) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003242 /* NOTE: can't do normal error processing here as this is
Philipp Reisnerb411b362009-09-25 16:07:19 -07003243 called BEFORE disk is attached */
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003244 drbd_err(device, "Error while reading metadata.\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07003245 rv = ERR_IO_MD_DISK;
3246 goto err;
3247 }
3248
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003249 magic = be32_to_cpu(buffer->magic);
3250 flags = be32_to_cpu(buffer->flags);
3251 if (magic == DRBD_MD_MAGIC_84_UNCLEAN ||
3252 (magic == DRBD_MD_MAGIC_08 && !(flags & MDF_AL_CLEAN))) {
3253 /* btw: that's Activity Log clean, not "all" clean. */
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003254 drbd_err(device, "Found unclean meta data. Did you \"drbdadm apply-al\"?\n");
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003255 rv = ERR_MD_UNCLEAN;
3256 goto err;
3257 }
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003258
3259 rv = ERR_MD_INVALID;
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003260 if (magic != DRBD_MD_MAGIC_08) {
Philipp Reisner43de7c82011-11-10 13:16:13 +01003261 if (magic == DRBD_MD_MAGIC_07)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003262 drbd_err(device, "Found old (0.7) meta data magic. Did you \"drbdadm create-md\"?\n");
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003263 else
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003264 drbd_err(device, "Meta data magic not found. Did you \"drbdadm create-md\"?\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07003265 goto err;
3266 }
3267
3268 if (be32_to_cpu(buffer->bm_bytes_per_bit) != BM_BLOCK_SIZE) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003269 drbd_err(device, "unexpected bm_bytes_per_bit: %u (expected %u)\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003270 be32_to_cpu(buffer->bm_bytes_per_bit), BM_BLOCK_SIZE);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003271 goto err;
3272 }
3273
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003274
3275 /* convert to in_core endian */
3276 bdev->md.la_size_sect = be64_to_cpu(buffer->la_size_sect);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003277 for (i = UI_CURRENT; i < UI_SIZE; i++)
3278 bdev->md.uuid[i] = be64_to_cpu(buffer->uuid[i]);
3279 bdev->md.flags = be32_to_cpu(buffer->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003280 bdev->md.device_uuid = be64_to_cpu(buffer->device_uuid);
3281
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003282 bdev->md.md_size_sect = be32_to_cpu(buffer->md_size_sect);
3283 bdev->md.al_offset = be32_to_cpu(buffer->al_offset);
3284 bdev->md.bm_offset = be32_to_cpu(buffer->bm_offset);
3285
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003286 if (check_activity_log_stripe_size(device, buffer, &bdev->md))
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003287 goto err;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003288 if (check_offsets_and_sizes(device, bdev))
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003289 goto err;
3290
Philipp Reisnerb411b362009-09-25 16:07:19 -07003291 if (be32_to_cpu(buffer->bm_offset) != bdev->md.bm_offset) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003292 drbd_err(device, "unexpected bm_offset: %d (expected %d)\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003293 be32_to_cpu(buffer->bm_offset), bdev->md.bm_offset);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003294 goto err;
3295 }
3296 if (be32_to_cpu(buffer->md_size_sect) != bdev->md.md_size_sect) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003297 drbd_err(device, "unexpected md_size: %u (expected %u)\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003298 be32_to_cpu(buffer->md_size_sect), bdev->md.md_size_sect);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003299 goto err;
3300 }
3301
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003302 rv = NO_ERROR;
3303
Andreas Gruenbacher05008132011-07-07 14:19:42 +02003304 spin_lock_irq(&device->resource->req_lock);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003305 if (device->state.conn < C_CONNECTED) {
Lars Ellenbergdb141b22012-06-25 19:15:58 +02003306 unsigned int peer;
Philipp Reisner99432fc2011-05-20 16:39:13 +02003307 peer = be32_to_cpu(buffer->la_peer_max_bio_size);
Lars Ellenbergdb141b22012-06-25 19:15:58 +02003308 peer = max(peer, DRBD_MAX_BIO_SIZE_SAFE);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003309 device->peer_max_bio_size = peer;
Philipp Reisner99432fc2011-05-20 16:39:13 +02003310 }
Andreas Gruenbacher05008132011-07-07 14:19:42 +02003311 spin_unlock_irq(&device->resource->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003312
3313 err:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003314 drbd_md_put_buffer(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003315
3316 return rv;
3317}
3318
3319/**
3320 * drbd_md_mark_dirty() - Mark meta data super block as dirty
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003321 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003322 *
3323 * Call this function if you change anything that should be written to
3324 * the meta-data super block. This function sets MD_DIRTY, and starts a
3325 * timer that ensures that within five seconds you have to call drbd_md_sync().
3326 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003327void drbd_md_mark_dirty(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003328{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003329 if (!test_and_set_bit(MD_DIRTY, &device->flags))
3330 mod_timer(&device->md_sync_timer, jiffies + 5*HZ);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003331}
Philipp Reisnerb411b362009-09-25 16:07:19 -07003332
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003333void drbd_uuid_move_history(struct drbd_device *device) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003334{
3335 int i;
3336
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003337 for (i = UI_HISTORY_START; i < UI_HISTORY_END; i++)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003338 device->ldev->md.uuid[i+1] = device->ldev->md.uuid[i];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003339}
3340
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003341void __drbd_uuid_set(struct drbd_device *device, int idx, u64 val) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003342{
3343 if (idx == UI_CURRENT) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003344 if (device->state.role == R_PRIMARY)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003345 val |= 1;
3346 else
3347 val &= ~((u64)1);
3348
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003349 drbd_set_ed_uuid(device, val);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003350 }
3351
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003352 device->ldev->md.uuid[idx] = val;
3353 drbd_md_mark_dirty(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003354}
3355
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003356void _drbd_uuid_set(struct drbd_device *device, int idx, u64 val) __must_hold(local)
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003357{
3358 unsigned long flags;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003359 spin_lock_irqsave(&device->ldev->md.uuid_lock, flags);
3360 __drbd_uuid_set(device, idx, val);
3361 spin_unlock_irqrestore(&device->ldev->md.uuid_lock, flags);
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003362}
Philipp Reisnerb411b362009-09-25 16:07:19 -07003363
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003364void drbd_uuid_set(struct drbd_device *device, int idx, u64 val) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003365{
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003366 unsigned long flags;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003367 spin_lock_irqsave(&device->ldev->md.uuid_lock, flags);
3368 if (device->ldev->md.uuid[idx]) {
3369 drbd_uuid_move_history(device);
3370 device->ldev->md.uuid[UI_HISTORY_START] = device->ldev->md.uuid[idx];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003371 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003372 __drbd_uuid_set(device, idx, val);
3373 spin_unlock_irqrestore(&device->ldev->md.uuid_lock, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003374}
3375
3376/**
3377 * drbd_uuid_new_current() - Creates a new current UUID
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003378 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003379 *
3380 * Creates a new current UUID, and rotates the old current UUID into
3381 * the bitmap slot. Causes an incremental resync upon next connect.
3382 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003383void drbd_uuid_new_current(struct drbd_device *device) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003384{
3385 u64 val;
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003386 unsigned long long bm_uuid;
3387
3388 get_random_bytes(&val, sizeof(u64));
3389
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003390 spin_lock_irq(&device->ldev->md.uuid_lock);
3391 bm_uuid = device->ldev->md.uuid[UI_BITMAP];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003392
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003393 if (bm_uuid)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003394 drbd_warn(device, "bm UUID was already set: %llX\n", bm_uuid);
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003395
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003396 device->ldev->md.uuid[UI_BITMAP] = device->ldev->md.uuid[UI_CURRENT];
3397 __drbd_uuid_set(device, UI_CURRENT, val);
3398 spin_unlock_irq(&device->ldev->md.uuid_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003399
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003400 drbd_print_uuids(device, "new current UUID");
Lars Ellenbergaaa8e2b2010-10-15 13:16:53 +02003401 /* get it to stable storage _now_ */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003402 drbd_md_sync(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003403}
3404
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003405void drbd_uuid_set_bm(struct drbd_device *device, u64 val) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003406{
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003407 unsigned long flags;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003408 if (device->ldev->md.uuid[UI_BITMAP] == 0 && val == 0)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003409 return;
3410
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003411 spin_lock_irqsave(&device->ldev->md.uuid_lock, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003412 if (val == 0) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003413 drbd_uuid_move_history(device);
3414 device->ldev->md.uuid[UI_HISTORY_START] = device->ldev->md.uuid[UI_BITMAP];
3415 device->ldev->md.uuid[UI_BITMAP] = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003416 } else {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003417 unsigned long long bm_uuid = device->ldev->md.uuid[UI_BITMAP];
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003418 if (bm_uuid)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003419 drbd_warn(device, "bm UUID was already set: %llX\n", bm_uuid);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003420
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003421 device->ldev->md.uuid[UI_BITMAP] = val & ~((u64)1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003422 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003423 spin_unlock_irqrestore(&device->ldev->md.uuid_lock, flags);
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003424
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003425 drbd_md_mark_dirty(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003426}
3427
3428/**
3429 * drbd_bmio_set_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003430 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003431 *
3432 * Sets all bits in the bitmap and writes the whole bitmap to stable storage.
3433 */
Philipp Reisner8fe39aa2013-11-22 13:22:13 +01003434int drbd_bmio_set_n_write(struct drbd_device *device) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003435{
3436 int rv = -EIO;
3437
Philipp Reisner8fe39aa2013-11-22 13:22:13 +01003438 drbd_md_set_flag(device, MDF_FULL_SYNC);
3439 drbd_md_sync(device);
3440 drbd_bm_set_all(device);
3441
3442 rv = drbd_bm_write(device);
3443
3444 if (!rv) {
3445 drbd_md_clear_flag(device, MDF_FULL_SYNC);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003446 drbd_md_sync(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003447 }
3448
3449 return rv;
3450}
3451
3452/**
3453 * drbd_bmio_clear_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003454 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003455 *
3456 * Clears all bits in the bitmap and writes the whole bitmap to stable storage.
3457 */
Philipp Reisner8fe39aa2013-11-22 13:22:13 +01003458int drbd_bmio_clear_n_write(struct drbd_device *device) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003459{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003460 drbd_resume_al(device);
Philipp Reisner8fe39aa2013-11-22 13:22:13 +01003461 drbd_bm_clear_all(device);
3462 return drbd_bm_write(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003463}
3464
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003465static int w_bitmap_io(struct drbd_work *w, int unused)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003466{
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02003467 struct drbd_device *device =
3468 container_of(w, struct drbd_device, bm_io_work.w);
3469 struct bm_io_work *work = &device->bm_io_work;
Lars Ellenberg02851e92010-12-16 14:47:39 +01003470 int rv = -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003471
Lars Ellenbergbca1cba2016-06-14 00:26:16 +02003472 if (work->flags != BM_LOCKED_CHANGE_ALLOWED) {
3473 int cnt = atomic_read(&device->ap_bio_cnt);
3474 if (cnt)
3475 drbd_err(device, "FIXME: ap_bio_cnt %d, expected 0; queued for '%s'\n",
3476 cnt, work->why);
3477 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07003478
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003479 if (get_ldev(device)) {
3480 drbd_bm_lock(device, work->why, work->flags);
3481 rv = work->io_fn(device);
3482 drbd_bm_unlock(device);
3483 put_ldev(device);
Lars Ellenberg02851e92010-12-16 14:47:39 +01003484 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07003485
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003486 clear_bit_unlock(BITMAP_IO, &device->flags);
3487 wake_up(&device->misc_wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003488
3489 if (work->done)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003490 work->done(device, rv);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003491
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003492 clear_bit(BITMAP_IO_QUEUED, &device->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003493 work->why = NULL;
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003494 work->flags = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003495
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003496 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003497}
3498
3499/**
3500 * drbd_queue_bitmap_io() - Queues an IO operation on the whole bitmap
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003501 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003502 * @io_fn: IO callback to be called when bitmap IO is possible
3503 * @done: callback to be called after the bitmap IO was performed
3504 * @why: Descriptive text of the reason for doing the IO
Lee Jones584164c2021-03-12 10:55:27 +00003505 * @flags: Bitmap flags
Philipp Reisnerb411b362009-09-25 16:07:19 -07003506 *
3507 * While IO on the bitmap happens we freeze application IO thus we ensure
3508 * that drbd_set_out_of_sync() can not be called. This function MAY ONLY be
3509 * called from worker context. It MUST NOT be used while a previous such
3510 * work is still pending!
Philipp Reisner8fe39aa2013-11-22 13:22:13 +01003511 *
3512 * Its worker function encloses the call of io_fn() by get_ldev() and
3513 * put_ldev().
Philipp Reisnerb411b362009-09-25 16:07:19 -07003514 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003515void drbd_queue_bitmap_io(struct drbd_device *device,
Andreas Gruenbacher54761692011-05-30 16:15:21 +02003516 int (*io_fn)(struct drbd_device *),
3517 void (*done)(struct drbd_device *, int),
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003518 char *why, enum bm_flag flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003519{
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02003520 D_ASSERT(device, current == first_peer_device(device)->connection->worker.task);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003521
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02003522 D_ASSERT(device, !test_bit(BITMAP_IO_QUEUED, &device->flags));
3523 D_ASSERT(device, !test_bit(BITMAP_IO, &device->flags));
3524 D_ASSERT(device, list_empty(&device->bm_io_work.w.list));
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003525 if (device->bm_io_work.why)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003526 drbd_err(device, "FIXME going to queue '%s' but '%s' still pending?\n",
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003527 why, device->bm_io_work.why);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003528
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003529 device->bm_io_work.io_fn = io_fn;
3530 device->bm_io_work.done = done;
3531 device->bm_io_work.why = why;
3532 device->bm_io_work.flags = flags;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003533
Andreas Gruenbacher05008132011-07-07 14:19:42 +02003534 spin_lock_irq(&device->resource->req_lock);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003535 set_bit(BITMAP_IO, &device->flags);
Lars Ellenberg5bded4e2015-04-16 16:51:34 +02003536 /* don't wait for pending application IO if the caller indicates that
3537 * application IO does not conflict anyways. */
3538 if (flags == BM_LOCKED_CHANGE_ALLOWED || atomic_read(&device->ap_bio_cnt) == 0) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003539 if (!test_and_set_bit(BITMAP_IO_QUEUED, &device->flags))
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02003540 drbd_queue_work(&first_peer_device(device)->connection->sender_work,
3541 &device->bm_io_work.w);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003542 }
Andreas Gruenbacher05008132011-07-07 14:19:42 +02003543 spin_unlock_irq(&device->resource->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003544}
3545
3546/**
3547 * drbd_bitmap_io() - Does an IO operation on the whole bitmap
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003548 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003549 * @io_fn: IO callback to be called when bitmap IO is possible
3550 * @why: Descriptive text of the reason for doing the IO
Lee Jones584164c2021-03-12 10:55:27 +00003551 * @flags: Bitmap flags
Philipp Reisnerb411b362009-09-25 16:07:19 -07003552 *
3553 * freezes application IO while that the actual IO operations runs. This
3554 * functions MAY NOT be called from worker context.
3555 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003556int drbd_bitmap_io(struct drbd_device *device, int (*io_fn)(struct drbd_device *),
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003557 char *why, enum bm_flag flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003558{
Lars Ellenbergc0065f92016-06-14 00:26:10 +02003559 /* Only suspend io, if some operation is supposed to be locked out */
3560 const bool do_suspend_io = flags & (BM_DONT_CLEAR|BM_DONT_SET|BM_DONT_TEST);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003561 int rv;
3562
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02003563 D_ASSERT(device, current != first_peer_device(device)->connection->worker.task);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003564
Lars Ellenbergc0065f92016-06-14 00:26:10 +02003565 if (do_suspend_io)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003566 drbd_suspend_io(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003567
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003568 drbd_bm_lock(device, why, flags);
3569 rv = io_fn(device);
3570 drbd_bm_unlock(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003571
Lars Ellenbergc0065f92016-06-14 00:26:10 +02003572 if (do_suspend_io)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003573 drbd_resume_io(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003574
3575 return rv;
3576}
3577
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003578void drbd_md_set_flag(struct drbd_device *device, int flag) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003579{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003580 if ((device->ldev->md.flags & flag) != flag) {
3581 drbd_md_mark_dirty(device);
3582 device->ldev->md.flags |= flag;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003583 }
3584}
3585
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003586void drbd_md_clear_flag(struct drbd_device *device, int flag) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003587{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003588 if ((device->ldev->md.flags & flag) != 0) {
3589 drbd_md_mark_dirty(device);
3590 device->ldev->md.flags &= ~flag;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003591 }
3592}
3593int drbd_md_test_flag(struct drbd_backing_dev *bdev, int flag)
3594{
3595 return (bdev->md.flags & flag) != 0;
3596}
3597
Kees Cook2bccef32017-10-17 20:33:01 -07003598static void md_sync_timer_fn(struct timer_list *t)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003599{
Kees Cook2bccef32017-10-17 20:33:01 -07003600 struct drbd_device *device = from_timer(device, t, md_sync_timer);
Lars Ellenbergac0acb92014-02-11 09:47:58 +01003601 drbd_device_post_work(device, MD_SYNC);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003602}
3603
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01003604const char *cmdname(enum drbd_packet cmd)
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003605{
3606 /* THINK may need to become several global tables
3607 * when we want to support more than
3608 * one PRO_VERSION */
3609 static const char *cmdnames[] = {
3610 [P_DATA] = "Data",
Lars Ellenberg9104d312016-06-14 00:26:31 +02003611 [P_WSAME] = "WriteSame",
3612 [P_TRIM] = "Trim",
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003613 [P_DATA_REPLY] = "DataReply",
3614 [P_RS_DATA_REPLY] = "RSDataReply",
3615 [P_BARRIER] = "Barrier",
3616 [P_BITMAP] = "ReportBitMap",
3617 [P_BECOME_SYNC_TARGET] = "BecomeSyncTarget",
3618 [P_BECOME_SYNC_SOURCE] = "BecomeSyncSource",
3619 [P_UNPLUG_REMOTE] = "UnplugRemote",
3620 [P_DATA_REQUEST] = "DataRequest",
3621 [P_RS_DATA_REQUEST] = "RSDataRequest",
3622 [P_SYNC_PARAM] = "SyncParam",
3623 [P_SYNC_PARAM89] = "SyncParam89",
3624 [P_PROTOCOL] = "ReportProtocol",
3625 [P_UUIDS] = "ReportUUIDs",
3626 [P_SIZES] = "ReportSizes",
3627 [P_STATE] = "ReportState",
3628 [P_SYNC_UUID] = "ReportSyncUUID",
3629 [P_AUTH_CHALLENGE] = "AuthChallenge",
3630 [P_AUTH_RESPONSE] = "AuthResponse",
3631 [P_PING] = "Ping",
3632 [P_PING_ACK] = "PingAck",
3633 [P_RECV_ACK] = "RecvAck",
3634 [P_WRITE_ACK] = "WriteAck",
3635 [P_RS_WRITE_ACK] = "RSWriteAck",
Lars Ellenbergd4dabbe2012-08-01 12:33:51 +02003636 [P_SUPERSEDED] = "Superseded",
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003637 [P_NEG_ACK] = "NegAck",
3638 [P_NEG_DREPLY] = "NegDReply",
3639 [P_NEG_RS_DREPLY] = "NegRSDReply",
3640 [P_BARRIER_ACK] = "BarrierAck",
3641 [P_STATE_CHG_REQ] = "StateChgRequest",
3642 [P_STATE_CHG_REPLY] = "StateChgReply",
3643 [P_OV_REQUEST] = "OVRequest",
3644 [P_OV_REPLY] = "OVReply",
3645 [P_OV_RESULT] = "OVResult",
3646 [P_CSUM_RS_REQUEST] = "CsumRSRequest",
3647 [P_RS_IS_IN_SYNC] = "CsumRSIsInSync",
3648 [P_COMPRESSED_BITMAP] = "CBitmap",
3649 [P_DELAY_PROBE] = "DelayProbe",
3650 [P_OUT_OF_SYNC] = "OutOfSync",
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003651 [P_RETRY_WRITE] = "RetryWrite",
Lars Ellenbergae25b332011-04-24 00:01:16 +02003652 [P_RS_CANCEL] = "RSCancel",
3653 [P_CONN_ST_CHG_REQ] = "conn_st_chg_req",
3654 [P_CONN_ST_CHG_REPLY] = "conn_st_chg_reply",
Philipp Reisner036b17e2011-05-16 17:38:11 +02003655 [P_PROTOCOL_UPDATE] = "protocol_update",
Philipp Reisner700ca8c2016-06-14 00:26:13 +02003656 [P_RS_THIN_REQ] = "rs_thin_req",
3657 [P_RS_DEALLOCATED] = "rs_deallocated",
Lars Ellenbergae25b332011-04-24 00:01:16 +02003658
3659 /* enum drbd_packet, but not commands - obsoleted flags:
3660 * P_MAY_IGNORE
3661 * P_MAX_OPT_CMD
3662 */
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003663 };
3664
Lars Ellenbergae25b332011-04-24 00:01:16 +02003665 /* too big for the array: 0xfffX */
Andreas Gruenbachere5d6f332011-03-28 16:44:40 +02003666 if (cmd == P_INITIAL_META)
3667 return "InitialMeta";
3668 if (cmd == P_INITIAL_DATA)
3669 return "InitialData";
Andreas Gruenbacher60381782011-03-28 17:05:50 +02003670 if (cmd == P_CONNECTION_FEATURES)
3671 return "ConnectionFeatures";
Andreas Gruenbacher6e849ce2011-03-14 17:27:45 +01003672 if (cmd >= ARRAY_SIZE(cmdnames))
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003673 return "Unknown";
3674 return cmdnames[cmd];
3675}
3676
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003677/**
3678 * drbd_wait_misc - wait for a request to make progress
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003679 * @device: device associated with the request
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003680 * @i: the struct drbd_interval embedded in struct drbd_request or
3681 * struct drbd_peer_request
3682 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003683int drbd_wait_misc(struct drbd_device *device, struct drbd_interval *i)
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003684{
Philipp Reisner44ed1672011-04-19 17:10:19 +02003685 struct net_conf *nc;
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003686 DEFINE_WAIT(wait);
3687 long timeout;
3688
Philipp Reisner44ed1672011-04-19 17:10:19 +02003689 rcu_read_lock();
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02003690 nc = rcu_dereference(first_peer_device(device)->connection->net_conf);
Philipp Reisner44ed1672011-04-19 17:10:19 +02003691 if (!nc) {
3692 rcu_read_unlock();
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003693 return -ETIMEDOUT;
Philipp Reisner44ed1672011-04-19 17:10:19 +02003694 }
3695 timeout = nc->ko_count ? nc->timeout * HZ / 10 * nc->ko_count : MAX_SCHEDULE_TIMEOUT;
3696 rcu_read_unlock();
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003697
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003698 /* Indicate to wake up device->misc_wait on progress. */
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003699 i->waiting = true;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003700 prepare_to_wait(&device->misc_wait, &wait, TASK_INTERRUPTIBLE);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02003701 spin_unlock_irq(&device->resource->req_lock);
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003702 timeout = schedule_timeout(timeout);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003703 finish_wait(&device->misc_wait, &wait);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02003704 spin_lock_irq(&device->resource->req_lock);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003705 if (!timeout || device->state.conn < C_CONNECTED)
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003706 return -ETIMEDOUT;
3707 if (signal_pending(current))
3708 return -ERESTARTSYS;
3709 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003710}
3711
Andreas Gruenbacher28bc3b82014-08-14 18:33:30 +02003712void lock_all_resources(void)
3713{
3714 struct drbd_resource *resource;
3715 int __maybe_unused i = 0;
3716
3717 mutex_lock(&resources_mutex);
3718 local_irq_disable();
3719 for_each_resource(resource, &drbd_resources)
3720 spin_lock_nested(&resource->req_lock, i++);
3721}
3722
3723void unlock_all_resources(void)
3724{
3725 struct drbd_resource *resource;
3726
3727 for_each_resource(resource, &drbd_resources)
3728 spin_unlock(&resource->req_lock);
3729 local_irq_enable();
3730 mutex_unlock(&resources_mutex);
3731}
3732
Philipp Reisnerb411b362009-09-25 16:07:19 -07003733#ifdef CONFIG_DRBD_FAULT_INJECTION
3734/* Fault insertion support including random number generator shamelessly
3735 * stolen from kernel/rcutorture.c */
3736struct fault_random_state {
3737 unsigned long state;
3738 unsigned long count;
3739};
3740
3741#define FAULT_RANDOM_MULT 39916801 /* prime */
3742#define FAULT_RANDOM_ADD 479001701 /* prime */
3743#define FAULT_RANDOM_REFRESH 10000
3744
3745/*
3746 * Crude but fast random-number generator. Uses a linear congruential
3747 * generator, with occasional help from get_random_bytes().
3748 */
3749static unsigned long
3750_drbd_fault_random(struct fault_random_state *rsp)
3751{
3752 long refresh;
3753
Roel Kluin49829ea2009-12-15 22:55:44 +01003754 if (!rsp->count--) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07003755 get_random_bytes(&refresh, sizeof(refresh));
3756 rsp->state += refresh;
3757 rsp->count = FAULT_RANDOM_REFRESH;
3758 }
3759 rsp->state = rsp->state * FAULT_RANDOM_MULT + FAULT_RANDOM_ADD;
3760 return swahw32(rsp->state);
3761}
3762
3763static char *
3764_drbd_fault_str(unsigned int type) {
3765 static char *_faults[] = {
3766 [DRBD_FAULT_MD_WR] = "Meta-data write",
3767 [DRBD_FAULT_MD_RD] = "Meta-data read",
3768 [DRBD_FAULT_RS_WR] = "Resync write",
3769 [DRBD_FAULT_RS_RD] = "Resync read",
3770 [DRBD_FAULT_DT_WR] = "Data write",
3771 [DRBD_FAULT_DT_RD] = "Data read",
3772 [DRBD_FAULT_DT_RA] = "Data read ahead",
3773 [DRBD_FAULT_BM_ALLOC] = "BM allocation",
Philipp Reisner6b4388a2010-04-26 14:11:45 +02003774 [DRBD_FAULT_AL_EE] = "EE allocation",
3775 [DRBD_FAULT_RECEIVE] = "receive data corruption",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003776 };
3777
3778 return (type < DRBD_FAULT_MAX) ? _faults[type] : "**Unknown**";
3779}
3780
3781unsigned int
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003782_drbd_insert_fault(struct drbd_device *device, unsigned int type)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003783{
3784 static struct fault_random_state rrs = {0, 0};
3785
3786 unsigned int ret = (
Roland Kammerer183ece32017-08-29 10:20:46 +02003787 (drbd_fault_devs == 0 ||
3788 ((1 << device_to_minor(device)) & drbd_fault_devs) != 0) &&
3789 (((_drbd_fault_random(&rrs) % 100) + 1) <= drbd_fault_rate));
Philipp Reisnerb411b362009-09-25 16:07:19 -07003790
3791 if (ret) {
Roland Kammerer183ece32017-08-29 10:20:46 +02003792 drbd_fault_count++;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003793
Lars Ellenberg73835062010-05-27 11:51:56 +02003794 if (__ratelimit(&drbd_ratelimit_state))
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003795 drbd_warn(device, "***Simulating %s failure\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003796 _drbd_fault_str(type));
3797 }
3798
3799 return ret;
3800}
3801#endif
3802
3803const char *drbd_buildtag(void)
3804{
3805 /* DRBD built from external sources has here a reference to the
3806 git hash of the source code. */
3807
3808 static char buildtag[38] = "\0uilt-in";
3809
3810 if (buildtag[0] == 0) {
Cong Wangbc4854b2012-04-03 14:13:36 +08003811#ifdef MODULE
3812 sprintf(buildtag, "srcversion: %-24s", THIS_MODULE->srcversion);
3813#else
3814 buildtag[0] = 'b';
Philipp Reisnerb411b362009-09-25 16:07:19 -07003815#endif
Philipp Reisnerb411b362009-09-25 16:07:19 -07003816 }
3817
3818 return buildtag;
3819}
3820
3821module_init(drbd_init)
3822module_exit(drbd_cleanup)
3823
Philipp Reisnerb411b362009-09-25 16:07:19 -07003824EXPORT_SYMBOL(drbd_conn_str);
3825EXPORT_SYMBOL(drbd_role_str);
3826EXPORT_SYMBOL(drbd_disk_str);
3827EXPORT_SYMBOL(drbd_set_st_err_str);