blob: 65b95aef8dbc952fcb441a329d7da58b062f36f5 [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
2039 set_capacity(device->vdisk, size);
2040 revalidate_disk_size(device->vdisk, false);
2041
Lars Ellenbergd5412e82018-12-20 17:23:30 +01002042 drbd_info(device, "size = %s (%llu KB)\n",
2043 ppsize(ppb, size>>1), (unsigned long long)size>>1);
2044}
2045
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002046void drbd_device_cleanup(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002047{
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02002048 int i;
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02002049 if (first_peer_device(device)->connection->receiver.t_state != NONE)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002050 drbd_err(device, "ASSERT FAILED: receiver t_state == %d expected 0.\n",
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02002051 first_peer_device(device)->connection->receiver.t_state);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002052
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002053 device->al_writ_cnt =
2054 device->bm_writ_cnt =
2055 device->read_cnt =
2056 device->recv_cnt =
2057 device->send_cnt =
2058 device->writ_cnt =
2059 device->p_size =
2060 device->rs_start =
2061 device->rs_total =
2062 device->rs_failed = 0;
2063 device->rs_last_events = 0;
2064 device->rs_last_sect_ev = 0;
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02002065 for (i = 0; i < DRBD_SYNC_MARKS; i++) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002066 device->rs_mark_left[i] = 0;
2067 device->rs_mark_time[i] = 0;
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02002068 }
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02002069 D_ASSERT(device, first_peer_device(device)->connection->net_conf == NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002070
Christoph Hellwig155bd9d2020-09-25 18:06:17 +02002071 set_capacity(device->vdisk, 0);
2072 revalidate_disk_size(device->vdisk, false);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002073 if (device->bitmap) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002074 /* maybe never allocated. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002075 drbd_bm_resize(device, 0, 1);
2076 drbd_bm_cleanup(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002077 }
2078
Lars Ellenberg63a7c8a2015-03-26 20:53:55 +01002079 drbd_backing_dev_free(device, device->ldev);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002080 device->ldev = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002081
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002082 clear_bit(AL_SUSPENDED, &device->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002083
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02002084 D_ASSERT(device, list_empty(&device->active_ee));
2085 D_ASSERT(device, list_empty(&device->sync_ee));
2086 D_ASSERT(device, list_empty(&device->done_ee));
2087 D_ASSERT(device, list_empty(&device->read_ee));
2088 D_ASSERT(device, list_empty(&device->net_ee));
2089 D_ASSERT(device, list_empty(&device->resync_reads));
2090 D_ASSERT(device, list_empty(&first_peer_device(device)->connection->sender_work.q));
2091 D_ASSERT(device, list_empty(&device->resync_work.list));
2092 D_ASSERT(device, list_empty(&device->unplug_work.list));
Lars Ellenberg2265b472010-12-16 15:41:26 +01002093
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002094 drbd_set_defaults(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002095}
2096
2097
2098static void drbd_destroy_mempools(void)
2099{
2100 struct page *page;
2101
2102 while (drbd_pp_pool) {
2103 page = drbd_pp_pool;
2104 drbd_pp_pool = (struct page *)page_private(page);
2105 __free_page(page);
2106 drbd_pp_vacant--;
2107 }
2108
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02002109 /* D_ASSERT(device, atomic_read(&drbd_pp_vacant)==0); */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002110
Kent Overstreet0892fac2018-05-20 18:25:48 -04002111 bioset_exit(&drbd_io_bio_set);
2112 bioset_exit(&drbd_md_io_bio_set);
2113 mempool_exit(&drbd_md_io_page_pool);
2114 mempool_exit(&drbd_ee_mempool);
2115 mempool_exit(&drbd_request_mempool);
zhong jianga12fc002018-08-08 23:22:47 +08002116 kmem_cache_destroy(drbd_ee_cache);
2117 kmem_cache_destroy(drbd_request_cache);
2118 kmem_cache_destroy(drbd_bm_ext_cache);
2119 kmem_cache_destroy(drbd_al_ext_cache);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002120
Philipp Reisnerb411b362009-09-25 16:07:19 -07002121 drbd_ee_cache = NULL;
2122 drbd_request_cache = NULL;
2123 drbd_bm_ext_cache = NULL;
2124 drbd_al_ext_cache = NULL;
2125
2126 return;
2127}
2128
2129static int drbd_create_mempools(void)
2130{
2131 struct page *page;
Roland Kammerer183ece32017-08-29 10:20:46 +02002132 const int number = (DRBD_MAX_BIO_SIZE/PAGE_SIZE) * drbd_minor_count;
Kent Overstreet0892fac2018-05-20 18:25:48 -04002133 int i, ret;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002134
2135 /* caches */
2136 drbd_request_cache = kmem_cache_create(
2137 "drbd_req", sizeof(struct drbd_request), 0, 0, NULL);
2138 if (drbd_request_cache == NULL)
2139 goto Enomem;
2140
2141 drbd_ee_cache = kmem_cache_create(
Andreas Gruenbacherf6ffca92011-02-04 15:30:34 +01002142 "drbd_ee", sizeof(struct drbd_peer_request), 0, 0, NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002143 if (drbd_ee_cache == NULL)
2144 goto Enomem;
2145
2146 drbd_bm_ext_cache = kmem_cache_create(
2147 "drbd_bm", sizeof(struct bm_extent), 0, 0, NULL);
2148 if (drbd_bm_ext_cache == NULL)
2149 goto Enomem;
2150
2151 drbd_al_ext_cache = kmem_cache_create(
2152 "drbd_al", sizeof(struct lc_element), 0, 0, NULL);
2153 if (drbd_al_ext_cache == NULL)
2154 goto Enomem;
2155
2156 /* mempools */
Kent Overstreet0892fac2018-05-20 18:25:48 -04002157 ret = bioset_init(&drbd_io_bio_set, BIO_POOL_SIZE, 0, 0);
2158 if (ret)
NeilBrown8cb0def2017-06-18 14:38:58 +10002159 goto Enomem;
2160
Kent Overstreet0892fac2018-05-20 18:25:48 -04002161 ret = bioset_init(&drbd_md_io_bio_set, DRBD_MIN_POOL_PAGES, 0,
2162 BIOSET_NEED_BVECS);
2163 if (ret)
Lars Ellenberg9476f392011-02-23 17:02:01 +01002164 goto Enomem;
Lars Ellenberg9476f392011-02-23 17:02:01 +01002165
Kent Overstreet0892fac2018-05-20 18:25:48 -04002166 ret = mempool_init_page_pool(&drbd_md_io_page_pool, DRBD_MIN_POOL_PAGES, 0);
2167 if (ret)
Lars Ellenberg42818082011-02-23 12:39:46 +01002168 goto Enomem;
2169
Kent Overstreet0892fac2018-05-20 18:25:48 -04002170 ret = mempool_init_slab_pool(&drbd_request_mempool, number,
2171 drbd_request_cache);
2172 if (ret)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002173 goto Enomem;
2174
Kent Overstreet0892fac2018-05-20 18:25:48 -04002175 ret = mempool_init_slab_pool(&drbd_ee_mempool, number, drbd_ee_cache);
2176 if (ret)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002177 goto Enomem;
2178
2179 /* drbd's page pool */
2180 spin_lock_init(&drbd_pp_lock);
2181
2182 for (i = 0; i < number; i++) {
2183 page = alloc_page(GFP_HIGHUSER);
2184 if (!page)
2185 goto Enomem;
2186 set_page_private(page, (unsigned long)drbd_pp_pool);
2187 drbd_pp_pool = page;
2188 }
2189 drbd_pp_vacant = number;
2190
2191 return 0;
2192
2193Enomem:
2194 drbd_destroy_mempools(); /* in case we allocated some */
2195 return -ENOMEM;
2196}
2197
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002198static void drbd_release_all_peer_reqs(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002199{
2200 int rr;
2201
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002202 rr = drbd_free_peer_reqs(device, &device->active_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002203 if (rr)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002204 drbd_err(device, "%d EEs in active list found!\n", rr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002205
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002206 rr = drbd_free_peer_reqs(device, &device->sync_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002207 if (rr)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002208 drbd_err(device, "%d EEs in sync list found!\n", rr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002209
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002210 rr = drbd_free_peer_reqs(device, &device->read_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002211 if (rr)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002212 drbd_err(device, "%d EEs in read list found!\n", rr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002213
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002214 rr = drbd_free_peer_reqs(device, &device->done_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002215 if (rr)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002216 drbd_err(device, "%d EEs in done list found!\n", rr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002217
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002218 rr = drbd_free_peer_reqs(device, &device->net_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002219 if (rr)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002220 drbd_err(device, "%d EEs in net list found!\n", rr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002221}
2222
Philipp Reisner774b3052011-02-22 02:07:03 -05002223/* caution. no locking. */
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +02002224void drbd_destroy_device(struct kref *kref)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002225{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002226 struct drbd_device *device = container_of(kref, struct drbd_device, kref);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002227 struct drbd_resource *resource = device->resource;
Lars Ellenberga8ba0d62014-05-14 21:34:47 +02002228 struct drbd_peer_device *peer_device, *tmp_peer_device;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002229
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002230 del_timer_sync(&device->request_timer);
Philipp Reisnerdfa8bed2011-06-29 14:06:08 +02002231
Philipp Reisnerb411b362009-09-25 16:07:19 -07002232 /* paranoia asserts */
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02002233 D_ASSERT(device, device->open_cnt == 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002234 /* end paranoia asserts */
2235
Philipp Reisnerb411b362009-09-25 16:07:19 -07002236 /* cleanup stuff that may have been allocated during
2237 * device (re-)configuration or state changes */
2238
Lars Ellenberg63a7c8a2015-03-26 20:53:55 +01002239 drbd_backing_dev_free(device, device->ldev);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002240 device->ldev = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002241
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002242 drbd_release_all_peer_reqs(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002243
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002244 lc_destroy(device->act_log);
2245 lc_destroy(device->resync);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002246
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002247 kfree(device->p_uuid);
2248 /* device->p_uuid = NULL; */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002249
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002250 if (device->bitmap) /* should no longer be there. */
2251 drbd_bm_cleanup(device);
Lars Ellenberge37d2432014-04-01 23:53:30 +02002252 __free_page(device->md_io.page);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002253 put_disk(device->vdisk);
2254 blk_cleanup_queue(device->rq_queue);
2255 kfree(device->rs_plan_s);
Lars Ellenberga8ba0d62014-05-14 21:34:47 +02002256
2257 /* not for_each_connection(connection, resource):
2258 * those may have been cleaned up and disassociated already.
2259 */
2260 for_each_peer_device_safe(peer_device, tmp_peer_device, device) {
2261 kref_put(&peer_device->connection->kref, drbd_destroy_connection);
2262 kfree(peer_device);
2263 }
Lars Ellenbergc2258ff2014-05-14 21:35:21 +02002264 memset(device, 0xfd, sizeof(*device));
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002265 kfree(device);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002266 kref_put(&resource->kref, drbd_destroy_resource);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002267}
2268
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002269/* One global retry thread, if we need to push back some bio and have it
2270 * reinserted through our make request function.
2271 */
2272static struct retry_worker {
2273 struct workqueue_struct *wq;
2274 struct work_struct worker;
2275
2276 spinlock_t lock;
2277 struct list_head writes;
2278} retry;
2279
2280static void do_retry(struct work_struct *ws)
2281{
2282 struct retry_worker *retry = container_of(ws, struct retry_worker, worker);
2283 LIST_HEAD(writes);
2284 struct drbd_request *req, *tmp;
2285
2286 spin_lock_irq(&retry->lock);
2287 list_splice_init(&retry->writes, &writes);
2288 spin_unlock_irq(&retry->lock);
2289
2290 list_for_each_entry_safe(req, tmp, &writes, tl_requests) {
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02002291 struct drbd_device *device = req->device;
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002292 struct bio *bio = req->master_bio;
Lars Ellenberge5f891b2013-11-22 12:32:01 +01002293 unsigned long start_jif = req->start_jif;
Lars Ellenberg9a278a72012-07-24 10:12:36 +02002294 bool expected;
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002295
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02002296 expected =
Lars Ellenberg9a278a72012-07-24 10:12:36 +02002297 expect(atomic_read(&req->completion_ref) == 0) &&
2298 expect(req->rq_state & RQ_POSTPONED) &&
2299 expect((req->rq_state & RQ_LOCAL_PENDING) == 0 ||
2300 (req->rq_state & RQ_LOCAL_ABORTED) != 0);
2301
2302 if (!expected)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002303 drbd_err(device, "req=%p completion_ref=%d rq_state=%x\n",
Lars Ellenberg9a278a72012-07-24 10:12:36 +02002304 req, atomic_read(&req->completion_ref),
2305 req->rq_state);
2306
2307 /* We still need to put one kref associated with the
2308 * "completion_ref" going zero in the code path that queued it
2309 * here. The request object may still be referenced by a
2310 * frozen local req->private_bio, in case we force-detached.
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002311 */
Lars Ellenberg9a278a72012-07-24 10:12:36 +02002312 kref_put(&req->kref, drbd_req_destroy);
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002313
2314 /* A single suspended or otherwise blocking device may stall
2315 * all others as well. Fortunately, this code path is to
2316 * recover from a situation that "should not happen":
2317 * concurrent writes in multi-primary setup.
2318 * In a "normal" lifecycle, this workqueue is supposed to be
2319 * destroyed without ever doing anything.
2320 * If it turns out to be an issue anyways, we can do per
2321 * resource (replication group) or per device (minor) retry
2322 * workqueues instead.
2323 */
2324
Christoph Hellwiged00aab2020-07-01 10:59:44 +02002325 /* We are not just doing submit_bio_noacct(),
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002326 * as we want to keep the start_time information. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002327 inc_ap_bio(device);
Lars Ellenberge5f891b2013-11-22 12:32:01 +01002328 __drbd_make_request(device, bio, start_jif);
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002329 }
2330}
2331
Lars Ellenberg844a6ae72013-11-22 12:52:03 +01002332/* called via drbd_req_put_completion_ref(),
2333 * holds resource->req_lock */
Lars Ellenberg9d05e7c2012-07-17 10:05:04 +02002334void drbd_restart_request(struct drbd_request *req)
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002335{
2336 unsigned long flags;
2337 spin_lock_irqsave(&retry.lock, flags);
2338 list_move_tail(&req->tl_requests, &retry.writes);
2339 spin_unlock_irqrestore(&retry.lock, flags);
2340
2341 /* Drop the extra reference that would otherwise
2342 * have been dropped by complete_master_bio.
2343 * do_retry() needs to grab a new one. */
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02002344 dec_ap_bio(req->device);
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002345
2346 queue_work(retry.wq, &retry.worker);
2347}
2348
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002349void drbd_destroy_resource(struct kref *kref)
2350{
2351 struct drbd_resource *resource =
2352 container_of(kref, struct drbd_resource, kref);
2353
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002354 idr_destroy(&resource->devices);
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +02002355 free_cpumask_var(resource->cpu_mask);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002356 kfree(resource->name);
Lars Ellenbergc2258ff2014-05-14 21:35:21 +02002357 memset(resource, 0xf2, sizeof(*resource));
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002358 kfree(resource);
2359}
2360
2361void drbd_free_resource(struct drbd_resource *resource)
2362{
2363 struct drbd_connection *connection, *tmp;
2364
2365 for_each_connection_safe(connection, tmp, resource) {
2366 list_del(&connection->connections);
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002367 drbd_debugfs_connection_cleanup(connection);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002368 kref_put(&connection->kref, drbd_destroy_connection);
2369 }
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002370 drbd_debugfs_resource_cleanup(resource);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002371 kref_put(&resource->kref, drbd_destroy_resource);
2372}
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002373
Philipp Reisnerb411b362009-09-25 16:07:19 -07002374static void drbd_cleanup(void)
2375{
2376 unsigned int i;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002377 struct drbd_device *device;
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002378 struct drbd_resource *resource, *tmp;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002379
Lars Ellenberg17a93f32010-11-24 10:37:35 +01002380 /* first remove proc,
2381 * drbdsetup uses it's presence to detect
2382 * whether DRBD is loaded.
2383 * If we would get stuck in proc removal,
2384 * but have netlink already deregistered,
2385 * some drbdsetup commands may wait forever
2386 * for an answer.
2387 */
2388 if (drbd_proc)
2389 remove_proc_entry("drbd", NULL);
2390
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002391 if (retry.wq)
2392 destroy_workqueue(retry.wq);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002393
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002394 drbd_genl_unregister();
Philipp Reisnerb411b362009-09-25 16:07:19 -07002395
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002396 idr_for_each_entry(&drbd_devices, device, i)
Andreas Gruenbacherf82795d2011-07-03 23:32:26 +02002397 drbd_delete_device(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002398
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002399 /* not _rcu since, no other updater anymore. Genl already unregistered */
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002400 for_each_resource_safe(resource, tmp, &drbd_resources) {
2401 list_del(&resource->resources);
2402 drbd_free_resource(resource);
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002403 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07002404
Lars Ellenberg3f1a1b72017-08-29 10:20:41 +02002405 drbd_debugfs_cleanup();
2406
Philipp Reisner81a5d602011-02-22 19:53:16 -05002407 drbd_destroy_mempools();
Philipp Reisnerb411b362009-09-25 16:07:19 -07002408 unregister_blkdev(DRBD_MAJOR, "drbd");
2409
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +02002410 idr_destroy(&drbd_devices);
Philipp Reisner81a5d602011-02-22 19:53:16 -05002411
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002412 pr_info("module cleanup done.\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07002413}
2414
Philipp Reisner6699b652011-02-09 11:10:24 +01002415static void drbd_init_workqueue(struct drbd_work_queue* wq)
2416{
Philipp Reisner6699b652011-02-09 11:10:24 +01002417 spin_lock_init(&wq->q_lock);
2418 INIT_LIST_HEAD(&wq->q);
Lars Ellenberg8c0785a2011-10-19 11:50:57 +02002419 init_waitqueue_head(&wq->q_wait);
Philipp Reisner6699b652011-02-09 11:10:24 +01002420}
2421
Andreas Gruenbacherb5043c52011-07-28 15:56:02 +02002422struct completion_work {
2423 struct drbd_work w;
2424 struct completion done;
2425};
2426
2427static int w_complete(struct drbd_work *w, int cancel)
2428{
2429 struct completion_work *completion_work =
2430 container_of(w, struct completion_work, w);
2431
2432 complete(&completion_work->done);
2433 return 0;
2434}
2435
2436void drbd_flush_workqueue(struct drbd_work_queue *work_queue)
2437{
2438 struct completion_work completion_work;
2439
2440 completion_work.w.cb = w_complete;
2441 init_completion(&completion_work.done);
2442 drbd_queue_work(work_queue, &completion_work.w);
2443 wait_for_completion(&completion_work.done);
2444}
2445
Andreas Gruenbacher4bc76042011-06-13 14:27:45 +02002446struct drbd_resource *drbd_find_resource(const char *name)
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002447{
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002448 struct drbd_resource *resource;
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002449
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002450 if (!name || !name[0])
2451 return NULL;
2452
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002453 rcu_read_lock();
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002454 for_each_resource_rcu(resource, &drbd_resources) {
2455 if (!strcmp(resource->name, name)) {
Andreas Gruenbacher4bc76042011-06-13 14:27:45 +02002456 kref_get(&resource->kref);
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002457 goto found;
Philipp Reisner0ace9df2011-04-24 10:53:19 +02002458 }
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002459 }
Andreas Gruenbacher4bc76042011-06-13 14:27:45 +02002460 resource = NULL;
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002461found:
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002462 rcu_read_unlock();
Andreas Gruenbacher4bc76042011-06-13 14:27:45 +02002463 return resource;
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002464}
2465
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002466struct drbd_connection *conn_get_by_addrs(void *my_addr, int my_addr_len,
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002467 void *peer_addr, int peer_addr_len)
2468{
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002469 struct drbd_resource *resource;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002470 struct drbd_connection *connection;
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002471
2472 rcu_read_lock();
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002473 for_each_resource_rcu(resource, &drbd_resources) {
2474 for_each_connection_rcu(connection, resource) {
2475 if (connection->my_addr_len == my_addr_len &&
2476 connection->peer_addr_len == peer_addr_len &&
2477 !memcmp(&connection->my_addr, my_addr, my_addr_len) &&
2478 !memcmp(&connection->peer_addr, peer_addr, peer_addr_len)) {
2479 kref_get(&connection->kref);
2480 goto found;
2481 }
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002482 }
2483 }
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002484 connection = NULL;
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002485found:
2486 rcu_read_unlock();
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002487 return connection;
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002488}
2489
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002490static int drbd_alloc_socket(struct drbd_socket *socket)
2491{
2492 socket->rbuf = (void *) __get_free_page(GFP_KERNEL);
2493 if (!socket->rbuf)
2494 return -ENOMEM;
Andreas Gruenbacher5a87d922011-03-24 21:17:52 +01002495 socket->sbuf = (void *) __get_free_page(GFP_KERNEL);
2496 if (!socket->sbuf)
2497 return -ENOMEM;
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002498 return 0;
2499}
2500
2501static void drbd_free_socket(struct drbd_socket *socket)
2502{
Andreas Gruenbacher5a87d922011-03-24 21:17:52 +01002503 free_page((unsigned long) socket->sbuf);
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002504 free_page((unsigned long) socket->rbuf);
2505}
2506
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002507void conn_free_crypto(struct drbd_connection *connection)
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002508{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002509 drbd_free_sock(connection);
Philipp Reisner1d041222011-04-22 15:20:23 +02002510
Kees Cook3d0e6372018-08-06 16:32:16 -07002511 crypto_free_shash(connection->csums_tfm);
2512 crypto_free_shash(connection->verify_tfm);
Herbert Xu9534d672016-01-24 21:19:21 +08002513 crypto_free_shash(connection->cram_hmac_tfm);
Kees Cook3d0e6372018-08-06 16:32:16 -07002514 crypto_free_shash(connection->integrity_tfm);
2515 crypto_free_shash(connection->peer_integrity_tfm);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002516 kfree(connection->int_dig_in);
2517 kfree(connection->int_dig_vv);
Philipp Reisner1d041222011-04-22 15:20:23 +02002518
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002519 connection->csums_tfm = NULL;
2520 connection->verify_tfm = NULL;
2521 connection->cram_hmac_tfm = NULL;
2522 connection->integrity_tfm = NULL;
2523 connection->peer_integrity_tfm = NULL;
2524 connection->int_dig_in = NULL;
2525 connection->int_dig_vv = NULL;
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002526}
2527
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002528int set_resource_options(struct drbd_resource *resource, struct res_opts *res_opts)
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002529{
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002530 struct drbd_connection *connection;
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002531 cpumask_var_t new_cpu_mask;
2532 int err;
2533
2534 if (!zalloc_cpumask_var(&new_cpu_mask, GFP_KERNEL))
2535 return -ENOMEM;
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002536
2537 /* silently ignore cpu mask on UP kernel */
2538 if (nr_cpu_ids > 1 && res_opts->cpu_mask[0] != 0) {
Andreas Gruenbacherf44d0432011-07-22 13:53:19 +02002539 err = bitmap_parse(res_opts->cpu_mask, DRBD_CPU_MASK_SIZE,
Philipp Reisnerc5b005a2012-04-30 12:53:52 +02002540 cpumask_bits(new_cpu_mask), nr_cpu_ids);
Lars Ellenberg1e391522014-05-19 09:52:02 +02002541 if (err == -EOVERFLOW) {
2542 /* So what. mask it out. */
2543 cpumask_var_t tmp_cpu_mask;
2544 if (zalloc_cpumask_var(&tmp_cpu_mask, GFP_KERNEL)) {
2545 cpumask_setall(tmp_cpu_mask);
2546 cpumask_and(new_cpu_mask, new_cpu_mask, tmp_cpu_mask);
2547 drbd_warn(resource, "Overflow in bitmap_parse(%.12s%s), truncating to %u bits\n",
2548 res_opts->cpu_mask,
2549 strlen(res_opts->cpu_mask) > 12 ? "..." : "",
2550 nr_cpu_ids);
2551 free_cpumask_var(tmp_cpu_mask);
2552 err = 0;
2553 }
2554 }
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002555 if (err) {
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +02002556 drbd_warn(resource, "bitmap_parse() failed with %d\n", err);
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002557 /* retcode = ERR_CPU_MASK_PARSE; */
2558 goto fail;
2559 }
2560 }
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002561 resource->res_opts = *res_opts;
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +02002562 if (cpumask_empty(new_cpu_mask))
2563 drbd_calc_cpu_mask(&new_cpu_mask);
2564 if (!cpumask_equal(resource->cpu_mask, new_cpu_mask)) {
2565 cpumask_copy(resource->cpu_mask, new_cpu_mask);
2566 for_each_connection_rcu(connection, resource) {
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002567 connection->receiver.reset_cpu_mask = 1;
Philipp Reisner1c03e522015-03-16 15:01:00 +01002568 connection->ack_receiver.reset_cpu_mask = 1;
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002569 connection->worker.reset_cpu_mask = 1;
2570 }
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002571 }
2572 err = 0;
2573
2574fail:
2575 free_cpumask_var(new_cpu_mask);
2576 return err;
2577
2578}
2579
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002580struct drbd_resource *drbd_create_resource(const char *name)
2581{
2582 struct drbd_resource *resource;
2583
Andreas Gruenbacher6bbf53c2011-07-08 01:19:44 +02002584 resource = kzalloc(sizeof(struct drbd_resource), GFP_KERNEL);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002585 if (!resource)
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +02002586 goto fail;
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002587 resource->name = kstrdup(name, GFP_KERNEL);
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +02002588 if (!resource->name)
2589 goto fail_free_resource;
2590 if (!zalloc_cpumask_var(&resource->cpu_mask, GFP_KERNEL))
2591 goto fail_free_name;
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002592 kref_init(&resource->kref);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002593 idr_init(&resource->devices);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002594 INIT_LIST_HEAD(&resource->connections);
Andreas Gruenbacherf6ba8632014-08-13 18:33:55 +02002595 resource->write_ordering = WO_BDEV_FLUSH;
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002596 list_add_tail_rcu(&resource->resources, &drbd_resources);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02002597 mutex_init(&resource->conf_update);
Lars Ellenberg9e276872014-04-28 18:43:22 +02002598 mutex_init(&resource->adm_mutex);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02002599 spin_lock_init(&resource->req_lock);
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002600 drbd_debugfs_resource_add(resource);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002601 return resource;
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +02002602
2603fail_free_name:
2604 kfree(resource->name);
2605fail_free_resource:
2606 kfree(resource);
2607fail:
2608 return NULL;
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002609}
2610
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002611/* caller must be under adm_mutex */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002612struct drbd_connection *conn_create(const char *name, struct res_opts *res_opts)
Philipp Reisner21114382011-01-19 12:26:59 +01002613{
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002614 struct drbd_resource *resource;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002615 struct drbd_connection *connection;
Philipp Reisner21114382011-01-19 12:26:59 +01002616
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002617 connection = kzalloc(sizeof(struct drbd_connection), GFP_KERNEL);
2618 if (!connection)
Philipp Reisner21114382011-01-19 12:26:59 +01002619 return NULL;
2620
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002621 if (drbd_alloc_socket(&connection->data))
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002622 goto fail;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002623 if (drbd_alloc_socket(&connection->meta))
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002624 goto fail;
2625
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002626 connection->current_epoch = kzalloc(sizeof(struct drbd_epoch), GFP_KERNEL);
2627 if (!connection->current_epoch)
Philipp Reisner12038a32011-11-09 19:18:00 +01002628 goto fail;
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01002629
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002630 INIT_LIST_HEAD(&connection->transfer_log);
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01002631
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002632 INIT_LIST_HEAD(&connection->current_epoch->list);
2633 connection->epochs = 1;
2634 spin_lock_init(&connection->epoch_lock);
Philipp Reisner4b0007c2011-11-09 20:12:34 +01002635
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002636 connection->send.seen_any_write_yet = false;
2637 connection->send.current_epoch_nr = 0;
2638 connection->send.current_epoch_writes = 0;
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01002639
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002640 resource = drbd_create_resource(name);
2641 if (!resource)
2642 goto fail;
2643
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002644 connection->cstate = C_STANDALONE;
2645 mutex_init(&connection->cstate_mutex);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002646 init_waitqueue_head(&connection->ping_wait);
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02002647 idr_init(&connection->peer_devices);
Philipp Reisnerb2fb6dbe2011-01-19 13:48:44 +01002648
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002649 drbd_init_workqueue(&connection->sender_work);
2650 mutex_init(&connection->data.mutex);
2651 mutex_init(&connection->meta.mutex);
Philipp Reisner6699b652011-02-09 11:10:24 +01002652
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +02002653 drbd_thread_init(resource, &connection->receiver, drbd_receiver, "receiver");
2654 connection->receiver.connection = connection;
2655 drbd_thread_init(resource, &connection->worker, drbd_worker, "worker");
2656 connection->worker.connection = connection;
Philipp Reisner1c03e522015-03-16 15:01:00 +01002657 drbd_thread_init(resource, &connection->ack_receiver, drbd_ack_receiver, "ack_recv");
2658 connection->ack_receiver.connection = connection;
Philipp Reisner392c8802011-02-09 10:33:31 +01002659
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002660 kref_init(&connection->kref);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002661
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002662 connection->resource = resource;
Philipp Reisner21114382011-01-19 12:26:59 +01002663
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002664 if (set_resource_options(resource, res_opts))
2665 goto fail_resource;
2666
2667 kref_get(&resource->kref);
2668 list_add_tail_rcu(&connection->connections, &resource->connections);
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002669 drbd_debugfs_connection_add(connection);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002670 return connection;
Philipp Reisner21114382011-01-19 12:26:59 +01002671
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002672fail_resource:
2673 list_del(&resource->resources);
2674 drbd_free_resource(resource);
Philipp Reisner21114382011-01-19 12:26:59 +01002675fail:
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002676 kfree(connection->current_epoch);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002677 drbd_free_socket(&connection->meta);
2678 drbd_free_socket(&connection->data);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002679 kfree(connection);
Philipp Reisner21114382011-01-19 12:26:59 +01002680 return NULL;
2681}
2682
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +02002683void drbd_destroy_connection(struct kref *kref)
Philipp Reisner21114382011-01-19 12:26:59 +01002684{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002685 struct drbd_connection *connection = container_of(kref, struct drbd_connection, kref);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002686 struct drbd_resource *resource = connection->resource;
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002687
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002688 if (atomic_read(&connection->current_epoch->epoch_size) != 0)
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +02002689 drbd_err(connection, "epoch_size:%d\n", atomic_read(&connection->current_epoch->epoch_size));
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002690 kfree(connection->current_epoch);
Philipp Reisner12038a32011-11-09 19:18:00 +01002691
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02002692 idr_destroy(&connection->peer_devices);
Philipp Reisner21114382011-01-19 12:26:59 +01002693
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002694 drbd_free_socket(&connection->meta);
2695 drbd_free_socket(&connection->data);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002696 kfree(connection->int_dig_in);
2697 kfree(connection->int_dig_vv);
Lars Ellenbergc2258ff2014-05-14 21:35:21 +02002698 memset(connection, 0xfc, sizeof(*connection));
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002699 kfree(connection);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002700 kref_put(&resource->kref, drbd_destroy_resource);
Philipp Reisner21114382011-01-19 12:26:59 +01002701}
2702
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002703static int init_submitter(struct drbd_device *device)
Lars Ellenberg113fef92013-03-22 18:14:40 -06002704{
2705 /* opencoded create_singlethread_workqueue(),
2706 * to be able to say "drbd%d", ..., minor */
Lars Ellenberg39e91a62015-03-24 10:40:26 +01002707 device->submit.wq =
2708 alloc_ordered_workqueue("drbd%u_submit", WQ_MEM_RECLAIM, device->minor);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002709 if (!device->submit.wq)
Lars Ellenberg113fef92013-03-22 18:14:40 -06002710 return -ENOMEM;
2711
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002712 INIT_WORK(&device->submit.worker, do_submit);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002713 INIT_LIST_HEAD(&device->submit.writes);
Lars Ellenberg113fef92013-03-22 18:14:40 -06002714 return 0;
2715}
2716
Lars Ellenberga910b122014-04-28 18:43:21 +02002717enum drbd_ret_code drbd_create_device(struct drbd_config_context *adm_ctx, unsigned int minor)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002718{
Lars Ellenberga910b122014-04-28 18:43:21 +02002719 struct drbd_resource *resource = adm_ctx->resource;
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002720 struct drbd_connection *connection;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002721 struct drbd_device *device;
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002722 struct drbd_peer_device *peer_device, *tmp_peer_device;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002723 struct gendisk *disk;
2724 struct request_queue *q;
Andreas Gruenbacher93e4bf72013-05-23 14:57:17 +02002725 int id;
Lars Ellenberga910b122014-04-28 18:43:21 +02002726 int vnr = adm_ctx->volume;
Lars Ellenberg8432b312011-03-08 16:11:16 +01002727 enum drbd_ret_code err = ERR_NOMEM;
Philipp Reisner774b3052011-02-22 02:07:03 -05002728
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002729 device = minor_to_device(minor);
2730 if (device)
Andreas Gruenbacher179e20b82014-11-10 17:21:09 +01002731 return ERR_MINOR_OR_VOLUME_EXISTS;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002732
2733 /* GFP_KERNEL, we are outside of all write-out paths */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002734 device = kzalloc(sizeof(struct drbd_device), GFP_KERNEL);
2735 if (!device)
Philipp Reisner774b3052011-02-22 02:07:03 -05002736 return ERR_NOMEM;
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002737 kref_init(&device->kref);
2738
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002739 kref_get(&resource->kref);
2740 device->resource = resource;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002741 device->minor = minor;
2742 device->vnr = vnr;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002743
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002744 drbd_init_set_defaults(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002745
Christoph Hellwigc62b37d2020-07-01 10:59:43 +02002746 q = blk_alloc_queue(NUMA_NO_NODE);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002747 if (!q)
2748 goto out_no_q;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002749 device->rq_queue = q;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002750
2751 disk = alloc_disk(1);
2752 if (!disk)
2753 goto out_no_disk;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002754 device->vdisk = disk;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002755
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01002756 set_disk_ro(disk, true);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002757
2758 disk->queue = q;
2759 disk->major = DRBD_MAJOR;
2760 disk->first_minor = minor;
2761 disk->fops = &drbd_ops;
2762 sprintf(disk->disk_name, "drbd%d", minor);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002763 disk->private_data = device;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002764
Jens Axboefe8fb752016-03-30 10:09:01 -06002765 blk_queue_write_cache(q, true, true);
Philipp Reisner99432fc2011-05-20 16:39:13 +02002766 /* Setting the max_hw_sectors to an odd value of 8kibyte here
2767 This triggers a max_bio_size message upon first attach or connect */
2768 blk_queue_max_hw_sectors(q, DRBD_MAX_BIO_SIZE_SAFE >> 8);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002769
Lars Ellenberge37d2432014-04-01 23:53:30 +02002770 device->md_io.page = alloc_page(GFP_KERNEL);
2771 if (!device->md_io.page)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002772 goto out_no_io_page;
2773
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002774 if (drbd_bm_init(device))
Philipp Reisnerb411b362009-09-25 16:07:19 -07002775 goto out_no_bitmap;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002776 device->read_requests = RB_ROOT;
2777 device->write_requests = RB_ROOT;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002778
Andreas Gruenbacher93e4bf72013-05-23 14:57:17 +02002779 id = idr_alloc(&drbd_devices, device, minor, minor + 1, GFP_KERNEL);
2780 if (id < 0) {
Andreas Gruenbacherf221f4b2014-11-10 17:21:10 +01002781 if (id == -ENOSPC)
Andreas Gruenbacher179e20b82014-11-10 17:21:09 +01002782 err = ERR_MINOR_OR_VOLUME_EXISTS;
Lars Ellenberg8432b312011-03-08 16:11:16 +01002783 goto out_no_minor_idr;
Tejun Heo56de2102013-02-27 17:04:01 -08002784 }
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002785 kref_get(&device->kref);
2786
2787 id = idr_alloc(&resource->devices, device, vnr, vnr + 1, GFP_KERNEL);
2788 if (id < 0) {
Andreas Gruenbacherf221f4b2014-11-10 17:21:10 +01002789 if (id == -ENOSPC)
Andreas Gruenbacher179e20b82014-11-10 17:21:09 +01002790 err = ERR_MINOR_OR_VOLUME_EXISTS;
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002791 goto out_idr_remove_minor;
2792 }
2793 kref_get(&device->kref);
Tejun Heo56de2102013-02-27 17:04:01 -08002794
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002795 INIT_LIST_HEAD(&device->peer_devices);
Lars Ellenberg4ce49262014-05-06 00:44:59 +02002796 INIT_LIST_HEAD(&device->pending_bitmap_io);
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002797 for_each_connection(connection, resource) {
2798 peer_device = kzalloc(sizeof(struct drbd_peer_device), GFP_KERNEL);
2799 if (!peer_device)
2800 goto out_idr_remove_from_resource;
2801 peer_device->connection = connection;
2802 peer_device->device = device;
2803
2804 list_add(&peer_device->peer_devices, &device->peer_devices);
2805 kref_get(&device->kref);
2806
2807 id = idr_alloc(&connection->peer_devices, peer_device, vnr, vnr + 1, GFP_KERNEL);
2808 if (id < 0) {
Andreas Gruenbacherf221f4b2014-11-10 17:21:10 +01002809 if (id == -ENOSPC)
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002810 err = ERR_INVALID_REQUEST;
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002811 goto out_idr_remove_from_resource;
Tejun Heo56de2102013-02-27 17:04:01 -08002812 }
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002813 kref_get(&connection->kref);
Philipp Reisner668700b2015-03-16 16:08:29 +01002814 INIT_WORK(&peer_device->send_acks_work, drbd_send_acks_wf);
Lars Ellenberg569083c2011-03-07 09:49:02 +01002815 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07002816
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002817 if (init_submitter(device)) {
Lars Ellenberg113fef92013-03-22 18:14:40 -06002818 err = ERR_NOMEM;
Lars Ellenberg113fef92013-03-22 18:14:40 -06002819 goto out_idr_remove_vol;
2820 }
2821
Philipp Reisner774b3052011-02-22 02:07:03 -05002822 add_disk(disk);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002823
Philipp Reisner2325eb62011-03-15 16:56:18 +01002824 /* inherit the connection state */
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002825 device->state.conn = first_connection(resource)->cstate;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02002826 if (device->state.conn == C_WF_REPORT_PARAMS) {
2827 for_each_peer_device(peer_device, device)
2828 drbd_connected(peer_device);
2829 }
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002830 /* move to create_peer_device() */
2831 for_each_peer_device(peer_device, device)
2832 drbd_debugfs_peer_device_add(peer_device);
2833 drbd_debugfs_device_add(device);
Philipp Reisner774b3052011-02-22 02:07:03 -05002834 return NO_ERROR;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002835
Lars Ellenberg113fef92013-03-22 18:14:40 -06002836out_idr_remove_vol:
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02002837 idr_remove(&connection->peer_devices, vnr);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002838out_idr_remove_from_resource:
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002839 for_each_connection(connection, resource) {
Matthew Wilcoxd3e709e2016-12-22 13:30:22 -05002840 peer_device = idr_remove(&connection->peer_devices, vnr);
2841 if (peer_device)
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002842 kref_put(&connection->kref, drbd_destroy_connection);
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002843 }
2844 for_each_peer_device_safe(peer_device, tmp_peer_device, device) {
2845 list_del(&peer_device->peer_devices);
2846 kfree(peer_device);
2847 }
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002848 idr_remove(&resource->devices, vnr);
Lars Ellenberg8432b312011-03-08 16:11:16 +01002849out_idr_remove_minor:
Andreas Gruenbacher93e4bf72013-05-23 14:57:17 +02002850 idr_remove(&drbd_devices, minor);
Lars Ellenberg569083c2011-03-07 09:49:02 +01002851 synchronize_rcu();
Lars Ellenberg8432b312011-03-08 16:11:16 +01002852out_no_minor_idr:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002853 drbd_bm_cleanup(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002854out_no_bitmap:
Lars Ellenberge37d2432014-04-01 23:53:30 +02002855 __free_page(device->md_io.page);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002856out_no_io_page:
2857 put_disk(disk);
2858out_no_disk:
2859 blk_cleanup_queue(q);
2860out_no_q:
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002861 kref_put(&resource->kref, drbd_destroy_resource);
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02002862 kfree(device);
Lars Ellenberg8432b312011-03-08 16:11:16 +01002863 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002864}
2865
Andreas Gruenbacherf82795d2011-07-03 23:32:26 +02002866void drbd_delete_device(struct drbd_device *device)
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002867{
2868 struct drbd_resource *resource = device->resource;
2869 struct drbd_connection *connection;
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002870 struct drbd_peer_device *peer_device;
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002871
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002872 /* move to free_peer_device() */
2873 for_each_peer_device(peer_device, device)
2874 drbd_debugfs_peer_device_cleanup(peer_device);
2875 drbd_debugfs_device_cleanup(device);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002876 for_each_connection(connection, resource) {
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02002877 idr_remove(&connection->peer_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 }
2880 idr_remove(&resource->devices, device->vnr);
Peter Zijlstrabdfafc42016-11-14 17:34:19 +01002881 kref_put(&device->kref, drbd_destroy_device);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002882 idr_remove(&drbd_devices, device_to_minor(device));
Peter Zijlstrabdfafc42016-11-14 17:34:19 +01002883 kref_put(&device->kref, drbd_destroy_device);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002884 del_gendisk(device->vdisk);
2885 synchronize_rcu();
Peter Zijlstrabdfafc42016-11-14 17:34:19 +01002886 kref_put(&device->kref, drbd_destroy_device);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002887}
2888
Lars Ellenberg8ce953a2014-02-27 09:46:18 +01002889static int __init drbd_init(void)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002890{
2891 int err;
2892
Roland Kammerer183ece32017-08-29 10:20:46 +02002893 if (drbd_minor_count < DRBD_MINOR_COUNT_MIN || drbd_minor_count > DRBD_MINOR_COUNT_MAX) {
2894 pr_err("invalid minor_count (%d)\n", drbd_minor_count);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002895#ifdef MODULE
2896 return -EINVAL;
2897#else
Philipp Reisner5fc1efd2017-08-30 13:47:11 +02002898 drbd_minor_count = DRBD_MINOR_COUNT_DEF;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002899#endif
2900 }
2901
Philipp Reisnerb411b362009-09-25 16:07:19 -07002902 err = register_blkdev(DRBD_MAJOR, "drbd");
2903 if (err) {
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002904 pr_err("unable to register block device major %d\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -07002905 DRBD_MAJOR);
2906 return err;
2907 }
2908
Philipp Reisnerb411b362009-09-25 16:07:19 -07002909 /*
2910 * allocate all necessary structs
2911 */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002912 init_waitqueue_head(&drbd_pp_wait);
2913
2914 drbd_proc = NULL; /* play safe for drbd_cleanup */
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +02002915 idr_init(&drbd_devices);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002916
Andreas Gruenbacher28bc3b82014-08-14 18:33:30 +02002917 mutex_init(&resources_mutex);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002918 INIT_LIST_HEAD(&drbd_resources);
Lars Ellenberg69babf02013-10-23 10:59:15 +02002919
2920 err = drbd_genl_register();
2921 if (err) {
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002922 pr_err("unable to register generic netlink family\n");
Lars Ellenberg69babf02013-10-23 10:59:15 +02002923 goto fail;
2924 }
2925
Philipp Reisnerb411b362009-09-25 16:07:19 -07002926 err = drbd_create_mempools();
2927 if (err)
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002928 goto fail;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002929
Wei Yongjun6110d702013-06-25 16:50:04 +02002930 err = -ENOMEM;
Linus Torvaldscf626b02018-06-04 10:00:01 -07002931 drbd_proc = proc_create_single("drbd", S_IFREG | 0444 , NULL, drbd_seq_show);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002932 if (!drbd_proc) {
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002933 pr_err("unable to register proc file\n");
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002934 goto fail;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002935 }
2936
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002937 retry.wq = create_singlethread_workqueue("drbd-reissue");
2938 if (!retry.wq) {
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002939 pr_err("unable to create retry workqueue\n");
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002940 goto fail;
2941 }
2942 INIT_WORK(&retry.worker, do_retry);
2943 spin_lock_init(&retry.lock);
2944 INIT_LIST_HEAD(&retry.writes);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002945
Greg Kroah-Hartmand27e84a2019-06-18 17:45:49 +02002946 drbd_debugfs_init();
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002947
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002948 pr_info("initialized. "
Philipp Reisnerb411b362009-09-25 16:07:19 -07002949 "Version: " REL_VERSION " (api:%d/proto:%d-%d)\n",
2950 API_VERSION, PRO_VERSION_MIN, PRO_VERSION_MAX);
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002951 pr_info("%s\n", drbd_buildtag());
2952 pr_info("registered as block device major %d\n", DRBD_MAJOR);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002953 return 0; /* Success! */
2954
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002955fail:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002956 drbd_cleanup();
2957 if (err == -ENOMEM)
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002958 pr_err("ran out of memory\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07002959 else
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002960 pr_err("initialization failure\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07002961 return err;
2962}
2963
Lars Ellenbergf4188152014-05-05 23:05:47 +02002964static void drbd_free_one_sock(struct drbd_socket *ds)
2965{
2966 struct socket *s;
2967 mutex_lock(&ds->mutex);
2968 s = ds->socket;
2969 ds->socket = NULL;
2970 mutex_unlock(&ds->mutex);
2971 if (s) {
2972 /* so debugfs does not need to mutex_lock() */
2973 synchronize_rcu();
2974 kernel_sock_shutdown(s, SHUT_RDWR);
2975 sock_release(s);
2976 }
2977}
2978
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002979void drbd_free_sock(struct drbd_connection *connection)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002980{
Lars Ellenbergf4188152014-05-05 23:05:47 +02002981 if (connection->data.socket)
2982 drbd_free_one_sock(&connection->data);
2983 if (connection->meta.socket)
2984 drbd_free_one_sock(&connection->meta);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002985}
2986
Philipp Reisnerb411b362009-09-25 16:07:19 -07002987/* meta data management */
2988
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002989void conn_md_sync(struct drbd_connection *connection)
Philipp Reisner19fffd72012-08-28 16:48:03 +02002990{
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02002991 struct drbd_peer_device *peer_device;
Philipp Reisner19fffd72012-08-28 16:48:03 +02002992 int vnr;
2993
2994 rcu_read_lock();
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02002995 idr_for_each_entry(&connection->peer_devices, peer_device, vnr) {
2996 struct drbd_device *device = peer_device->device;
2997
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002998 kref_get(&device->kref);
Philipp Reisner19fffd72012-08-28 16:48:03 +02002999 rcu_read_unlock();
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003000 drbd_md_sync(device);
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +02003001 kref_put(&device->kref, drbd_destroy_device);
Philipp Reisner19fffd72012-08-28 16:48:03 +02003002 rcu_read_lock();
3003 }
3004 rcu_read_unlock();
3005}
3006
Lars Ellenbergae8bf312013-03-19 18:16:43 +01003007/* aligned 4kByte */
Philipp Reisnerb411b362009-09-25 16:07:19 -07003008struct meta_data_on_disk {
Lars Ellenbergcccac982013-03-19 18:16:46 +01003009 u64 la_size_sect; /* last agreed size. */
Philipp Reisnerb411b362009-09-25 16:07:19 -07003010 u64 uuid[UI_SIZE]; /* UUIDs. */
3011 u64 device_uuid;
3012 u64 reserved_u64_1;
3013 u32 flags; /* MDF */
3014 u32 magic;
3015 u32 md_size_sect;
3016 u32 al_offset; /* offset to this block */
Lars Ellenbergae8bf312013-03-19 18:16:43 +01003017 u32 al_nr_extents; /* important for restoring the AL (userspace) */
Lars Ellenbergf3990022011-03-23 14:31:09 +01003018 /* `-- act_log->nr_elements <-- ldev->dc.al_extents */
Philipp Reisnerb411b362009-09-25 16:07:19 -07003019 u32 bm_offset; /* offset to the bitmap, from here */
3020 u32 bm_bytes_per_bit; /* BM_BLOCK_SIZE */
Philipp Reisner99432fc2011-05-20 16:39:13 +02003021 u32 la_peer_max_bio_size; /* last peer max_bio_size */
Philipp Reisnerb411b362009-09-25 16:07:19 -07003022
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003023 /* see al_tr_number_to_on_disk_sector() */
3024 u32 al_stripes;
3025 u32 al_stripe_size_4k;
3026
3027 u8 reserved_u8[4096 - (7*8 + 10*4)];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003028} __packed;
3029
Philipp Reisnerd752b262013-06-25 16:50:08 +02003030
3031
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003032void drbd_md_write(struct drbd_device *device, void *b)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003033{
Philipp Reisnerd752b262013-06-25 16:50:08 +02003034 struct meta_data_on_disk *buffer = b;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003035 sector_t sector;
3036 int i;
3037
Lars Ellenbergae8bf312013-03-19 18:16:43 +01003038 memset(buffer, 0, sizeof(*buffer));
Philipp Reisnerb411b362009-09-25 16:07:19 -07003039
Christoph Hellwig155bd9d2020-09-25 18:06:17 +02003040 buffer->la_size_sect = cpu_to_be64(get_capacity(device->vdisk));
Philipp Reisnerb411b362009-09-25 16:07:19 -07003041 for (i = UI_CURRENT; i < UI_SIZE; i++)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003042 buffer->uuid[i] = cpu_to_be64(device->ldev->md.uuid[i]);
3043 buffer->flags = cpu_to_be32(device->ldev->md.flags);
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003044 buffer->magic = cpu_to_be32(DRBD_MD_MAGIC_84_UNCLEAN);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003045
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003046 buffer->md_size_sect = cpu_to_be32(device->ldev->md.md_size_sect);
3047 buffer->al_offset = cpu_to_be32(device->ldev->md.al_offset);
3048 buffer->al_nr_extents = cpu_to_be32(device->act_log->nr_elements);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003049 buffer->bm_bytes_per_bit = cpu_to_be32(BM_BLOCK_SIZE);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003050 buffer->device_uuid = cpu_to_be64(device->ldev->md.device_uuid);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003051
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003052 buffer->bm_offset = cpu_to_be32(device->ldev->md.bm_offset);
3053 buffer->la_peer_max_bio_size = cpu_to_be32(device->peer_max_bio_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003054
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003055 buffer->al_stripes = cpu_to_be32(device->ldev->md.al_stripes);
3056 buffer->al_stripe_size_4k = cpu_to_be32(device->ldev->md.al_stripe_size_4k);
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003057
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02003058 D_ASSERT(device, drbd_md_ss(device->ldev) == device->ldev->md.md_offset);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003059 sector = device->ldev->md.md_offset;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003060
Mike Christiebb3cc852016-06-05 14:32:06 -05003061 if (drbd_md_sync_page_io(device, device->ldev, sector, REQ_OP_WRITE)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07003062 /* this was a try anyways ... */
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003063 drbd_err(device, "meta data update failed!\n");
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003064 drbd_chk_io_error(device, 1, DRBD_META_IO_ERROR);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003065 }
Philipp Reisnerd752b262013-06-25 16:50:08 +02003066}
3067
3068/**
3069 * drbd_md_sync() - Writes the meta data super block if the MD_DIRTY flag bit is set
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003070 * @device: DRBD device.
Philipp Reisnerd752b262013-06-25 16:50:08 +02003071 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003072void drbd_md_sync(struct drbd_device *device)
Philipp Reisnerd752b262013-06-25 16:50:08 +02003073{
3074 struct meta_data_on_disk *buffer;
3075
3076 /* Don't accidentally change the DRBD meta data layout. */
3077 BUILD_BUG_ON(UI_SIZE != 4);
3078 BUILD_BUG_ON(sizeof(struct meta_data_on_disk) != 4096);
3079
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003080 del_timer(&device->md_sync_timer);
Philipp Reisnerd752b262013-06-25 16:50:08 +02003081 /* timer may be rearmed by drbd_md_mark_dirty() now. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003082 if (!test_and_clear_bit(MD_DIRTY, &device->flags))
Philipp Reisnerd752b262013-06-25 16:50:08 +02003083 return;
3084
3085 /* We use here D_FAILED and not D_ATTACHING because we try to write
3086 * metadata even if we detach due to a disk failure! */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003087 if (!get_ldev_if_state(device, D_FAILED))
Philipp Reisnerd752b262013-06-25 16:50:08 +02003088 return;
3089
Lars Ellenberge37d2432014-04-01 23:53:30 +02003090 buffer = drbd_md_get_buffer(device, __func__);
Philipp Reisnerd752b262013-06-25 16:50:08 +02003091 if (!buffer)
3092 goto out;
3093
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003094 drbd_md_write(device, buffer);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003095
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003096 /* Update device->ldev->md.la_size_sect,
Philipp Reisnerb411b362009-09-25 16:07:19 -07003097 * since we updated it on metadata. */
Christoph Hellwig155bd9d2020-09-25 18:06:17 +02003098 device->ldev->md.la_size_sect = get_capacity(device->vdisk);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003099
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003100 drbd_md_put_buffer(device);
Philipp Reisnere1711732011-06-27 11:51:46 +02003101out:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003102 put_ldev(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003103}
3104
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003105static int check_activity_log_stripe_size(struct drbd_device *device,
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003106 struct meta_data_on_disk *on_disk,
3107 struct drbd_md *in_core)
3108{
3109 u32 al_stripes = be32_to_cpu(on_disk->al_stripes);
3110 u32 al_stripe_size_4k = be32_to_cpu(on_disk->al_stripe_size_4k);
3111 u64 al_size_4k;
3112
3113 /* both not set: default to old fixed size activity log */
3114 if (al_stripes == 0 && al_stripe_size_4k == 0) {
3115 al_stripes = 1;
3116 al_stripe_size_4k = MD_32kB_SECT/8;
3117 }
3118
3119 /* some paranoia plausibility checks */
3120
3121 /* we need both values to be set */
3122 if (al_stripes == 0 || al_stripe_size_4k == 0)
3123 goto err;
3124
3125 al_size_4k = (u64)al_stripes * al_stripe_size_4k;
3126
3127 /* Upper limit of activity log area, to avoid potential overflow
3128 * problems in al_tr_number_to_on_disk_sector(). As right now, more
3129 * than 72 * 4k blocks total only increases the amount of history,
3130 * limiting this arbitrarily to 16 GB is not a real limitation ;-) */
3131 if (al_size_4k > (16 * 1024 * 1024/4))
3132 goto err;
3133
3134 /* Lower limit: we need at least 8 transaction slots (32kB)
3135 * to not break existing setups */
3136 if (al_size_4k < MD_32kB_SECT/8)
3137 goto err;
3138
3139 in_core->al_stripe_size_4k = al_stripe_size_4k;
3140 in_core->al_stripes = al_stripes;
3141 in_core->al_size_4k = al_size_4k;
3142
3143 return 0;
3144err:
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003145 drbd_err(device, "invalid activity log striping: al_stripes=%u, al_stripe_size_4k=%u\n",
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003146 al_stripes, al_stripe_size_4k);
3147 return -EINVAL;
3148}
3149
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003150static int check_offsets_and_sizes(struct drbd_device *device, struct drbd_backing_dev *bdev)
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003151{
3152 sector_t capacity = drbd_get_capacity(bdev->md_bdev);
3153 struct drbd_md *in_core = &bdev->md;
3154 s32 on_disk_al_sect;
3155 s32 on_disk_bm_sect;
3156
3157 /* The on-disk size of the activity log, calculated from offsets, and
3158 * the size of the activity log calculated from the stripe settings,
3159 * should match.
3160 * Though we could relax this a bit: it is ok, if the striped activity log
3161 * fits in the available on-disk activity log size.
3162 * Right now, that would break how resize is implemented.
3163 * TODO: make drbd_determine_dev_size() (and the drbdmeta tool) aware
3164 * of possible unused padding space in the on disk layout. */
3165 if (in_core->al_offset < 0) {
3166 if (in_core->bm_offset > in_core->al_offset)
3167 goto err;
3168 on_disk_al_sect = -in_core->al_offset;
3169 on_disk_bm_sect = in_core->al_offset - in_core->bm_offset;
3170 } else {
3171 if (in_core->al_offset != MD_4kB_SECT)
3172 goto err;
3173 if (in_core->bm_offset < in_core->al_offset + in_core->al_size_4k * MD_4kB_SECT)
3174 goto err;
3175
3176 on_disk_al_sect = in_core->bm_offset - MD_4kB_SECT;
3177 on_disk_bm_sect = in_core->md_size_sect - in_core->bm_offset;
3178 }
3179
3180 /* old fixed size meta data is exactly that: fixed. */
3181 if (in_core->meta_dev_idx >= 0) {
3182 if (in_core->md_size_sect != MD_128MB_SECT
3183 || in_core->al_offset != MD_4kB_SECT
3184 || in_core->bm_offset != MD_4kB_SECT + MD_32kB_SECT
3185 || in_core->al_stripes != 1
3186 || in_core->al_stripe_size_4k != MD_32kB_SECT/8)
3187 goto err;
3188 }
3189
3190 if (capacity < in_core->md_size_sect)
3191 goto err;
3192 if (capacity - in_core->md_size_sect < drbd_md_first_sector(bdev))
3193 goto err;
3194
3195 /* should be aligned, and at least 32k */
3196 if ((on_disk_al_sect & 7) || (on_disk_al_sect < MD_32kB_SECT))
3197 goto err;
3198
3199 /* should fit (for now: exactly) into the available on-disk space;
3200 * overflow prevention is in check_activity_log_stripe_size() above. */
3201 if (on_disk_al_sect != in_core->al_size_4k * MD_4kB_SECT)
3202 goto err;
3203
3204 /* again, should be aligned */
3205 if (in_core->bm_offset & 7)
3206 goto err;
3207
3208 /* FIXME check for device grow with flex external meta data? */
3209
3210 /* can the available bitmap space cover the last agreed device size? */
3211 if (on_disk_bm_sect < (in_core->la_size_sect+7)/MD_4kB_SECT/8/512)
3212 goto err;
3213
3214 return 0;
3215
3216err:
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003217 drbd_err(device, "meta data offsets don't make sense: idx=%d "
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003218 "al_s=%u, al_sz4k=%u, al_offset=%d, bm_offset=%d, "
3219 "md_size_sect=%u, la_size=%llu, md_capacity=%llu\n",
3220 in_core->meta_dev_idx,
3221 in_core->al_stripes, in_core->al_stripe_size_4k,
3222 in_core->al_offset, in_core->bm_offset, in_core->md_size_sect,
3223 (unsigned long long)in_core->la_size_sect,
3224 (unsigned long long)capacity);
3225
3226 return -EINVAL;
3227}
3228
3229
Philipp Reisnerb411b362009-09-25 16:07:19 -07003230/**
3231 * drbd_md_read() - Reads in the meta data super block
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003232 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003233 * @bdev: Device from which the meta data should be read in.
3234 *
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003235 * Return NO_ERROR on success, and an enum drbd_ret_code in case
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003236 * something goes wrong.
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003237 *
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003238 * Called exactly once during drbd_adm_attach(), while still being D_DISKLESS,
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003239 * even before @bdev is assigned to @device->ldev.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003240 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003241int drbd_md_read(struct drbd_device *device, struct drbd_backing_dev *bdev)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003242{
3243 struct meta_data_on_disk *buffer;
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003244 u32 magic, flags;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003245 int i, rv = NO_ERROR;
3246
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003247 if (device->state.disk != D_DISKLESS)
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003248 return ERR_DISK_CONFIGURED;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003249
Lars Ellenberge37d2432014-04-01 23:53:30 +02003250 buffer = drbd_md_get_buffer(device, __func__);
Philipp Reisnere1711732011-06-27 11:51:46 +02003251 if (!buffer)
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003252 return ERR_NOMEM;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003253
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003254 /* First, figure out where our meta data superblock is located,
3255 * and read it. */
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003256 bdev->md.meta_dev_idx = bdev->disk_conf->meta_dev_idx;
3257 bdev->md.md_offset = drbd_md_ss(bdev);
Lars Ellenbergedb5e5f2015-03-24 21:35:26 +01003258 /* Even for (flexible or indexed) external meta data,
3259 * initially restrict us to the 4k superblock for now.
3260 * Affects the paranoia out-of-range access check in drbd_md_sync_page_io(). */
3261 bdev->md.md_size_sect = 8;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003262
Mike Christiebb3cc852016-06-05 14:32:06 -05003263 if (drbd_md_sync_page_io(device, bdev, bdev->md.md_offset,
3264 REQ_OP_READ)) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003265 /* NOTE: can't do normal error processing here as this is
Philipp Reisnerb411b362009-09-25 16:07:19 -07003266 called BEFORE disk is attached */
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003267 drbd_err(device, "Error while reading metadata.\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07003268 rv = ERR_IO_MD_DISK;
3269 goto err;
3270 }
3271
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003272 magic = be32_to_cpu(buffer->magic);
3273 flags = be32_to_cpu(buffer->flags);
3274 if (magic == DRBD_MD_MAGIC_84_UNCLEAN ||
3275 (magic == DRBD_MD_MAGIC_08 && !(flags & MDF_AL_CLEAN))) {
3276 /* btw: that's Activity Log clean, not "all" clean. */
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003277 drbd_err(device, "Found unclean meta data. Did you \"drbdadm apply-al\"?\n");
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003278 rv = ERR_MD_UNCLEAN;
3279 goto err;
3280 }
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003281
3282 rv = ERR_MD_INVALID;
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003283 if (magic != DRBD_MD_MAGIC_08) {
Philipp Reisner43de7c82011-11-10 13:16:13 +01003284 if (magic == DRBD_MD_MAGIC_07)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003285 drbd_err(device, "Found old (0.7) meta data magic. Did you \"drbdadm create-md\"?\n");
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003286 else
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003287 drbd_err(device, "Meta data magic not found. Did you \"drbdadm create-md\"?\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07003288 goto err;
3289 }
3290
3291 if (be32_to_cpu(buffer->bm_bytes_per_bit) != BM_BLOCK_SIZE) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003292 drbd_err(device, "unexpected bm_bytes_per_bit: %u (expected %u)\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003293 be32_to_cpu(buffer->bm_bytes_per_bit), BM_BLOCK_SIZE);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003294 goto err;
3295 }
3296
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003297
3298 /* convert to in_core endian */
3299 bdev->md.la_size_sect = be64_to_cpu(buffer->la_size_sect);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003300 for (i = UI_CURRENT; i < UI_SIZE; i++)
3301 bdev->md.uuid[i] = be64_to_cpu(buffer->uuid[i]);
3302 bdev->md.flags = be32_to_cpu(buffer->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003303 bdev->md.device_uuid = be64_to_cpu(buffer->device_uuid);
3304
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003305 bdev->md.md_size_sect = be32_to_cpu(buffer->md_size_sect);
3306 bdev->md.al_offset = be32_to_cpu(buffer->al_offset);
3307 bdev->md.bm_offset = be32_to_cpu(buffer->bm_offset);
3308
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003309 if (check_activity_log_stripe_size(device, buffer, &bdev->md))
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003310 goto err;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003311 if (check_offsets_and_sizes(device, bdev))
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003312 goto err;
3313
Philipp Reisnerb411b362009-09-25 16:07:19 -07003314 if (be32_to_cpu(buffer->bm_offset) != bdev->md.bm_offset) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003315 drbd_err(device, "unexpected bm_offset: %d (expected %d)\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003316 be32_to_cpu(buffer->bm_offset), bdev->md.bm_offset);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003317 goto err;
3318 }
3319 if (be32_to_cpu(buffer->md_size_sect) != bdev->md.md_size_sect) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003320 drbd_err(device, "unexpected md_size: %u (expected %u)\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003321 be32_to_cpu(buffer->md_size_sect), bdev->md.md_size_sect);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003322 goto err;
3323 }
3324
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003325 rv = NO_ERROR;
3326
Andreas Gruenbacher05008132011-07-07 14:19:42 +02003327 spin_lock_irq(&device->resource->req_lock);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003328 if (device->state.conn < C_CONNECTED) {
Lars Ellenbergdb141b22012-06-25 19:15:58 +02003329 unsigned int peer;
Philipp Reisner99432fc2011-05-20 16:39:13 +02003330 peer = be32_to_cpu(buffer->la_peer_max_bio_size);
Lars Ellenbergdb141b22012-06-25 19:15:58 +02003331 peer = max(peer, DRBD_MAX_BIO_SIZE_SAFE);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003332 device->peer_max_bio_size = peer;
Philipp Reisner99432fc2011-05-20 16:39:13 +02003333 }
Andreas Gruenbacher05008132011-07-07 14:19:42 +02003334 spin_unlock_irq(&device->resource->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003335
3336 err:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003337 drbd_md_put_buffer(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003338
3339 return rv;
3340}
3341
3342/**
3343 * drbd_md_mark_dirty() - Mark meta data super block as dirty
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003344 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003345 *
3346 * Call this function if you change anything that should be written to
3347 * the meta-data super block. This function sets MD_DIRTY, and starts a
3348 * timer that ensures that within five seconds you have to call drbd_md_sync().
3349 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003350void drbd_md_mark_dirty(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003351{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003352 if (!test_and_set_bit(MD_DIRTY, &device->flags))
3353 mod_timer(&device->md_sync_timer, jiffies + 5*HZ);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003354}
Philipp Reisnerb411b362009-09-25 16:07:19 -07003355
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003356void drbd_uuid_move_history(struct drbd_device *device) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003357{
3358 int i;
3359
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003360 for (i = UI_HISTORY_START; i < UI_HISTORY_END; i++)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003361 device->ldev->md.uuid[i+1] = device->ldev->md.uuid[i];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003362}
3363
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003364void __drbd_uuid_set(struct drbd_device *device, int idx, u64 val) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003365{
3366 if (idx == UI_CURRENT) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003367 if (device->state.role == R_PRIMARY)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003368 val |= 1;
3369 else
3370 val &= ~((u64)1);
3371
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003372 drbd_set_ed_uuid(device, val);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003373 }
3374
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003375 device->ldev->md.uuid[idx] = val;
3376 drbd_md_mark_dirty(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003377}
3378
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003379void _drbd_uuid_set(struct drbd_device *device, int idx, u64 val) __must_hold(local)
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003380{
3381 unsigned long flags;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003382 spin_lock_irqsave(&device->ldev->md.uuid_lock, flags);
3383 __drbd_uuid_set(device, idx, val);
3384 spin_unlock_irqrestore(&device->ldev->md.uuid_lock, flags);
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003385}
Philipp Reisnerb411b362009-09-25 16:07:19 -07003386
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003387void drbd_uuid_set(struct drbd_device *device, int idx, u64 val) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003388{
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003389 unsigned long flags;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003390 spin_lock_irqsave(&device->ldev->md.uuid_lock, flags);
3391 if (device->ldev->md.uuid[idx]) {
3392 drbd_uuid_move_history(device);
3393 device->ldev->md.uuid[UI_HISTORY_START] = device->ldev->md.uuid[idx];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003394 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003395 __drbd_uuid_set(device, idx, val);
3396 spin_unlock_irqrestore(&device->ldev->md.uuid_lock, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003397}
3398
3399/**
3400 * drbd_uuid_new_current() - Creates a new current UUID
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003401 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003402 *
3403 * Creates a new current UUID, and rotates the old current UUID into
3404 * the bitmap slot. Causes an incremental resync upon next connect.
3405 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003406void drbd_uuid_new_current(struct drbd_device *device) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003407{
3408 u64 val;
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003409 unsigned long long bm_uuid;
3410
3411 get_random_bytes(&val, sizeof(u64));
3412
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003413 spin_lock_irq(&device->ldev->md.uuid_lock);
3414 bm_uuid = device->ldev->md.uuid[UI_BITMAP];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003415
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003416 if (bm_uuid)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003417 drbd_warn(device, "bm UUID was already set: %llX\n", bm_uuid);
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003418
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003419 device->ldev->md.uuid[UI_BITMAP] = device->ldev->md.uuid[UI_CURRENT];
3420 __drbd_uuid_set(device, UI_CURRENT, val);
3421 spin_unlock_irq(&device->ldev->md.uuid_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003422
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003423 drbd_print_uuids(device, "new current UUID");
Lars Ellenbergaaa8e2b2010-10-15 13:16:53 +02003424 /* get it to stable storage _now_ */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003425 drbd_md_sync(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003426}
3427
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003428void drbd_uuid_set_bm(struct drbd_device *device, u64 val) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003429{
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003430 unsigned long flags;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003431 if (device->ldev->md.uuid[UI_BITMAP] == 0 && val == 0)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003432 return;
3433
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003434 spin_lock_irqsave(&device->ldev->md.uuid_lock, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003435 if (val == 0) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003436 drbd_uuid_move_history(device);
3437 device->ldev->md.uuid[UI_HISTORY_START] = device->ldev->md.uuid[UI_BITMAP];
3438 device->ldev->md.uuid[UI_BITMAP] = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003439 } else {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003440 unsigned long long bm_uuid = device->ldev->md.uuid[UI_BITMAP];
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003441 if (bm_uuid)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003442 drbd_warn(device, "bm UUID was already set: %llX\n", bm_uuid);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003443
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003444 device->ldev->md.uuid[UI_BITMAP] = val & ~((u64)1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003445 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003446 spin_unlock_irqrestore(&device->ldev->md.uuid_lock, flags);
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003447
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003448 drbd_md_mark_dirty(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003449}
3450
3451/**
3452 * drbd_bmio_set_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003453 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003454 *
3455 * Sets all bits in the bitmap and writes the whole bitmap to stable storage.
3456 */
Philipp Reisner8fe39aa2013-11-22 13:22:13 +01003457int drbd_bmio_set_n_write(struct drbd_device *device) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003458{
3459 int rv = -EIO;
3460
Philipp Reisner8fe39aa2013-11-22 13:22:13 +01003461 drbd_md_set_flag(device, MDF_FULL_SYNC);
3462 drbd_md_sync(device);
3463 drbd_bm_set_all(device);
3464
3465 rv = drbd_bm_write(device);
3466
3467 if (!rv) {
3468 drbd_md_clear_flag(device, MDF_FULL_SYNC);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003469 drbd_md_sync(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003470 }
3471
3472 return rv;
3473}
3474
3475/**
3476 * drbd_bmio_clear_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003477 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003478 *
3479 * Clears all bits in the bitmap and writes the whole bitmap to stable storage.
3480 */
Philipp Reisner8fe39aa2013-11-22 13:22:13 +01003481int drbd_bmio_clear_n_write(struct drbd_device *device) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003482{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003483 drbd_resume_al(device);
Philipp Reisner8fe39aa2013-11-22 13:22:13 +01003484 drbd_bm_clear_all(device);
3485 return drbd_bm_write(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003486}
3487
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003488static int w_bitmap_io(struct drbd_work *w, int unused)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003489{
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02003490 struct drbd_device *device =
3491 container_of(w, struct drbd_device, bm_io_work.w);
3492 struct bm_io_work *work = &device->bm_io_work;
Lars Ellenberg02851e92010-12-16 14:47:39 +01003493 int rv = -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003494
Lars Ellenbergbca1cba2016-06-14 00:26:16 +02003495 if (work->flags != BM_LOCKED_CHANGE_ALLOWED) {
3496 int cnt = atomic_read(&device->ap_bio_cnt);
3497 if (cnt)
3498 drbd_err(device, "FIXME: ap_bio_cnt %d, expected 0; queued for '%s'\n",
3499 cnt, work->why);
3500 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07003501
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003502 if (get_ldev(device)) {
3503 drbd_bm_lock(device, work->why, work->flags);
3504 rv = work->io_fn(device);
3505 drbd_bm_unlock(device);
3506 put_ldev(device);
Lars Ellenberg02851e92010-12-16 14:47:39 +01003507 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07003508
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003509 clear_bit_unlock(BITMAP_IO, &device->flags);
3510 wake_up(&device->misc_wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003511
3512 if (work->done)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003513 work->done(device, rv);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003514
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003515 clear_bit(BITMAP_IO_QUEUED, &device->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003516 work->why = NULL;
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003517 work->flags = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003518
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003519 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003520}
3521
3522/**
3523 * drbd_queue_bitmap_io() - Queues an IO operation on the whole bitmap
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003524 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003525 * @io_fn: IO callback to be called when bitmap IO is possible
3526 * @done: callback to be called after the bitmap IO was performed
3527 * @why: Descriptive text of the reason for doing the IO
3528 *
3529 * While IO on the bitmap happens we freeze application IO thus we ensure
3530 * that drbd_set_out_of_sync() can not be called. This function MAY ONLY be
3531 * called from worker context. It MUST NOT be used while a previous such
3532 * work is still pending!
Philipp Reisner8fe39aa2013-11-22 13:22:13 +01003533 *
3534 * Its worker function encloses the call of io_fn() by get_ldev() and
3535 * put_ldev().
Philipp Reisnerb411b362009-09-25 16:07:19 -07003536 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003537void drbd_queue_bitmap_io(struct drbd_device *device,
Andreas Gruenbacher54761692011-05-30 16:15:21 +02003538 int (*io_fn)(struct drbd_device *),
3539 void (*done)(struct drbd_device *, int),
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003540 char *why, enum bm_flag flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003541{
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02003542 D_ASSERT(device, current == first_peer_device(device)->connection->worker.task);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003543
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02003544 D_ASSERT(device, !test_bit(BITMAP_IO_QUEUED, &device->flags));
3545 D_ASSERT(device, !test_bit(BITMAP_IO, &device->flags));
3546 D_ASSERT(device, list_empty(&device->bm_io_work.w.list));
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003547 if (device->bm_io_work.why)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003548 drbd_err(device, "FIXME going to queue '%s' but '%s' still pending?\n",
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003549 why, device->bm_io_work.why);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003550
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003551 device->bm_io_work.io_fn = io_fn;
3552 device->bm_io_work.done = done;
3553 device->bm_io_work.why = why;
3554 device->bm_io_work.flags = flags;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003555
Andreas Gruenbacher05008132011-07-07 14:19:42 +02003556 spin_lock_irq(&device->resource->req_lock);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003557 set_bit(BITMAP_IO, &device->flags);
Lars Ellenberg5bded4e2015-04-16 16:51:34 +02003558 /* don't wait for pending application IO if the caller indicates that
3559 * application IO does not conflict anyways. */
3560 if (flags == BM_LOCKED_CHANGE_ALLOWED || atomic_read(&device->ap_bio_cnt) == 0) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003561 if (!test_and_set_bit(BITMAP_IO_QUEUED, &device->flags))
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02003562 drbd_queue_work(&first_peer_device(device)->connection->sender_work,
3563 &device->bm_io_work.w);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003564 }
Andreas Gruenbacher05008132011-07-07 14:19:42 +02003565 spin_unlock_irq(&device->resource->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003566}
3567
3568/**
3569 * drbd_bitmap_io() - Does an IO operation on the whole bitmap
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003570 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003571 * @io_fn: IO callback to be called when bitmap IO is possible
3572 * @why: Descriptive text of the reason for doing the IO
3573 *
3574 * freezes application IO while that the actual IO operations runs. This
3575 * functions MAY NOT be called from worker context.
3576 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003577int drbd_bitmap_io(struct drbd_device *device, int (*io_fn)(struct drbd_device *),
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003578 char *why, enum bm_flag flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003579{
Lars Ellenbergc0065f92016-06-14 00:26:10 +02003580 /* Only suspend io, if some operation is supposed to be locked out */
3581 const bool do_suspend_io = flags & (BM_DONT_CLEAR|BM_DONT_SET|BM_DONT_TEST);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003582 int rv;
3583
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02003584 D_ASSERT(device, current != first_peer_device(device)->connection->worker.task);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003585
Lars Ellenbergc0065f92016-06-14 00:26:10 +02003586 if (do_suspend_io)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003587 drbd_suspend_io(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003588
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003589 drbd_bm_lock(device, why, flags);
3590 rv = io_fn(device);
3591 drbd_bm_unlock(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003592
Lars Ellenbergc0065f92016-06-14 00:26:10 +02003593 if (do_suspend_io)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003594 drbd_resume_io(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003595
3596 return rv;
3597}
3598
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003599void drbd_md_set_flag(struct drbd_device *device, int flag) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003600{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003601 if ((device->ldev->md.flags & flag) != flag) {
3602 drbd_md_mark_dirty(device);
3603 device->ldev->md.flags |= flag;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003604 }
3605}
3606
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003607void drbd_md_clear_flag(struct drbd_device *device, int flag) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003608{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003609 if ((device->ldev->md.flags & flag) != 0) {
3610 drbd_md_mark_dirty(device);
3611 device->ldev->md.flags &= ~flag;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003612 }
3613}
3614int drbd_md_test_flag(struct drbd_backing_dev *bdev, int flag)
3615{
3616 return (bdev->md.flags & flag) != 0;
3617}
3618
Kees Cook2bccef32017-10-17 20:33:01 -07003619static void md_sync_timer_fn(struct timer_list *t)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003620{
Kees Cook2bccef32017-10-17 20:33:01 -07003621 struct drbd_device *device = from_timer(device, t, md_sync_timer);
Lars Ellenbergac0acb92014-02-11 09:47:58 +01003622 drbd_device_post_work(device, MD_SYNC);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003623}
3624
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01003625const char *cmdname(enum drbd_packet cmd)
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003626{
3627 /* THINK may need to become several global tables
3628 * when we want to support more than
3629 * one PRO_VERSION */
3630 static const char *cmdnames[] = {
3631 [P_DATA] = "Data",
Lars Ellenberg9104d312016-06-14 00:26:31 +02003632 [P_WSAME] = "WriteSame",
3633 [P_TRIM] = "Trim",
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003634 [P_DATA_REPLY] = "DataReply",
3635 [P_RS_DATA_REPLY] = "RSDataReply",
3636 [P_BARRIER] = "Barrier",
3637 [P_BITMAP] = "ReportBitMap",
3638 [P_BECOME_SYNC_TARGET] = "BecomeSyncTarget",
3639 [P_BECOME_SYNC_SOURCE] = "BecomeSyncSource",
3640 [P_UNPLUG_REMOTE] = "UnplugRemote",
3641 [P_DATA_REQUEST] = "DataRequest",
3642 [P_RS_DATA_REQUEST] = "RSDataRequest",
3643 [P_SYNC_PARAM] = "SyncParam",
3644 [P_SYNC_PARAM89] = "SyncParam89",
3645 [P_PROTOCOL] = "ReportProtocol",
3646 [P_UUIDS] = "ReportUUIDs",
3647 [P_SIZES] = "ReportSizes",
3648 [P_STATE] = "ReportState",
3649 [P_SYNC_UUID] = "ReportSyncUUID",
3650 [P_AUTH_CHALLENGE] = "AuthChallenge",
3651 [P_AUTH_RESPONSE] = "AuthResponse",
3652 [P_PING] = "Ping",
3653 [P_PING_ACK] = "PingAck",
3654 [P_RECV_ACK] = "RecvAck",
3655 [P_WRITE_ACK] = "WriteAck",
3656 [P_RS_WRITE_ACK] = "RSWriteAck",
Lars Ellenbergd4dabbe2012-08-01 12:33:51 +02003657 [P_SUPERSEDED] = "Superseded",
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003658 [P_NEG_ACK] = "NegAck",
3659 [P_NEG_DREPLY] = "NegDReply",
3660 [P_NEG_RS_DREPLY] = "NegRSDReply",
3661 [P_BARRIER_ACK] = "BarrierAck",
3662 [P_STATE_CHG_REQ] = "StateChgRequest",
3663 [P_STATE_CHG_REPLY] = "StateChgReply",
3664 [P_OV_REQUEST] = "OVRequest",
3665 [P_OV_REPLY] = "OVReply",
3666 [P_OV_RESULT] = "OVResult",
3667 [P_CSUM_RS_REQUEST] = "CsumRSRequest",
3668 [P_RS_IS_IN_SYNC] = "CsumRSIsInSync",
3669 [P_COMPRESSED_BITMAP] = "CBitmap",
3670 [P_DELAY_PROBE] = "DelayProbe",
3671 [P_OUT_OF_SYNC] = "OutOfSync",
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003672 [P_RETRY_WRITE] = "RetryWrite",
Lars Ellenbergae25b332011-04-24 00:01:16 +02003673 [P_RS_CANCEL] = "RSCancel",
3674 [P_CONN_ST_CHG_REQ] = "conn_st_chg_req",
3675 [P_CONN_ST_CHG_REPLY] = "conn_st_chg_reply",
Philipp Reisner036b17e2011-05-16 17:38:11 +02003676 [P_RETRY_WRITE] = "retry_write",
3677 [P_PROTOCOL_UPDATE] = "protocol_update",
Philipp Reisner700ca8c2016-06-14 00:26:13 +02003678 [P_RS_THIN_REQ] = "rs_thin_req",
3679 [P_RS_DEALLOCATED] = "rs_deallocated",
Lars Ellenbergae25b332011-04-24 00:01:16 +02003680
3681 /* enum drbd_packet, but not commands - obsoleted flags:
3682 * P_MAY_IGNORE
3683 * P_MAX_OPT_CMD
3684 */
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003685 };
3686
Lars Ellenbergae25b332011-04-24 00:01:16 +02003687 /* too big for the array: 0xfffX */
Andreas Gruenbachere5d6f332011-03-28 16:44:40 +02003688 if (cmd == P_INITIAL_META)
3689 return "InitialMeta";
3690 if (cmd == P_INITIAL_DATA)
3691 return "InitialData";
Andreas Gruenbacher60381782011-03-28 17:05:50 +02003692 if (cmd == P_CONNECTION_FEATURES)
3693 return "ConnectionFeatures";
Andreas Gruenbacher6e849ce2011-03-14 17:27:45 +01003694 if (cmd >= ARRAY_SIZE(cmdnames))
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003695 return "Unknown";
3696 return cmdnames[cmd];
3697}
3698
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003699/**
3700 * drbd_wait_misc - wait for a request to make progress
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003701 * @device: device associated with the request
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003702 * @i: the struct drbd_interval embedded in struct drbd_request or
3703 * struct drbd_peer_request
3704 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003705int drbd_wait_misc(struct drbd_device *device, struct drbd_interval *i)
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003706{
Philipp Reisner44ed1672011-04-19 17:10:19 +02003707 struct net_conf *nc;
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003708 DEFINE_WAIT(wait);
3709 long timeout;
3710
Philipp Reisner44ed1672011-04-19 17:10:19 +02003711 rcu_read_lock();
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02003712 nc = rcu_dereference(first_peer_device(device)->connection->net_conf);
Philipp Reisner44ed1672011-04-19 17:10:19 +02003713 if (!nc) {
3714 rcu_read_unlock();
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003715 return -ETIMEDOUT;
Philipp Reisner44ed1672011-04-19 17:10:19 +02003716 }
3717 timeout = nc->ko_count ? nc->timeout * HZ / 10 * nc->ko_count : MAX_SCHEDULE_TIMEOUT;
3718 rcu_read_unlock();
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003719
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003720 /* Indicate to wake up device->misc_wait on progress. */
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003721 i->waiting = true;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003722 prepare_to_wait(&device->misc_wait, &wait, TASK_INTERRUPTIBLE);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02003723 spin_unlock_irq(&device->resource->req_lock);
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003724 timeout = schedule_timeout(timeout);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003725 finish_wait(&device->misc_wait, &wait);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02003726 spin_lock_irq(&device->resource->req_lock);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003727 if (!timeout || device->state.conn < C_CONNECTED)
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003728 return -ETIMEDOUT;
3729 if (signal_pending(current))
3730 return -ERESTARTSYS;
3731 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003732}
3733
Andreas Gruenbacher28bc3b82014-08-14 18:33:30 +02003734void lock_all_resources(void)
3735{
3736 struct drbd_resource *resource;
3737 int __maybe_unused i = 0;
3738
3739 mutex_lock(&resources_mutex);
3740 local_irq_disable();
3741 for_each_resource(resource, &drbd_resources)
3742 spin_lock_nested(&resource->req_lock, i++);
3743}
3744
3745void unlock_all_resources(void)
3746{
3747 struct drbd_resource *resource;
3748
3749 for_each_resource(resource, &drbd_resources)
3750 spin_unlock(&resource->req_lock);
3751 local_irq_enable();
3752 mutex_unlock(&resources_mutex);
3753}
3754
Philipp Reisnerb411b362009-09-25 16:07:19 -07003755#ifdef CONFIG_DRBD_FAULT_INJECTION
3756/* Fault insertion support including random number generator shamelessly
3757 * stolen from kernel/rcutorture.c */
3758struct fault_random_state {
3759 unsigned long state;
3760 unsigned long count;
3761};
3762
3763#define FAULT_RANDOM_MULT 39916801 /* prime */
3764#define FAULT_RANDOM_ADD 479001701 /* prime */
3765#define FAULT_RANDOM_REFRESH 10000
3766
3767/*
3768 * Crude but fast random-number generator. Uses a linear congruential
3769 * generator, with occasional help from get_random_bytes().
3770 */
3771static unsigned long
3772_drbd_fault_random(struct fault_random_state *rsp)
3773{
3774 long refresh;
3775
Roel Kluin49829ea2009-12-15 22:55:44 +01003776 if (!rsp->count--) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07003777 get_random_bytes(&refresh, sizeof(refresh));
3778 rsp->state += refresh;
3779 rsp->count = FAULT_RANDOM_REFRESH;
3780 }
3781 rsp->state = rsp->state * FAULT_RANDOM_MULT + FAULT_RANDOM_ADD;
3782 return swahw32(rsp->state);
3783}
3784
3785static char *
3786_drbd_fault_str(unsigned int type) {
3787 static char *_faults[] = {
3788 [DRBD_FAULT_MD_WR] = "Meta-data write",
3789 [DRBD_FAULT_MD_RD] = "Meta-data read",
3790 [DRBD_FAULT_RS_WR] = "Resync write",
3791 [DRBD_FAULT_RS_RD] = "Resync read",
3792 [DRBD_FAULT_DT_WR] = "Data write",
3793 [DRBD_FAULT_DT_RD] = "Data read",
3794 [DRBD_FAULT_DT_RA] = "Data read ahead",
3795 [DRBD_FAULT_BM_ALLOC] = "BM allocation",
Philipp Reisner6b4388a2010-04-26 14:11:45 +02003796 [DRBD_FAULT_AL_EE] = "EE allocation",
3797 [DRBD_FAULT_RECEIVE] = "receive data corruption",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003798 };
3799
3800 return (type < DRBD_FAULT_MAX) ? _faults[type] : "**Unknown**";
3801}
3802
3803unsigned int
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003804_drbd_insert_fault(struct drbd_device *device, unsigned int type)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003805{
3806 static struct fault_random_state rrs = {0, 0};
3807
3808 unsigned int ret = (
Roland Kammerer183ece32017-08-29 10:20:46 +02003809 (drbd_fault_devs == 0 ||
3810 ((1 << device_to_minor(device)) & drbd_fault_devs) != 0) &&
3811 (((_drbd_fault_random(&rrs) % 100) + 1) <= drbd_fault_rate));
Philipp Reisnerb411b362009-09-25 16:07:19 -07003812
3813 if (ret) {
Roland Kammerer183ece32017-08-29 10:20:46 +02003814 drbd_fault_count++;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003815
Lars Ellenberg73835062010-05-27 11:51:56 +02003816 if (__ratelimit(&drbd_ratelimit_state))
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003817 drbd_warn(device, "***Simulating %s failure\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003818 _drbd_fault_str(type));
3819 }
3820
3821 return ret;
3822}
3823#endif
3824
3825const char *drbd_buildtag(void)
3826{
3827 /* DRBD built from external sources has here a reference to the
3828 git hash of the source code. */
3829
3830 static char buildtag[38] = "\0uilt-in";
3831
3832 if (buildtag[0] == 0) {
Cong Wangbc4854b2012-04-03 14:13:36 +08003833#ifdef MODULE
3834 sprintf(buildtag, "srcversion: %-24s", THIS_MODULE->srcversion);
3835#else
3836 buildtag[0] = 'b';
Philipp Reisnerb411b362009-09-25 16:07:19 -07003837#endif
Philipp Reisnerb411b362009-09-25 16:07:19 -07003838 }
3839
3840 return buildtag;
3841}
3842
3843module_init(drbd_init)
3844module_exit(drbd_cleanup)
3845
Philipp Reisnerb411b362009-09-25 16:07:19 -07003846EXPORT_SYMBOL(drbd_conn_str);
3847EXPORT_SYMBOL(drbd_role_str);
3848EXPORT_SYMBOL(drbd_disk_str);
3849EXPORT_SYMBOL(drbd_set_st_err_str);