blob: 7e5fcce812e1aa8246efe13b00e85544b5b58722 [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;
128spinlock_t drbd_pp_lock;
129int 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
Lars Ellenberg9476f392011-02-23 17:02:01 +0100141struct bio *bio_alloc_drbd(gfp_t gfp_mask)
142{
Lars Ellenbergda4a75d2011-02-23 17:02:01 +0100143 struct bio *bio;
144
Kent Overstreet0892fac2018-05-20 18:25:48 -0400145 if (!bioset_initialized(&drbd_md_io_bio_set))
Lars Ellenberg9476f392011-02-23 17:02:01 +0100146 return bio_alloc(gfp_mask, 1);
147
Kent Overstreet0892fac2018-05-20 18:25:48 -0400148 bio = bio_alloc_bioset(gfp_mask, 1, &drbd_md_io_bio_set);
Lars Ellenbergda4a75d2011-02-23 17:02:01 +0100149 if (!bio)
150 return NULL;
Lars Ellenbergda4a75d2011-02-23 17:02:01 +0100151 return bio;
Lars Ellenberg9476f392011-02-23 17:02:01 +0100152}
153
Philipp Reisnerb411b362009-09-25 16:07:19 -0700154#ifdef __CHECKER__
155/* When checking with sparse, and this is an inline function, sparse will
156 give tons of false positives. When this is a real functions sparse works.
157 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200158int _get_ldev_if_state(struct drbd_device *device, enum drbd_disk_state mins)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700159{
160 int io_allowed;
161
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200162 atomic_inc(&device->local_cnt);
163 io_allowed = (device->state.disk >= mins);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700164 if (!io_allowed) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200165 if (atomic_dec_and_test(&device->local_cnt))
166 wake_up(&device->misc_wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700167 }
168 return io_allowed;
169}
170
171#endif
172
173/**
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100174 * tl_release() - mark as BARRIER_ACKED all requests in the corresponding transfer log epoch
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200175 * @connection: DRBD connection.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700176 * @barrier_nr: Expected identifier of the DRBD write barrier packet.
177 * @set_size: Expected number of requests before that barrier.
178 *
179 * In case the passed barrier_nr or set_size does not match the oldest
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100180 * epoch of not yet barrier-acked requests, this function will cause a
181 * termination of the connection.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700182 */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200183void tl_release(struct drbd_connection *connection, unsigned int barrier_nr,
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100184 unsigned int set_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700185{
Philipp Reisnerb411b362009-09-25 16:07:19 -0700186 struct drbd_request *r;
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100187 struct drbd_request *req = NULL;
188 int expect_epoch = 0;
189 int expect_size = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700190
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200191 spin_lock_irq(&connection->resource->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700192
Philipp Reisner98683652012-11-09 14:18:43 +0100193 /* find oldest not yet barrier-acked write request,
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100194 * count writes in its epoch. */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200195 list_for_each_entry(r, &connection->transfer_log, tl_requests) {
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100196 const unsigned s = r->rq_state;
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100197 if (!req) {
198 if (!(s & RQ_WRITE))
199 continue;
200 if (!(s & RQ_NET_MASK))
201 continue;
202 if (s & RQ_NET_DONE)
203 continue;
204 req = r;
205 expect_epoch = req->epoch;
206 expect_size ++;
207 } else {
208 if (r->epoch != expect_epoch)
209 break;
210 if (!(s & RQ_WRITE))
211 continue;
212 /* if (s & RQ_DONE): not expected */
213 /* if (!(s & RQ_NET_MASK)): not expected */
214 expect_size++;
215 }
216 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700217
218 /* first some paranoia code */
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100219 if (req == NULL) {
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +0200220 drbd_err(connection, "BAD! BarrierAck #%u received, but no epoch in tl!?\n",
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100221 barrier_nr);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700222 goto bail;
223 }
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100224 if (expect_epoch != barrier_nr) {
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +0200225 drbd_err(connection, "BAD! BarrierAck #%u received, expected #%u!\n",
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100226 barrier_nr, expect_epoch);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700227 goto bail;
228 }
229
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100230 if (expect_size != set_size) {
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +0200231 drbd_err(connection, "BAD! BarrierAck #%u received with n_writes=%u, expected n_writes=%u!\n",
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100232 barrier_nr, set_size, expect_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700233 goto bail;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700234 }
235
Philipp Reisner98683652012-11-09 14:18:43 +0100236 /* Clean up list of requests processed during current epoch. */
237 /* this extra list walk restart is paranoia,
238 * to catch requests being barrier-acked "unexpectedly".
239 * It usually should find the same req again, or some READ preceding it. */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200240 list_for_each_entry(req, &connection->transfer_log, tl_requests)
Philipp Reisner98683652012-11-09 14:18:43 +0100241 if (req->epoch == expect_epoch)
242 break;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200243 list_for_each_entry_safe_from(req, r, &connection->transfer_log, tl_requests) {
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100244 if (req->epoch != expect_epoch)
245 break;
246 _req_mod(req, BARRIER_ACKED);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700247 }
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200248 spin_unlock_irq(&connection->resource->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700249
250 return;
251
252bail:
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200253 spin_unlock_irq(&connection->resource->req_lock);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200254 conn_request_state(connection, NS(conn, C_PROTOCOL_ERROR), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700255}
256
Philipp Reisner617049a2010-12-22 12:48:31 +0100257
Philipp Reisner11b58e72010-05-12 17:08:26 +0200258/**
259 * _tl_restart() - Walks the transfer log, and applies an action to all requests
Lars Ellenberge5f891b2013-11-22 12:32:01 +0100260 * @connection: DRBD connection to operate on.
Philipp Reisner11b58e72010-05-12 17:08:26 +0200261 * @what: The action/event to perform with all request objects
262 *
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100263 * @what might be one of CONNECTION_LOST_WHILE_PENDING, RESEND, FAIL_FROZEN_DISK_IO,
264 * RESTART_FROZEN_DISK_IO.
Philipp Reisner11b58e72010-05-12 17:08:26 +0200265 */
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100266/* must hold resource->req_lock */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200267void _tl_restart(struct drbd_connection *connection, enum drbd_req_event what)
Philipp Reisner11b58e72010-05-12 17:08:26 +0200268{
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100269 struct drbd_request *req, *r;
Philipp Reisner11b58e72010-05-12 17:08:26 +0200270
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200271 list_for_each_entry_safe(req, r, &connection->transfer_log, tl_requests)
Philipp Reisner509fc012012-07-31 11:22:58 +0200272 _req_mod(req, what);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200273}
274
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200275void tl_restart(struct drbd_connection *connection, enum drbd_req_event what)
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100276{
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200277 spin_lock_irq(&connection->resource->req_lock);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200278 _tl_restart(connection, what);
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200279 spin_unlock_irq(&connection->resource->req_lock);
Philipp Reisnercdfda632011-07-05 15:38:59 +0200280}
Philipp Reisnerb411b362009-09-25 16:07:19 -0700281
282/**
283 * tl_clear() - Clears all requests and &struct drbd_tl_epoch objects out of the TL
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200284 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700285 *
286 * This is called after the connection to the peer was lost. The storage covered
287 * by the requests on the transfer gets marked as our of sync. Called from the
288 * receiver thread and the worker thread.
289 */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200290void tl_clear(struct drbd_connection *connection)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700291{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200292 tl_restart(connection, CONNECTION_LOST_WHILE_PENDING);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700293}
294
295/**
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200296 * tl_abort_disk_io() - Abort disk I/O for all requests for a certain device in the TL
297 * @device: DRBD device.
Philipp Reisnerfd2491f2011-07-18 16:25:15 +0200298 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200299void tl_abort_disk_io(struct drbd_device *device)
Philipp Reisnerfd2491f2011-07-18 16:25:15 +0200300{
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +0200301 struct drbd_connection *connection = first_peer_device(device)->connection;
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100302 struct drbd_request *req, *r;
Philipp Reisnerfd2491f2011-07-18 16:25:15 +0200303
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200304 spin_lock_irq(&connection->resource->req_lock);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200305 list_for_each_entry_safe(req, r, &connection->transfer_log, tl_requests) {
Philipp Reisnerfd2491f2011-07-18 16:25:15 +0200306 if (!(req->rq_state & RQ_LOCAL_PENDING))
307 continue;
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200308 if (req->device != device)
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100309 continue;
310 _req_mod(req, ABORT_DISK_IO);
Philipp Reisnerfd2491f2011-07-18 16:25:15 +0200311 }
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200312 spin_unlock_irq(&connection->resource->req_lock);
Philipp Reisnerfd2491f2011-07-18 16:25:15 +0200313}
314
Philipp Reisnerb411b362009-09-25 16:07:19 -0700315static int drbd_thread_setup(void *arg)
316{
317 struct drbd_thread *thi = (struct drbd_thread *) arg;
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200318 struct drbd_resource *resource = thi->resource;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700319 unsigned long flags;
320 int retval;
321
Philipp Reisnerf1b3a6e2011-02-08 15:35:58 +0100322 snprintf(current->comm, sizeof(current->comm), "drbd_%c_%s",
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +0200323 thi->name[0],
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200324 resource->name);
Philipp Reisnerf1b3a6e2011-02-08 15:35:58 +0100325
Eric W. Biederman33da8e72019-08-16 12:33:54 -0500326 allow_kernel_signal(DRBD_SIGKILL);
327 allow_kernel_signal(SIGXCPU);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700328restart:
329 retval = thi->function(thi);
330
331 spin_lock_irqsave(&thi->t_lock, flags);
332
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100333 /* if the receiver has been "EXITING", the last thing it did
Philipp Reisnerb411b362009-09-25 16:07:19 -0700334 * was set the conn state to "StandAlone",
335 * if now a re-connect request comes in, conn state goes C_UNCONNECTED,
336 * and receiver thread will be "started".
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100337 * drbd_thread_start needs to set "RESTARTING" in that case.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700338 * t_state check and assignment needs to be within the same spinlock,
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100339 * so either thread_start sees EXITING, and can remap to RESTARTING,
340 * or thread_start see NONE, and can proceed as normal.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700341 */
342
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100343 if (thi->t_state == RESTARTING) {
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200344 drbd_info(resource, "Restarting %s thread\n", thi->name);
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100345 thi->t_state = RUNNING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700346 spin_unlock_irqrestore(&thi->t_lock, flags);
347 goto restart;
348 }
349
350 thi->task = NULL;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100351 thi->t_state = NONE;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700352 smp_mb();
Lars Ellenberg992d6e92011-05-02 11:47:18 +0200353 complete_all(&thi->stop);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700354 spin_unlock_irqrestore(&thi->t_lock, flags);
355
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200356 drbd_info(resource, "Terminating %s\n", current->comm);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700357
358 /* Release mod reference taken when thread was started */
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +0200359
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200360 if (thi->connection)
361 kref_put(&thi->connection->kref, drbd_destroy_connection);
362 kref_put(&resource->kref, drbd_destroy_resource);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700363 module_put(THIS_MODULE);
364 return retval;
365}
366
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200367static void drbd_thread_init(struct drbd_resource *resource, struct drbd_thread *thi,
Andreas Gruenbacherc60b0252011-08-10 15:05:02 +0200368 int (*func) (struct drbd_thread *), const char *name)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700369{
370 spin_lock_init(&thi->t_lock);
371 thi->task = NULL;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100372 thi->t_state = NONE;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700373 thi->function = func;
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200374 thi->resource = resource;
375 thi->connection = NULL;
Andreas Gruenbacherc60b0252011-08-10 15:05:02 +0200376 thi->name = name;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700377}
378
379int drbd_thread_start(struct drbd_thread *thi)
380{
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200381 struct drbd_resource *resource = thi->resource;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700382 struct task_struct *nt;
383 unsigned long flags;
384
Philipp Reisnerb411b362009-09-25 16:07:19 -0700385 /* is used from state engine doing drbd_thread_stop_nowait,
386 * while holding the req lock irqsave */
387 spin_lock_irqsave(&thi->t_lock, flags);
388
389 switch (thi->t_state) {
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100390 case NONE:
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200391 drbd_info(resource, "Starting %s thread (from %s [%d])\n",
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100392 thi->name, current->comm, current->pid);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700393
394 /* Get ref on module for thread - this is released when thread exits */
395 if (!try_module_get(THIS_MODULE)) {
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200396 drbd_err(resource, "Failed to get module reference in drbd_thread_start\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700397 spin_unlock_irqrestore(&thi->t_lock, flags);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100398 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700399 }
400
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200401 kref_get(&resource->kref);
402 if (thi->connection)
403 kref_get(&thi->connection->kref);
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +0200404
Philipp Reisnerb411b362009-09-25 16:07:19 -0700405 init_completion(&thi->stop);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700406 thi->reset_cpu_mask = 1;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100407 thi->t_state = RUNNING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700408 spin_unlock_irqrestore(&thi->t_lock, flags);
409 flush_signals(current); /* otherw. may get -ERESTARTNOINTR */
410
411 nt = kthread_create(drbd_thread_setup, (void *) thi,
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200412 "drbd_%c_%s", thi->name[0], thi->resource->name);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700413
414 if (IS_ERR(nt)) {
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200415 drbd_err(resource, "Couldn't start thread\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700416
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200417 if (thi->connection)
418 kref_put(&thi->connection->kref, drbd_destroy_connection);
419 kref_put(&resource->kref, drbd_destroy_resource);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700420 module_put(THIS_MODULE);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100421 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700422 }
423 spin_lock_irqsave(&thi->t_lock, flags);
424 thi->task = nt;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100425 thi->t_state = RUNNING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700426 spin_unlock_irqrestore(&thi->t_lock, flags);
427 wake_up_process(nt);
428 break;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100429 case EXITING:
430 thi->t_state = RESTARTING;
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200431 drbd_info(resource, "Restarting %s thread (from %s [%d])\n",
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100432 thi->name, current->comm, current->pid);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -0500433 fallthrough;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100434 case RUNNING:
435 case RESTARTING:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700436 default:
437 spin_unlock_irqrestore(&thi->t_lock, flags);
438 break;
439 }
440
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100441 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700442}
443
444
445void _drbd_thread_stop(struct drbd_thread *thi, int restart, int wait)
446{
447 unsigned long flags;
448
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100449 enum drbd_thread_state ns = restart ? RESTARTING : EXITING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700450
451 /* may be called from state engine, holding the req lock irqsave */
452 spin_lock_irqsave(&thi->t_lock, flags);
453
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100454 if (thi->t_state == NONE) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700455 spin_unlock_irqrestore(&thi->t_lock, flags);
456 if (restart)
457 drbd_thread_start(thi);
458 return;
459 }
460
461 if (thi->t_state != ns) {
462 if (thi->task == NULL) {
463 spin_unlock_irqrestore(&thi->t_lock, flags);
464 return;
465 }
466
467 thi->t_state = ns;
468 smp_mb();
469 init_completion(&thi->stop);
470 if (thi->task != current)
Eric W. Biedermanfee10992019-02-05 17:25:02 -0600471 send_sig(DRBD_SIGKILL, thi->task, 1);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700472 }
473
474 spin_unlock_irqrestore(&thi->t_lock, flags);
475
476 if (wait)
477 wait_for_completion(&thi->stop);
478}
479
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200480int conn_lowest_minor(struct drbd_connection *connection)
Philipp Reisner80822282011-02-08 12:46:30 +0100481{
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +0200482 struct drbd_peer_device *peer_device;
483 int vnr = 0, minor = -1;
Philipp Reisner774b3052011-02-22 02:07:03 -0500484
Philipp Reisner695d08f2011-04-11 22:53:32 -0700485 rcu_read_lock();
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +0200486 peer_device = idr_get_next(&connection->peer_devices, &vnr);
487 if (peer_device)
488 minor = device_to_minor(peer_device->device);
Philipp Reisner695d08f2011-04-11 22:53:32 -0700489 rcu_read_unlock();
490
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +0200491 return minor;
Philipp Reisner80822282011-02-08 12:46:30 +0100492}
Philipp Reisner774b3052011-02-22 02:07:03 -0500493
Philipp Reisnerb411b362009-09-25 16:07:19 -0700494#ifdef CONFIG_SMP
495/**
496 * drbd_calc_cpu_mask() - Generate CPU masks, spread over all CPUs
Philipp Reisnerb411b362009-09-25 16:07:19 -0700497 *
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +0200498 * Forces all threads of a resource onto the same CPU. This is beneficial for
Philipp Reisnerb411b362009-09-25 16:07:19 -0700499 * DRBD's performance. May be overwritten by user's configuration.
500 */
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +0200501static void drbd_calc_cpu_mask(cpumask_var_t *cpu_mask)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700502{
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +0200503 unsigned int *resources_per_cpu, min_index = ~0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700504
Kees Cook6396bb22018-06-12 14:03:40 -0700505 resources_per_cpu = kcalloc(nr_cpu_ids, sizeof(*resources_per_cpu),
506 GFP_KERNEL);
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +0200507 if (resources_per_cpu) {
508 struct drbd_resource *resource;
509 unsigned int cpu, min = ~0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700510
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +0200511 rcu_read_lock();
512 for_each_resource_rcu(resource, &drbd_resources) {
513 for_each_cpu(cpu, resource->cpu_mask)
514 resources_per_cpu[cpu]++;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700515 }
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +0200516 rcu_read_unlock();
517 for_each_online_cpu(cpu) {
518 if (resources_per_cpu[cpu] < min) {
519 min = resources_per_cpu[cpu];
520 min_index = cpu;
521 }
522 }
523 kfree(resources_per_cpu);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700524 }
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +0200525 if (min_index == ~0) {
526 cpumask_setall(*cpu_mask);
527 return;
528 }
529 cpumask_set_cpu(min_index, *cpu_mask);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700530}
531
532/**
533 * drbd_thread_current_set_cpu() - modifies the cpu mask of the _current_ thread
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200534 * @device: DRBD device.
Philipp Reisnerbc31fe32011-02-07 11:14:38 +0100535 * @thi: drbd_thread object
Philipp Reisnerb411b362009-09-25 16:07:19 -0700536 *
537 * call in the "main loop" of _all_ threads, no need for any mutex, current won't die
538 * prematurely.
539 */
Philipp Reisner80822282011-02-08 12:46:30 +0100540void drbd_thread_current_set_cpu(struct drbd_thread *thi)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700541{
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200542 struct drbd_resource *resource = thi->resource;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700543 struct task_struct *p = current;
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100544
Philipp Reisnerb411b362009-09-25 16:07:19 -0700545 if (!thi->reset_cpu_mask)
546 return;
547 thi->reset_cpu_mask = 0;
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200548 set_cpus_allowed_ptr(p, resource->cpu_mask);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700549}
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +0200550#else
551#define drbd_calc_cpu_mask(A) ({})
Philipp Reisnerb411b362009-09-25 16:07:19 -0700552#endif
553
Andreas Gruenbacher52b061a2011-03-30 11:38:49 +0200554/**
555 * drbd_header_size - size of a packet header
556 *
557 * The header size is a multiple of 8, so any payload following the header is
558 * word aligned on 64-bit architectures. (The bitmap send and receive code
559 * relies on this.)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700560 */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200561unsigned int drbd_header_size(struct drbd_connection *connection)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700562{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200563 if (connection->agreed_pro_version >= 100) {
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200564 BUILD_BUG_ON(!IS_ALIGNED(sizeof(struct p_header100), 8));
565 return sizeof(struct p_header100);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700566 } else {
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200567 BUILD_BUG_ON(sizeof(struct p_header80) !=
568 sizeof(struct p_header95));
569 BUILD_BUG_ON(!IS_ALIGNED(sizeof(struct p_header80), 8));
570 return sizeof(struct p_header80);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700571 }
Andreas Gruenbacher52b061a2011-03-30 11:38:49 +0200572}
Philipp Reisnerb411b362009-09-25 16:07:19 -0700573
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200574static unsigned int prepare_header80(struct p_header80 *h, enum drbd_packet cmd, int size)
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100575{
576 h->magic = cpu_to_be32(DRBD_MAGIC);
577 h->command = cpu_to_be16(cmd);
578 h->length = cpu_to_be16(size);
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200579 return sizeof(struct p_header80);
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100580}
Philipp Reisnerb411b362009-09-25 16:07:19 -0700581
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200582static unsigned int prepare_header95(struct p_header95 *h, enum drbd_packet cmd, int size)
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100583{
584 h->magic = cpu_to_be16(DRBD_MAGIC_BIG);
585 h->command = cpu_to_be16(cmd);
Andreas Gruenbacherb55d84b2011-03-22 13:17:47 +0100586 h->length = cpu_to_be32(size);
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200587 return sizeof(struct p_header95);
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100588}
589
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200590static unsigned int prepare_header100(struct p_header100 *h, enum drbd_packet cmd,
591 int size, int vnr)
Philipp Reisnerd38e7872011-02-07 15:32:04 +0100592{
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200593 h->magic = cpu_to_be32(DRBD_MAGIC_100);
594 h->volume = cpu_to_be16(vnr);
595 h->command = cpu_to_be16(cmd);
596 h->length = cpu_to_be32(size);
597 h->pad = 0;
598 return sizeof(struct p_header100);
599}
600
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200601static unsigned int prepare_header(struct drbd_connection *connection, int vnr,
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200602 void *buffer, enum drbd_packet cmd, int size)
603{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200604 if (connection->agreed_pro_version >= 100)
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200605 return prepare_header100(buffer, cmd, size, vnr);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200606 else if (connection->agreed_pro_version >= 95 &&
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200607 size > DRBD_MAX_SIZE_H80_PACKET)
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200608 return prepare_header95(buffer, cmd, size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700609 else
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200610 return prepare_header80(buffer, cmd, size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700611}
612
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200613static void *__conn_prepare_command(struct drbd_connection *connection,
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200614 struct drbd_socket *sock)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700615{
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200616 if (!sock->socket)
617 return NULL;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200618 return sock->sbuf + drbd_header_size(connection);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700619}
620
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200621void *conn_prepare_command(struct drbd_connection *connection, struct drbd_socket *sock)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700622{
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200623 void *p;
624
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200625 mutex_lock(&sock->mutex);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200626 p = __conn_prepare_command(connection, sock);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200627 if (!p)
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200628 mutex_unlock(&sock->mutex);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200629
630 return p;
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200631}
632
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200633void *drbd_prepare_command(struct drbd_peer_device *peer_device, struct drbd_socket *sock)
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200634{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200635 return conn_prepare_command(peer_device->connection, sock);
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200636}
637
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200638static int __send_command(struct drbd_connection *connection, int vnr,
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200639 struct drbd_socket *sock, enum drbd_packet cmd,
640 unsigned int header_size, void *data,
641 unsigned int size)
642{
643 int msg_flags;
644 int err;
645
646 /*
647 * Called with @data == NULL and the size of the data blocks in @size
648 * for commands that send data blocks. For those commands, omit the
649 * MSG_MORE flag: this will increase the likelihood that data blocks
650 * which are page aligned on the sender will end up page aligned on the
651 * receiver.
652 */
653 msg_flags = data ? MSG_MORE : 0;
654
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200655 header_size += prepare_header(connection, vnr, sock->sbuf, cmd,
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200656 header_size + size);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200657 err = drbd_send_all(connection, sock->socket, sock->sbuf, header_size,
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200658 msg_flags);
659 if (data && !err)
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200660 err = drbd_send_all(connection, sock->socket, data, size, 0);
Lars Ellenberg123ff122014-02-05 06:13:53 +0100661 /* DRBD protocol "pings" are latency critical.
662 * This is supposed to trigger tcp_push_pending_frames() */
663 if (!err && (cmd == P_PING || cmd == P_PING_ACK))
Christoph Hellwig12abc5e2020-05-28 07:12:19 +0200664 tcp_sock_set_nodelay(sock->socket->sk);
Lars Ellenberg123ff122014-02-05 06:13:53 +0100665
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200666 return err;
667}
668
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200669static int __conn_send_command(struct drbd_connection *connection, struct drbd_socket *sock,
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200670 enum drbd_packet cmd, unsigned int header_size,
671 void *data, unsigned int size)
672{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200673 return __send_command(connection, 0, sock, cmd, header_size, data, size);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200674}
675
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200676int conn_send_command(struct drbd_connection *connection, struct drbd_socket *sock,
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200677 enum drbd_packet cmd, unsigned int header_size,
678 void *data, unsigned int size)
679{
680 int err;
681
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200682 err = __conn_send_command(connection, sock, cmd, header_size, data, size);
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200683 mutex_unlock(&sock->mutex);
684 return err;
685}
686
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200687int drbd_send_command(struct drbd_peer_device *peer_device, struct drbd_socket *sock,
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200688 enum drbd_packet cmd, unsigned int header_size,
689 void *data, unsigned int size)
690{
691 int err;
692
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200693 err = __send_command(peer_device->connection, peer_device->device->vnr,
694 sock, cmd, header_size, data, size);
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200695 mutex_unlock(&sock->mutex);
696 return err;
697}
698
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200699int drbd_send_ping(struct drbd_connection *connection)
Andreas Gruenbachere307f352011-03-22 10:55:48 +0100700{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200701 struct drbd_socket *sock;
702
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200703 sock = &connection->meta;
704 if (!conn_prepare_command(connection, sock))
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200705 return -EIO;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200706 return conn_send_command(connection, sock, P_PING, 0, NULL, 0);
Andreas Gruenbachere307f352011-03-22 10:55:48 +0100707}
708
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200709int drbd_send_ping_ack(struct drbd_connection *connection)
Andreas Gruenbachere307f352011-03-22 10:55:48 +0100710{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200711 struct drbd_socket *sock;
712
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200713 sock = &connection->meta;
714 if (!conn_prepare_command(connection, sock))
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200715 return -EIO;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200716 return conn_send_command(connection, sock, P_PING_ACK, 0, NULL, 0);
Andreas Gruenbachere307f352011-03-22 10:55:48 +0100717}
718
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200719int drbd_send_sync_param(struct drbd_peer_device *peer_device)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700720{
Andreas Gruenbacher7c967152011-03-22 00:49:36 +0100721 struct drbd_socket *sock;
Philipp Reisner8e26f9c2010-07-06 17:25:54 +0200722 struct p_rs_param_95 *p;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200723 int size;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200724 const int apv = peer_device->connection->agreed_pro_version;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200725 enum drbd_packet cmd;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200726 struct net_conf *nc;
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200727 struct disk_conf *dc;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200728
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200729 sock = &peer_device->connection->data;
730 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200731 if (!p)
732 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700733
Philipp Reisner44ed1672011-04-19 17:10:19 +0200734 rcu_read_lock();
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200735 nc = rcu_dereference(peer_device->connection->net_conf);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700736
737 size = apv <= 87 ? sizeof(struct p_rs_param)
738 : apv == 88 ? sizeof(struct p_rs_param)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200739 + strlen(nc->verify_alg) + 1
Philipp Reisner8e26f9c2010-07-06 17:25:54 +0200740 : apv <= 94 ? sizeof(struct p_rs_param_89)
741 : /* apv >= 95 */ sizeof(struct p_rs_param_95);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700742
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200743 cmd = apv >= 89 ? P_SYNC_PARAM89 : P_SYNC_PARAM;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700744
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200745 /* initialize verify_alg and csums_alg */
746 memset(p->verify_alg, 0, 2 * SHARED_SECRET_MAX);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700747
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200748 if (get_ldev(peer_device->device)) {
749 dc = rcu_dereference(peer_device->device->ldev->disk_conf);
Andreas Gruenbacher6394b932011-05-11 14:29:52 +0200750 p->resync_rate = cpu_to_be32(dc->resync_rate);
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200751 p->c_plan_ahead = cpu_to_be32(dc->c_plan_ahead);
752 p->c_delay_target = cpu_to_be32(dc->c_delay_target);
753 p->c_fill_target = cpu_to_be32(dc->c_fill_target);
754 p->c_max_rate = cpu_to_be32(dc->c_max_rate);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200755 put_ldev(peer_device->device);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200756 } else {
Andreas Gruenbacher6394b932011-05-11 14:29:52 +0200757 p->resync_rate = cpu_to_be32(DRBD_RESYNC_RATE_DEF);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200758 p->c_plan_ahead = cpu_to_be32(DRBD_C_PLAN_AHEAD_DEF);
759 p->c_delay_target = cpu_to_be32(DRBD_C_DELAY_TARGET_DEF);
760 p->c_fill_target = cpu_to_be32(DRBD_C_FILL_TARGET_DEF);
761 p->c_max_rate = cpu_to_be32(DRBD_C_MAX_RATE_DEF);
762 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700763
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200764 if (apv >= 88)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200765 strcpy(p->verify_alg, nc->verify_alg);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200766 if (apv >= 89)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200767 strcpy(p->csums_alg, nc->csums_alg);
768 rcu_read_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -0700769
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200770 return drbd_send_command(peer_device, sock, cmd, size, NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700771}
772
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200773int __drbd_send_protocol(struct drbd_connection *connection, enum drbd_packet cmd)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700774{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200775 struct drbd_socket *sock;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700776 struct p_protocol *p;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200777 struct net_conf *nc;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200778 int size, cf;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700779
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200780 sock = &connection->data;
781 p = __conn_prepare_command(connection, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200782 if (!p)
783 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700784
Philipp Reisner44ed1672011-04-19 17:10:19 +0200785 rcu_read_lock();
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200786 nc = rcu_dereference(connection->net_conf);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700787
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200788 if (nc->tentative && connection->agreed_pro_version < 92) {
Philipp Reisner44ed1672011-04-19 17:10:19 +0200789 rcu_read_unlock();
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +0200790 drbd_err(connection, "--dry-run is not supported by peer");
Philipp Reisner44ed1672011-04-19 17:10:19 +0200791 return -EOPNOTSUPP;
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100792 }
Philipp Reisner44ed1672011-04-19 17:10:19 +0200793
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200794 size = sizeof(*p);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200795 if (connection->agreed_pro_version >= 87)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200796 size += strlen(nc->integrity_alg) + 1;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700797
Philipp Reisner44ed1672011-04-19 17:10:19 +0200798 p->protocol = cpu_to_be32(nc->wire_protocol);
799 p->after_sb_0p = cpu_to_be32(nc->after_sb_0p);
800 p->after_sb_1p = cpu_to_be32(nc->after_sb_1p);
801 p->after_sb_2p = cpu_to_be32(nc->after_sb_2p);
802 p->two_primaries = cpu_to_be32(nc->two_primaries);
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100803 cf = 0;
Andreas Gruenbacher6139f602011-05-06 20:00:02 +0200804 if (nc->discard_my_data)
805 cf |= CF_DISCARD_MY_DATA;
Andreas Gruenbacher6dff2902011-06-28 14:18:12 +0200806 if (nc->tentative)
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200807 cf |= CF_DRY_RUN;
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100808 p->conn_flags = cpu_to_be32(cf);
809
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200810 if (connection->agreed_pro_version >= 87)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200811 strcpy(p->integrity_alg, nc->integrity_alg);
812 rcu_read_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -0700813
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200814 return __conn_send_command(connection, sock, cmd, size, NULL, 0);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200815}
816
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200817int drbd_send_protocol(struct drbd_connection *connection)
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200818{
819 int err;
820
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200821 mutex_lock(&connection->data.mutex);
822 err = __drbd_send_protocol(connection, P_PROTOCOL);
823 mutex_unlock(&connection->data.mutex);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200824
825 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700826}
827
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200828static int _drbd_send_uuids(struct drbd_peer_device *peer_device, u64 uuid_flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700829{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200830 struct drbd_device *device = peer_device->device;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200831 struct drbd_socket *sock;
832 struct p_uuids *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700833 int i;
834
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200835 if (!get_ldev_if_state(device, D_NEGOTIATING))
Andreas Gruenbacher2ae5f952011-03-16 01:07:20 +0100836 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700837
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200838 sock = &peer_device->connection->data;
839 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200840 if (!p) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200841 put_ldev(device);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200842 return -EIO;
843 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200844 spin_lock_irq(&device->ldev->md.uuid_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700845 for (i = UI_CURRENT; i < UI_SIZE; i++)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200846 p->uuid[i] = cpu_to_be64(device->ldev->md.uuid[i]);
847 spin_unlock_irq(&device->ldev->md.uuid_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700848
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200849 device->comm_bm_set = drbd_bm_total_weight(device);
850 p->uuid[UI_SIZE] = cpu_to_be64(device->comm_bm_set);
Philipp Reisner44ed1672011-04-19 17:10:19 +0200851 rcu_read_lock();
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200852 uuid_flags |= rcu_dereference(peer_device->connection->net_conf)->discard_my_data ? 1 : 0;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200853 rcu_read_unlock();
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200854 uuid_flags |= test_bit(CRASHED_PRIMARY, &device->flags) ? 2 : 0;
855 uuid_flags |= device->new_state_tmp.disk == D_INCONSISTENT ? 4 : 0;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200856 p->uuid[UI_FLAGS] = cpu_to_be64(uuid_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700857
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200858 put_ldev(device);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200859 return drbd_send_command(peer_device, sock, P_UUIDS, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700860}
861
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200862int drbd_send_uuids(struct drbd_peer_device *peer_device)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700863{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200864 return _drbd_send_uuids(peer_device, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700865}
866
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200867int drbd_send_uuids_skip_initial_sync(struct drbd_peer_device *peer_device)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700868{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200869 return _drbd_send_uuids(peer_device, 8);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700870}
871
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200872void drbd_print_uuids(struct drbd_device *device, const char *text)
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100873{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200874 if (get_ldev_if_state(device, D_NEGOTIATING)) {
875 u64 *uuid = device->ldev->md.uuid;
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200876 drbd_info(device, "%s %016llX:%016llX:%016llX:%016llX\n",
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100877 text,
878 (unsigned long long)uuid[UI_CURRENT],
879 (unsigned long long)uuid[UI_BITMAP],
880 (unsigned long long)uuid[UI_HISTORY_START],
881 (unsigned long long)uuid[UI_HISTORY_END]);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200882 put_ldev(device);
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100883 } else {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200884 drbd_info(device, "%s effective data uuid: %016llX\n",
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100885 text,
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200886 (unsigned long long)device->ed_uuid);
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100887 }
888}
889
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200890void drbd_gen_and_send_sync_uuid(struct drbd_peer_device *peer_device)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700891{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200892 struct drbd_device *device = peer_device->device;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200893 struct drbd_socket *sock;
894 struct p_rs_uuid *p;
Lars Ellenberg5a22db82010-12-17 21:14:23 +0100895 u64 uuid;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700896
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200897 D_ASSERT(device, device->state.disk == D_UP_TO_DATE);
Lars Ellenberg5a22db82010-12-17 21:14:23 +0100898
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200899 uuid = device->ldev->md.uuid[UI_BITMAP];
Philipp Reisner5ba3dac2011-10-05 15:54:18 +0200900 if (uuid && uuid != UUID_JUST_CREATED)
901 uuid = uuid + UUID_NEW_BM_OFFSET;
902 else
903 get_random_bytes(&uuid, sizeof(u64));
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200904 drbd_uuid_set(device, UI_BITMAP, uuid);
905 drbd_print_uuids(device, "updated sync UUID");
906 drbd_md_sync(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700907
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200908 sock = &peer_device->connection->data;
909 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200910 if (p) {
911 p->uuid = cpu_to_be64(uuid);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200912 drbd_send_command(peer_device, sock, P_SYNC_UUID, sizeof(*p), NULL, 0);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200913 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700914}
915
Lars Ellenberg9104d312016-06-14 00:26:31 +0200916/* communicated if (agreed_features & DRBD_FF_WSAME) */
Baoyou Xie1ffa7bf2017-08-29 10:20:36 +0200917static void
918assign_p_sizes_qlim(struct drbd_device *device, struct p_sizes *p,
919 struct request_queue *q)
Lars Ellenberg9104d312016-06-14 00:26:31 +0200920{
921 if (q) {
922 p->qlim->physical_block_size = cpu_to_be32(queue_physical_block_size(q));
923 p->qlim->logical_block_size = cpu_to_be32(queue_logical_block_size(q));
924 p->qlim->alignment_offset = cpu_to_be32(queue_alignment_offset(q));
925 p->qlim->io_min = cpu_to_be32(queue_io_min(q));
926 p->qlim->io_opt = cpu_to_be32(queue_io_opt(q));
927 p->qlim->discard_enabled = blk_queue_discard(q);
Lars Ellenberg9104d312016-06-14 00:26:31 +0200928 p->qlim->write_same_capable = !!q->limits.max_write_same_sectors;
929 } else {
930 q = device->rq_queue;
931 p->qlim->physical_block_size = cpu_to_be32(queue_physical_block_size(q));
932 p->qlim->logical_block_size = cpu_to_be32(queue_logical_block_size(q));
933 p->qlim->alignment_offset = 0;
934 p->qlim->io_min = cpu_to_be32(queue_io_min(q));
935 p->qlim->io_opt = cpu_to_be32(queue_io_opt(q));
936 p->qlim->discard_enabled = 0;
Lars Ellenberg9104d312016-06-14 00:26:31 +0200937 p->qlim->write_same_capable = 0;
938 }
939}
940
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200941int drbd_send_sizes(struct drbd_peer_device *peer_device, int trigger_reply, enum dds_flags flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700942{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200943 struct drbd_device *device = peer_device->device;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200944 struct drbd_socket *sock;
945 struct p_sizes *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700946 sector_t d_size, u_size;
Lars Ellenbergdb141b22012-06-25 19:15:58 +0200947 int q_order_type;
948 unsigned int max_bio_size;
Lars Ellenberg9104d312016-06-14 00:26:31 +0200949 unsigned int packet_size;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700950
Lars Ellenberg9104d312016-06-14 00:26:31 +0200951 sock = &peer_device->connection->data;
952 p = drbd_prepare_command(peer_device, sock);
953 if (!p)
954 return -EIO;
955
956 packet_size = sizeof(*p);
957 if (peer_device->connection->agreed_features & DRBD_FF_WSAME)
958 packet_size += sizeof(p->qlim[0]);
959
960 memset(p, 0, packet_size);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200961 if (get_ldev_if_state(device, D_NEGOTIATING)) {
Lars Ellenberg9104d312016-06-14 00:26:31 +0200962 struct request_queue *q = bdev_get_queue(device->ldev->backing_bdev);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200963 d_size = drbd_get_max_capacity(device->ldev);
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200964 rcu_read_lock();
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200965 u_size = rcu_dereference(device->ldev->disk_conf)->disk_size;
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200966 rcu_read_unlock();
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200967 q_order_type = drbd_queue_order_type(device);
Lars Ellenberg9104d312016-06-14 00:26:31 +0200968 max_bio_size = queue_max_hw_sectors(q) << 9;
Lars Ellenbergdb141b22012-06-25 19:15:58 +0200969 max_bio_size = min(max_bio_size, DRBD_MAX_BIO_SIZE);
Lars Ellenberg9104d312016-06-14 00:26:31 +0200970 assign_p_sizes_qlim(device, p, q);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200971 put_ldev(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700972 } else {
973 d_size = 0;
974 u_size = 0;
975 q_order_type = QUEUE_ORDERED_NONE;
Philipp Reisner99432fc2011-05-20 16:39:13 +0200976 max_bio_size = DRBD_MAX_BIO_SIZE; /* ... multiple BIOs per peer_request */
Lars Ellenberg9104d312016-06-14 00:26:31 +0200977 assign_p_sizes_qlim(device, p, NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700978 }
979
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200980 if (peer_device->connection->agreed_pro_version <= 94)
Lars Ellenbergdb141b22012-06-25 19:15:58 +0200981 max_bio_size = min(max_bio_size, DRBD_MAX_SIZE_H80_PACKET);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200982 else if (peer_device->connection->agreed_pro_version < 100)
Philipp Reisner98683652012-11-09 14:18:43 +0100983 max_bio_size = min(max_bio_size, DRBD_MAX_BIO_SIZE_P95);
Philipp Reisner68093842011-06-30 15:43:06 +0200984
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200985 p->d_size = cpu_to_be64(d_size);
986 p->u_size = cpu_to_be64(u_size);
Christoph Hellwig155bd9d2020-09-25 18:06:17 +0200987 if (trigger_reply)
988 p->c_size = 0;
989 else
990 p->c_size = cpu_to_be64(get_capacity(device->vdisk));
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200991 p->max_bio_size = cpu_to_be32(max_bio_size);
992 p->queue_order_type = cpu_to_be16(q_order_type);
993 p->dds_flags = cpu_to_be16(flags);
Lars Ellenberg9104d312016-06-14 00:26:31 +0200994
995 return drbd_send_command(peer_device, sock, P_SIZES, packet_size, NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700996}
997
998/**
Lars Ellenbergf479ea02011-10-27 16:52:30 +0200999 * drbd_send_current_state() - Sends the drbd state to the peer
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001000 * @peer_device: DRBD peer device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07001001 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001002int drbd_send_current_state(struct drbd_peer_device *peer_device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001003{
Andreas Gruenbacher7c967152011-03-22 00:49:36 +01001004 struct drbd_socket *sock;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001005 struct p_state *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001006
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001007 sock = &peer_device->connection->data;
1008 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001009 if (!p)
1010 return -EIO;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001011 p->state = cpu_to_be32(peer_device->device->state.i); /* Within the send mutex */
1012 return drbd_send_command(peer_device, sock, P_STATE, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001013}
1014
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001015/**
1016 * drbd_send_state() - After a state change, sends the new state to the peer
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001017 * @peer_device: DRBD peer device.
Philipp Reisner43de7c82011-11-10 13:16:13 +01001018 * @state: the state to send, not necessarily the current state.
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001019 *
1020 * Each state change queues an "after_state_ch" work, which will eventually
1021 * send the resulting new state to the peer. If more state changes happen
1022 * between queuing and processing of the after_state_ch work, we still
1023 * want to send each intermediary state in the order it occurred.
1024 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001025int drbd_send_state(struct drbd_peer_device *peer_device, union drbd_state state)
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001026{
Philipp Reisner43de7c82011-11-10 13:16:13 +01001027 struct drbd_socket *sock;
1028 struct p_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);
Philipp Reisner43de7c82011-11-10 13:16:13 +01001032 if (!p)
1033 return -EIO;
1034 p->state = cpu_to_be32(state.i); /* Within the send mutex */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001035 return drbd_send_command(peer_device, sock, P_STATE, sizeof(*p), NULL, 0);
Philipp Reisner43de7c82011-11-10 13:16:13 +01001036}
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001037
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001038int 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 -07001039{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001040 struct drbd_socket *sock;
1041 struct p_req_state *p;
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001042
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001043 sock = &peer_device->connection->data;
1044 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001045 if (!p)
1046 return -EIO;
1047 p->mask = cpu_to_be32(mask.i);
1048 p->val = cpu_to_be32(val.i);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001049 return drbd_send_command(peer_device, sock, P_STATE_CHG_REQ, sizeof(*p), NULL, 0);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001050}
1051
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001052int conn_send_state_req(struct drbd_connection *connection, union drbd_state mask, union drbd_state val)
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001053{
1054 enum drbd_packet cmd;
1055 struct drbd_socket *sock;
1056 struct p_req_state *p;
1057
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001058 cmd = connection->agreed_pro_version < 100 ? P_STATE_CHG_REQ : P_CONN_ST_CHG_REQ;
1059 sock = &connection->data;
1060 p = conn_prepare_command(connection, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001061 if (!p)
1062 return -EIO;
1063 p->mask = cpu_to_be32(mask.i);
1064 p->val = cpu_to_be32(val.i);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001065 return conn_send_command(connection, sock, cmd, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001066}
1067
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001068void drbd_send_sr_reply(struct drbd_peer_device *peer_device, 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;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001072
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001073 sock = &peer_device->connection->meta;
1074 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001075 if (p) {
1076 p->retcode = cpu_to_be32(retcode);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001077 drbd_send_command(peer_device, sock, P_STATE_CHG_REPLY, sizeof(*p), NULL, 0);
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001078 }
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001079}
1080
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001081void conn_send_sr_reply(struct drbd_connection *connection, enum drbd_state_rv retcode)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001082{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001083 struct drbd_socket *sock;
1084 struct p_req_state_reply *p;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001085 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 -07001086
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001087 sock = &connection->meta;
1088 p = conn_prepare_command(connection, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001089 if (p) {
1090 p->retcode = cpu_to_be32(retcode);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001091 conn_send_command(connection, sock, cmd, sizeof(*p), NULL, 0);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001092 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001093}
1094
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001095static void dcbp_set_code(struct p_compressed_bm *p, enum drbd_bitmap_code code)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001096{
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001097 BUG_ON(code & ~0xf);
1098 p->encoding = (p->encoding & ~0xf) | code;
1099}
Philipp Reisnerb411b362009-09-25 16:07:19 -07001100
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001101static void dcbp_set_start(struct p_compressed_bm *p, int set)
1102{
1103 p->encoding = (p->encoding & ~0x80) | (set ? 0x80 : 0);
1104}
Philipp Reisnerb411b362009-09-25 16:07:19 -07001105
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001106static void dcbp_set_pad_bits(struct p_compressed_bm *p, int n)
1107{
1108 BUG_ON(n & ~0x7);
1109 p->encoding = (p->encoding & (~0x7 << 4)) | (n << 4);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001110}
1111
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001112static int fill_bitmap_rle_bits(struct drbd_device *device,
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001113 struct p_compressed_bm *p,
1114 unsigned int size,
1115 struct bm_xfer_ctx *c)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001116{
1117 struct bitstream bs;
1118 unsigned long plain_bits;
1119 unsigned long tmp;
1120 unsigned long rl;
1121 unsigned len;
1122 unsigned toggle;
Philipp Reisner44ed1672011-04-19 17:10:19 +02001123 int bits, use_rle;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001124
1125 /* may we use this feature? */
Philipp Reisner44ed1672011-04-19 17:10:19 +02001126 rcu_read_lock();
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001127 use_rle = rcu_dereference(first_peer_device(device)->connection->net_conf)->use_rle;
Philipp Reisner44ed1672011-04-19 17:10:19 +02001128 rcu_read_unlock();
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001129 if (!use_rle || first_peer_device(device)->connection->agreed_pro_version < 90)
Philipp Reisner44ed1672011-04-19 17:10:19 +02001130 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001131
1132 if (c->bit_offset >= c->bm_bits)
1133 return 0; /* nothing to do. */
1134
1135 /* use at most thus many bytes */
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001136 bitstream_init(&bs, p->code, size, 0);
1137 memset(p->code, 0, size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001138 /* plain bits covered in this code string */
1139 plain_bits = 0;
1140
1141 /* p->encoding & 0x80 stores whether the first run length is set.
1142 * bit offset is implicit.
1143 * start with toggle == 2 to be able to tell the first iteration */
1144 toggle = 2;
1145
1146 /* see how much plain bits we can stuff into one packet
1147 * using RLE and VLI. */
1148 do {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001149 tmp = (toggle == 0) ? _drbd_bm_find_next_zero(device, c->bit_offset)
1150 : _drbd_bm_find_next(device, c->bit_offset);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001151 if (tmp == -1UL)
1152 tmp = c->bm_bits;
1153 rl = tmp - c->bit_offset;
1154
1155 if (toggle == 2) { /* first iteration */
1156 if (rl == 0) {
1157 /* the first checked bit was set,
1158 * store start value, */
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001159 dcbp_set_start(p, 1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001160 /* but skip encoding of zero run length */
1161 toggle = !toggle;
1162 continue;
1163 }
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001164 dcbp_set_start(p, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001165 }
1166
1167 /* paranoia: catch zero runlength.
1168 * can only happen if bitmap is modified while we scan it. */
1169 if (rl == 0) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001170 drbd_err(device, "unexpected zero runlength while encoding bitmap "
Philipp Reisnerb411b362009-09-25 16:07:19 -07001171 "t:%u bo:%lu\n", toggle, c->bit_offset);
1172 return -1;
1173 }
1174
1175 bits = vli_encode_bits(&bs, rl);
1176 if (bits == -ENOBUFS) /* buffer full */
1177 break;
1178 if (bits <= 0) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001179 drbd_err(device, "error while encoding bitmap: %d\n", bits);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001180 return 0;
1181 }
1182
1183 toggle = !toggle;
1184 plain_bits += rl;
1185 c->bit_offset = tmp;
1186 } while (c->bit_offset < c->bm_bits);
1187
1188 len = bs.cur.b - p->code + !!bs.cur.bit;
1189
1190 if (plain_bits < (len << 3)) {
1191 /* incompressible with this method.
1192 * we need to rewind both word and bit position. */
1193 c->bit_offset -= plain_bits;
1194 bm_xfer_ctx_bit_to_word_offset(c);
1195 c->bit_offset = c->word_offset * BITS_PER_LONG;
1196 return 0;
1197 }
1198
1199 /* RLE + VLI was able to compress it just fine.
1200 * update c->word_offset. */
1201 bm_xfer_ctx_bit_to_word_offset(c);
1202
1203 /* store pad_bits */
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001204 dcbp_set_pad_bits(p, (8 - bs.cur.bit) & 0x7);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001205
1206 return len;
1207}
1208
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001209/**
1210 * send_bitmap_rle_or_plain
1211 *
1212 * Return 0 when done, 1 when another iteration is needed, and a negative error
1213 * code upon failure.
1214 */
1215static int
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001216send_bitmap_rle_or_plain(struct drbd_device *device, struct bm_xfer_ctx *c)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001217{
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001218 struct drbd_socket *sock = &first_peer_device(device)->connection->data;
1219 unsigned int header_size = drbd_header_size(first_peer_device(device)->connection);
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001220 struct p_compressed_bm *p = sock->sbuf + header_size;
Andreas Gruenbachera982dd52010-12-10 00:45:25 +01001221 int len, err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001222
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001223 len = fill_bitmap_rle_bits(device, p,
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001224 DRBD_SOCKET_BUFFER_SIZE - header_size - sizeof(*p), c);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001225 if (len < 0)
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001226 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001227
1228 if (len) {
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001229 dcbp_set_code(p, RLE_VLI_Bits);
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001230 err = __send_command(first_peer_device(device)->connection, device->vnr, sock,
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001231 P_COMPRESSED_BITMAP, sizeof(*p) + len,
1232 NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001233 c->packets[0]++;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001234 c->bytes[0] += header_size + sizeof(*p) + len;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001235
1236 if (c->bit_offset >= c->bm_bits)
1237 len = 0; /* DONE */
1238 } else {
1239 /* was not compressible.
1240 * send a buffer full of plain text bits instead. */
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001241 unsigned int data_size;
1242 unsigned long num_words;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001243 unsigned long *p = sock->sbuf + header_size;
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001244
1245 data_size = DRBD_SOCKET_BUFFER_SIZE - header_size;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001246 num_words = min_t(size_t, data_size / sizeof(*p),
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001247 c->bm_words - c->word_offset);
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001248 len = num_words * sizeof(*p);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001249 if (len)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001250 drbd_bm_get_lel(device, c->word_offset, num_words, p);
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001251 err = __send_command(first_peer_device(device)->connection, device->vnr, sock, P_BITMAP, len, NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001252 c->word_offset += num_words;
1253 c->bit_offset = c->word_offset * BITS_PER_LONG;
1254
1255 c->packets[1]++;
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001256 c->bytes[1] += header_size + len;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001257
1258 if (c->bit_offset > c->bm_bits)
1259 c->bit_offset = c->bm_bits;
1260 }
Andreas Gruenbachera982dd52010-12-10 00:45:25 +01001261 if (!err) {
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001262 if (len == 0) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001263 INFO_bm_xfer_stats(device, "send", c);
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001264 return 0;
1265 } else
1266 return 1;
1267 }
1268 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001269}
1270
1271/* See the comment at receive_bitmap() */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001272static int _drbd_send_bitmap(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001273{
1274 struct bm_xfer_ctx c;
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001275 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001276
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001277 if (!expect(device->bitmap))
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001278 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001279
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001280 if (get_ldev(device)) {
1281 if (drbd_md_test_flag(device->ldev, MDF_FULL_SYNC)) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001282 drbd_info(device, "Writing the whole bitmap, MDF_FullSync was set.\n");
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001283 drbd_bm_set_all(device);
1284 if (drbd_bm_write(device)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001285 /* write_bm did fail! Leave full sync flag set in Meta P_DATA
1286 * but otherwise process as per normal - need to tell other
1287 * side that a full resync is required! */
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001288 drbd_err(device, "Failed to write bitmap to disk!\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07001289 } else {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001290 drbd_md_clear_flag(device, MDF_FULL_SYNC);
1291 drbd_md_sync(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001292 }
1293 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001294 put_ldev(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001295 }
1296
1297 c = (struct bm_xfer_ctx) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001298 .bm_bits = drbd_bm_bits(device),
1299 .bm_words = drbd_bm_words(device),
Philipp Reisnerb411b362009-09-25 16:07:19 -07001300 };
1301
1302 do {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001303 err = send_bitmap_rle_or_plain(device, &c);
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001304 } while (err > 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001305
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001306 return err == 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001307}
1308
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001309int drbd_send_bitmap(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001310{
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001311 struct drbd_socket *sock = &first_peer_device(device)->connection->data;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001312 int err = -1;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001313
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001314 mutex_lock(&sock->mutex);
1315 if (sock->socket)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001316 err = !_drbd_send_bitmap(device);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001317 mutex_unlock(&sock->mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001318 return err;
1319}
1320
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001321void drbd_send_b_ack(struct drbd_connection *connection, u32 barrier_nr, u32 set_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001322{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001323 struct drbd_socket *sock;
1324 struct p_barrier_ack *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001325
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001326 if (connection->cstate < C_WF_REPORT_PARAMS)
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001327 return;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001328
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001329 sock = &connection->meta;
1330 p = conn_prepare_command(connection, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001331 if (!p)
1332 return;
1333 p->barrier = barrier_nr;
1334 p->set_size = cpu_to_be32(set_size);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001335 conn_send_command(connection, sock, P_BARRIER_ACK, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001336}
1337
1338/**
1339 * _drbd_send_ack() - Sends an ack packet
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001340 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07001341 * @cmd: Packet command code.
1342 * @sector: sector, needs to be in big endian byte order
1343 * @blksize: size in byte, needs to be in big endian byte order
1344 * @block_id: Id, big endian byte order
1345 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001346static int _drbd_send_ack(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001347 u64 sector, u32 blksize, u64 block_id)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001348{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001349 struct drbd_socket *sock;
1350 struct p_block_ack *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001351
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001352 if (peer_device->device->state.conn < C_CONNECTED)
Andreas Gruenbachera8c32aa2011-03-16 01:27:22 +01001353 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001354
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001355 sock = &peer_device->connection->meta;
1356 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001357 if (!p)
1358 return -EIO;
1359 p->sector = sector;
1360 p->block_id = block_id;
1361 p->blksize = blksize;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001362 p->seq_num = cpu_to_be32(atomic_inc_return(&peer_device->device->packet_seq));
1363 return drbd_send_command(peer_device, sock, cmd, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001364}
1365
Lars Ellenberg2b2bf212010-10-06 11:46:55 +02001366/* dp->sector and dp->block_id already/still in network byte order,
1367 * data_size is payload size according to dp->head,
1368 * and may need to be corrected for digest size. */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001369void drbd_send_ack_dp(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
Andreas Gruenbachera9a99942011-03-16 01:30:14 +01001370 struct p_data *dp, int data_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001371{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001372 if (peer_device->connection->peer_integrity_tfm)
Kees Cook3d0e6372018-08-06 16:32:16 -07001373 data_size -= crypto_shash_digestsize(peer_device->connection->peer_integrity_tfm);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001374 _drbd_send_ack(peer_device, cmd, dp->sector, cpu_to_be32(data_size),
Andreas Gruenbachera9a99942011-03-16 01:30:14 +01001375 dp->block_id);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001376}
1377
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001378void drbd_send_ack_rp(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
Andreas Gruenbachera9a99942011-03-16 01:30:14 +01001379 struct p_block_req *rp)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001380{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001381 _drbd_send_ack(peer_device, cmd, rp->sector, rp->blksize, rp->block_id);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001382}
1383
1384/**
1385 * drbd_send_ack() - Sends an ack packet
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001386 * @device: DRBD device
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001387 * @cmd: packet command code
1388 * @peer_req: peer request
Philipp Reisnerb411b362009-09-25 16:07:19 -07001389 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001390int drbd_send_ack(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001391 struct drbd_peer_request *peer_req)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001392{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001393 return _drbd_send_ack(peer_device, cmd,
Andreas Gruenbacherdd516122011-03-16 15:39:08 +01001394 cpu_to_be64(peer_req->i.sector),
1395 cpu_to_be32(peer_req->i.size),
1396 peer_req->block_id);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001397}
1398
1399/* This function misuses the block_id field to signal if the blocks
1400 * are is sync or not. */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001401int drbd_send_ack_ex(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001402 sector_t sector, int blksize, u64 block_id)
1403{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001404 return _drbd_send_ack(peer_device, cmd,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001405 cpu_to_be64(sector),
1406 cpu_to_be32(blksize),
1407 cpu_to_be64(block_id));
1408}
1409
Philipp Reisner700ca8c2016-06-14 00:26:13 +02001410int drbd_send_rs_deallocated(struct drbd_peer_device *peer_device,
1411 struct drbd_peer_request *peer_req)
1412{
1413 struct drbd_socket *sock;
1414 struct p_block_desc *p;
1415
1416 sock = &peer_device->connection->data;
1417 p = drbd_prepare_command(peer_device, sock);
1418 if (!p)
1419 return -EIO;
1420 p->sector = cpu_to_be64(peer_req->i.sector);
1421 p->blksize = cpu_to_be32(peer_req->i.size);
1422 p->pad = 0;
1423 return drbd_send_command(peer_device, sock, P_RS_DEALLOCATED, sizeof(*p), NULL, 0);
1424}
1425
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001426int drbd_send_drequest(struct drbd_peer_device *peer_device, int cmd,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001427 sector_t sector, int size, u64 block_id)
1428{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001429 struct drbd_socket *sock;
1430 struct p_block_req *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001431
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001432 sock = &peer_device->connection->data;
1433 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001434 if (!p)
1435 return -EIO;
1436 p->sector = cpu_to_be64(sector);
1437 p->block_id = block_id;
1438 p->blksize = cpu_to_be32(size);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001439 return drbd_send_command(peer_device, sock, cmd, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001440}
1441
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001442int drbd_send_drequest_csum(struct drbd_peer_device *peer_device, sector_t sector, int size,
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001443 void *digest, int digest_size, enum drbd_packet cmd)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001444{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001445 struct drbd_socket *sock;
1446 struct p_block_req *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001447
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001448 /* FIXME: Put the digest into the preallocated socket buffer. */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001449
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001450 sock = &peer_device->connection->data;
1451 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001452 if (!p)
1453 return -EIO;
1454 p->sector = cpu_to_be64(sector);
1455 p->block_id = ID_SYNCER /* unused */;
1456 p->blksize = cpu_to_be32(size);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001457 return drbd_send_command(peer_device, sock, cmd, sizeof(*p), digest, digest_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001458}
1459
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001460int drbd_send_ov_request(struct drbd_peer_device *peer_device, sector_t sector, int size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001461{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001462 struct drbd_socket *sock;
1463 struct p_block_req *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001464
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001465 sock = &peer_device->connection->data;
1466 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001467 if (!p)
1468 return -EIO;
1469 p->sector = cpu_to_be64(sector);
1470 p->block_id = ID_SYNCER /* unused */;
1471 p->blksize = cpu_to_be32(size);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001472 return drbd_send_command(peer_device, sock, P_OV_REQUEST, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001473}
1474
1475/* called on sndtimeo
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001476 * returns false if we should retry,
1477 * true if we think connection is dead
Philipp Reisnerb411b362009-09-25 16:07:19 -07001478 */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001479static int we_should_drop_the_connection(struct drbd_connection *connection, struct socket *sock)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001480{
1481 int drop_it;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001482 /* long elapsed = (long)(jiffies - device->last_received); */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001483
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001484 drop_it = connection->meta.socket == sock
Philipp Reisner1c03e522015-03-16 15:01:00 +01001485 || !connection->ack_receiver.task
1486 || get_t_state(&connection->ack_receiver) != RUNNING
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001487 || connection->cstate < C_WF_REPORT_PARAMS;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001488
1489 if (drop_it)
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001490 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001491
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001492 drop_it = !--connection->ko_count;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001493 if (!drop_it) {
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +02001494 drbd_err(connection, "[%s/%d] sock_sendmsg time expired, ko = %u\n",
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001495 current->comm, current->pid, connection->ko_count);
1496 request_ping(connection);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001497 }
1498
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001499 return drop_it; /* && (device->state == R_PRIMARY) */;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001500}
1501
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001502static void drbd_update_congested(struct drbd_connection *connection)
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001503{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001504 struct sock *sk = connection->data.socket->sk;
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001505 if (sk->sk_wmem_queued > sk->sk_sndbuf * 4 / 5)
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001506 set_bit(NET_CONGESTED, &connection->flags);
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001507}
1508
Philipp Reisnerb411b362009-09-25 16:07:19 -07001509/* The idea of sendpage seems to be to put some kind of reference
1510 * to the page into the skb, and to hand it over to the NIC. In
1511 * this process get_page() gets called.
1512 *
1513 * As soon as the page was really sent over the network put_page()
1514 * gets called by some part of the network layer. [ NIC driver? ]
1515 *
1516 * [ get_page() / put_page() increment/decrement the count. If count
1517 * reaches 0 the page will be freed. ]
1518 *
1519 * This works nicely with pages from FSs.
1520 * But this means that in protocol A we might signal IO completion too early!
1521 *
1522 * In order not to corrupt data during a resync we must make sure
1523 * that we do not reuse our own buffer pages (EEs) to early, therefore
1524 * we have the net_ee list.
1525 *
1526 * XFS seems to have problems, still, it submits pages with page_count == 0!
1527 * As a workaround, we disable sendpage on pages
1528 * with page_count == 0 or PageSlab.
1529 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001530static int _drbd_no_send_page(struct drbd_peer_device *peer_device, struct page *page,
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001531 int offset, size_t size, unsigned msg_flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001532{
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001533 struct socket *socket;
1534 void *addr;
1535 int err;
1536
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001537 socket = peer_device->connection->data.socket;
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001538 addr = kmap(page) + offset;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001539 err = drbd_send_all(peer_device->connection, socket, addr, size, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001540 kunmap(page);
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001541 if (!err)
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001542 peer_device->device->send_cnt += size >> 9;
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001543 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001544}
1545
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001546static int _drbd_send_page(struct drbd_peer_device *peer_device, struct page *page,
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001547 int offset, size_t size, unsigned msg_flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001548{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001549 struct socket *socket = peer_device->connection->data.socket;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001550 int len = size;
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001551 int err = -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001552
1553 /* e.g. XFS meta- & log-data is in slab pages, which have a
1554 * page_count of 0 and/or have PageSlab() set.
1555 * we cannot use send_page for those, as that does get_page();
1556 * put_page(); and would cause either a VM_BUG directly, or
1557 * __page_cache_release a page that would actually still be referenced
1558 * by someone, leading to some obscure delayed Oops somewhere else. */
Coly Lifb25ebe2020-10-02 16:27:32 +08001559 if (drbd_disable_sendpage || !sendpage_ok(page))
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001560 return _drbd_no_send_page(peer_device, page, offset, size, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001561
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001562 msg_flags |= MSG_NOSIGNAL;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001563 drbd_update_congested(peer_device->connection);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001564 do {
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001565 int sent;
1566
1567 sent = socket->ops->sendpage(socket, page, offset, len, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001568 if (sent <= 0) {
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001569 if (sent == -EAGAIN) {
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001570 if (we_should_drop_the_connection(peer_device->connection, socket))
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001571 break;
1572 continue;
1573 }
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001574 drbd_warn(peer_device->device, "%s: size=%d len=%d sent=%d\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -07001575 __func__, (int)size, len, sent);
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001576 if (sent < 0)
1577 err = sent;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001578 break;
1579 }
1580 len -= sent;
1581 offset += sent;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001582 } while (len > 0 /* THINK && device->cstate >= C_CONNECTED*/);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001583 clear_bit(NET_CONGESTED, &peer_device->connection->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001584
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001585 if (len == 0) {
1586 err = 0;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001587 peer_device->device->send_cnt += size >> 9;
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001588 }
1589 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001590}
1591
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001592static int _drbd_send_bio(struct drbd_peer_device *peer_device, struct bio *bio)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001593{
Kent Overstreet79886132013-11-23 17:19:00 -08001594 struct bio_vec bvec;
1595 struct bvec_iter iter;
1596
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001597 /* hint all but last page with MSG_MORE */
Kent Overstreet79886132013-11-23 17:19:00 -08001598 bio_for_each_segment(bvec, bio, iter) {
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001599 int err;
1600
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001601 err = _drbd_no_send_page(peer_device, bvec.bv_page,
Kent Overstreet79886132013-11-23 17:19:00 -08001602 bvec.bv_offset, bvec.bv_len,
Kent Overstreet4550dd62013-08-07 14:26:21 -07001603 bio_iter_last(bvec, iter)
Kent Overstreet79886132013-11-23 17:19:00 -08001604 ? 0 : MSG_MORE);
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001605 if (err)
1606 return err;
Lars Ellenberg9104d312016-06-14 00:26:31 +02001607 /* REQ_OP_WRITE_SAME has only one segment */
1608 if (bio_op(bio) == REQ_OP_WRITE_SAME)
1609 break;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001610 }
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001611 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001612}
1613
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001614static int _drbd_send_zc_bio(struct drbd_peer_device *peer_device, struct bio *bio)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001615{
Kent Overstreet79886132013-11-23 17:19:00 -08001616 struct bio_vec bvec;
1617 struct bvec_iter iter;
1618
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001619 /* hint all but last page with MSG_MORE */
Kent Overstreet79886132013-11-23 17:19:00 -08001620 bio_for_each_segment(bvec, bio, iter) {
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001621 int err;
1622
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001623 err = _drbd_send_page(peer_device, bvec.bv_page,
Kent Overstreet79886132013-11-23 17:19:00 -08001624 bvec.bv_offset, bvec.bv_len,
Kent Overstreet4550dd62013-08-07 14:26:21 -07001625 bio_iter_last(bvec, iter) ? 0 : MSG_MORE);
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001626 if (err)
1627 return err;
Lars Ellenberg9104d312016-06-14 00:26:31 +02001628 /* REQ_OP_WRITE_SAME has only one segment */
1629 if (bio_op(bio) == REQ_OP_WRITE_SAME)
1630 break;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001631 }
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001632 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001633}
1634
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001635static int _drbd_send_zc_ee(struct drbd_peer_device *peer_device,
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001636 struct drbd_peer_request *peer_req)
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001637{
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001638 struct page *page = peer_req->pages;
1639 unsigned len = peer_req->i.size;
Andreas Gruenbacher9f692302011-03-16 10:49:09 +01001640 int err;
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001641
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001642 /* hint all but last page with MSG_MORE */
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001643 page_chain_for_each(page) {
1644 unsigned l = min_t(unsigned, len, PAGE_SIZE);
Andreas Gruenbacher9f692302011-03-16 10:49:09 +01001645
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001646 err = _drbd_send_page(peer_device, page, 0, l,
Andreas Gruenbacher9f692302011-03-16 10:49:09 +01001647 page_chain_next(page) ? MSG_MORE : 0);
1648 if (err)
1649 return err;
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001650 len -= l;
1651 }
Andreas Gruenbacher9f692302011-03-16 10:49:09 +01001652 return 0;
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001653}
1654
Mike Christiebb3cc852016-06-05 14:32:06 -05001655static u32 bio_flags_to_wire(struct drbd_connection *connection,
1656 struct bio *bio)
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001657{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001658 if (connection->agreed_pro_version >= 95)
Jens Axboe1eff9d32016-08-05 15:35:16 -06001659 return (bio->bi_opf & REQ_SYNC ? DP_RW_SYNC : 0) |
1660 (bio->bi_opf & REQ_FUA ? DP_FUA : 0) |
1661 (bio->bi_opf & REQ_PREFLUSH ? DP_FLUSH : 0) |
Lars Ellenberg9104d312016-06-14 00:26:31 +02001662 (bio_op(bio) == REQ_OP_WRITE_SAME ? DP_WSAME : 0) |
Christoph Hellwig45c21792017-04-05 19:21:22 +02001663 (bio_op(bio) == REQ_OP_DISCARD ? DP_DISCARD : 0) |
Lars Ellenbergf31e5832018-12-20 17:23:42 +01001664 (bio_op(bio) == REQ_OP_WRITE_ZEROES ?
1665 ((connection->agreed_features & DRBD_FF_WZEROES) ?
1666 (DP_ZEROES |(!(bio->bi_opf & REQ_NOUNMAP) ? DP_DISCARD : 0))
1667 : DP_DISCARD)
1668 : 0);
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001669 else
Jens Axboe1eff9d32016-08-05 15:35:16 -06001670 return bio->bi_opf & REQ_SYNC ? DP_RW_SYNC : 0;
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001671}
1672
Bart Van Assche93054552018-10-03 13:56:25 -07001673/* Used to send write or TRIM aka REQ_OP_DISCARD requests
Lars Ellenberg2f632ae2014-04-28 18:43:24 +02001674 * R_PRIMARY -> Peer (P_DATA, P_TRIM)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001675 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001676int drbd_send_dblock(struct drbd_peer_device *peer_device, struct drbd_request *req)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001677{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001678 struct drbd_device *device = peer_device->device;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001679 struct drbd_socket *sock;
1680 struct p_data *p;
Lars Ellenberg9104d312016-06-14 00:26:31 +02001681 struct p_wsame *wsame = NULL;
1682 void *digest_out;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001683 unsigned int dp_flags = 0;
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001684 int digest_size;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001685 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001686
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001687 sock = &peer_device->connection->data;
1688 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001689 digest_size = peer_device->connection->integrity_tfm ?
Kees Cook3d0e6372018-08-06 16:32:16 -07001690 crypto_shash_digestsize(peer_device->connection->integrity_tfm) : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001691
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001692 if (!p)
1693 return -EIO;
1694 p->sector = cpu_to_be64(req->i.sector);
1695 p->block_id = (unsigned long)req;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001696 p->seq_num = cpu_to_be32(atomic_inc_return(&device->packet_seq));
Mike Christiebb3cc852016-06-05 14:32:06 -05001697 dp_flags = bio_flags_to_wire(peer_device->connection, req->master_bio);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001698 if (device->state.conn >= C_SYNC_SOURCE &&
1699 device->state.conn <= C_PAUSED_SYNC_T)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001700 dp_flags |= DP_MAY_SET_IN_SYNC;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001701 if (peer_device->connection->agreed_pro_version >= 100) {
Philipp Reisner303d1442011-04-13 16:24:47 -07001702 if (req->rq_state & RQ_EXP_RECEIVE_ACK)
1703 dp_flags |= DP_SEND_RECEIVE_ACK;
Lars Ellenberg08d0dab2014-03-20 11:19:22 +01001704 /* During resync, request an explicit write ack,
1705 * even in protocol != C */
1706 if (req->rq_state & RQ_EXP_WRITE_ACK
1707 || (dp_flags & DP_MAY_SET_IN_SYNC))
Philipp Reisner303d1442011-04-13 16:24:47 -07001708 dp_flags |= DP_SEND_WRITE_ACK;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001709 }
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001710 p->dp_flags = cpu_to_be32(dp_flags);
Lars Ellenberg2f632ae2014-04-28 18:43:24 +02001711
Lars Ellenbergf31e5832018-12-20 17:23:42 +01001712 if (dp_flags & (DP_DISCARD|DP_ZEROES)) {
1713 enum drbd_packet cmd = (dp_flags & DP_ZEROES) ? P_ZEROES : P_TRIM;
Lars Ellenberg2f632ae2014-04-28 18:43:24 +02001714 struct p_trim *t = (struct p_trim*)p;
1715 t->size = cpu_to_be32(req->i.size);
Lars Ellenbergf31e5832018-12-20 17:23:42 +01001716 err = __send_command(peer_device->connection, device->vnr, sock, cmd, sizeof(*t), NULL, 0);
Lars Ellenberg2f632ae2014-04-28 18:43:24 +02001717 goto out;
1718 }
Lars Ellenberg9104d312016-06-14 00:26:31 +02001719 if (dp_flags & DP_WSAME) {
1720 /* this will only work if DRBD_FF_WSAME is set AND the
1721 * handshake agreed that all nodes and backend devices are
1722 * WRITE_SAME capable and agree on logical_block_size */
1723 wsame = (struct p_wsame*)p;
1724 digest_out = wsame + 1;
1725 wsame->size = cpu_to_be32(req->i.size);
1726 } else
1727 digest_out = p + 1;
Lars Ellenberg2f632ae2014-04-28 18:43:24 +02001728
1729 /* our digest is still only over the payload.
1730 * TRIM does not carry any payload. */
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001731 if (digest_size)
Lars Ellenberg9104d312016-06-14 00:26:31 +02001732 drbd_csum_bio(peer_device->connection->integrity_tfm, req->master_bio, digest_out);
1733 if (wsame) {
1734 err =
1735 __send_command(peer_device->connection, device->vnr, sock, P_WSAME,
1736 sizeof(*wsame) + digest_size, NULL,
1737 bio_iovec(req->master_bio).bv_len);
1738 } else
1739 err =
1740 __send_command(peer_device->connection, device->vnr, sock, P_DATA,
1741 sizeof(*p) + digest_size, NULL, req->i.size);
Andreas Gruenbacher6bdb9b02011-03-16 11:52:58 +01001742 if (!err) {
Lars Ellenberg470be442010-11-10 10:36:52 +01001743 /* For protocol A, we have to memcpy the payload into
1744 * socket buffers, as we may complete right away
1745 * as soon as we handed it over to tcp, at which point the data
1746 * pages may become invalid.
1747 *
1748 * For data-integrity enabled, we copy it as well, so we can be
1749 * sure that even if the bio pages may still be modified, it
1750 * won't change the data on the wire, thus if the digest checks
1751 * out ok after sending on this side, but does not fit on the
1752 * receiving side, we sure have detected corruption elsewhere.
1753 */
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001754 if (!(req->rq_state & (RQ_EXP_RECEIVE_ACK | RQ_EXP_WRITE_ACK)) || digest_size)
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001755 err = _drbd_send_bio(peer_device, req->master_bio);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001756 else
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001757 err = _drbd_send_zc_bio(peer_device, req->master_bio);
Lars Ellenberg470be442010-11-10 10:36:52 +01001758
1759 /* double check digest, sometimes buffers have been modified in flight. */
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001760 if (digest_size > 0 && digest_size <= 64) {
Bart Van Assche24c48302011-05-21 18:32:29 +02001761 /* 64 byte, 512 bit, is the largest digest size
Lars Ellenberg470be442010-11-10 10:36:52 +01001762 * currently supported in kernel crypto. */
1763 unsigned char digest[64];
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001764 drbd_csum_bio(peer_device->connection->integrity_tfm, req->master_bio, digest);
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001765 if (memcmp(p + 1, digest, digest_size)) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001766 drbd_warn(device,
Lars Ellenberg470be442010-11-10 10:36:52 +01001767 "Digest mismatch, buffer modified by upper layers during write: %llus +%u\n",
Andreas Gruenbacherace652a2011-01-03 17:09:58 +01001768 (unsigned long long)req->i.sector, req->i.size);
Lars Ellenberg470be442010-11-10 10:36:52 +01001769 }
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001770 } /* else if (digest_size > 64) {
Lars Ellenberg470be442010-11-10 10:36:52 +01001771 ... Be noisy about digest too large ...
1772 } */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001773 }
Lars Ellenberg2f632ae2014-04-28 18:43:24 +02001774out:
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001775 mutex_unlock(&sock->mutex); /* locked by drbd_prepare_command() */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001776
Andreas Gruenbacher6bdb9b02011-03-16 11:52:58 +01001777 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001778}
1779
1780/* answer packet, used to send data back for read requests:
1781 * Peer -> (diskless) R_PRIMARY (P_DATA_REPLY)
1782 * C_SYNC_SOURCE -> C_SYNC_TARGET (P_RS_DATA_REPLY)
1783 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001784int drbd_send_block(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001785 struct drbd_peer_request *peer_req)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001786{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001787 struct drbd_device *device = peer_device->device;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001788 struct drbd_socket *sock;
1789 struct p_data *p;
Andreas Gruenbacher7b57b89d2011-03-16 11:35:20 +01001790 int err;
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001791 int digest_size;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001792
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001793 sock = &peer_device->connection->data;
1794 p = drbd_prepare_command(peer_device, sock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001795
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001796 digest_size = peer_device->connection->integrity_tfm ?
Kees Cook3d0e6372018-08-06 16:32:16 -07001797 crypto_shash_digestsize(peer_device->connection->integrity_tfm) : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001798
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001799 if (!p)
1800 return -EIO;
1801 p->sector = cpu_to_be64(peer_req->i.sector);
1802 p->block_id = peer_req->block_id;
1803 p->seq_num = 0; /* unused */
Lars Ellenbergb17f33c2012-02-08 15:32:51 +01001804 p->dp_flags = 0;
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001805 if (digest_size)
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001806 drbd_csum_ee(peer_device->connection->integrity_tfm, peer_req, p + 1);
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001807 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 +01001808 if (!err)
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001809 err = _drbd_send_zc_ee(peer_device, peer_req);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001810 mutex_unlock(&sock->mutex); /* locked by drbd_prepare_command() */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001811
Andreas Gruenbacher7b57b89d2011-03-16 11:35:20 +01001812 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001813}
1814
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001815int drbd_send_out_of_sync(struct drbd_peer_device *peer_device, struct drbd_request *req)
Philipp Reisner73a01a12010-10-27 14:33:00 +02001816{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001817 struct drbd_socket *sock;
1818 struct p_block_desc *p;
Philipp Reisner73a01a12010-10-27 14:33:00 +02001819
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001820 sock = &peer_device->connection->data;
1821 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001822 if (!p)
1823 return -EIO;
1824 p->sector = cpu_to_be64(req->i.sector);
1825 p->blksize = cpu_to_be32(req->i.size);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001826 return drbd_send_command(peer_device, sock, P_OUT_OF_SYNC, sizeof(*p), NULL, 0);
Philipp Reisner73a01a12010-10-27 14:33:00 +02001827}
1828
Philipp Reisnerb411b362009-09-25 16:07:19 -07001829/*
1830 drbd_send distinguishes two cases:
1831
1832 Packets sent via the data socket "sock"
1833 and packets sent via the meta data socket "msock"
1834
1835 sock msock
1836 -----------------+-------------------------+------------------------------
1837 timeout conf.timeout / 2 conf.timeout / 2
1838 timeout action send a ping via msock Abort communication
1839 and close all sockets
1840*/
1841
1842/*
1843 * you must have down()ed the appropriate [m]sock_mutex elsewhere!
1844 */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001845int drbd_send(struct drbd_connection *connection, struct socket *sock,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001846 void *buf, size_t size, unsigned msg_flags)
1847{
Al Viro79ab80b2014-12-10 17:06:38 -05001848 struct kvec iov = {.iov_base = buf, .iov_len = size};
Al Virof7765c32017-09-20 20:05:43 -04001849 struct msghdr msg = {.msg_flags = msg_flags | MSG_NOSIGNAL};
Philipp Reisnerb411b362009-09-25 16:07:19 -07001850 int rv, sent = 0;
1851
1852 if (!sock)
Andreas Gruenbacherc0d42c82010-12-09 23:52:22 +01001853 return -EBADR;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001854
1855 /* THINK if (signal_pending) return ... ? */
1856
David Howellsaa563d72018-10-20 00:57:56 +01001857 iov_iter_kvec(&msg.msg_iter, WRITE, &iov, 1, size);
Al Viro79ab80b2014-12-10 17:06:38 -05001858
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001859 if (sock == connection->data.socket) {
Philipp Reisner44ed1672011-04-19 17:10:19 +02001860 rcu_read_lock();
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001861 connection->ko_count = rcu_dereference(connection->net_conf)->ko_count;
Philipp Reisner44ed1672011-04-19 17:10:19 +02001862 rcu_read_unlock();
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001863 drbd_update_congested(connection);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001864 }
1865 do {
Al Viro79ab80b2014-12-10 17:06:38 -05001866 rv = sock_sendmsg(sock, &msg);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001867 if (rv == -EAGAIN) {
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001868 if (we_should_drop_the_connection(connection, sock))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001869 break;
1870 else
1871 continue;
1872 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001873 if (rv == -EINTR) {
1874 flush_signals(current);
1875 rv = 0;
1876 }
1877 if (rv < 0)
1878 break;
1879 sent += rv;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001880 } while (sent < size);
1881
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001882 if (sock == connection->data.socket)
1883 clear_bit(NET_CONGESTED, &connection->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001884
1885 if (rv <= 0) {
1886 if (rv != -EAGAIN) {
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +02001887 drbd_err(connection, "%s_sendmsg returned %d\n",
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001888 sock == connection->meta.socket ? "msock" : "sock",
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001889 rv);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001890 conn_request_state(connection, NS(conn, C_BROKEN_PIPE), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001891 } else
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001892 conn_request_state(connection, NS(conn, C_TIMEOUT), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001893 }
1894
1895 return sent;
1896}
1897
Andreas Gruenbacherfb708e42010-12-15 17:04:36 +01001898/**
1899 * drbd_send_all - Send an entire buffer
1900 *
1901 * Returns 0 upon success and a negative error value otherwise.
1902 */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001903int drbd_send_all(struct drbd_connection *connection, struct socket *sock, void *buffer,
Andreas Gruenbacherfb708e42010-12-15 17:04:36 +01001904 size_t size, unsigned msg_flags)
1905{
1906 int err;
1907
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001908 err = drbd_send(connection, sock, buffer, size, msg_flags);
Andreas Gruenbacherfb708e42010-12-15 17:04:36 +01001909 if (err < 0)
1910 return err;
1911 if (err != size)
1912 return -EIO;
1913 return 0;
1914}
1915
Philipp Reisnerb411b362009-09-25 16:07:19 -07001916static int drbd_open(struct block_device *bdev, fmode_t mode)
1917{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001918 struct drbd_device *device = bdev->bd_disk->private_data;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001919 unsigned long flags;
1920 int rv = 0;
1921
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001922 mutex_lock(&drbd_main_mutex);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001923 spin_lock_irqsave(&device->resource->req_lock, flags);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001924 /* to have a stable device->state.role
Philipp Reisnerb411b362009-09-25 16:07:19 -07001925 * and no race with updating open_cnt */
1926
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001927 if (device->state.role != R_PRIMARY) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001928 if (mode & FMODE_WRITE)
1929 rv = -EROFS;
Roland Kammerer183ece32017-08-29 10:20:46 +02001930 else if (!drbd_allow_oos)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001931 rv = -EMEDIUMTYPE;
1932 }
1933
1934 if (!rv)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001935 device->open_cnt++;
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001936 spin_unlock_irqrestore(&device->resource->req_lock, flags);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001937 mutex_unlock(&drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001938
1939 return rv;
1940}
1941
Al Virodb2a1442013-05-05 21:52:57 -04001942static void drbd_release(struct gendisk *gd, fmode_t mode)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001943{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001944 struct drbd_device *device = gd->private_data;
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001945 mutex_lock(&drbd_main_mutex);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001946 device->open_cnt--;
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001947 mutex_unlock(&drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001948}
1949
Lars Ellenbergc51a0ef2017-08-29 10:20:32 +02001950/* need to hold resource->req_lock */
1951void drbd_queue_unplug(struct drbd_device *device)
1952{
1953 if (device->state.pdsk >= D_INCONSISTENT && device->state.conn >= C_CONNECTED) {
1954 D_ASSERT(device, device->state.role == R_PRIMARY);
1955 if (test_and_clear_bit(UNPLUG_REMOTE, &device->flags)) {
1956 drbd_queue_work_if_unqueued(
1957 &first_peer_device(device)->connection->sender_work,
1958 &device->unplug_work);
1959 }
1960 }
1961}
1962
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001963static void drbd_set_defaults(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001964{
Lars Ellenbergf3990022011-03-23 14:31:09 +01001965 /* Beware! The actual layout differs
1966 * between big endian and little endian */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001967 device->state = (union drbd_dev_state) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001968 { .role = R_SECONDARY,
1969 .peer = R_UNKNOWN,
1970 .conn = C_STANDALONE,
1971 .disk = D_DISKLESS,
1972 .pdsk = D_UNKNOWN,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001973 } };
1974}
1975
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001976void drbd_init_set_defaults(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001977{
1978 /* the memset(,0,) did most of this.
1979 * note: only assignments, no allocation in here */
1980
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001981 drbd_set_defaults(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001982
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001983 atomic_set(&device->ap_bio_cnt, 0);
Lars Ellenbergad3fee72013-12-20 11:22:13 +01001984 atomic_set(&device->ap_actlog_cnt, 0);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001985 atomic_set(&device->ap_pending_cnt, 0);
1986 atomic_set(&device->rs_pending_cnt, 0);
1987 atomic_set(&device->unacked_cnt, 0);
1988 atomic_set(&device->local_cnt, 0);
1989 atomic_set(&device->pp_in_use_by_net, 0);
1990 atomic_set(&device->rs_sect_in, 0);
1991 atomic_set(&device->rs_sect_ev, 0);
1992 atomic_set(&device->ap_in_flight, 0);
Lars Ellenberge37d2432014-04-01 23:53:30 +02001993 atomic_set(&device->md_io.in_use, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001994
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001995 mutex_init(&device->own_state_mutex);
1996 device->state_mutex = &device->own_state_mutex;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001997
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001998 spin_lock_init(&device->al_lock);
1999 spin_lock_init(&device->peer_seq_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002000
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002001 INIT_LIST_HEAD(&device->active_ee);
2002 INIT_LIST_HEAD(&device->sync_ee);
2003 INIT_LIST_HEAD(&device->done_ee);
2004 INIT_LIST_HEAD(&device->read_ee);
2005 INIT_LIST_HEAD(&device->net_ee);
2006 INIT_LIST_HEAD(&device->resync_reads);
2007 INIT_LIST_HEAD(&device->resync_work.list);
2008 INIT_LIST_HEAD(&device->unplug_work.list);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002009 INIT_LIST_HEAD(&device->bm_io_work.w.list);
Lars Ellenberg844a6ae72013-11-22 12:52:03 +01002010 INIT_LIST_HEAD(&device->pending_master_completion[0]);
2011 INIT_LIST_HEAD(&device->pending_master_completion[1]);
2012 INIT_LIST_HEAD(&device->pending_completion[0]);
2013 INIT_LIST_HEAD(&device->pending_completion[1]);
Philipp Reisner0ced55a2010-04-30 15:26:20 +02002014
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002015 device->resync_work.cb = w_resync_timer;
2016 device->unplug_work.cb = w_send_write_hint;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002017 device->bm_io_work.w.cb = w_bitmap_io;
Philipp Reisnera21e9292011-02-08 15:08:49 +01002018
Kees Cook2bccef32017-10-17 20:33:01 -07002019 timer_setup(&device->resync_timer, resync_timer_fn, 0);
2020 timer_setup(&device->md_sync_timer, md_sync_timer_fn, 0);
2021 timer_setup(&device->start_resync_timer, start_resync_timer_fn, 0);
2022 timer_setup(&device->request_timer, request_timer_fn, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002023
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002024 init_waitqueue_head(&device->misc_wait);
2025 init_waitqueue_head(&device->state_wait);
2026 init_waitqueue_head(&device->ee_wait);
2027 init_waitqueue_head(&device->al_wait);
2028 init_waitqueue_head(&device->seq_wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002029
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002030 device->resync_wenr = LC_FREE;
2031 device->peer_max_bio_size = DRBD_MAX_BIO_SIZE_SAFE;
2032 device->local_max_bio_size = DRBD_MAX_BIO_SIZE_SAFE;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002033}
2034
Lars Ellenbergd5412e82018-12-20 17:23:30 +01002035void drbd_set_my_capacity(struct drbd_device *device, sector_t size)
2036{
2037 char ppb[10];
Christoph Hellwig155bd9d2020-09-25 18:06:17 +02002038
Christoph Hellwigbc254eb2020-11-16 15:57:06 +01002039 set_capacity_and_notify(device->vdisk, size);
Christoph Hellwig155bd9d2020-09-25 18:06:17 +02002040
Lars Ellenbergd5412e82018-12-20 17:23:30 +01002041 drbd_info(device, "size = %s (%llu KB)\n",
2042 ppsize(ppb, size>>1), (unsigned long long)size>>1);
2043}
2044
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002045void drbd_device_cleanup(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002046{
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02002047 int i;
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02002048 if (first_peer_device(device)->connection->receiver.t_state != NONE)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002049 drbd_err(device, "ASSERT FAILED: receiver t_state == %d expected 0.\n",
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02002050 first_peer_device(device)->connection->receiver.t_state);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002051
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002052 device->al_writ_cnt =
2053 device->bm_writ_cnt =
2054 device->read_cnt =
2055 device->recv_cnt =
2056 device->send_cnt =
2057 device->writ_cnt =
2058 device->p_size =
2059 device->rs_start =
2060 device->rs_total =
2061 device->rs_failed = 0;
2062 device->rs_last_events = 0;
2063 device->rs_last_sect_ev = 0;
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02002064 for (i = 0; i < DRBD_SYNC_MARKS; i++) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002065 device->rs_mark_left[i] = 0;
2066 device->rs_mark_time[i] = 0;
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02002067 }
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02002068 D_ASSERT(device, first_peer_device(device)->connection->net_conf == NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002069
Christoph Hellwigbc254eb2020-11-16 15:57:06 +01002070 set_capacity_and_notify(device->vdisk, 0);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002071 if (device->bitmap) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002072 /* maybe never allocated. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002073 drbd_bm_resize(device, 0, 1);
2074 drbd_bm_cleanup(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002075 }
2076
Lars Ellenberg63a7c8a2015-03-26 20:53:55 +01002077 drbd_backing_dev_free(device, device->ldev);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002078 device->ldev = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002079
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002080 clear_bit(AL_SUSPENDED, &device->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002081
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02002082 D_ASSERT(device, list_empty(&device->active_ee));
2083 D_ASSERT(device, list_empty(&device->sync_ee));
2084 D_ASSERT(device, list_empty(&device->done_ee));
2085 D_ASSERT(device, list_empty(&device->read_ee));
2086 D_ASSERT(device, list_empty(&device->net_ee));
2087 D_ASSERT(device, list_empty(&device->resync_reads));
2088 D_ASSERT(device, list_empty(&first_peer_device(device)->connection->sender_work.q));
2089 D_ASSERT(device, list_empty(&device->resync_work.list));
2090 D_ASSERT(device, list_empty(&device->unplug_work.list));
Lars Ellenberg2265b472010-12-16 15:41:26 +01002091
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002092 drbd_set_defaults(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002093}
2094
2095
2096static void drbd_destroy_mempools(void)
2097{
2098 struct page *page;
2099
2100 while (drbd_pp_pool) {
2101 page = drbd_pp_pool;
2102 drbd_pp_pool = (struct page *)page_private(page);
2103 __free_page(page);
2104 drbd_pp_vacant--;
2105 }
2106
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02002107 /* D_ASSERT(device, atomic_read(&drbd_pp_vacant)==0); */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002108
Kent Overstreet0892fac2018-05-20 18:25:48 -04002109 bioset_exit(&drbd_io_bio_set);
2110 bioset_exit(&drbd_md_io_bio_set);
2111 mempool_exit(&drbd_md_io_page_pool);
2112 mempool_exit(&drbd_ee_mempool);
2113 mempool_exit(&drbd_request_mempool);
zhong jianga12fc002018-08-08 23:22:47 +08002114 kmem_cache_destroy(drbd_ee_cache);
2115 kmem_cache_destroy(drbd_request_cache);
2116 kmem_cache_destroy(drbd_bm_ext_cache);
2117 kmem_cache_destroy(drbd_al_ext_cache);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002118
Philipp Reisnerb411b362009-09-25 16:07:19 -07002119 drbd_ee_cache = NULL;
2120 drbd_request_cache = NULL;
2121 drbd_bm_ext_cache = NULL;
2122 drbd_al_ext_cache = NULL;
2123
2124 return;
2125}
2126
2127static int drbd_create_mempools(void)
2128{
2129 struct page *page;
Roland Kammerer183ece32017-08-29 10:20:46 +02002130 const int number = (DRBD_MAX_BIO_SIZE/PAGE_SIZE) * drbd_minor_count;
Kent Overstreet0892fac2018-05-20 18:25:48 -04002131 int i, ret;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002132
2133 /* caches */
2134 drbd_request_cache = kmem_cache_create(
2135 "drbd_req", sizeof(struct drbd_request), 0, 0, NULL);
2136 if (drbd_request_cache == NULL)
2137 goto Enomem;
2138
2139 drbd_ee_cache = kmem_cache_create(
Andreas Gruenbacherf6ffca92011-02-04 15:30:34 +01002140 "drbd_ee", sizeof(struct drbd_peer_request), 0, 0, NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002141 if (drbd_ee_cache == NULL)
2142 goto Enomem;
2143
2144 drbd_bm_ext_cache = kmem_cache_create(
2145 "drbd_bm", sizeof(struct bm_extent), 0, 0, NULL);
2146 if (drbd_bm_ext_cache == NULL)
2147 goto Enomem;
2148
2149 drbd_al_ext_cache = kmem_cache_create(
2150 "drbd_al", sizeof(struct lc_element), 0, 0, NULL);
2151 if (drbd_al_ext_cache == NULL)
2152 goto Enomem;
2153
2154 /* mempools */
Kent Overstreet0892fac2018-05-20 18:25:48 -04002155 ret = bioset_init(&drbd_io_bio_set, BIO_POOL_SIZE, 0, 0);
2156 if (ret)
NeilBrown8cb0def2017-06-18 14:38:58 +10002157 goto Enomem;
2158
Kent Overstreet0892fac2018-05-20 18:25:48 -04002159 ret = bioset_init(&drbd_md_io_bio_set, DRBD_MIN_POOL_PAGES, 0,
2160 BIOSET_NEED_BVECS);
2161 if (ret)
Lars Ellenberg9476f392011-02-23 17:02:01 +01002162 goto Enomem;
Lars Ellenberg9476f392011-02-23 17:02:01 +01002163
Kent Overstreet0892fac2018-05-20 18:25:48 -04002164 ret = mempool_init_page_pool(&drbd_md_io_page_pool, DRBD_MIN_POOL_PAGES, 0);
2165 if (ret)
Lars Ellenberg42818082011-02-23 12:39:46 +01002166 goto Enomem;
2167
Kent Overstreet0892fac2018-05-20 18:25:48 -04002168 ret = mempool_init_slab_pool(&drbd_request_mempool, number,
2169 drbd_request_cache);
2170 if (ret)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002171 goto Enomem;
2172
Kent Overstreet0892fac2018-05-20 18:25:48 -04002173 ret = mempool_init_slab_pool(&drbd_ee_mempool, number, drbd_ee_cache);
2174 if (ret)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002175 goto Enomem;
2176
2177 /* drbd's page pool */
2178 spin_lock_init(&drbd_pp_lock);
2179
2180 for (i = 0; i < number; i++) {
2181 page = alloc_page(GFP_HIGHUSER);
2182 if (!page)
2183 goto Enomem;
2184 set_page_private(page, (unsigned long)drbd_pp_pool);
2185 drbd_pp_pool = page;
2186 }
2187 drbd_pp_vacant = number;
2188
2189 return 0;
2190
2191Enomem:
2192 drbd_destroy_mempools(); /* in case we allocated some */
2193 return -ENOMEM;
2194}
2195
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002196static void drbd_release_all_peer_reqs(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002197{
2198 int rr;
2199
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002200 rr = drbd_free_peer_reqs(device, &device->active_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 active list found!\n", rr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002203
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002204 rr = drbd_free_peer_reqs(device, &device->sync_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002205 if (rr)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002206 drbd_err(device, "%d EEs in sync list found!\n", rr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002207
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002208 rr = drbd_free_peer_reqs(device, &device->read_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002209 if (rr)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002210 drbd_err(device, "%d EEs in read list found!\n", rr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002211
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002212 rr = drbd_free_peer_reqs(device, &device->done_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002213 if (rr)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002214 drbd_err(device, "%d EEs in done list found!\n", rr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002215
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002216 rr = drbd_free_peer_reqs(device, &device->net_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002217 if (rr)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002218 drbd_err(device, "%d EEs in net list found!\n", rr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002219}
2220
Philipp Reisner774b3052011-02-22 02:07:03 -05002221/* caution. no locking. */
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +02002222void drbd_destroy_device(struct kref *kref)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002223{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002224 struct drbd_device *device = container_of(kref, struct drbd_device, kref);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002225 struct drbd_resource *resource = device->resource;
Lars Ellenberga8ba0d62014-05-14 21:34:47 +02002226 struct drbd_peer_device *peer_device, *tmp_peer_device;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002227
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002228 del_timer_sync(&device->request_timer);
Philipp Reisnerdfa8bed2011-06-29 14:06:08 +02002229
Philipp Reisnerb411b362009-09-25 16:07:19 -07002230 /* paranoia asserts */
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02002231 D_ASSERT(device, device->open_cnt == 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002232 /* end paranoia asserts */
2233
Philipp Reisnerb411b362009-09-25 16:07:19 -07002234 /* cleanup stuff that may have been allocated during
2235 * device (re-)configuration or state changes */
2236
Lars Ellenberg63a7c8a2015-03-26 20:53:55 +01002237 drbd_backing_dev_free(device, device->ldev);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002238 device->ldev = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002239
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002240 drbd_release_all_peer_reqs(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002241
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002242 lc_destroy(device->act_log);
2243 lc_destroy(device->resync);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002244
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002245 kfree(device->p_uuid);
2246 /* device->p_uuid = NULL; */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002247
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002248 if (device->bitmap) /* should no longer be there. */
2249 drbd_bm_cleanup(device);
Lars Ellenberge37d2432014-04-01 23:53:30 +02002250 __free_page(device->md_io.page);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002251 put_disk(device->vdisk);
2252 blk_cleanup_queue(device->rq_queue);
2253 kfree(device->rs_plan_s);
Lars Ellenberga8ba0d62014-05-14 21:34:47 +02002254
2255 /* not for_each_connection(connection, resource):
2256 * those may have been cleaned up and disassociated already.
2257 */
2258 for_each_peer_device_safe(peer_device, tmp_peer_device, device) {
2259 kref_put(&peer_device->connection->kref, drbd_destroy_connection);
2260 kfree(peer_device);
2261 }
Lars Ellenbergc2258ff2014-05-14 21:35:21 +02002262 memset(device, 0xfd, sizeof(*device));
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002263 kfree(device);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002264 kref_put(&resource->kref, drbd_destroy_resource);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002265}
2266
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002267/* One global retry thread, if we need to push back some bio and have it
2268 * reinserted through our make request function.
2269 */
2270static struct retry_worker {
2271 struct workqueue_struct *wq;
2272 struct work_struct worker;
2273
2274 spinlock_t lock;
2275 struct list_head writes;
2276} retry;
2277
2278static void do_retry(struct work_struct *ws)
2279{
2280 struct retry_worker *retry = container_of(ws, struct retry_worker, worker);
2281 LIST_HEAD(writes);
2282 struct drbd_request *req, *tmp;
2283
2284 spin_lock_irq(&retry->lock);
2285 list_splice_init(&retry->writes, &writes);
2286 spin_unlock_irq(&retry->lock);
2287
2288 list_for_each_entry_safe(req, tmp, &writes, tl_requests) {
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02002289 struct drbd_device *device = req->device;
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002290 struct bio *bio = req->master_bio;
Lars Ellenberg9a278a72012-07-24 10:12:36 +02002291 bool expected;
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002292
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02002293 expected =
Lars Ellenberg9a278a72012-07-24 10:12:36 +02002294 expect(atomic_read(&req->completion_ref) == 0) &&
2295 expect(req->rq_state & RQ_POSTPONED) &&
2296 expect((req->rq_state & RQ_LOCAL_PENDING) == 0 ||
2297 (req->rq_state & RQ_LOCAL_ABORTED) != 0);
2298
2299 if (!expected)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002300 drbd_err(device, "req=%p completion_ref=%d rq_state=%x\n",
Lars Ellenberg9a278a72012-07-24 10:12:36 +02002301 req, atomic_read(&req->completion_ref),
2302 req->rq_state);
2303
2304 /* We still need to put one kref associated with the
2305 * "completion_ref" going zero in the code path that queued it
2306 * here. The request object may still be referenced by a
2307 * frozen local req->private_bio, in case we force-detached.
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002308 */
Lars Ellenberg9a278a72012-07-24 10:12:36 +02002309 kref_put(&req->kref, drbd_req_destroy);
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002310
2311 /* A single suspended or otherwise blocking device may stall
2312 * all others as well. Fortunately, this code path is to
2313 * recover from a situation that "should not happen":
2314 * concurrent writes in multi-primary setup.
2315 * In a "normal" lifecycle, this workqueue is supposed to be
2316 * destroyed without ever doing anything.
2317 * If it turns out to be an issue anyways, we can do per
2318 * resource (replication group) or per device (minor) retry
2319 * workqueues instead.
2320 */
2321
Christoph Hellwiged00aab2020-07-01 10:59:44 +02002322 /* We are not just doing submit_bio_noacct(),
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002323 * as we want to keep the start_time information. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002324 inc_ap_bio(device);
Guoqing Jiang370276b2021-01-21 15:21:50 +01002325 __drbd_make_request(device, bio);
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002326 }
2327}
2328
Lars Ellenberg844a6ae72013-11-22 12:52:03 +01002329/* called via drbd_req_put_completion_ref(),
2330 * holds resource->req_lock */
Lars Ellenberg9d05e7c2012-07-17 10:05:04 +02002331void drbd_restart_request(struct drbd_request *req)
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002332{
2333 unsigned long flags;
2334 spin_lock_irqsave(&retry.lock, flags);
2335 list_move_tail(&req->tl_requests, &retry.writes);
2336 spin_unlock_irqrestore(&retry.lock, flags);
2337
2338 /* Drop the extra reference that would otherwise
2339 * have been dropped by complete_master_bio.
2340 * do_retry() needs to grab a new one. */
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02002341 dec_ap_bio(req->device);
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002342
2343 queue_work(retry.wq, &retry.worker);
2344}
2345
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002346void drbd_destroy_resource(struct kref *kref)
2347{
2348 struct drbd_resource *resource =
2349 container_of(kref, struct drbd_resource, kref);
2350
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002351 idr_destroy(&resource->devices);
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +02002352 free_cpumask_var(resource->cpu_mask);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002353 kfree(resource->name);
Lars Ellenbergc2258ff2014-05-14 21:35:21 +02002354 memset(resource, 0xf2, sizeof(*resource));
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002355 kfree(resource);
2356}
2357
2358void drbd_free_resource(struct drbd_resource *resource)
2359{
2360 struct drbd_connection *connection, *tmp;
2361
2362 for_each_connection_safe(connection, tmp, resource) {
2363 list_del(&connection->connections);
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002364 drbd_debugfs_connection_cleanup(connection);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002365 kref_put(&connection->kref, drbd_destroy_connection);
2366 }
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002367 drbd_debugfs_resource_cleanup(resource);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002368 kref_put(&resource->kref, drbd_destroy_resource);
2369}
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002370
Philipp Reisnerb411b362009-09-25 16:07:19 -07002371static void drbd_cleanup(void)
2372{
2373 unsigned int i;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002374 struct drbd_device *device;
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002375 struct drbd_resource *resource, *tmp;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002376
Lars Ellenberg17a93f32010-11-24 10:37:35 +01002377 /* first remove proc,
2378 * drbdsetup uses it's presence to detect
2379 * whether DRBD is loaded.
2380 * If we would get stuck in proc removal,
2381 * but have netlink already deregistered,
2382 * some drbdsetup commands may wait forever
2383 * for an answer.
2384 */
2385 if (drbd_proc)
2386 remove_proc_entry("drbd", NULL);
2387
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002388 if (retry.wq)
2389 destroy_workqueue(retry.wq);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002390
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002391 drbd_genl_unregister();
Philipp Reisnerb411b362009-09-25 16:07:19 -07002392
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002393 idr_for_each_entry(&drbd_devices, device, i)
Andreas Gruenbacherf82795d2011-07-03 23:32:26 +02002394 drbd_delete_device(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002395
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002396 /* not _rcu since, no other updater anymore. Genl already unregistered */
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002397 for_each_resource_safe(resource, tmp, &drbd_resources) {
2398 list_del(&resource->resources);
2399 drbd_free_resource(resource);
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002400 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07002401
Lars Ellenberg3f1a1b72017-08-29 10:20:41 +02002402 drbd_debugfs_cleanup();
2403
Philipp Reisner81a5d602011-02-22 19:53:16 -05002404 drbd_destroy_mempools();
Philipp Reisnerb411b362009-09-25 16:07:19 -07002405 unregister_blkdev(DRBD_MAJOR, "drbd");
2406
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +02002407 idr_destroy(&drbd_devices);
Philipp Reisner81a5d602011-02-22 19:53:16 -05002408
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002409 pr_info("module cleanup done.\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07002410}
2411
Philipp Reisner6699b652011-02-09 11:10:24 +01002412static void drbd_init_workqueue(struct drbd_work_queue* wq)
2413{
Philipp Reisner6699b652011-02-09 11:10:24 +01002414 spin_lock_init(&wq->q_lock);
2415 INIT_LIST_HEAD(&wq->q);
Lars Ellenberg8c0785a2011-10-19 11:50:57 +02002416 init_waitqueue_head(&wq->q_wait);
Philipp Reisner6699b652011-02-09 11:10:24 +01002417}
2418
Andreas Gruenbacherb5043c52011-07-28 15:56:02 +02002419struct completion_work {
2420 struct drbd_work w;
2421 struct completion done;
2422};
2423
2424static int w_complete(struct drbd_work *w, int cancel)
2425{
2426 struct completion_work *completion_work =
2427 container_of(w, struct completion_work, w);
2428
2429 complete(&completion_work->done);
2430 return 0;
2431}
2432
2433void drbd_flush_workqueue(struct drbd_work_queue *work_queue)
2434{
2435 struct completion_work completion_work;
2436
2437 completion_work.w.cb = w_complete;
2438 init_completion(&completion_work.done);
2439 drbd_queue_work(work_queue, &completion_work.w);
2440 wait_for_completion(&completion_work.done);
2441}
2442
Andreas Gruenbacher4bc76042011-06-13 14:27:45 +02002443struct drbd_resource *drbd_find_resource(const char *name)
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002444{
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002445 struct drbd_resource *resource;
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002446
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002447 if (!name || !name[0])
2448 return NULL;
2449
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002450 rcu_read_lock();
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002451 for_each_resource_rcu(resource, &drbd_resources) {
2452 if (!strcmp(resource->name, name)) {
Andreas Gruenbacher4bc76042011-06-13 14:27:45 +02002453 kref_get(&resource->kref);
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002454 goto found;
Philipp Reisner0ace9df2011-04-24 10:53:19 +02002455 }
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002456 }
Andreas Gruenbacher4bc76042011-06-13 14:27:45 +02002457 resource = NULL;
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002458found:
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002459 rcu_read_unlock();
Andreas Gruenbacher4bc76042011-06-13 14:27:45 +02002460 return resource;
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002461}
2462
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002463struct drbd_connection *conn_get_by_addrs(void *my_addr, int my_addr_len,
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002464 void *peer_addr, int peer_addr_len)
2465{
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002466 struct drbd_resource *resource;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002467 struct drbd_connection *connection;
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002468
2469 rcu_read_lock();
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002470 for_each_resource_rcu(resource, &drbd_resources) {
2471 for_each_connection_rcu(connection, resource) {
2472 if (connection->my_addr_len == my_addr_len &&
2473 connection->peer_addr_len == peer_addr_len &&
2474 !memcmp(&connection->my_addr, my_addr, my_addr_len) &&
2475 !memcmp(&connection->peer_addr, peer_addr, peer_addr_len)) {
2476 kref_get(&connection->kref);
2477 goto found;
2478 }
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002479 }
2480 }
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002481 connection = NULL;
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002482found:
2483 rcu_read_unlock();
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002484 return connection;
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002485}
2486
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002487static int drbd_alloc_socket(struct drbd_socket *socket)
2488{
2489 socket->rbuf = (void *) __get_free_page(GFP_KERNEL);
2490 if (!socket->rbuf)
2491 return -ENOMEM;
Andreas Gruenbacher5a87d922011-03-24 21:17:52 +01002492 socket->sbuf = (void *) __get_free_page(GFP_KERNEL);
2493 if (!socket->sbuf)
2494 return -ENOMEM;
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002495 return 0;
2496}
2497
2498static void drbd_free_socket(struct drbd_socket *socket)
2499{
Andreas Gruenbacher5a87d922011-03-24 21:17:52 +01002500 free_page((unsigned long) socket->sbuf);
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002501 free_page((unsigned long) socket->rbuf);
2502}
2503
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002504void conn_free_crypto(struct drbd_connection *connection)
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002505{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002506 drbd_free_sock(connection);
Philipp Reisner1d041222011-04-22 15:20:23 +02002507
Kees Cook3d0e6372018-08-06 16:32:16 -07002508 crypto_free_shash(connection->csums_tfm);
2509 crypto_free_shash(connection->verify_tfm);
Herbert Xu9534d672016-01-24 21:19:21 +08002510 crypto_free_shash(connection->cram_hmac_tfm);
Kees Cook3d0e6372018-08-06 16:32:16 -07002511 crypto_free_shash(connection->integrity_tfm);
2512 crypto_free_shash(connection->peer_integrity_tfm);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002513 kfree(connection->int_dig_in);
2514 kfree(connection->int_dig_vv);
Philipp Reisner1d041222011-04-22 15:20:23 +02002515
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002516 connection->csums_tfm = NULL;
2517 connection->verify_tfm = NULL;
2518 connection->cram_hmac_tfm = NULL;
2519 connection->integrity_tfm = NULL;
2520 connection->peer_integrity_tfm = NULL;
2521 connection->int_dig_in = NULL;
2522 connection->int_dig_vv = NULL;
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002523}
2524
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002525int set_resource_options(struct drbd_resource *resource, struct res_opts *res_opts)
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002526{
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002527 struct drbd_connection *connection;
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002528 cpumask_var_t new_cpu_mask;
2529 int err;
2530
2531 if (!zalloc_cpumask_var(&new_cpu_mask, GFP_KERNEL))
2532 return -ENOMEM;
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002533
2534 /* silently ignore cpu mask on UP kernel */
2535 if (nr_cpu_ids > 1 && res_opts->cpu_mask[0] != 0) {
Andreas Gruenbacherf44d0432011-07-22 13:53:19 +02002536 err = bitmap_parse(res_opts->cpu_mask, DRBD_CPU_MASK_SIZE,
Philipp Reisnerc5b005a2012-04-30 12:53:52 +02002537 cpumask_bits(new_cpu_mask), nr_cpu_ids);
Lars Ellenberg1e391522014-05-19 09:52:02 +02002538 if (err == -EOVERFLOW) {
2539 /* So what. mask it out. */
2540 cpumask_var_t tmp_cpu_mask;
2541 if (zalloc_cpumask_var(&tmp_cpu_mask, GFP_KERNEL)) {
2542 cpumask_setall(tmp_cpu_mask);
2543 cpumask_and(new_cpu_mask, new_cpu_mask, tmp_cpu_mask);
2544 drbd_warn(resource, "Overflow in bitmap_parse(%.12s%s), truncating to %u bits\n",
2545 res_opts->cpu_mask,
2546 strlen(res_opts->cpu_mask) > 12 ? "..." : "",
2547 nr_cpu_ids);
2548 free_cpumask_var(tmp_cpu_mask);
2549 err = 0;
2550 }
2551 }
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002552 if (err) {
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +02002553 drbd_warn(resource, "bitmap_parse() failed with %d\n", err);
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002554 /* retcode = ERR_CPU_MASK_PARSE; */
2555 goto fail;
2556 }
2557 }
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002558 resource->res_opts = *res_opts;
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +02002559 if (cpumask_empty(new_cpu_mask))
2560 drbd_calc_cpu_mask(&new_cpu_mask);
2561 if (!cpumask_equal(resource->cpu_mask, new_cpu_mask)) {
2562 cpumask_copy(resource->cpu_mask, new_cpu_mask);
2563 for_each_connection_rcu(connection, resource) {
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002564 connection->receiver.reset_cpu_mask = 1;
Philipp Reisner1c03e522015-03-16 15:01:00 +01002565 connection->ack_receiver.reset_cpu_mask = 1;
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002566 connection->worker.reset_cpu_mask = 1;
2567 }
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002568 }
2569 err = 0;
2570
2571fail:
2572 free_cpumask_var(new_cpu_mask);
2573 return err;
2574
2575}
2576
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002577struct drbd_resource *drbd_create_resource(const char *name)
2578{
2579 struct drbd_resource *resource;
2580
Andreas Gruenbacher6bbf53c2011-07-08 01:19:44 +02002581 resource = kzalloc(sizeof(struct drbd_resource), GFP_KERNEL);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002582 if (!resource)
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +02002583 goto fail;
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002584 resource->name = kstrdup(name, GFP_KERNEL);
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +02002585 if (!resource->name)
2586 goto fail_free_resource;
2587 if (!zalloc_cpumask_var(&resource->cpu_mask, GFP_KERNEL))
2588 goto fail_free_name;
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002589 kref_init(&resource->kref);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002590 idr_init(&resource->devices);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002591 INIT_LIST_HEAD(&resource->connections);
Andreas Gruenbacherf6ba8632014-08-13 18:33:55 +02002592 resource->write_ordering = WO_BDEV_FLUSH;
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002593 list_add_tail_rcu(&resource->resources, &drbd_resources);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02002594 mutex_init(&resource->conf_update);
Lars Ellenberg9e276872014-04-28 18:43:22 +02002595 mutex_init(&resource->adm_mutex);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02002596 spin_lock_init(&resource->req_lock);
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002597 drbd_debugfs_resource_add(resource);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002598 return resource;
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +02002599
2600fail_free_name:
2601 kfree(resource->name);
2602fail_free_resource:
2603 kfree(resource);
2604fail:
2605 return NULL;
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002606}
2607
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002608/* caller must be under adm_mutex */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002609struct drbd_connection *conn_create(const char *name, struct res_opts *res_opts)
Philipp Reisner21114382011-01-19 12:26:59 +01002610{
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002611 struct drbd_resource *resource;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002612 struct drbd_connection *connection;
Philipp Reisner21114382011-01-19 12:26:59 +01002613
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002614 connection = kzalloc(sizeof(struct drbd_connection), GFP_KERNEL);
2615 if (!connection)
Philipp Reisner21114382011-01-19 12:26:59 +01002616 return NULL;
2617
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002618 if (drbd_alloc_socket(&connection->data))
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002619 goto fail;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002620 if (drbd_alloc_socket(&connection->meta))
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002621 goto fail;
2622
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002623 connection->current_epoch = kzalloc(sizeof(struct drbd_epoch), GFP_KERNEL);
2624 if (!connection->current_epoch)
Philipp Reisner12038a32011-11-09 19:18:00 +01002625 goto fail;
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01002626
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002627 INIT_LIST_HEAD(&connection->transfer_log);
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01002628
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002629 INIT_LIST_HEAD(&connection->current_epoch->list);
2630 connection->epochs = 1;
2631 spin_lock_init(&connection->epoch_lock);
Philipp Reisner4b0007c2011-11-09 20:12:34 +01002632
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002633 connection->send.seen_any_write_yet = false;
2634 connection->send.current_epoch_nr = 0;
2635 connection->send.current_epoch_writes = 0;
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01002636
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002637 resource = drbd_create_resource(name);
2638 if (!resource)
2639 goto fail;
2640
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002641 connection->cstate = C_STANDALONE;
2642 mutex_init(&connection->cstate_mutex);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002643 init_waitqueue_head(&connection->ping_wait);
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02002644 idr_init(&connection->peer_devices);
Philipp Reisnerb2fb6dbe2011-01-19 13:48:44 +01002645
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002646 drbd_init_workqueue(&connection->sender_work);
2647 mutex_init(&connection->data.mutex);
2648 mutex_init(&connection->meta.mutex);
Philipp Reisner6699b652011-02-09 11:10:24 +01002649
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +02002650 drbd_thread_init(resource, &connection->receiver, drbd_receiver, "receiver");
2651 connection->receiver.connection = connection;
2652 drbd_thread_init(resource, &connection->worker, drbd_worker, "worker");
2653 connection->worker.connection = connection;
Philipp Reisner1c03e522015-03-16 15:01:00 +01002654 drbd_thread_init(resource, &connection->ack_receiver, drbd_ack_receiver, "ack_recv");
2655 connection->ack_receiver.connection = connection;
Philipp Reisner392c8802011-02-09 10:33:31 +01002656
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002657 kref_init(&connection->kref);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002658
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002659 connection->resource = resource;
Philipp Reisner21114382011-01-19 12:26:59 +01002660
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002661 if (set_resource_options(resource, res_opts))
2662 goto fail_resource;
2663
2664 kref_get(&resource->kref);
2665 list_add_tail_rcu(&connection->connections, &resource->connections);
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002666 drbd_debugfs_connection_add(connection);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002667 return connection;
Philipp Reisner21114382011-01-19 12:26:59 +01002668
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002669fail_resource:
2670 list_del(&resource->resources);
2671 drbd_free_resource(resource);
Philipp Reisner21114382011-01-19 12:26:59 +01002672fail:
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002673 kfree(connection->current_epoch);
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);
Philipp Reisner21114382011-01-19 12:26:59 +01002677 return NULL;
2678}
2679
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +02002680void drbd_destroy_connection(struct kref *kref)
Philipp Reisner21114382011-01-19 12:26:59 +01002681{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002682 struct drbd_connection *connection = container_of(kref, struct drbd_connection, kref);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002683 struct drbd_resource *resource = connection->resource;
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002684
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002685 if (atomic_read(&connection->current_epoch->epoch_size) != 0)
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +02002686 drbd_err(connection, "epoch_size:%d\n", atomic_read(&connection->current_epoch->epoch_size));
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002687 kfree(connection->current_epoch);
Philipp Reisner12038a32011-11-09 19:18:00 +01002688
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02002689 idr_destroy(&connection->peer_devices);
Philipp Reisner21114382011-01-19 12:26:59 +01002690
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002691 drbd_free_socket(&connection->meta);
2692 drbd_free_socket(&connection->data);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002693 kfree(connection->int_dig_in);
2694 kfree(connection->int_dig_vv);
Lars Ellenbergc2258ff2014-05-14 21:35:21 +02002695 memset(connection, 0xfc, sizeof(*connection));
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002696 kfree(connection);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002697 kref_put(&resource->kref, drbd_destroy_resource);
Philipp Reisner21114382011-01-19 12:26:59 +01002698}
2699
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002700static int init_submitter(struct drbd_device *device)
Lars Ellenberg113fef92013-03-22 18:14:40 -06002701{
2702 /* opencoded create_singlethread_workqueue(),
2703 * to be able to say "drbd%d", ..., minor */
Lars Ellenberg39e91a62015-03-24 10:40:26 +01002704 device->submit.wq =
2705 alloc_ordered_workqueue("drbd%u_submit", WQ_MEM_RECLAIM, device->minor);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002706 if (!device->submit.wq)
Lars Ellenberg113fef92013-03-22 18:14:40 -06002707 return -ENOMEM;
2708
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002709 INIT_WORK(&device->submit.worker, do_submit);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002710 INIT_LIST_HEAD(&device->submit.writes);
Lars Ellenberg113fef92013-03-22 18:14:40 -06002711 return 0;
2712}
2713
Lars Ellenberga910b122014-04-28 18:43:21 +02002714enum drbd_ret_code drbd_create_device(struct drbd_config_context *adm_ctx, unsigned int minor)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002715{
Lars Ellenberga910b122014-04-28 18:43:21 +02002716 struct drbd_resource *resource = adm_ctx->resource;
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002717 struct drbd_connection *connection;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002718 struct drbd_device *device;
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002719 struct drbd_peer_device *peer_device, *tmp_peer_device;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002720 struct gendisk *disk;
2721 struct request_queue *q;
Andreas Gruenbacher93e4bf72013-05-23 14:57:17 +02002722 int id;
Lars Ellenberga910b122014-04-28 18:43:21 +02002723 int vnr = adm_ctx->volume;
Lars Ellenberg8432b312011-03-08 16:11:16 +01002724 enum drbd_ret_code err = ERR_NOMEM;
Philipp Reisner774b3052011-02-22 02:07:03 -05002725
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002726 device = minor_to_device(minor);
2727 if (device)
Andreas Gruenbacher179e20b82014-11-10 17:21:09 +01002728 return ERR_MINOR_OR_VOLUME_EXISTS;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002729
2730 /* GFP_KERNEL, we are outside of all write-out paths */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002731 device = kzalloc(sizeof(struct drbd_device), GFP_KERNEL);
2732 if (!device)
Philipp Reisner774b3052011-02-22 02:07:03 -05002733 return ERR_NOMEM;
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002734 kref_init(&device->kref);
2735
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002736 kref_get(&resource->kref);
2737 device->resource = resource;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002738 device->minor = minor;
2739 device->vnr = vnr;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002740
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002741 drbd_init_set_defaults(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002742
Christoph Hellwigc62b37d2020-07-01 10:59:43 +02002743 q = blk_alloc_queue(NUMA_NO_NODE);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002744 if (!q)
2745 goto out_no_q;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002746 device->rq_queue = q;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002747
2748 disk = alloc_disk(1);
2749 if (!disk)
2750 goto out_no_disk;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002751 device->vdisk = disk;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002752
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01002753 set_disk_ro(disk, true);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002754
2755 disk->queue = q;
2756 disk->major = DRBD_MAJOR;
2757 disk->first_minor = minor;
2758 disk->fops = &drbd_ops;
2759 sprintf(disk->disk_name, "drbd%d", minor);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002760 disk->private_data = device;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002761
Jens Axboefe8fb752016-03-30 10:09:01 -06002762 blk_queue_write_cache(q, true, true);
Philipp Reisner99432fc2011-05-20 16:39:13 +02002763 /* Setting the max_hw_sectors to an odd value of 8kibyte here
2764 This triggers a max_bio_size message upon first attach or connect */
2765 blk_queue_max_hw_sectors(q, DRBD_MAX_BIO_SIZE_SAFE >> 8);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002766
Lars Ellenberge37d2432014-04-01 23:53:30 +02002767 device->md_io.page = alloc_page(GFP_KERNEL);
2768 if (!device->md_io.page)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002769 goto out_no_io_page;
2770
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002771 if (drbd_bm_init(device))
Philipp Reisnerb411b362009-09-25 16:07:19 -07002772 goto out_no_bitmap;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002773 device->read_requests = RB_ROOT;
2774 device->write_requests = RB_ROOT;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002775
Andreas Gruenbacher93e4bf72013-05-23 14:57:17 +02002776 id = idr_alloc(&drbd_devices, device, minor, minor + 1, GFP_KERNEL);
2777 if (id < 0) {
Andreas Gruenbacherf221f4b2014-11-10 17:21:10 +01002778 if (id == -ENOSPC)
Andreas Gruenbacher179e20b82014-11-10 17:21:09 +01002779 err = ERR_MINOR_OR_VOLUME_EXISTS;
Lars Ellenberg8432b312011-03-08 16:11:16 +01002780 goto out_no_minor_idr;
Tejun Heo56de2102013-02-27 17:04:01 -08002781 }
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002782 kref_get(&device->kref);
2783
2784 id = idr_alloc(&resource->devices, device, vnr, vnr + 1, GFP_KERNEL);
2785 if (id < 0) {
Andreas Gruenbacherf221f4b2014-11-10 17:21:10 +01002786 if (id == -ENOSPC)
Andreas Gruenbacher179e20b82014-11-10 17:21:09 +01002787 err = ERR_MINOR_OR_VOLUME_EXISTS;
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002788 goto out_idr_remove_minor;
2789 }
2790 kref_get(&device->kref);
Tejun Heo56de2102013-02-27 17:04:01 -08002791
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002792 INIT_LIST_HEAD(&device->peer_devices);
Lars Ellenberg4ce49262014-05-06 00:44:59 +02002793 INIT_LIST_HEAD(&device->pending_bitmap_io);
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002794 for_each_connection(connection, resource) {
2795 peer_device = kzalloc(sizeof(struct drbd_peer_device), GFP_KERNEL);
2796 if (!peer_device)
2797 goto out_idr_remove_from_resource;
2798 peer_device->connection = connection;
2799 peer_device->device = device;
2800
2801 list_add(&peer_device->peer_devices, &device->peer_devices);
2802 kref_get(&device->kref);
2803
2804 id = idr_alloc(&connection->peer_devices, peer_device, vnr, vnr + 1, GFP_KERNEL);
2805 if (id < 0) {
Andreas Gruenbacherf221f4b2014-11-10 17:21:10 +01002806 if (id == -ENOSPC)
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002807 err = ERR_INVALID_REQUEST;
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002808 goto out_idr_remove_from_resource;
Tejun Heo56de2102013-02-27 17:04:01 -08002809 }
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002810 kref_get(&connection->kref);
Philipp Reisner668700b2015-03-16 16:08:29 +01002811 INIT_WORK(&peer_device->send_acks_work, drbd_send_acks_wf);
Lars Ellenberg569083c2011-03-07 09:49:02 +01002812 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07002813
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002814 if (init_submitter(device)) {
Lars Ellenberg113fef92013-03-22 18:14:40 -06002815 err = ERR_NOMEM;
Lars Ellenberg113fef92013-03-22 18:14:40 -06002816 goto out_idr_remove_vol;
2817 }
2818
Philipp Reisner774b3052011-02-22 02:07:03 -05002819 add_disk(disk);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002820
Philipp Reisner2325eb62011-03-15 16:56:18 +01002821 /* inherit the connection state */
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002822 device->state.conn = first_connection(resource)->cstate;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02002823 if (device->state.conn == C_WF_REPORT_PARAMS) {
2824 for_each_peer_device(peer_device, device)
2825 drbd_connected(peer_device);
2826 }
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002827 /* move to create_peer_device() */
2828 for_each_peer_device(peer_device, device)
2829 drbd_debugfs_peer_device_add(peer_device);
2830 drbd_debugfs_device_add(device);
Philipp Reisner774b3052011-02-22 02:07:03 -05002831 return NO_ERROR;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002832
Lars Ellenberg113fef92013-03-22 18:14:40 -06002833out_idr_remove_vol:
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02002834 idr_remove(&connection->peer_devices, vnr);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002835out_idr_remove_from_resource:
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002836 for_each_connection(connection, resource) {
Matthew Wilcoxd3e709e2016-12-22 13:30:22 -05002837 peer_device = idr_remove(&connection->peer_devices, vnr);
2838 if (peer_device)
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002839 kref_put(&connection->kref, drbd_destroy_connection);
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002840 }
2841 for_each_peer_device_safe(peer_device, tmp_peer_device, device) {
2842 list_del(&peer_device->peer_devices);
2843 kfree(peer_device);
2844 }
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002845 idr_remove(&resource->devices, vnr);
Lars Ellenberg8432b312011-03-08 16:11:16 +01002846out_idr_remove_minor:
Andreas Gruenbacher93e4bf72013-05-23 14:57:17 +02002847 idr_remove(&drbd_devices, minor);
Lars Ellenberg569083c2011-03-07 09:49:02 +01002848 synchronize_rcu();
Lars Ellenberg8432b312011-03-08 16:11:16 +01002849out_no_minor_idr:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002850 drbd_bm_cleanup(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002851out_no_bitmap:
Lars Ellenberge37d2432014-04-01 23:53:30 +02002852 __free_page(device->md_io.page);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002853out_no_io_page:
2854 put_disk(disk);
2855out_no_disk:
2856 blk_cleanup_queue(q);
2857out_no_q:
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002858 kref_put(&resource->kref, drbd_destroy_resource);
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02002859 kfree(device);
Lars Ellenberg8432b312011-03-08 16:11:16 +01002860 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002861}
2862
Andreas Gruenbacherf82795d2011-07-03 23:32:26 +02002863void drbd_delete_device(struct drbd_device *device)
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002864{
2865 struct drbd_resource *resource = device->resource;
2866 struct drbd_connection *connection;
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002867 struct drbd_peer_device *peer_device;
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002868
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002869 /* move to free_peer_device() */
2870 for_each_peer_device(peer_device, device)
2871 drbd_debugfs_peer_device_cleanup(peer_device);
2872 drbd_debugfs_device_cleanup(device);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002873 for_each_connection(connection, resource) {
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02002874 idr_remove(&connection->peer_devices, device->vnr);
Peter Zijlstrabdfafc42016-11-14 17:34:19 +01002875 kref_put(&device->kref, drbd_destroy_device);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002876 }
2877 idr_remove(&resource->devices, device->vnr);
Peter Zijlstrabdfafc42016-11-14 17:34:19 +01002878 kref_put(&device->kref, drbd_destroy_device);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002879 idr_remove(&drbd_devices, device_to_minor(device));
Peter Zijlstrabdfafc42016-11-14 17:34:19 +01002880 kref_put(&device->kref, drbd_destroy_device);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002881 del_gendisk(device->vdisk);
2882 synchronize_rcu();
Peter Zijlstrabdfafc42016-11-14 17:34:19 +01002883 kref_put(&device->kref, drbd_destroy_device);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002884}
2885
Lars Ellenberg8ce953a2014-02-27 09:46:18 +01002886static int __init drbd_init(void)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002887{
2888 int err;
2889
Roland Kammerer183ece32017-08-29 10:20:46 +02002890 if (drbd_minor_count < DRBD_MINOR_COUNT_MIN || drbd_minor_count > DRBD_MINOR_COUNT_MAX) {
2891 pr_err("invalid minor_count (%d)\n", drbd_minor_count);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002892#ifdef MODULE
2893 return -EINVAL;
2894#else
Philipp Reisner5fc1efd2017-08-30 13:47:11 +02002895 drbd_minor_count = DRBD_MINOR_COUNT_DEF;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002896#endif
2897 }
2898
Philipp Reisnerb411b362009-09-25 16:07:19 -07002899 err = register_blkdev(DRBD_MAJOR, "drbd");
2900 if (err) {
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002901 pr_err("unable to register block device major %d\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -07002902 DRBD_MAJOR);
2903 return err;
2904 }
2905
Philipp Reisnerb411b362009-09-25 16:07:19 -07002906 /*
2907 * allocate all necessary structs
2908 */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002909 init_waitqueue_head(&drbd_pp_wait);
2910
2911 drbd_proc = NULL; /* play safe for drbd_cleanup */
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +02002912 idr_init(&drbd_devices);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002913
Andreas Gruenbacher28bc3b82014-08-14 18:33:30 +02002914 mutex_init(&resources_mutex);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002915 INIT_LIST_HEAD(&drbd_resources);
Lars Ellenberg69babf02013-10-23 10:59:15 +02002916
2917 err = drbd_genl_register();
2918 if (err) {
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002919 pr_err("unable to register generic netlink family\n");
Lars Ellenberg69babf02013-10-23 10:59:15 +02002920 goto fail;
2921 }
2922
Philipp Reisnerb411b362009-09-25 16:07:19 -07002923 err = drbd_create_mempools();
2924 if (err)
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002925 goto fail;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002926
Wei Yongjun6110d702013-06-25 16:50:04 +02002927 err = -ENOMEM;
Linus Torvaldscf626b02018-06-04 10:00:01 -07002928 drbd_proc = proc_create_single("drbd", S_IFREG | 0444 , NULL, drbd_seq_show);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002929 if (!drbd_proc) {
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002930 pr_err("unable to register proc file\n");
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002931 goto fail;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002932 }
2933
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002934 retry.wq = create_singlethread_workqueue("drbd-reissue");
2935 if (!retry.wq) {
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002936 pr_err("unable to create retry workqueue\n");
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002937 goto fail;
2938 }
2939 INIT_WORK(&retry.worker, do_retry);
2940 spin_lock_init(&retry.lock);
2941 INIT_LIST_HEAD(&retry.writes);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002942
Greg Kroah-Hartmand27e84a2019-06-18 17:45:49 +02002943 drbd_debugfs_init();
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002944
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002945 pr_info("initialized. "
Philipp Reisnerb411b362009-09-25 16:07:19 -07002946 "Version: " REL_VERSION " (api:%d/proto:%d-%d)\n",
2947 API_VERSION, PRO_VERSION_MIN, PRO_VERSION_MAX);
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002948 pr_info("%s\n", drbd_buildtag());
2949 pr_info("registered as block device major %d\n", DRBD_MAJOR);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002950 return 0; /* Success! */
2951
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002952fail:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002953 drbd_cleanup();
2954 if (err == -ENOMEM)
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002955 pr_err("ran out of memory\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07002956 else
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002957 pr_err("initialization failure\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07002958 return err;
2959}
2960
Lars Ellenbergf4188152014-05-05 23:05:47 +02002961static void drbd_free_one_sock(struct drbd_socket *ds)
2962{
2963 struct socket *s;
2964 mutex_lock(&ds->mutex);
2965 s = ds->socket;
2966 ds->socket = NULL;
2967 mutex_unlock(&ds->mutex);
2968 if (s) {
2969 /* so debugfs does not need to mutex_lock() */
2970 synchronize_rcu();
2971 kernel_sock_shutdown(s, SHUT_RDWR);
2972 sock_release(s);
2973 }
2974}
2975
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002976void drbd_free_sock(struct drbd_connection *connection)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002977{
Lars Ellenbergf4188152014-05-05 23:05:47 +02002978 if (connection->data.socket)
2979 drbd_free_one_sock(&connection->data);
2980 if (connection->meta.socket)
2981 drbd_free_one_sock(&connection->meta);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002982}
2983
Philipp Reisnerb411b362009-09-25 16:07:19 -07002984/* meta data management */
2985
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002986void conn_md_sync(struct drbd_connection *connection)
Philipp Reisner19fffd72012-08-28 16:48:03 +02002987{
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02002988 struct drbd_peer_device *peer_device;
Philipp Reisner19fffd72012-08-28 16:48:03 +02002989 int vnr;
2990
2991 rcu_read_lock();
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02002992 idr_for_each_entry(&connection->peer_devices, peer_device, vnr) {
2993 struct drbd_device *device = peer_device->device;
2994
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002995 kref_get(&device->kref);
Philipp Reisner19fffd72012-08-28 16:48:03 +02002996 rcu_read_unlock();
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002997 drbd_md_sync(device);
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +02002998 kref_put(&device->kref, drbd_destroy_device);
Philipp Reisner19fffd72012-08-28 16:48:03 +02002999 rcu_read_lock();
3000 }
3001 rcu_read_unlock();
3002}
3003
Lars Ellenbergae8bf312013-03-19 18:16:43 +01003004/* aligned 4kByte */
Philipp Reisnerb411b362009-09-25 16:07:19 -07003005struct meta_data_on_disk {
Lars Ellenbergcccac982013-03-19 18:16:46 +01003006 u64 la_size_sect; /* last agreed size. */
Philipp Reisnerb411b362009-09-25 16:07:19 -07003007 u64 uuid[UI_SIZE]; /* UUIDs. */
3008 u64 device_uuid;
3009 u64 reserved_u64_1;
3010 u32 flags; /* MDF */
3011 u32 magic;
3012 u32 md_size_sect;
3013 u32 al_offset; /* offset to this block */
Lars Ellenbergae8bf312013-03-19 18:16:43 +01003014 u32 al_nr_extents; /* important for restoring the AL (userspace) */
Lars Ellenbergf3990022011-03-23 14:31:09 +01003015 /* `-- act_log->nr_elements <-- ldev->dc.al_extents */
Philipp Reisnerb411b362009-09-25 16:07:19 -07003016 u32 bm_offset; /* offset to the bitmap, from here */
3017 u32 bm_bytes_per_bit; /* BM_BLOCK_SIZE */
Philipp Reisner99432fc2011-05-20 16:39:13 +02003018 u32 la_peer_max_bio_size; /* last peer max_bio_size */
Philipp Reisnerb411b362009-09-25 16:07:19 -07003019
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003020 /* see al_tr_number_to_on_disk_sector() */
3021 u32 al_stripes;
3022 u32 al_stripe_size_4k;
3023
3024 u8 reserved_u8[4096 - (7*8 + 10*4)];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003025} __packed;
3026
Philipp Reisnerd752b262013-06-25 16:50:08 +02003027
3028
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003029void drbd_md_write(struct drbd_device *device, void *b)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003030{
Philipp Reisnerd752b262013-06-25 16:50:08 +02003031 struct meta_data_on_disk *buffer = b;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003032 sector_t sector;
3033 int i;
3034
Lars Ellenbergae8bf312013-03-19 18:16:43 +01003035 memset(buffer, 0, sizeof(*buffer));
Philipp Reisnerb411b362009-09-25 16:07:19 -07003036
Christoph Hellwig155bd9d2020-09-25 18:06:17 +02003037 buffer->la_size_sect = cpu_to_be64(get_capacity(device->vdisk));
Philipp Reisnerb411b362009-09-25 16:07:19 -07003038 for (i = UI_CURRENT; i < UI_SIZE; i++)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003039 buffer->uuid[i] = cpu_to_be64(device->ldev->md.uuid[i]);
3040 buffer->flags = cpu_to_be32(device->ldev->md.flags);
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003041 buffer->magic = cpu_to_be32(DRBD_MD_MAGIC_84_UNCLEAN);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003042
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003043 buffer->md_size_sect = cpu_to_be32(device->ldev->md.md_size_sect);
3044 buffer->al_offset = cpu_to_be32(device->ldev->md.al_offset);
3045 buffer->al_nr_extents = cpu_to_be32(device->act_log->nr_elements);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003046 buffer->bm_bytes_per_bit = cpu_to_be32(BM_BLOCK_SIZE);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003047 buffer->device_uuid = cpu_to_be64(device->ldev->md.device_uuid);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003048
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003049 buffer->bm_offset = cpu_to_be32(device->ldev->md.bm_offset);
3050 buffer->la_peer_max_bio_size = cpu_to_be32(device->peer_max_bio_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003051
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003052 buffer->al_stripes = cpu_to_be32(device->ldev->md.al_stripes);
3053 buffer->al_stripe_size_4k = cpu_to_be32(device->ldev->md.al_stripe_size_4k);
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003054
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02003055 D_ASSERT(device, drbd_md_ss(device->ldev) == device->ldev->md.md_offset);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003056 sector = device->ldev->md.md_offset;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003057
Mike Christiebb3cc852016-06-05 14:32:06 -05003058 if (drbd_md_sync_page_io(device, device->ldev, sector, REQ_OP_WRITE)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07003059 /* this was a try anyways ... */
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003060 drbd_err(device, "meta data update failed!\n");
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003061 drbd_chk_io_error(device, 1, DRBD_META_IO_ERROR);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003062 }
Philipp Reisnerd752b262013-06-25 16:50:08 +02003063}
3064
3065/**
3066 * drbd_md_sync() - Writes the meta data super block if the MD_DIRTY flag bit is set
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003067 * @device: DRBD device.
Philipp Reisnerd752b262013-06-25 16:50:08 +02003068 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003069void drbd_md_sync(struct drbd_device *device)
Philipp Reisnerd752b262013-06-25 16:50:08 +02003070{
3071 struct meta_data_on_disk *buffer;
3072
3073 /* Don't accidentally change the DRBD meta data layout. */
3074 BUILD_BUG_ON(UI_SIZE != 4);
3075 BUILD_BUG_ON(sizeof(struct meta_data_on_disk) != 4096);
3076
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003077 del_timer(&device->md_sync_timer);
Philipp Reisnerd752b262013-06-25 16:50:08 +02003078 /* timer may be rearmed by drbd_md_mark_dirty() now. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003079 if (!test_and_clear_bit(MD_DIRTY, &device->flags))
Philipp Reisnerd752b262013-06-25 16:50:08 +02003080 return;
3081
3082 /* We use here D_FAILED and not D_ATTACHING because we try to write
3083 * metadata even if we detach due to a disk failure! */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003084 if (!get_ldev_if_state(device, D_FAILED))
Philipp Reisnerd752b262013-06-25 16:50:08 +02003085 return;
3086
Lars Ellenberge37d2432014-04-01 23:53:30 +02003087 buffer = drbd_md_get_buffer(device, __func__);
Philipp Reisnerd752b262013-06-25 16:50:08 +02003088 if (!buffer)
3089 goto out;
3090
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003091 drbd_md_write(device, buffer);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003092
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003093 /* Update device->ldev->md.la_size_sect,
Philipp Reisnerb411b362009-09-25 16:07:19 -07003094 * since we updated it on metadata. */
Christoph Hellwig155bd9d2020-09-25 18:06:17 +02003095 device->ldev->md.la_size_sect = get_capacity(device->vdisk);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003096
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003097 drbd_md_put_buffer(device);
Philipp Reisnere1711732011-06-27 11:51:46 +02003098out:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003099 put_ldev(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003100}
3101
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003102static int check_activity_log_stripe_size(struct drbd_device *device,
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003103 struct meta_data_on_disk *on_disk,
3104 struct drbd_md *in_core)
3105{
3106 u32 al_stripes = be32_to_cpu(on_disk->al_stripes);
3107 u32 al_stripe_size_4k = be32_to_cpu(on_disk->al_stripe_size_4k);
3108 u64 al_size_4k;
3109
3110 /* both not set: default to old fixed size activity log */
3111 if (al_stripes == 0 && al_stripe_size_4k == 0) {
3112 al_stripes = 1;
3113 al_stripe_size_4k = MD_32kB_SECT/8;
3114 }
3115
3116 /* some paranoia plausibility checks */
3117
3118 /* we need both values to be set */
3119 if (al_stripes == 0 || al_stripe_size_4k == 0)
3120 goto err;
3121
3122 al_size_4k = (u64)al_stripes * al_stripe_size_4k;
3123
3124 /* Upper limit of activity log area, to avoid potential overflow
3125 * problems in al_tr_number_to_on_disk_sector(). As right now, more
3126 * than 72 * 4k blocks total only increases the amount of history,
3127 * limiting this arbitrarily to 16 GB is not a real limitation ;-) */
3128 if (al_size_4k > (16 * 1024 * 1024/4))
3129 goto err;
3130
3131 /* Lower limit: we need at least 8 transaction slots (32kB)
3132 * to not break existing setups */
3133 if (al_size_4k < MD_32kB_SECT/8)
3134 goto err;
3135
3136 in_core->al_stripe_size_4k = al_stripe_size_4k;
3137 in_core->al_stripes = al_stripes;
3138 in_core->al_size_4k = al_size_4k;
3139
3140 return 0;
3141err:
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003142 drbd_err(device, "invalid activity log striping: al_stripes=%u, al_stripe_size_4k=%u\n",
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003143 al_stripes, al_stripe_size_4k);
3144 return -EINVAL;
3145}
3146
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003147static int check_offsets_and_sizes(struct drbd_device *device, struct drbd_backing_dev *bdev)
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003148{
3149 sector_t capacity = drbd_get_capacity(bdev->md_bdev);
3150 struct drbd_md *in_core = &bdev->md;
3151 s32 on_disk_al_sect;
3152 s32 on_disk_bm_sect;
3153
3154 /* The on-disk size of the activity log, calculated from offsets, and
3155 * the size of the activity log calculated from the stripe settings,
3156 * should match.
3157 * Though we could relax this a bit: it is ok, if the striped activity log
3158 * fits in the available on-disk activity log size.
3159 * Right now, that would break how resize is implemented.
3160 * TODO: make drbd_determine_dev_size() (and the drbdmeta tool) aware
3161 * of possible unused padding space in the on disk layout. */
3162 if (in_core->al_offset < 0) {
3163 if (in_core->bm_offset > in_core->al_offset)
3164 goto err;
3165 on_disk_al_sect = -in_core->al_offset;
3166 on_disk_bm_sect = in_core->al_offset - in_core->bm_offset;
3167 } else {
3168 if (in_core->al_offset != MD_4kB_SECT)
3169 goto err;
3170 if (in_core->bm_offset < in_core->al_offset + in_core->al_size_4k * MD_4kB_SECT)
3171 goto err;
3172
3173 on_disk_al_sect = in_core->bm_offset - MD_4kB_SECT;
3174 on_disk_bm_sect = in_core->md_size_sect - in_core->bm_offset;
3175 }
3176
3177 /* old fixed size meta data is exactly that: fixed. */
3178 if (in_core->meta_dev_idx >= 0) {
3179 if (in_core->md_size_sect != MD_128MB_SECT
3180 || in_core->al_offset != MD_4kB_SECT
3181 || in_core->bm_offset != MD_4kB_SECT + MD_32kB_SECT
3182 || in_core->al_stripes != 1
3183 || in_core->al_stripe_size_4k != MD_32kB_SECT/8)
3184 goto err;
3185 }
3186
3187 if (capacity < in_core->md_size_sect)
3188 goto err;
3189 if (capacity - in_core->md_size_sect < drbd_md_first_sector(bdev))
3190 goto err;
3191
3192 /* should be aligned, and at least 32k */
3193 if ((on_disk_al_sect & 7) || (on_disk_al_sect < MD_32kB_SECT))
3194 goto err;
3195
3196 /* should fit (for now: exactly) into the available on-disk space;
3197 * overflow prevention is in check_activity_log_stripe_size() above. */
3198 if (on_disk_al_sect != in_core->al_size_4k * MD_4kB_SECT)
3199 goto err;
3200
3201 /* again, should be aligned */
3202 if (in_core->bm_offset & 7)
3203 goto err;
3204
3205 /* FIXME check for device grow with flex external meta data? */
3206
3207 /* can the available bitmap space cover the last agreed device size? */
3208 if (on_disk_bm_sect < (in_core->la_size_sect+7)/MD_4kB_SECT/8/512)
3209 goto err;
3210
3211 return 0;
3212
3213err:
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003214 drbd_err(device, "meta data offsets don't make sense: idx=%d "
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003215 "al_s=%u, al_sz4k=%u, al_offset=%d, bm_offset=%d, "
3216 "md_size_sect=%u, la_size=%llu, md_capacity=%llu\n",
3217 in_core->meta_dev_idx,
3218 in_core->al_stripes, in_core->al_stripe_size_4k,
3219 in_core->al_offset, in_core->bm_offset, in_core->md_size_sect,
3220 (unsigned long long)in_core->la_size_sect,
3221 (unsigned long long)capacity);
3222
3223 return -EINVAL;
3224}
3225
3226
Philipp Reisnerb411b362009-09-25 16:07:19 -07003227/**
3228 * drbd_md_read() - Reads in the meta data super block
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003229 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003230 * @bdev: Device from which the meta data should be read in.
3231 *
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003232 * Return NO_ERROR on success, and an enum drbd_ret_code in case
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003233 * something goes wrong.
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003234 *
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003235 * Called exactly once during drbd_adm_attach(), while still being D_DISKLESS,
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003236 * even before @bdev is assigned to @device->ldev.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003237 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003238int drbd_md_read(struct drbd_device *device, struct drbd_backing_dev *bdev)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003239{
3240 struct meta_data_on_disk *buffer;
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003241 u32 magic, flags;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003242 int i, rv = NO_ERROR;
3243
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003244 if (device->state.disk != D_DISKLESS)
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003245 return ERR_DISK_CONFIGURED;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003246
Lars Ellenberge37d2432014-04-01 23:53:30 +02003247 buffer = drbd_md_get_buffer(device, __func__);
Philipp Reisnere1711732011-06-27 11:51:46 +02003248 if (!buffer)
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003249 return ERR_NOMEM;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003250
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003251 /* First, figure out where our meta data superblock is located,
3252 * and read it. */
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003253 bdev->md.meta_dev_idx = bdev->disk_conf->meta_dev_idx;
3254 bdev->md.md_offset = drbd_md_ss(bdev);
Lars Ellenbergedb5e5f2015-03-24 21:35:26 +01003255 /* Even for (flexible or indexed) external meta data,
3256 * initially restrict us to the 4k superblock for now.
3257 * Affects the paranoia out-of-range access check in drbd_md_sync_page_io(). */
3258 bdev->md.md_size_sect = 8;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003259
Mike Christiebb3cc852016-06-05 14:32:06 -05003260 if (drbd_md_sync_page_io(device, bdev, bdev->md.md_offset,
3261 REQ_OP_READ)) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003262 /* NOTE: can't do normal error processing here as this is
Philipp Reisnerb411b362009-09-25 16:07:19 -07003263 called BEFORE disk is attached */
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003264 drbd_err(device, "Error while reading metadata.\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07003265 rv = ERR_IO_MD_DISK;
3266 goto err;
3267 }
3268
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003269 magic = be32_to_cpu(buffer->magic);
3270 flags = be32_to_cpu(buffer->flags);
3271 if (magic == DRBD_MD_MAGIC_84_UNCLEAN ||
3272 (magic == DRBD_MD_MAGIC_08 && !(flags & MDF_AL_CLEAN))) {
3273 /* btw: that's Activity Log clean, not "all" clean. */
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003274 drbd_err(device, "Found unclean meta data. Did you \"drbdadm apply-al\"?\n");
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003275 rv = ERR_MD_UNCLEAN;
3276 goto err;
3277 }
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003278
3279 rv = ERR_MD_INVALID;
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003280 if (magic != DRBD_MD_MAGIC_08) {
Philipp Reisner43de7c82011-11-10 13:16:13 +01003281 if (magic == DRBD_MD_MAGIC_07)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003282 drbd_err(device, "Found old (0.7) meta data magic. Did you \"drbdadm create-md\"?\n");
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003283 else
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003284 drbd_err(device, "Meta data magic not found. Did you \"drbdadm create-md\"?\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07003285 goto err;
3286 }
3287
3288 if (be32_to_cpu(buffer->bm_bytes_per_bit) != BM_BLOCK_SIZE) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003289 drbd_err(device, "unexpected bm_bytes_per_bit: %u (expected %u)\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003290 be32_to_cpu(buffer->bm_bytes_per_bit), BM_BLOCK_SIZE);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003291 goto err;
3292 }
3293
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003294
3295 /* convert to in_core endian */
3296 bdev->md.la_size_sect = be64_to_cpu(buffer->la_size_sect);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003297 for (i = UI_CURRENT; i < UI_SIZE; i++)
3298 bdev->md.uuid[i] = be64_to_cpu(buffer->uuid[i]);
3299 bdev->md.flags = be32_to_cpu(buffer->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003300 bdev->md.device_uuid = be64_to_cpu(buffer->device_uuid);
3301
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003302 bdev->md.md_size_sect = be32_to_cpu(buffer->md_size_sect);
3303 bdev->md.al_offset = be32_to_cpu(buffer->al_offset);
3304 bdev->md.bm_offset = be32_to_cpu(buffer->bm_offset);
3305
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003306 if (check_activity_log_stripe_size(device, buffer, &bdev->md))
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003307 goto err;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003308 if (check_offsets_and_sizes(device, bdev))
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003309 goto err;
3310
Philipp Reisnerb411b362009-09-25 16:07:19 -07003311 if (be32_to_cpu(buffer->bm_offset) != bdev->md.bm_offset) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003312 drbd_err(device, "unexpected bm_offset: %d (expected %d)\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003313 be32_to_cpu(buffer->bm_offset), bdev->md.bm_offset);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003314 goto err;
3315 }
3316 if (be32_to_cpu(buffer->md_size_sect) != bdev->md.md_size_sect) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003317 drbd_err(device, "unexpected md_size: %u (expected %u)\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003318 be32_to_cpu(buffer->md_size_sect), bdev->md.md_size_sect);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003319 goto err;
3320 }
3321
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003322 rv = NO_ERROR;
3323
Andreas Gruenbacher05008132011-07-07 14:19:42 +02003324 spin_lock_irq(&device->resource->req_lock);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003325 if (device->state.conn < C_CONNECTED) {
Lars Ellenbergdb141b22012-06-25 19:15:58 +02003326 unsigned int peer;
Philipp Reisner99432fc2011-05-20 16:39:13 +02003327 peer = be32_to_cpu(buffer->la_peer_max_bio_size);
Lars Ellenbergdb141b22012-06-25 19:15:58 +02003328 peer = max(peer, DRBD_MAX_BIO_SIZE_SAFE);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003329 device->peer_max_bio_size = peer;
Philipp Reisner99432fc2011-05-20 16:39:13 +02003330 }
Andreas Gruenbacher05008132011-07-07 14:19:42 +02003331 spin_unlock_irq(&device->resource->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003332
3333 err:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003334 drbd_md_put_buffer(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003335
3336 return rv;
3337}
3338
3339/**
3340 * drbd_md_mark_dirty() - Mark meta data super block as dirty
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003341 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003342 *
3343 * Call this function if you change anything that should be written to
3344 * the meta-data super block. This function sets MD_DIRTY, and starts a
3345 * timer that ensures that within five seconds you have to call drbd_md_sync().
3346 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003347void drbd_md_mark_dirty(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003348{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003349 if (!test_and_set_bit(MD_DIRTY, &device->flags))
3350 mod_timer(&device->md_sync_timer, jiffies + 5*HZ);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003351}
Philipp Reisnerb411b362009-09-25 16:07:19 -07003352
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003353void drbd_uuid_move_history(struct drbd_device *device) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003354{
3355 int i;
3356
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003357 for (i = UI_HISTORY_START; i < UI_HISTORY_END; i++)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003358 device->ldev->md.uuid[i+1] = device->ldev->md.uuid[i];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003359}
3360
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003361void __drbd_uuid_set(struct drbd_device *device, int idx, u64 val) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003362{
3363 if (idx == UI_CURRENT) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003364 if (device->state.role == R_PRIMARY)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003365 val |= 1;
3366 else
3367 val &= ~((u64)1);
3368
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003369 drbd_set_ed_uuid(device, val);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003370 }
3371
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003372 device->ldev->md.uuid[idx] = val;
3373 drbd_md_mark_dirty(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003374}
3375
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003376void _drbd_uuid_set(struct drbd_device *device, int idx, u64 val) __must_hold(local)
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003377{
3378 unsigned long flags;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003379 spin_lock_irqsave(&device->ldev->md.uuid_lock, flags);
3380 __drbd_uuid_set(device, idx, val);
3381 spin_unlock_irqrestore(&device->ldev->md.uuid_lock, flags);
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003382}
Philipp Reisnerb411b362009-09-25 16:07:19 -07003383
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003384void drbd_uuid_set(struct drbd_device *device, int idx, u64 val) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003385{
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003386 unsigned long flags;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003387 spin_lock_irqsave(&device->ldev->md.uuid_lock, flags);
3388 if (device->ldev->md.uuid[idx]) {
3389 drbd_uuid_move_history(device);
3390 device->ldev->md.uuid[UI_HISTORY_START] = device->ldev->md.uuid[idx];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003391 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003392 __drbd_uuid_set(device, idx, val);
3393 spin_unlock_irqrestore(&device->ldev->md.uuid_lock, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003394}
3395
3396/**
3397 * drbd_uuid_new_current() - Creates a new current UUID
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003398 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003399 *
3400 * Creates a new current UUID, and rotates the old current UUID into
3401 * the bitmap slot. Causes an incremental resync upon next connect.
3402 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003403void drbd_uuid_new_current(struct drbd_device *device) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003404{
3405 u64 val;
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003406 unsigned long long bm_uuid;
3407
3408 get_random_bytes(&val, sizeof(u64));
3409
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003410 spin_lock_irq(&device->ldev->md.uuid_lock);
3411 bm_uuid = device->ldev->md.uuid[UI_BITMAP];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003412
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003413 if (bm_uuid)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003414 drbd_warn(device, "bm UUID was already set: %llX\n", bm_uuid);
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003415
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003416 device->ldev->md.uuid[UI_BITMAP] = device->ldev->md.uuid[UI_CURRENT];
3417 __drbd_uuid_set(device, UI_CURRENT, val);
3418 spin_unlock_irq(&device->ldev->md.uuid_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003419
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003420 drbd_print_uuids(device, "new current UUID");
Lars Ellenbergaaa8e2b2010-10-15 13:16:53 +02003421 /* get it to stable storage _now_ */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003422 drbd_md_sync(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003423}
3424
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003425void drbd_uuid_set_bm(struct drbd_device *device, u64 val) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003426{
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003427 unsigned long flags;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003428 if (device->ldev->md.uuid[UI_BITMAP] == 0 && val == 0)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003429 return;
3430
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003431 spin_lock_irqsave(&device->ldev->md.uuid_lock, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003432 if (val == 0) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003433 drbd_uuid_move_history(device);
3434 device->ldev->md.uuid[UI_HISTORY_START] = device->ldev->md.uuid[UI_BITMAP];
3435 device->ldev->md.uuid[UI_BITMAP] = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003436 } else {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003437 unsigned long long bm_uuid = device->ldev->md.uuid[UI_BITMAP];
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003438 if (bm_uuid)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003439 drbd_warn(device, "bm UUID was already set: %llX\n", bm_uuid);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003440
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003441 device->ldev->md.uuid[UI_BITMAP] = val & ~((u64)1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003442 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003443 spin_unlock_irqrestore(&device->ldev->md.uuid_lock, flags);
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003444
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003445 drbd_md_mark_dirty(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003446}
3447
3448/**
3449 * drbd_bmio_set_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003450 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003451 *
3452 * Sets all bits in the bitmap and writes the whole bitmap to stable storage.
3453 */
Philipp Reisner8fe39aa2013-11-22 13:22:13 +01003454int drbd_bmio_set_n_write(struct drbd_device *device) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003455{
3456 int rv = -EIO;
3457
Philipp Reisner8fe39aa2013-11-22 13:22:13 +01003458 drbd_md_set_flag(device, MDF_FULL_SYNC);
3459 drbd_md_sync(device);
3460 drbd_bm_set_all(device);
3461
3462 rv = drbd_bm_write(device);
3463
3464 if (!rv) {
3465 drbd_md_clear_flag(device, MDF_FULL_SYNC);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003466 drbd_md_sync(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003467 }
3468
3469 return rv;
3470}
3471
3472/**
3473 * drbd_bmio_clear_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003474 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003475 *
3476 * Clears all bits in the bitmap and writes the whole bitmap to stable storage.
3477 */
Philipp Reisner8fe39aa2013-11-22 13:22:13 +01003478int drbd_bmio_clear_n_write(struct drbd_device *device) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003479{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003480 drbd_resume_al(device);
Philipp Reisner8fe39aa2013-11-22 13:22:13 +01003481 drbd_bm_clear_all(device);
3482 return drbd_bm_write(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003483}
3484
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003485static int w_bitmap_io(struct drbd_work *w, int unused)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003486{
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02003487 struct drbd_device *device =
3488 container_of(w, struct drbd_device, bm_io_work.w);
3489 struct bm_io_work *work = &device->bm_io_work;
Lars Ellenberg02851e92010-12-16 14:47:39 +01003490 int rv = -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003491
Lars Ellenbergbca1cba2016-06-14 00:26:16 +02003492 if (work->flags != BM_LOCKED_CHANGE_ALLOWED) {
3493 int cnt = atomic_read(&device->ap_bio_cnt);
3494 if (cnt)
3495 drbd_err(device, "FIXME: ap_bio_cnt %d, expected 0; queued for '%s'\n",
3496 cnt, work->why);
3497 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07003498
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003499 if (get_ldev(device)) {
3500 drbd_bm_lock(device, work->why, work->flags);
3501 rv = work->io_fn(device);
3502 drbd_bm_unlock(device);
3503 put_ldev(device);
Lars Ellenberg02851e92010-12-16 14:47:39 +01003504 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07003505
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003506 clear_bit_unlock(BITMAP_IO, &device->flags);
3507 wake_up(&device->misc_wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003508
3509 if (work->done)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003510 work->done(device, rv);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003511
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003512 clear_bit(BITMAP_IO_QUEUED, &device->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003513 work->why = NULL;
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003514 work->flags = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003515
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003516 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003517}
3518
3519/**
3520 * drbd_queue_bitmap_io() - Queues an IO operation on the whole bitmap
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003521 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003522 * @io_fn: IO callback to be called when bitmap IO is possible
3523 * @done: callback to be called after the bitmap IO was performed
3524 * @why: Descriptive text of the reason for doing the IO
3525 *
3526 * While IO on the bitmap happens we freeze application IO thus we ensure
3527 * that drbd_set_out_of_sync() can not be called. This function MAY ONLY be
3528 * called from worker context. It MUST NOT be used while a previous such
3529 * work is still pending!
Philipp Reisner8fe39aa2013-11-22 13:22:13 +01003530 *
3531 * Its worker function encloses the call of io_fn() by get_ldev() and
3532 * put_ldev().
Philipp Reisnerb411b362009-09-25 16:07:19 -07003533 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003534void drbd_queue_bitmap_io(struct drbd_device *device,
Andreas Gruenbacher54761692011-05-30 16:15:21 +02003535 int (*io_fn)(struct drbd_device *),
3536 void (*done)(struct drbd_device *, int),
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003537 char *why, enum bm_flag flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003538{
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02003539 D_ASSERT(device, current == first_peer_device(device)->connection->worker.task);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003540
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02003541 D_ASSERT(device, !test_bit(BITMAP_IO_QUEUED, &device->flags));
3542 D_ASSERT(device, !test_bit(BITMAP_IO, &device->flags));
3543 D_ASSERT(device, list_empty(&device->bm_io_work.w.list));
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003544 if (device->bm_io_work.why)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003545 drbd_err(device, "FIXME going to queue '%s' but '%s' still pending?\n",
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003546 why, device->bm_io_work.why);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003547
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003548 device->bm_io_work.io_fn = io_fn;
3549 device->bm_io_work.done = done;
3550 device->bm_io_work.why = why;
3551 device->bm_io_work.flags = flags;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003552
Andreas Gruenbacher05008132011-07-07 14:19:42 +02003553 spin_lock_irq(&device->resource->req_lock);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003554 set_bit(BITMAP_IO, &device->flags);
Lars Ellenberg5bded4e2015-04-16 16:51:34 +02003555 /* don't wait for pending application IO if the caller indicates that
3556 * application IO does not conflict anyways. */
3557 if (flags == BM_LOCKED_CHANGE_ALLOWED || atomic_read(&device->ap_bio_cnt) == 0) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003558 if (!test_and_set_bit(BITMAP_IO_QUEUED, &device->flags))
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02003559 drbd_queue_work(&first_peer_device(device)->connection->sender_work,
3560 &device->bm_io_work.w);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003561 }
Andreas Gruenbacher05008132011-07-07 14:19:42 +02003562 spin_unlock_irq(&device->resource->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003563}
3564
3565/**
3566 * drbd_bitmap_io() - Does an IO operation on the whole bitmap
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003567 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003568 * @io_fn: IO callback to be called when bitmap IO is possible
3569 * @why: Descriptive text of the reason for doing the IO
3570 *
3571 * freezes application IO while that the actual IO operations runs. This
3572 * functions MAY NOT be called from worker context.
3573 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003574int drbd_bitmap_io(struct drbd_device *device, int (*io_fn)(struct drbd_device *),
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003575 char *why, enum bm_flag flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003576{
Lars Ellenbergc0065f92016-06-14 00:26:10 +02003577 /* Only suspend io, if some operation is supposed to be locked out */
3578 const bool do_suspend_io = flags & (BM_DONT_CLEAR|BM_DONT_SET|BM_DONT_TEST);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003579 int rv;
3580
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02003581 D_ASSERT(device, current != first_peer_device(device)->connection->worker.task);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003582
Lars Ellenbergc0065f92016-06-14 00:26:10 +02003583 if (do_suspend_io)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003584 drbd_suspend_io(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003585
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003586 drbd_bm_lock(device, why, flags);
3587 rv = io_fn(device);
3588 drbd_bm_unlock(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003589
Lars Ellenbergc0065f92016-06-14 00:26:10 +02003590 if (do_suspend_io)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003591 drbd_resume_io(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003592
3593 return rv;
3594}
3595
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003596void drbd_md_set_flag(struct drbd_device *device, int flag) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003597{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003598 if ((device->ldev->md.flags & flag) != flag) {
3599 drbd_md_mark_dirty(device);
3600 device->ldev->md.flags |= flag;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003601 }
3602}
3603
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003604void drbd_md_clear_flag(struct drbd_device *device, int flag) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003605{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003606 if ((device->ldev->md.flags & flag) != 0) {
3607 drbd_md_mark_dirty(device);
3608 device->ldev->md.flags &= ~flag;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003609 }
3610}
3611int drbd_md_test_flag(struct drbd_backing_dev *bdev, int flag)
3612{
3613 return (bdev->md.flags & flag) != 0;
3614}
3615
Kees Cook2bccef32017-10-17 20:33:01 -07003616static void md_sync_timer_fn(struct timer_list *t)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003617{
Kees Cook2bccef32017-10-17 20:33:01 -07003618 struct drbd_device *device = from_timer(device, t, md_sync_timer);
Lars Ellenbergac0acb92014-02-11 09:47:58 +01003619 drbd_device_post_work(device, MD_SYNC);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003620}
3621
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01003622const char *cmdname(enum drbd_packet cmd)
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003623{
3624 /* THINK may need to become several global tables
3625 * when we want to support more than
3626 * one PRO_VERSION */
3627 static const char *cmdnames[] = {
3628 [P_DATA] = "Data",
Lars Ellenberg9104d312016-06-14 00:26:31 +02003629 [P_WSAME] = "WriteSame",
3630 [P_TRIM] = "Trim",
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003631 [P_DATA_REPLY] = "DataReply",
3632 [P_RS_DATA_REPLY] = "RSDataReply",
3633 [P_BARRIER] = "Barrier",
3634 [P_BITMAP] = "ReportBitMap",
3635 [P_BECOME_SYNC_TARGET] = "BecomeSyncTarget",
3636 [P_BECOME_SYNC_SOURCE] = "BecomeSyncSource",
3637 [P_UNPLUG_REMOTE] = "UnplugRemote",
3638 [P_DATA_REQUEST] = "DataRequest",
3639 [P_RS_DATA_REQUEST] = "RSDataRequest",
3640 [P_SYNC_PARAM] = "SyncParam",
3641 [P_SYNC_PARAM89] = "SyncParam89",
3642 [P_PROTOCOL] = "ReportProtocol",
3643 [P_UUIDS] = "ReportUUIDs",
3644 [P_SIZES] = "ReportSizes",
3645 [P_STATE] = "ReportState",
3646 [P_SYNC_UUID] = "ReportSyncUUID",
3647 [P_AUTH_CHALLENGE] = "AuthChallenge",
3648 [P_AUTH_RESPONSE] = "AuthResponse",
3649 [P_PING] = "Ping",
3650 [P_PING_ACK] = "PingAck",
3651 [P_RECV_ACK] = "RecvAck",
3652 [P_WRITE_ACK] = "WriteAck",
3653 [P_RS_WRITE_ACK] = "RSWriteAck",
Lars Ellenbergd4dabbe2012-08-01 12:33:51 +02003654 [P_SUPERSEDED] = "Superseded",
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003655 [P_NEG_ACK] = "NegAck",
3656 [P_NEG_DREPLY] = "NegDReply",
3657 [P_NEG_RS_DREPLY] = "NegRSDReply",
3658 [P_BARRIER_ACK] = "BarrierAck",
3659 [P_STATE_CHG_REQ] = "StateChgRequest",
3660 [P_STATE_CHG_REPLY] = "StateChgReply",
3661 [P_OV_REQUEST] = "OVRequest",
3662 [P_OV_REPLY] = "OVReply",
3663 [P_OV_RESULT] = "OVResult",
3664 [P_CSUM_RS_REQUEST] = "CsumRSRequest",
3665 [P_RS_IS_IN_SYNC] = "CsumRSIsInSync",
3666 [P_COMPRESSED_BITMAP] = "CBitmap",
3667 [P_DELAY_PROBE] = "DelayProbe",
3668 [P_OUT_OF_SYNC] = "OutOfSync",
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003669 [P_RETRY_WRITE] = "RetryWrite",
Lars Ellenbergae25b332011-04-24 00:01:16 +02003670 [P_RS_CANCEL] = "RSCancel",
3671 [P_CONN_ST_CHG_REQ] = "conn_st_chg_req",
3672 [P_CONN_ST_CHG_REPLY] = "conn_st_chg_reply",
Philipp Reisner036b17e2011-05-16 17:38:11 +02003673 [P_RETRY_WRITE] = "retry_write",
3674 [P_PROTOCOL_UPDATE] = "protocol_update",
Philipp Reisner700ca8c2016-06-14 00:26:13 +02003675 [P_RS_THIN_REQ] = "rs_thin_req",
3676 [P_RS_DEALLOCATED] = "rs_deallocated",
Lars Ellenbergae25b332011-04-24 00:01:16 +02003677
3678 /* enum drbd_packet, but not commands - obsoleted flags:
3679 * P_MAY_IGNORE
3680 * P_MAX_OPT_CMD
3681 */
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003682 };
3683
Lars Ellenbergae25b332011-04-24 00:01:16 +02003684 /* too big for the array: 0xfffX */
Andreas Gruenbachere5d6f332011-03-28 16:44:40 +02003685 if (cmd == P_INITIAL_META)
3686 return "InitialMeta";
3687 if (cmd == P_INITIAL_DATA)
3688 return "InitialData";
Andreas Gruenbacher60381782011-03-28 17:05:50 +02003689 if (cmd == P_CONNECTION_FEATURES)
3690 return "ConnectionFeatures";
Andreas Gruenbacher6e849ce2011-03-14 17:27:45 +01003691 if (cmd >= ARRAY_SIZE(cmdnames))
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003692 return "Unknown";
3693 return cmdnames[cmd];
3694}
3695
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003696/**
3697 * drbd_wait_misc - wait for a request to make progress
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003698 * @device: device associated with the request
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003699 * @i: the struct drbd_interval embedded in struct drbd_request or
3700 * struct drbd_peer_request
3701 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003702int drbd_wait_misc(struct drbd_device *device, struct drbd_interval *i)
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003703{
Philipp Reisner44ed1672011-04-19 17:10:19 +02003704 struct net_conf *nc;
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003705 DEFINE_WAIT(wait);
3706 long timeout;
3707
Philipp Reisner44ed1672011-04-19 17:10:19 +02003708 rcu_read_lock();
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02003709 nc = rcu_dereference(first_peer_device(device)->connection->net_conf);
Philipp Reisner44ed1672011-04-19 17:10:19 +02003710 if (!nc) {
3711 rcu_read_unlock();
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003712 return -ETIMEDOUT;
Philipp Reisner44ed1672011-04-19 17:10:19 +02003713 }
3714 timeout = nc->ko_count ? nc->timeout * HZ / 10 * nc->ko_count : MAX_SCHEDULE_TIMEOUT;
3715 rcu_read_unlock();
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003716
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003717 /* Indicate to wake up device->misc_wait on progress. */
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003718 i->waiting = true;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003719 prepare_to_wait(&device->misc_wait, &wait, TASK_INTERRUPTIBLE);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02003720 spin_unlock_irq(&device->resource->req_lock);
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003721 timeout = schedule_timeout(timeout);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003722 finish_wait(&device->misc_wait, &wait);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02003723 spin_lock_irq(&device->resource->req_lock);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003724 if (!timeout || device->state.conn < C_CONNECTED)
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003725 return -ETIMEDOUT;
3726 if (signal_pending(current))
3727 return -ERESTARTSYS;
3728 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003729}
3730
Andreas Gruenbacher28bc3b82014-08-14 18:33:30 +02003731void lock_all_resources(void)
3732{
3733 struct drbd_resource *resource;
3734 int __maybe_unused i = 0;
3735
3736 mutex_lock(&resources_mutex);
3737 local_irq_disable();
3738 for_each_resource(resource, &drbd_resources)
3739 spin_lock_nested(&resource->req_lock, i++);
3740}
3741
3742void unlock_all_resources(void)
3743{
3744 struct drbd_resource *resource;
3745
3746 for_each_resource(resource, &drbd_resources)
3747 spin_unlock(&resource->req_lock);
3748 local_irq_enable();
3749 mutex_unlock(&resources_mutex);
3750}
3751
Philipp Reisnerb411b362009-09-25 16:07:19 -07003752#ifdef CONFIG_DRBD_FAULT_INJECTION
3753/* Fault insertion support including random number generator shamelessly
3754 * stolen from kernel/rcutorture.c */
3755struct fault_random_state {
3756 unsigned long state;
3757 unsigned long count;
3758};
3759
3760#define FAULT_RANDOM_MULT 39916801 /* prime */
3761#define FAULT_RANDOM_ADD 479001701 /* prime */
3762#define FAULT_RANDOM_REFRESH 10000
3763
3764/*
3765 * Crude but fast random-number generator. Uses a linear congruential
3766 * generator, with occasional help from get_random_bytes().
3767 */
3768static unsigned long
3769_drbd_fault_random(struct fault_random_state *rsp)
3770{
3771 long refresh;
3772
Roel Kluin49829ea2009-12-15 22:55:44 +01003773 if (!rsp->count--) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07003774 get_random_bytes(&refresh, sizeof(refresh));
3775 rsp->state += refresh;
3776 rsp->count = FAULT_RANDOM_REFRESH;
3777 }
3778 rsp->state = rsp->state * FAULT_RANDOM_MULT + FAULT_RANDOM_ADD;
3779 return swahw32(rsp->state);
3780}
3781
3782static char *
3783_drbd_fault_str(unsigned int type) {
3784 static char *_faults[] = {
3785 [DRBD_FAULT_MD_WR] = "Meta-data write",
3786 [DRBD_FAULT_MD_RD] = "Meta-data read",
3787 [DRBD_FAULT_RS_WR] = "Resync write",
3788 [DRBD_FAULT_RS_RD] = "Resync read",
3789 [DRBD_FAULT_DT_WR] = "Data write",
3790 [DRBD_FAULT_DT_RD] = "Data read",
3791 [DRBD_FAULT_DT_RA] = "Data read ahead",
3792 [DRBD_FAULT_BM_ALLOC] = "BM allocation",
Philipp Reisner6b4388a2010-04-26 14:11:45 +02003793 [DRBD_FAULT_AL_EE] = "EE allocation",
3794 [DRBD_FAULT_RECEIVE] = "receive data corruption",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003795 };
3796
3797 return (type < DRBD_FAULT_MAX) ? _faults[type] : "**Unknown**";
3798}
3799
3800unsigned int
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003801_drbd_insert_fault(struct drbd_device *device, unsigned int type)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003802{
3803 static struct fault_random_state rrs = {0, 0};
3804
3805 unsigned int ret = (
Roland Kammerer183ece32017-08-29 10:20:46 +02003806 (drbd_fault_devs == 0 ||
3807 ((1 << device_to_minor(device)) & drbd_fault_devs) != 0) &&
3808 (((_drbd_fault_random(&rrs) % 100) + 1) <= drbd_fault_rate));
Philipp Reisnerb411b362009-09-25 16:07:19 -07003809
3810 if (ret) {
Roland Kammerer183ece32017-08-29 10:20:46 +02003811 drbd_fault_count++;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003812
Lars Ellenberg73835062010-05-27 11:51:56 +02003813 if (__ratelimit(&drbd_ratelimit_state))
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003814 drbd_warn(device, "***Simulating %s failure\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003815 _drbd_fault_str(type));
3816 }
3817
3818 return ret;
3819}
3820#endif
3821
3822const char *drbd_buildtag(void)
3823{
3824 /* DRBD built from external sources has here a reference to the
3825 git hash of the source code. */
3826
3827 static char buildtag[38] = "\0uilt-in";
3828
3829 if (buildtag[0] == 0) {
Cong Wangbc4854b2012-04-03 14:13:36 +08003830#ifdef MODULE
3831 sprintf(buildtag, "srcversion: %-24s", THIS_MODULE->srcversion);
3832#else
3833 buildtag[0] = 'b';
Philipp Reisnerb411b362009-09-25 16:07:19 -07003834#endif
Philipp Reisnerb411b362009-09-25 16:07:19 -07003835 }
3836
3837 return buildtag;
3838}
3839
3840module_init(drbd_init)
3841module_exit(drbd_cleanup)
3842
Philipp Reisnerb411b362009-09-25 16:07:19 -07003843EXPORT_SYMBOL(drbd_conn_str);
3844EXPORT_SYMBOL(drbd_role_str);
3845EXPORT_SYMBOL(drbd_disk_str);
3846EXPORT_SYMBOL(drbd_set_st_err_str);