blob: 45fbd526c453bc41732db26813792ee5d0631591 [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 = {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700135 .owner = THIS_MODULE,
136 .open = drbd_open,
137 .release = drbd_release,
138};
139
Lars Ellenberg9476f392011-02-23 17:02:01 +0100140struct bio *bio_alloc_drbd(gfp_t gfp_mask)
141{
Lars Ellenbergda4a75d2011-02-23 17:02:01 +0100142 struct bio *bio;
143
Kent Overstreet0892fac2018-05-20 18:25:48 -0400144 if (!bioset_initialized(&drbd_md_io_bio_set))
Lars Ellenberg9476f392011-02-23 17:02:01 +0100145 return bio_alloc(gfp_mask, 1);
146
Kent Overstreet0892fac2018-05-20 18:25:48 -0400147 bio = bio_alloc_bioset(gfp_mask, 1, &drbd_md_io_bio_set);
Lars Ellenbergda4a75d2011-02-23 17:02:01 +0100148 if (!bio)
149 return NULL;
Lars Ellenbergda4a75d2011-02-23 17:02:01 +0100150 return bio;
Lars Ellenberg9476f392011-02-23 17:02:01 +0100151}
152
Philipp Reisnerb411b362009-09-25 16:07:19 -0700153#ifdef __CHECKER__
154/* When checking with sparse, and this is an inline function, sparse will
155 give tons of false positives. When this is a real functions sparse works.
156 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200157int _get_ldev_if_state(struct drbd_device *device, enum drbd_disk_state mins)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700158{
159 int io_allowed;
160
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200161 atomic_inc(&device->local_cnt);
162 io_allowed = (device->state.disk >= mins);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700163 if (!io_allowed) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200164 if (atomic_dec_and_test(&device->local_cnt))
165 wake_up(&device->misc_wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700166 }
167 return io_allowed;
168}
169
170#endif
171
172/**
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100173 * tl_release() - mark as BARRIER_ACKED all requests in the corresponding transfer log epoch
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200174 * @connection: DRBD connection.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700175 * @barrier_nr: Expected identifier of the DRBD write barrier packet.
176 * @set_size: Expected number of requests before that barrier.
177 *
178 * In case the passed barrier_nr or set_size does not match the oldest
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100179 * epoch of not yet barrier-acked requests, this function will cause a
180 * termination of the connection.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700181 */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200182void tl_release(struct drbd_connection *connection, unsigned int barrier_nr,
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100183 unsigned int set_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700184{
Philipp Reisnerb411b362009-09-25 16:07:19 -0700185 struct drbd_request *r;
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100186 struct drbd_request *req = NULL;
187 int expect_epoch = 0;
188 int expect_size = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700189
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200190 spin_lock_irq(&connection->resource->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700191
Philipp Reisner98683652012-11-09 14:18:43 +0100192 /* find oldest not yet barrier-acked write request,
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100193 * count writes in its epoch. */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200194 list_for_each_entry(r, &connection->transfer_log, tl_requests) {
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100195 const unsigned s = r->rq_state;
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100196 if (!req) {
197 if (!(s & RQ_WRITE))
198 continue;
199 if (!(s & RQ_NET_MASK))
200 continue;
201 if (s & RQ_NET_DONE)
202 continue;
203 req = r;
204 expect_epoch = req->epoch;
205 expect_size ++;
206 } else {
207 if (r->epoch != expect_epoch)
208 break;
209 if (!(s & RQ_WRITE))
210 continue;
211 /* if (s & RQ_DONE): not expected */
212 /* if (!(s & RQ_NET_MASK)): not expected */
213 expect_size++;
214 }
215 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700216
217 /* first some paranoia code */
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100218 if (req == NULL) {
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +0200219 drbd_err(connection, "BAD! BarrierAck #%u received, but no epoch in tl!?\n",
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100220 barrier_nr);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700221 goto bail;
222 }
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100223 if (expect_epoch != barrier_nr) {
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +0200224 drbd_err(connection, "BAD! BarrierAck #%u received, expected #%u!\n",
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100225 barrier_nr, expect_epoch);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700226 goto bail;
227 }
228
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100229 if (expect_size != set_size) {
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +0200230 drbd_err(connection, "BAD! BarrierAck #%u received with n_writes=%u, expected n_writes=%u!\n",
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100231 barrier_nr, set_size, expect_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700232 goto bail;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700233 }
234
Philipp Reisner98683652012-11-09 14:18:43 +0100235 /* Clean up list of requests processed during current epoch. */
236 /* this extra list walk restart is paranoia,
237 * to catch requests being barrier-acked "unexpectedly".
238 * It usually should find the same req again, or some READ preceding it. */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200239 list_for_each_entry(req, &connection->transfer_log, tl_requests)
Philipp Reisner98683652012-11-09 14:18:43 +0100240 if (req->epoch == expect_epoch)
241 break;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200242 list_for_each_entry_safe_from(req, r, &connection->transfer_log, tl_requests) {
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100243 if (req->epoch != expect_epoch)
244 break;
245 _req_mod(req, BARRIER_ACKED);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700246 }
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200247 spin_unlock_irq(&connection->resource->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700248
249 return;
250
251bail:
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200252 spin_unlock_irq(&connection->resource->req_lock);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200253 conn_request_state(connection, NS(conn, C_PROTOCOL_ERROR), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700254}
255
Philipp Reisner617049a2010-12-22 12:48:31 +0100256
Philipp Reisner11b58e72010-05-12 17:08:26 +0200257/**
258 * _tl_restart() - Walks the transfer log, and applies an action to all requests
Lars Ellenberge5f891b2013-11-22 12:32:01 +0100259 * @connection: DRBD connection to operate on.
Philipp Reisner11b58e72010-05-12 17:08:26 +0200260 * @what: The action/event to perform with all request objects
261 *
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100262 * @what might be one of CONNECTION_LOST_WHILE_PENDING, RESEND, FAIL_FROZEN_DISK_IO,
263 * RESTART_FROZEN_DISK_IO.
Philipp Reisner11b58e72010-05-12 17:08:26 +0200264 */
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100265/* must hold resource->req_lock */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200266void _tl_restart(struct drbd_connection *connection, enum drbd_req_event what)
Philipp Reisner11b58e72010-05-12 17:08:26 +0200267{
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100268 struct drbd_request *req, *r;
Philipp Reisner11b58e72010-05-12 17:08:26 +0200269
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200270 list_for_each_entry_safe(req, r, &connection->transfer_log, tl_requests)
Philipp Reisner509fc012012-07-31 11:22:58 +0200271 _req_mod(req, what);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200272}
273
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200274void tl_restart(struct drbd_connection *connection, enum drbd_req_event what)
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100275{
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200276 spin_lock_irq(&connection->resource->req_lock);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200277 _tl_restart(connection, what);
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200278 spin_unlock_irq(&connection->resource->req_lock);
Philipp Reisnercdfda632011-07-05 15:38:59 +0200279}
Philipp Reisnerb411b362009-09-25 16:07:19 -0700280
281/**
282 * tl_clear() - Clears all requests and &struct drbd_tl_epoch objects out of the TL
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200283 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700284 *
285 * This is called after the connection to the peer was lost. The storage covered
286 * by the requests on the transfer gets marked as our of sync. Called from the
287 * receiver thread and the worker thread.
288 */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200289void tl_clear(struct drbd_connection *connection)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700290{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200291 tl_restart(connection, CONNECTION_LOST_WHILE_PENDING);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700292}
293
294/**
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200295 * tl_abort_disk_io() - Abort disk I/O for all requests for a certain device in the TL
296 * @device: DRBD device.
Philipp Reisnerfd2491f2011-07-18 16:25:15 +0200297 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200298void tl_abort_disk_io(struct drbd_device *device)
Philipp Reisnerfd2491f2011-07-18 16:25:15 +0200299{
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +0200300 struct drbd_connection *connection = first_peer_device(device)->connection;
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100301 struct drbd_request *req, *r;
Philipp Reisnerfd2491f2011-07-18 16:25:15 +0200302
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200303 spin_lock_irq(&connection->resource->req_lock);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200304 list_for_each_entry_safe(req, r, &connection->transfer_log, tl_requests) {
Philipp Reisnerfd2491f2011-07-18 16:25:15 +0200305 if (!(req->rq_state & RQ_LOCAL_PENDING))
306 continue;
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200307 if (req->device != device)
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100308 continue;
309 _req_mod(req, ABORT_DISK_IO);
Philipp Reisnerfd2491f2011-07-18 16:25:15 +0200310 }
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200311 spin_unlock_irq(&connection->resource->req_lock);
Philipp Reisnerfd2491f2011-07-18 16:25:15 +0200312}
313
Philipp Reisnerb411b362009-09-25 16:07:19 -0700314static int drbd_thread_setup(void *arg)
315{
316 struct drbd_thread *thi = (struct drbd_thread *) arg;
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200317 struct drbd_resource *resource = thi->resource;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700318 unsigned long flags;
319 int retval;
320
Philipp Reisnerf1b3a6e2011-02-08 15:35:58 +0100321 snprintf(current->comm, sizeof(current->comm), "drbd_%c_%s",
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +0200322 thi->name[0],
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200323 resource->name);
Philipp Reisnerf1b3a6e2011-02-08 15:35:58 +0100324
Eric W. Biederman33da8e72019-08-16 12:33:54 -0500325 allow_kernel_signal(DRBD_SIGKILL);
326 allow_kernel_signal(SIGXCPU);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700327restart:
328 retval = thi->function(thi);
329
330 spin_lock_irqsave(&thi->t_lock, flags);
331
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100332 /* if the receiver has been "EXITING", the last thing it did
Philipp Reisnerb411b362009-09-25 16:07:19 -0700333 * was set the conn state to "StandAlone",
334 * if now a re-connect request comes in, conn state goes C_UNCONNECTED,
335 * and receiver thread will be "started".
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100336 * drbd_thread_start needs to set "RESTARTING" in that case.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700337 * t_state check and assignment needs to be within the same spinlock,
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100338 * so either thread_start sees EXITING, and can remap to RESTARTING,
339 * or thread_start see NONE, and can proceed as normal.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700340 */
341
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100342 if (thi->t_state == RESTARTING) {
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200343 drbd_info(resource, "Restarting %s thread\n", thi->name);
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100344 thi->t_state = RUNNING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700345 spin_unlock_irqrestore(&thi->t_lock, flags);
346 goto restart;
347 }
348
349 thi->task = NULL;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100350 thi->t_state = NONE;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700351 smp_mb();
Lars Ellenberg992d6e92011-05-02 11:47:18 +0200352 complete_all(&thi->stop);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700353 spin_unlock_irqrestore(&thi->t_lock, flags);
354
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200355 drbd_info(resource, "Terminating %s\n", current->comm);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700356
357 /* Release mod reference taken when thread was started */
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +0200358
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200359 if (thi->connection)
360 kref_put(&thi->connection->kref, drbd_destroy_connection);
361 kref_put(&resource->kref, drbd_destroy_resource);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700362 module_put(THIS_MODULE);
363 return retval;
364}
365
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200366static void drbd_thread_init(struct drbd_resource *resource, struct drbd_thread *thi,
Andreas Gruenbacherc60b0252011-08-10 15:05:02 +0200367 int (*func) (struct drbd_thread *), const char *name)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700368{
369 spin_lock_init(&thi->t_lock);
370 thi->task = NULL;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100371 thi->t_state = NONE;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700372 thi->function = func;
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200373 thi->resource = resource;
374 thi->connection = NULL;
Andreas Gruenbacherc60b0252011-08-10 15:05:02 +0200375 thi->name = name;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700376}
377
378int drbd_thread_start(struct drbd_thread *thi)
379{
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200380 struct drbd_resource *resource = thi->resource;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700381 struct task_struct *nt;
382 unsigned long flags;
383
Philipp Reisnerb411b362009-09-25 16:07:19 -0700384 /* is used from state engine doing drbd_thread_stop_nowait,
385 * while holding the req lock irqsave */
386 spin_lock_irqsave(&thi->t_lock, flags);
387
388 switch (thi->t_state) {
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100389 case NONE:
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200390 drbd_info(resource, "Starting %s thread (from %s [%d])\n",
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100391 thi->name, current->comm, current->pid);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700392
393 /* Get ref on module for thread - this is released when thread exits */
394 if (!try_module_get(THIS_MODULE)) {
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200395 drbd_err(resource, "Failed to get module reference in drbd_thread_start\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700396 spin_unlock_irqrestore(&thi->t_lock, flags);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100397 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700398 }
399
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200400 kref_get(&resource->kref);
401 if (thi->connection)
402 kref_get(&thi->connection->kref);
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +0200403
Philipp Reisnerb411b362009-09-25 16:07:19 -0700404 init_completion(&thi->stop);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700405 thi->reset_cpu_mask = 1;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100406 thi->t_state = RUNNING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700407 spin_unlock_irqrestore(&thi->t_lock, flags);
408 flush_signals(current); /* otherw. may get -ERESTARTNOINTR */
409
410 nt = kthread_create(drbd_thread_setup, (void *) thi,
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200411 "drbd_%c_%s", thi->name[0], thi->resource->name);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700412
413 if (IS_ERR(nt)) {
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200414 drbd_err(resource, "Couldn't start thread\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700415
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200416 if (thi->connection)
417 kref_put(&thi->connection->kref, drbd_destroy_connection);
418 kref_put(&resource->kref, drbd_destroy_resource);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700419 module_put(THIS_MODULE);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100420 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700421 }
422 spin_lock_irqsave(&thi->t_lock, flags);
423 thi->task = nt;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100424 thi->t_state = RUNNING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700425 spin_unlock_irqrestore(&thi->t_lock, flags);
426 wake_up_process(nt);
427 break;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100428 case EXITING:
429 thi->t_state = RESTARTING;
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200430 drbd_info(resource, "Restarting %s thread (from %s [%d])\n",
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100431 thi->name, current->comm, current->pid);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700432 /* fall through */
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100433 case RUNNING:
434 case RESTARTING:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700435 default:
436 spin_unlock_irqrestore(&thi->t_lock, flags);
437 break;
438 }
439
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100440 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700441}
442
443
444void _drbd_thread_stop(struct drbd_thread *thi, int restart, int wait)
445{
446 unsigned long flags;
447
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100448 enum drbd_thread_state ns = restart ? RESTARTING : EXITING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700449
450 /* may be called from state engine, holding the req lock irqsave */
451 spin_lock_irqsave(&thi->t_lock, flags);
452
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100453 if (thi->t_state == NONE) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700454 spin_unlock_irqrestore(&thi->t_lock, flags);
455 if (restart)
456 drbd_thread_start(thi);
457 return;
458 }
459
460 if (thi->t_state != ns) {
461 if (thi->task == NULL) {
462 spin_unlock_irqrestore(&thi->t_lock, flags);
463 return;
464 }
465
466 thi->t_state = ns;
467 smp_mb();
468 init_completion(&thi->stop);
469 if (thi->task != current)
Eric W. Biedermanfee10992019-02-05 17:25:02 -0600470 send_sig(DRBD_SIGKILL, thi->task, 1);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700471 }
472
473 spin_unlock_irqrestore(&thi->t_lock, flags);
474
475 if (wait)
476 wait_for_completion(&thi->stop);
477}
478
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200479int conn_lowest_minor(struct drbd_connection *connection)
Philipp Reisner80822282011-02-08 12:46:30 +0100480{
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +0200481 struct drbd_peer_device *peer_device;
482 int vnr = 0, minor = -1;
Philipp Reisner774b3052011-02-22 02:07:03 -0500483
Philipp Reisner695d08f2011-04-11 22:53:32 -0700484 rcu_read_lock();
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +0200485 peer_device = idr_get_next(&connection->peer_devices, &vnr);
486 if (peer_device)
487 minor = device_to_minor(peer_device->device);
Philipp Reisner695d08f2011-04-11 22:53:32 -0700488 rcu_read_unlock();
489
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +0200490 return minor;
Philipp Reisner80822282011-02-08 12:46:30 +0100491}
Philipp Reisner774b3052011-02-22 02:07:03 -0500492
Philipp Reisnerb411b362009-09-25 16:07:19 -0700493#ifdef CONFIG_SMP
494/**
495 * drbd_calc_cpu_mask() - Generate CPU masks, spread over all CPUs
Philipp Reisnerb411b362009-09-25 16:07:19 -0700496 *
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +0200497 * Forces all threads of a resource onto the same CPU. This is beneficial for
Philipp Reisnerb411b362009-09-25 16:07:19 -0700498 * DRBD's performance. May be overwritten by user's configuration.
499 */
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +0200500static void drbd_calc_cpu_mask(cpumask_var_t *cpu_mask)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700501{
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +0200502 unsigned int *resources_per_cpu, min_index = ~0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700503
Kees Cook6396bb22018-06-12 14:03:40 -0700504 resources_per_cpu = kcalloc(nr_cpu_ids, sizeof(*resources_per_cpu),
505 GFP_KERNEL);
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +0200506 if (resources_per_cpu) {
507 struct drbd_resource *resource;
508 unsigned int cpu, min = ~0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700509
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +0200510 rcu_read_lock();
511 for_each_resource_rcu(resource, &drbd_resources) {
512 for_each_cpu(cpu, resource->cpu_mask)
513 resources_per_cpu[cpu]++;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700514 }
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +0200515 rcu_read_unlock();
516 for_each_online_cpu(cpu) {
517 if (resources_per_cpu[cpu] < min) {
518 min = resources_per_cpu[cpu];
519 min_index = cpu;
520 }
521 }
522 kfree(resources_per_cpu);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700523 }
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +0200524 if (min_index == ~0) {
525 cpumask_setall(*cpu_mask);
526 return;
527 }
528 cpumask_set_cpu(min_index, *cpu_mask);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700529}
530
531/**
532 * drbd_thread_current_set_cpu() - modifies the cpu mask of the _current_ thread
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200533 * @device: DRBD device.
Philipp Reisnerbc31fe32011-02-07 11:14:38 +0100534 * @thi: drbd_thread object
Philipp Reisnerb411b362009-09-25 16:07:19 -0700535 *
536 * call in the "main loop" of _all_ threads, no need for any mutex, current won't die
537 * prematurely.
538 */
Philipp Reisner80822282011-02-08 12:46:30 +0100539void drbd_thread_current_set_cpu(struct drbd_thread *thi)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700540{
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200541 struct drbd_resource *resource = thi->resource;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700542 struct task_struct *p = current;
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100543
Philipp Reisnerb411b362009-09-25 16:07:19 -0700544 if (!thi->reset_cpu_mask)
545 return;
546 thi->reset_cpu_mask = 0;
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200547 set_cpus_allowed_ptr(p, resource->cpu_mask);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700548}
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +0200549#else
550#define drbd_calc_cpu_mask(A) ({})
Philipp Reisnerb411b362009-09-25 16:07:19 -0700551#endif
552
Andreas Gruenbacher52b061a2011-03-30 11:38:49 +0200553/**
554 * drbd_header_size - size of a packet header
555 *
556 * The header size is a multiple of 8, so any payload following the header is
557 * word aligned on 64-bit architectures. (The bitmap send and receive code
558 * relies on this.)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700559 */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200560unsigned int drbd_header_size(struct drbd_connection *connection)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700561{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200562 if (connection->agreed_pro_version >= 100) {
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200563 BUILD_BUG_ON(!IS_ALIGNED(sizeof(struct p_header100), 8));
564 return sizeof(struct p_header100);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700565 } else {
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200566 BUILD_BUG_ON(sizeof(struct p_header80) !=
567 sizeof(struct p_header95));
568 BUILD_BUG_ON(!IS_ALIGNED(sizeof(struct p_header80), 8));
569 return sizeof(struct p_header80);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700570 }
Andreas Gruenbacher52b061a2011-03-30 11:38:49 +0200571}
Philipp Reisnerb411b362009-09-25 16:07:19 -0700572
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200573static unsigned int prepare_header80(struct p_header80 *h, enum drbd_packet cmd, int size)
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100574{
575 h->magic = cpu_to_be32(DRBD_MAGIC);
576 h->command = cpu_to_be16(cmd);
577 h->length = cpu_to_be16(size);
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200578 return sizeof(struct p_header80);
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100579}
Philipp Reisnerb411b362009-09-25 16:07:19 -0700580
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200581static unsigned int prepare_header95(struct p_header95 *h, enum drbd_packet cmd, int size)
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100582{
583 h->magic = cpu_to_be16(DRBD_MAGIC_BIG);
584 h->command = cpu_to_be16(cmd);
Andreas Gruenbacherb55d84b2011-03-22 13:17:47 +0100585 h->length = cpu_to_be32(size);
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200586 return sizeof(struct p_header95);
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100587}
588
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200589static unsigned int prepare_header100(struct p_header100 *h, enum drbd_packet cmd,
590 int size, int vnr)
Philipp Reisnerd38e7872011-02-07 15:32:04 +0100591{
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200592 h->magic = cpu_to_be32(DRBD_MAGIC_100);
593 h->volume = cpu_to_be16(vnr);
594 h->command = cpu_to_be16(cmd);
595 h->length = cpu_to_be32(size);
596 h->pad = 0;
597 return sizeof(struct p_header100);
598}
599
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200600static unsigned int prepare_header(struct drbd_connection *connection, int vnr,
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200601 void *buffer, enum drbd_packet cmd, int size)
602{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200603 if (connection->agreed_pro_version >= 100)
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200604 return prepare_header100(buffer, cmd, size, vnr);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200605 else if (connection->agreed_pro_version >= 95 &&
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200606 size > DRBD_MAX_SIZE_H80_PACKET)
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200607 return prepare_header95(buffer, cmd, size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700608 else
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200609 return prepare_header80(buffer, cmd, size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700610}
611
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200612static void *__conn_prepare_command(struct drbd_connection *connection,
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200613 struct drbd_socket *sock)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700614{
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200615 if (!sock->socket)
616 return NULL;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200617 return sock->sbuf + drbd_header_size(connection);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700618}
619
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200620void *conn_prepare_command(struct drbd_connection *connection, struct drbd_socket *sock)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700621{
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200622 void *p;
623
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200624 mutex_lock(&sock->mutex);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200625 p = __conn_prepare_command(connection, sock);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200626 if (!p)
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200627 mutex_unlock(&sock->mutex);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200628
629 return p;
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200630}
631
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200632void *drbd_prepare_command(struct drbd_peer_device *peer_device, struct drbd_socket *sock)
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200633{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200634 return conn_prepare_command(peer_device->connection, sock);
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200635}
636
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200637static int __send_command(struct drbd_connection *connection, int vnr,
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200638 struct drbd_socket *sock, enum drbd_packet cmd,
639 unsigned int header_size, void *data,
640 unsigned int size)
641{
642 int msg_flags;
643 int err;
644
645 /*
646 * Called with @data == NULL and the size of the data blocks in @size
647 * for commands that send data blocks. For those commands, omit the
648 * MSG_MORE flag: this will increase the likelihood that data blocks
649 * which are page aligned on the sender will end up page aligned on the
650 * receiver.
651 */
652 msg_flags = data ? MSG_MORE : 0;
653
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200654 header_size += prepare_header(connection, vnr, sock->sbuf, cmd,
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200655 header_size + size);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200656 err = drbd_send_all(connection, sock->socket, sock->sbuf, header_size,
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200657 msg_flags);
658 if (data && !err)
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200659 err = drbd_send_all(connection, sock->socket, data, size, 0);
Lars Ellenberg123ff122014-02-05 06:13:53 +0100660 /* DRBD protocol "pings" are latency critical.
661 * This is supposed to trigger tcp_push_pending_frames() */
662 if (!err && (cmd == P_PING || cmd == P_PING_ACK))
Christoph Hellwig12abc5e2020-05-28 07:12:19 +0200663 tcp_sock_set_nodelay(sock->socket->sk);
Lars Ellenberg123ff122014-02-05 06:13:53 +0100664
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200665 return err;
666}
667
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200668static int __conn_send_command(struct drbd_connection *connection, struct drbd_socket *sock,
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200669 enum drbd_packet cmd, unsigned int header_size,
670 void *data, unsigned int size)
671{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200672 return __send_command(connection, 0, sock, cmd, header_size, data, size);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200673}
674
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200675int conn_send_command(struct drbd_connection *connection, struct drbd_socket *sock,
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200676 enum drbd_packet cmd, unsigned int header_size,
677 void *data, unsigned int size)
678{
679 int err;
680
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200681 err = __conn_send_command(connection, sock, cmd, header_size, data, size);
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200682 mutex_unlock(&sock->mutex);
683 return err;
684}
685
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200686int drbd_send_command(struct drbd_peer_device *peer_device, struct drbd_socket *sock,
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200687 enum drbd_packet cmd, unsigned int header_size,
688 void *data, unsigned int size)
689{
690 int err;
691
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200692 err = __send_command(peer_device->connection, peer_device->device->vnr,
693 sock, cmd, header_size, data, size);
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200694 mutex_unlock(&sock->mutex);
695 return err;
696}
697
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200698int drbd_send_ping(struct drbd_connection *connection)
Andreas Gruenbachere307f352011-03-22 10:55:48 +0100699{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200700 struct drbd_socket *sock;
701
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200702 sock = &connection->meta;
703 if (!conn_prepare_command(connection, sock))
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200704 return -EIO;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200705 return conn_send_command(connection, sock, P_PING, 0, NULL, 0);
Andreas Gruenbachere307f352011-03-22 10:55:48 +0100706}
707
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200708int drbd_send_ping_ack(struct drbd_connection *connection)
Andreas Gruenbachere307f352011-03-22 10:55:48 +0100709{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200710 struct drbd_socket *sock;
711
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200712 sock = &connection->meta;
713 if (!conn_prepare_command(connection, sock))
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200714 return -EIO;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200715 return conn_send_command(connection, sock, P_PING_ACK, 0, NULL, 0);
Andreas Gruenbachere307f352011-03-22 10:55:48 +0100716}
717
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200718int drbd_send_sync_param(struct drbd_peer_device *peer_device)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700719{
Andreas Gruenbacher7c967152011-03-22 00:49:36 +0100720 struct drbd_socket *sock;
Philipp Reisner8e26f9c2010-07-06 17:25:54 +0200721 struct p_rs_param_95 *p;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200722 int size;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200723 const int apv = peer_device->connection->agreed_pro_version;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200724 enum drbd_packet cmd;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200725 struct net_conf *nc;
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200726 struct disk_conf *dc;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200727
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200728 sock = &peer_device->connection->data;
729 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200730 if (!p)
731 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700732
Philipp Reisner44ed1672011-04-19 17:10:19 +0200733 rcu_read_lock();
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200734 nc = rcu_dereference(peer_device->connection->net_conf);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700735
736 size = apv <= 87 ? sizeof(struct p_rs_param)
737 : apv == 88 ? sizeof(struct p_rs_param)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200738 + strlen(nc->verify_alg) + 1
Philipp Reisner8e26f9c2010-07-06 17:25:54 +0200739 : apv <= 94 ? sizeof(struct p_rs_param_89)
740 : /* apv >= 95 */ sizeof(struct p_rs_param_95);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700741
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200742 cmd = apv >= 89 ? P_SYNC_PARAM89 : P_SYNC_PARAM;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700743
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200744 /* initialize verify_alg and csums_alg */
745 memset(p->verify_alg, 0, 2 * SHARED_SECRET_MAX);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700746
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200747 if (get_ldev(peer_device->device)) {
748 dc = rcu_dereference(peer_device->device->ldev->disk_conf);
Andreas Gruenbacher6394b932011-05-11 14:29:52 +0200749 p->resync_rate = cpu_to_be32(dc->resync_rate);
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200750 p->c_plan_ahead = cpu_to_be32(dc->c_plan_ahead);
751 p->c_delay_target = cpu_to_be32(dc->c_delay_target);
752 p->c_fill_target = cpu_to_be32(dc->c_fill_target);
753 p->c_max_rate = cpu_to_be32(dc->c_max_rate);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200754 put_ldev(peer_device->device);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200755 } else {
Andreas Gruenbacher6394b932011-05-11 14:29:52 +0200756 p->resync_rate = cpu_to_be32(DRBD_RESYNC_RATE_DEF);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200757 p->c_plan_ahead = cpu_to_be32(DRBD_C_PLAN_AHEAD_DEF);
758 p->c_delay_target = cpu_to_be32(DRBD_C_DELAY_TARGET_DEF);
759 p->c_fill_target = cpu_to_be32(DRBD_C_FILL_TARGET_DEF);
760 p->c_max_rate = cpu_to_be32(DRBD_C_MAX_RATE_DEF);
761 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700762
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200763 if (apv >= 88)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200764 strcpy(p->verify_alg, nc->verify_alg);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200765 if (apv >= 89)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200766 strcpy(p->csums_alg, nc->csums_alg);
767 rcu_read_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -0700768
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200769 return drbd_send_command(peer_device, sock, cmd, size, NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700770}
771
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200772int __drbd_send_protocol(struct drbd_connection *connection, enum drbd_packet cmd)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700773{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200774 struct drbd_socket *sock;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700775 struct p_protocol *p;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200776 struct net_conf *nc;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200777 int size, cf;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700778
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200779 sock = &connection->data;
780 p = __conn_prepare_command(connection, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200781 if (!p)
782 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700783
Philipp Reisner44ed1672011-04-19 17:10:19 +0200784 rcu_read_lock();
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200785 nc = rcu_dereference(connection->net_conf);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700786
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200787 if (nc->tentative && connection->agreed_pro_version < 92) {
Philipp Reisner44ed1672011-04-19 17:10:19 +0200788 rcu_read_unlock();
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +0200789 drbd_err(connection, "--dry-run is not supported by peer");
Philipp Reisner44ed1672011-04-19 17:10:19 +0200790 return -EOPNOTSUPP;
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100791 }
Philipp Reisner44ed1672011-04-19 17:10:19 +0200792
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200793 size = sizeof(*p);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200794 if (connection->agreed_pro_version >= 87)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200795 size += strlen(nc->integrity_alg) + 1;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700796
Philipp Reisner44ed1672011-04-19 17:10:19 +0200797 p->protocol = cpu_to_be32(nc->wire_protocol);
798 p->after_sb_0p = cpu_to_be32(nc->after_sb_0p);
799 p->after_sb_1p = cpu_to_be32(nc->after_sb_1p);
800 p->after_sb_2p = cpu_to_be32(nc->after_sb_2p);
801 p->two_primaries = cpu_to_be32(nc->two_primaries);
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100802 cf = 0;
Andreas Gruenbacher6139f602011-05-06 20:00:02 +0200803 if (nc->discard_my_data)
804 cf |= CF_DISCARD_MY_DATA;
Andreas Gruenbacher6dff2902011-06-28 14:18:12 +0200805 if (nc->tentative)
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200806 cf |= CF_DRY_RUN;
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100807 p->conn_flags = cpu_to_be32(cf);
808
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200809 if (connection->agreed_pro_version >= 87)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200810 strcpy(p->integrity_alg, nc->integrity_alg);
811 rcu_read_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -0700812
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200813 return __conn_send_command(connection, sock, cmd, size, NULL, 0);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200814}
815
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200816int drbd_send_protocol(struct drbd_connection *connection)
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200817{
818 int err;
819
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200820 mutex_lock(&connection->data.mutex);
821 err = __drbd_send_protocol(connection, P_PROTOCOL);
822 mutex_unlock(&connection->data.mutex);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200823
824 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700825}
826
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200827static int _drbd_send_uuids(struct drbd_peer_device *peer_device, u64 uuid_flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700828{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200829 struct drbd_device *device = peer_device->device;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200830 struct drbd_socket *sock;
831 struct p_uuids *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700832 int i;
833
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200834 if (!get_ldev_if_state(device, D_NEGOTIATING))
Andreas Gruenbacher2ae5f952011-03-16 01:07:20 +0100835 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700836
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200837 sock = &peer_device->connection->data;
838 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200839 if (!p) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200840 put_ldev(device);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200841 return -EIO;
842 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200843 spin_lock_irq(&device->ldev->md.uuid_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700844 for (i = UI_CURRENT; i < UI_SIZE; i++)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200845 p->uuid[i] = cpu_to_be64(device->ldev->md.uuid[i]);
846 spin_unlock_irq(&device->ldev->md.uuid_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700847
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200848 device->comm_bm_set = drbd_bm_total_weight(device);
849 p->uuid[UI_SIZE] = cpu_to_be64(device->comm_bm_set);
Philipp Reisner44ed1672011-04-19 17:10:19 +0200850 rcu_read_lock();
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200851 uuid_flags |= rcu_dereference(peer_device->connection->net_conf)->discard_my_data ? 1 : 0;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200852 rcu_read_unlock();
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200853 uuid_flags |= test_bit(CRASHED_PRIMARY, &device->flags) ? 2 : 0;
854 uuid_flags |= device->new_state_tmp.disk == D_INCONSISTENT ? 4 : 0;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200855 p->uuid[UI_FLAGS] = cpu_to_be64(uuid_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700856
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200857 put_ldev(device);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200858 return drbd_send_command(peer_device, sock, P_UUIDS, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700859}
860
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200861int drbd_send_uuids(struct drbd_peer_device *peer_device)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700862{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200863 return _drbd_send_uuids(peer_device, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700864}
865
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200866int drbd_send_uuids_skip_initial_sync(struct drbd_peer_device *peer_device)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700867{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200868 return _drbd_send_uuids(peer_device, 8);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700869}
870
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200871void drbd_print_uuids(struct drbd_device *device, const char *text)
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100872{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200873 if (get_ldev_if_state(device, D_NEGOTIATING)) {
874 u64 *uuid = device->ldev->md.uuid;
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200875 drbd_info(device, "%s %016llX:%016llX:%016llX:%016llX\n",
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100876 text,
877 (unsigned long long)uuid[UI_CURRENT],
878 (unsigned long long)uuid[UI_BITMAP],
879 (unsigned long long)uuid[UI_HISTORY_START],
880 (unsigned long long)uuid[UI_HISTORY_END]);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200881 put_ldev(device);
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100882 } else {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200883 drbd_info(device, "%s effective data uuid: %016llX\n",
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100884 text,
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200885 (unsigned long long)device->ed_uuid);
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100886 }
887}
888
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200889void drbd_gen_and_send_sync_uuid(struct drbd_peer_device *peer_device)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700890{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200891 struct drbd_device *device = peer_device->device;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200892 struct drbd_socket *sock;
893 struct p_rs_uuid *p;
Lars Ellenberg5a22db82010-12-17 21:14:23 +0100894 u64 uuid;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700895
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200896 D_ASSERT(device, device->state.disk == D_UP_TO_DATE);
Lars Ellenberg5a22db82010-12-17 21:14:23 +0100897
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200898 uuid = device->ldev->md.uuid[UI_BITMAP];
Philipp Reisner5ba3dac2011-10-05 15:54:18 +0200899 if (uuid && uuid != UUID_JUST_CREATED)
900 uuid = uuid + UUID_NEW_BM_OFFSET;
901 else
902 get_random_bytes(&uuid, sizeof(u64));
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200903 drbd_uuid_set(device, UI_BITMAP, uuid);
904 drbd_print_uuids(device, "updated sync UUID");
905 drbd_md_sync(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700906
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200907 sock = &peer_device->connection->data;
908 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200909 if (p) {
910 p->uuid = cpu_to_be64(uuid);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200911 drbd_send_command(peer_device, sock, P_SYNC_UUID, sizeof(*p), NULL, 0);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200912 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700913}
914
Lars Ellenberg9104d312016-06-14 00:26:31 +0200915/* communicated if (agreed_features & DRBD_FF_WSAME) */
Baoyou Xie1ffa7bf2017-08-29 10:20:36 +0200916static void
917assign_p_sizes_qlim(struct drbd_device *device, struct p_sizes *p,
918 struct request_queue *q)
Lars Ellenberg9104d312016-06-14 00:26:31 +0200919{
920 if (q) {
921 p->qlim->physical_block_size = cpu_to_be32(queue_physical_block_size(q));
922 p->qlim->logical_block_size = cpu_to_be32(queue_logical_block_size(q));
923 p->qlim->alignment_offset = cpu_to_be32(queue_alignment_offset(q));
924 p->qlim->io_min = cpu_to_be32(queue_io_min(q));
925 p->qlim->io_opt = cpu_to_be32(queue_io_opt(q));
926 p->qlim->discard_enabled = blk_queue_discard(q);
Lars Ellenberg9104d312016-06-14 00:26:31 +0200927 p->qlim->write_same_capable = !!q->limits.max_write_same_sectors;
928 } else {
929 q = device->rq_queue;
930 p->qlim->physical_block_size = cpu_to_be32(queue_physical_block_size(q));
931 p->qlim->logical_block_size = cpu_to_be32(queue_logical_block_size(q));
932 p->qlim->alignment_offset = 0;
933 p->qlim->io_min = cpu_to_be32(queue_io_min(q));
934 p->qlim->io_opt = cpu_to_be32(queue_io_opt(q));
935 p->qlim->discard_enabled = 0;
Lars Ellenberg9104d312016-06-14 00:26:31 +0200936 p->qlim->write_same_capable = 0;
937 }
938}
939
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200940int drbd_send_sizes(struct drbd_peer_device *peer_device, int trigger_reply, enum dds_flags flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700941{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200942 struct drbd_device *device = peer_device->device;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200943 struct drbd_socket *sock;
944 struct p_sizes *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700945 sector_t d_size, u_size;
Lars Ellenbergdb141b22012-06-25 19:15:58 +0200946 int q_order_type;
947 unsigned int max_bio_size;
Lars Ellenberg9104d312016-06-14 00:26:31 +0200948 unsigned int packet_size;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700949
Lars Ellenberg9104d312016-06-14 00:26:31 +0200950 sock = &peer_device->connection->data;
951 p = drbd_prepare_command(peer_device, sock);
952 if (!p)
953 return -EIO;
954
955 packet_size = sizeof(*p);
956 if (peer_device->connection->agreed_features & DRBD_FF_WSAME)
957 packet_size += sizeof(p->qlim[0]);
958
959 memset(p, 0, packet_size);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200960 if (get_ldev_if_state(device, D_NEGOTIATING)) {
Lars Ellenberg9104d312016-06-14 00:26:31 +0200961 struct request_queue *q = bdev_get_queue(device->ldev->backing_bdev);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200962 d_size = drbd_get_max_capacity(device->ldev);
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200963 rcu_read_lock();
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200964 u_size = rcu_dereference(device->ldev->disk_conf)->disk_size;
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200965 rcu_read_unlock();
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200966 q_order_type = drbd_queue_order_type(device);
Lars Ellenberg9104d312016-06-14 00:26:31 +0200967 max_bio_size = queue_max_hw_sectors(q) << 9;
Lars Ellenbergdb141b22012-06-25 19:15:58 +0200968 max_bio_size = min(max_bio_size, DRBD_MAX_BIO_SIZE);
Lars Ellenberg9104d312016-06-14 00:26:31 +0200969 assign_p_sizes_qlim(device, p, q);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200970 put_ldev(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700971 } else {
972 d_size = 0;
973 u_size = 0;
974 q_order_type = QUEUE_ORDERED_NONE;
Philipp Reisner99432fc2011-05-20 16:39:13 +0200975 max_bio_size = DRBD_MAX_BIO_SIZE; /* ... multiple BIOs per peer_request */
Lars Ellenberg9104d312016-06-14 00:26:31 +0200976 assign_p_sizes_qlim(device, p, NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700977 }
978
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200979 if (peer_device->connection->agreed_pro_version <= 94)
Lars Ellenbergdb141b22012-06-25 19:15:58 +0200980 max_bio_size = min(max_bio_size, DRBD_MAX_SIZE_H80_PACKET);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200981 else if (peer_device->connection->agreed_pro_version < 100)
Philipp Reisner98683652012-11-09 14:18:43 +0100982 max_bio_size = min(max_bio_size, DRBD_MAX_BIO_SIZE_P95);
Philipp Reisner68093842011-06-30 15:43:06 +0200983
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200984 p->d_size = cpu_to_be64(d_size);
985 p->u_size = cpu_to_be64(u_size);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200986 p->c_size = cpu_to_be64(trigger_reply ? 0 : drbd_get_capacity(device->this_bdev));
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200987 p->max_bio_size = cpu_to_be32(max_bio_size);
988 p->queue_order_type = cpu_to_be16(q_order_type);
989 p->dds_flags = cpu_to_be16(flags);
Lars Ellenberg9104d312016-06-14 00:26:31 +0200990
991 return drbd_send_command(peer_device, sock, P_SIZES, packet_size, NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700992}
993
994/**
Lars Ellenbergf479ea02011-10-27 16:52:30 +0200995 * drbd_send_current_state() - Sends the drbd state to the peer
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200996 * @peer_device: DRBD peer device.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700997 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200998int drbd_send_current_state(struct drbd_peer_device *peer_device)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700999{
Andreas Gruenbacher7c967152011-03-22 00:49:36 +01001000 struct drbd_socket *sock;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001001 struct p_state *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001002
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001003 sock = &peer_device->connection->data;
1004 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001005 if (!p)
1006 return -EIO;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001007 p->state = cpu_to_be32(peer_device->device->state.i); /* Within the send mutex */
1008 return drbd_send_command(peer_device, sock, P_STATE, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001009}
1010
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001011/**
1012 * drbd_send_state() - After a state change, sends the new state to the peer
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001013 * @peer_device: DRBD peer device.
Philipp Reisner43de7c82011-11-10 13:16:13 +01001014 * @state: the state to send, not necessarily the current state.
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001015 *
1016 * Each state change queues an "after_state_ch" work, which will eventually
1017 * send the resulting new state to the peer. If more state changes happen
1018 * between queuing and processing of the after_state_ch work, we still
1019 * want to send each intermediary state in the order it occurred.
1020 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001021int drbd_send_state(struct drbd_peer_device *peer_device, union drbd_state state)
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001022{
Philipp Reisner43de7c82011-11-10 13:16:13 +01001023 struct drbd_socket *sock;
1024 struct p_state *p;
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001025
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001026 sock = &peer_device->connection->data;
1027 p = drbd_prepare_command(peer_device, sock);
Philipp Reisner43de7c82011-11-10 13:16:13 +01001028 if (!p)
1029 return -EIO;
1030 p->state = cpu_to_be32(state.i); /* Within the send mutex */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001031 return drbd_send_command(peer_device, sock, P_STATE, sizeof(*p), NULL, 0);
Philipp Reisner43de7c82011-11-10 13:16:13 +01001032}
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001033
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001034int 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 -07001035{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001036 struct drbd_socket *sock;
1037 struct p_req_state *p;
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001038
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001039 sock = &peer_device->connection->data;
1040 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001041 if (!p)
1042 return -EIO;
1043 p->mask = cpu_to_be32(mask.i);
1044 p->val = cpu_to_be32(val.i);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001045 return drbd_send_command(peer_device, sock, P_STATE_CHG_REQ, sizeof(*p), NULL, 0);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001046}
1047
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001048int conn_send_state_req(struct drbd_connection *connection, union drbd_state mask, union drbd_state val)
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001049{
1050 enum drbd_packet cmd;
1051 struct drbd_socket *sock;
1052 struct p_req_state *p;
1053
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001054 cmd = connection->agreed_pro_version < 100 ? P_STATE_CHG_REQ : P_CONN_ST_CHG_REQ;
1055 sock = &connection->data;
1056 p = conn_prepare_command(connection, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001057 if (!p)
1058 return -EIO;
1059 p->mask = cpu_to_be32(mask.i);
1060 p->val = cpu_to_be32(val.i);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001061 return conn_send_command(connection, sock, cmd, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001062}
1063
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001064void drbd_send_sr_reply(struct drbd_peer_device *peer_device, enum drbd_state_rv retcode)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001065{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001066 struct drbd_socket *sock;
1067 struct p_req_state_reply *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001068
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001069 sock = &peer_device->connection->meta;
1070 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001071 if (p) {
1072 p->retcode = cpu_to_be32(retcode);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001073 drbd_send_command(peer_device, sock, P_STATE_CHG_REPLY, sizeof(*p), NULL, 0);
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001074 }
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001075}
1076
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001077void conn_send_sr_reply(struct drbd_connection *connection, enum drbd_state_rv retcode)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001078{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001079 struct drbd_socket *sock;
1080 struct p_req_state_reply *p;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001081 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 -07001082
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001083 sock = &connection->meta;
1084 p = conn_prepare_command(connection, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001085 if (p) {
1086 p->retcode = cpu_to_be32(retcode);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001087 conn_send_command(connection, sock, cmd, sizeof(*p), NULL, 0);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001088 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001089}
1090
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001091static void dcbp_set_code(struct p_compressed_bm *p, enum drbd_bitmap_code code)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001092{
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001093 BUG_ON(code & ~0xf);
1094 p->encoding = (p->encoding & ~0xf) | code;
1095}
Philipp Reisnerb411b362009-09-25 16:07:19 -07001096
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001097static void dcbp_set_start(struct p_compressed_bm *p, int set)
1098{
1099 p->encoding = (p->encoding & ~0x80) | (set ? 0x80 : 0);
1100}
Philipp Reisnerb411b362009-09-25 16:07:19 -07001101
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001102static void dcbp_set_pad_bits(struct p_compressed_bm *p, int n)
1103{
1104 BUG_ON(n & ~0x7);
1105 p->encoding = (p->encoding & (~0x7 << 4)) | (n << 4);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001106}
1107
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001108static int fill_bitmap_rle_bits(struct drbd_device *device,
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001109 struct p_compressed_bm *p,
1110 unsigned int size,
1111 struct bm_xfer_ctx *c)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001112{
1113 struct bitstream bs;
1114 unsigned long plain_bits;
1115 unsigned long tmp;
1116 unsigned long rl;
1117 unsigned len;
1118 unsigned toggle;
Philipp Reisner44ed1672011-04-19 17:10:19 +02001119 int bits, use_rle;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001120
1121 /* may we use this feature? */
Philipp Reisner44ed1672011-04-19 17:10:19 +02001122 rcu_read_lock();
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001123 use_rle = rcu_dereference(first_peer_device(device)->connection->net_conf)->use_rle;
Philipp Reisner44ed1672011-04-19 17:10:19 +02001124 rcu_read_unlock();
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001125 if (!use_rle || first_peer_device(device)->connection->agreed_pro_version < 90)
Philipp Reisner44ed1672011-04-19 17:10:19 +02001126 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001127
1128 if (c->bit_offset >= c->bm_bits)
1129 return 0; /* nothing to do. */
1130
1131 /* use at most thus many bytes */
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001132 bitstream_init(&bs, p->code, size, 0);
1133 memset(p->code, 0, size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001134 /* plain bits covered in this code string */
1135 plain_bits = 0;
1136
1137 /* p->encoding & 0x80 stores whether the first run length is set.
1138 * bit offset is implicit.
1139 * start with toggle == 2 to be able to tell the first iteration */
1140 toggle = 2;
1141
1142 /* see how much plain bits we can stuff into one packet
1143 * using RLE and VLI. */
1144 do {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001145 tmp = (toggle == 0) ? _drbd_bm_find_next_zero(device, c->bit_offset)
1146 : _drbd_bm_find_next(device, c->bit_offset);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001147 if (tmp == -1UL)
1148 tmp = c->bm_bits;
1149 rl = tmp - c->bit_offset;
1150
1151 if (toggle == 2) { /* first iteration */
1152 if (rl == 0) {
1153 /* the first checked bit was set,
1154 * store start value, */
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001155 dcbp_set_start(p, 1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001156 /* but skip encoding of zero run length */
1157 toggle = !toggle;
1158 continue;
1159 }
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001160 dcbp_set_start(p, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001161 }
1162
1163 /* paranoia: catch zero runlength.
1164 * can only happen if bitmap is modified while we scan it. */
1165 if (rl == 0) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001166 drbd_err(device, "unexpected zero runlength while encoding bitmap "
Philipp Reisnerb411b362009-09-25 16:07:19 -07001167 "t:%u bo:%lu\n", toggle, c->bit_offset);
1168 return -1;
1169 }
1170
1171 bits = vli_encode_bits(&bs, rl);
1172 if (bits == -ENOBUFS) /* buffer full */
1173 break;
1174 if (bits <= 0) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001175 drbd_err(device, "error while encoding bitmap: %d\n", bits);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001176 return 0;
1177 }
1178
1179 toggle = !toggle;
1180 plain_bits += rl;
1181 c->bit_offset = tmp;
1182 } while (c->bit_offset < c->bm_bits);
1183
1184 len = bs.cur.b - p->code + !!bs.cur.bit;
1185
1186 if (plain_bits < (len << 3)) {
1187 /* incompressible with this method.
1188 * we need to rewind both word and bit position. */
1189 c->bit_offset -= plain_bits;
1190 bm_xfer_ctx_bit_to_word_offset(c);
1191 c->bit_offset = c->word_offset * BITS_PER_LONG;
1192 return 0;
1193 }
1194
1195 /* RLE + VLI was able to compress it just fine.
1196 * update c->word_offset. */
1197 bm_xfer_ctx_bit_to_word_offset(c);
1198
1199 /* store pad_bits */
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001200 dcbp_set_pad_bits(p, (8 - bs.cur.bit) & 0x7);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001201
1202 return len;
1203}
1204
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001205/**
1206 * send_bitmap_rle_or_plain
1207 *
1208 * Return 0 when done, 1 when another iteration is needed, and a negative error
1209 * code upon failure.
1210 */
1211static int
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001212send_bitmap_rle_or_plain(struct drbd_device *device, struct bm_xfer_ctx *c)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001213{
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001214 struct drbd_socket *sock = &first_peer_device(device)->connection->data;
1215 unsigned int header_size = drbd_header_size(first_peer_device(device)->connection);
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001216 struct p_compressed_bm *p = sock->sbuf + header_size;
Andreas Gruenbachera982dd52010-12-10 00:45:25 +01001217 int len, err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001218
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001219 len = fill_bitmap_rle_bits(device, p,
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001220 DRBD_SOCKET_BUFFER_SIZE - header_size - sizeof(*p), c);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001221 if (len < 0)
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001222 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001223
1224 if (len) {
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001225 dcbp_set_code(p, RLE_VLI_Bits);
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001226 err = __send_command(first_peer_device(device)->connection, device->vnr, sock,
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001227 P_COMPRESSED_BITMAP, sizeof(*p) + len,
1228 NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001229 c->packets[0]++;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001230 c->bytes[0] += header_size + sizeof(*p) + len;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001231
1232 if (c->bit_offset >= c->bm_bits)
1233 len = 0; /* DONE */
1234 } else {
1235 /* was not compressible.
1236 * send a buffer full of plain text bits instead. */
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001237 unsigned int data_size;
1238 unsigned long num_words;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001239 unsigned long *p = sock->sbuf + header_size;
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001240
1241 data_size = DRBD_SOCKET_BUFFER_SIZE - header_size;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001242 num_words = min_t(size_t, data_size / sizeof(*p),
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001243 c->bm_words - c->word_offset);
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001244 len = num_words * sizeof(*p);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001245 if (len)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001246 drbd_bm_get_lel(device, c->word_offset, num_words, p);
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001247 err = __send_command(first_peer_device(device)->connection, device->vnr, sock, P_BITMAP, len, NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001248 c->word_offset += num_words;
1249 c->bit_offset = c->word_offset * BITS_PER_LONG;
1250
1251 c->packets[1]++;
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001252 c->bytes[1] += header_size + len;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001253
1254 if (c->bit_offset > c->bm_bits)
1255 c->bit_offset = c->bm_bits;
1256 }
Andreas Gruenbachera982dd52010-12-10 00:45:25 +01001257 if (!err) {
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001258 if (len == 0) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001259 INFO_bm_xfer_stats(device, "send", c);
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001260 return 0;
1261 } else
1262 return 1;
1263 }
1264 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001265}
1266
1267/* See the comment at receive_bitmap() */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001268static int _drbd_send_bitmap(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001269{
1270 struct bm_xfer_ctx c;
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001271 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001272
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001273 if (!expect(device->bitmap))
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001274 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001275
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001276 if (get_ldev(device)) {
1277 if (drbd_md_test_flag(device->ldev, MDF_FULL_SYNC)) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001278 drbd_info(device, "Writing the whole bitmap, MDF_FullSync was set.\n");
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001279 drbd_bm_set_all(device);
1280 if (drbd_bm_write(device)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001281 /* write_bm did fail! Leave full sync flag set in Meta P_DATA
1282 * but otherwise process as per normal - need to tell other
1283 * side that a full resync is required! */
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001284 drbd_err(device, "Failed to write bitmap to disk!\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07001285 } else {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001286 drbd_md_clear_flag(device, MDF_FULL_SYNC);
1287 drbd_md_sync(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001288 }
1289 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001290 put_ldev(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001291 }
1292
1293 c = (struct bm_xfer_ctx) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001294 .bm_bits = drbd_bm_bits(device),
1295 .bm_words = drbd_bm_words(device),
Philipp Reisnerb411b362009-09-25 16:07:19 -07001296 };
1297
1298 do {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001299 err = send_bitmap_rle_or_plain(device, &c);
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001300 } while (err > 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001301
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001302 return err == 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001303}
1304
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001305int drbd_send_bitmap(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001306{
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001307 struct drbd_socket *sock = &first_peer_device(device)->connection->data;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001308 int err = -1;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001309
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001310 mutex_lock(&sock->mutex);
1311 if (sock->socket)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001312 err = !_drbd_send_bitmap(device);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001313 mutex_unlock(&sock->mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001314 return err;
1315}
1316
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001317void drbd_send_b_ack(struct drbd_connection *connection, u32 barrier_nr, u32 set_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001318{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001319 struct drbd_socket *sock;
1320 struct p_barrier_ack *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001321
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001322 if (connection->cstate < C_WF_REPORT_PARAMS)
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001323 return;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001324
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001325 sock = &connection->meta;
1326 p = conn_prepare_command(connection, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001327 if (!p)
1328 return;
1329 p->barrier = barrier_nr;
1330 p->set_size = cpu_to_be32(set_size);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001331 conn_send_command(connection, sock, P_BARRIER_ACK, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001332}
1333
1334/**
1335 * _drbd_send_ack() - Sends an ack packet
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001336 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07001337 * @cmd: Packet command code.
1338 * @sector: sector, needs to be in big endian byte order
1339 * @blksize: size in byte, needs to be in big endian byte order
1340 * @block_id: Id, big endian byte order
1341 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001342static int _drbd_send_ack(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001343 u64 sector, u32 blksize, u64 block_id)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001344{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001345 struct drbd_socket *sock;
1346 struct p_block_ack *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001347
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001348 if (peer_device->device->state.conn < C_CONNECTED)
Andreas Gruenbachera8c32aa2011-03-16 01:27:22 +01001349 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001350
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001351 sock = &peer_device->connection->meta;
1352 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001353 if (!p)
1354 return -EIO;
1355 p->sector = sector;
1356 p->block_id = block_id;
1357 p->blksize = blksize;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001358 p->seq_num = cpu_to_be32(atomic_inc_return(&peer_device->device->packet_seq));
1359 return drbd_send_command(peer_device, sock, cmd, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001360}
1361
Lars Ellenberg2b2bf212010-10-06 11:46:55 +02001362/* dp->sector and dp->block_id already/still in network byte order,
1363 * data_size is payload size according to dp->head,
1364 * and may need to be corrected for digest size. */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001365void drbd_send_ack_dp(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
Andreas Gruenbachera9a99942011-03-16 01:30:14 +01001366 struct p_data *dp, int data_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001367{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001368 if (peer_device->connection->peer_integrity_tfm)
Kees Cook3d0e6372018-08-06 16:32:16 -07001369 data_size -= crypto_shash_digestsize(peer_device->connection->peer_integrity_tfm);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001370 _drbd_send_ack(peer_device, cmd, dp->sector, cpu_to_be32(data_size),
Andreas Gruenbachera9a99942011-03-16 01:30:14 +01001371 dp->block_id);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001372}
1373
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001374void drbd_send_ack_rp(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
Andreas Gruenbachera9a99942011-03-16 01:30:14 +01001375 struct p_block_req *rp)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001376{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001377 _drbd_send_ack(peer_device, cmd, rp->sector, rp->blksize, rp->block_id);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001378}
1379
1380/**
1381 * drbd_send_ack() - Sends an ack packet
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001382 * @device: DRBD device
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001383 * @cmd: packet command code
1384 * @peer_req: peer request
Philipp Reisnerb411b362009-09-25 16:07:19 -07001385 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001386int drbd_send_ack(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001387 struct drbd_peer_request *peer_req)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001388{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001389 return _drbd_send_ack(peer_device, cmd,
Andreas Gruenbacherdd516122011-03-16 15:39:08 +01001390 cpu_to_be64(peer_req->i.sector),
1391 cpu_to_be32(peer_req->i.size),
1392 peer_req->block_id);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001393}
1394
1395/* This function misuses the block_id field to signal if the blocks
1396 * are is sync or not. */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001397int drbd_send_ack_ex(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001398 sector_t sector, int blksize, u64 block_id)
1399{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001400 return _drbd_send_ack(peer_device, cmd,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001401 cpu_to_be64(sector),
1402 cpu_to_be32(blksize),
1403 cpu_to_be64(block_id));
1404}
1405
Philipp Reisner700ca8c2016-06-14 00:26:13 +02001406int drbd_send_rs_deallocated(struct drbd_peer_device *peer_device,
1407 struct drbd_peer_request *peer_req)
1408{
1409 struct drbd_socket *sock;
1410 struct p_block_desc *p;
1411
1412 sock = &peer_device->connection->data;
1413 p = drbd_prepare_command(peer_device, sock);
1414 if (!p)
1415 return -EIO;
1416 p->sector = cpu_to_be64(peer_req->i.sector);
1417 p->blksize = cpu_to_be32(peer_req->i.size);
1418 p->pad = 0;
1419 return drbd_send_command(peer_device, sock, P_RS_DEALLOCATED, sizeof(*p), NULL, 0);
1420}
1421
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001422int drbd_send_drequest(struct drbd_peer_device *peer_device, int cmd,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001423 sector_t sector, int size, u64 block_id)
1424{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001425 struct drbd_socket *sock;
1426 struct p_block_req *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001427
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001428 sock = &peer_device->connection->data;
1429 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001430 if (!p)
1431 return -EIO;
1432 p->sector = cpu_to_be64(sector);
1433 p->block_id = block_id;
1434 p->blksize = cpu_to_be32(size);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001435 return drbd_send_command(peer_device, sock, cmd, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001436}
1437
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001438int drbd_send_drequest_csum(struct drbd_peer_device *peer_device, sector_t sector, int size,
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001439 void *digest, int digest_size, enum drbd_packet cmd)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001440{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001441 struct drbd_socket *sock;
1442 struct p_block_req *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001443
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001444 /* FIXME: Put the digest into the preallocated socket buffer. */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001445
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001446 sock = &peer_device->connection->data;
1447 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001448 if (!p)
1449 return -EIO;
1450 p->sector = cpu_to_be64(sector);
1451 p->block_id = ID_SYNCER /* unused */;
1452 p->blksize = cpu_to_be32(size);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001453 return drbd_send_command(peer_device, sock, cmd, sizeof(*p), digest, digest_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001454}
1455
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001456int drbd_send_ov_request(struct drbd_peer_device *peer_device, sector_t sector, int size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001457{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001458 struct drbd_socket *sock;
1459 struct p_block_req *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001460
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001461 sock = &peer_device->connection->data;
1462 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001463 if (!p)
1464 return -EIO;
1465 p->sector = cpu_to_be64(sector);
1466 p->block_id = ID_SYNCER /* unused */;
1467 p->blksize = cpu_to_be32(size);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001468 return drbd_send_command(peer_device, sock, P_OV_REQUEST, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001469}
1470
1471/* called on sndtimeo
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001472 * returns false if we should retry,
1473 * true if we think connection is dead
Philipp Reisnerb411b362009-09-25 16:07:19 -07001474 */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001475static int we_should_drop_the_connection(struct drbd_connection *connection, struct socket *sock)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001476{
1477 int drop_it;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001478 /* long elapsed = (long)(jiffies - device->last_received); */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001479
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001480 drop_it = connection->meta.socket == sock
Philipp Reisner1c03e522015-03-16 15:01:00 +01001481 || !connection->ack_receiver.task
1482 || get_t_state(&connection->ack_receiver) != RUNNING
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001483 || connection->cstate < C_WF_REPORT_PARAMS;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001484
1485 if (drop_it)
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001486 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001487
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001488 drop_it = !--connection->ko_count;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001489 if (!drop_it) {
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +02001490 drbd_err(connection, "[%s/%d] sock_sendmsg time expired, ko = %u\n",
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001491 current->comm, current->pid, connection->ko_count);
1492 request_ping(connection);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001493 }
1494
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001495 return drop_it; /* && (device->state == R_PRIMARY) */;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001496}
1497
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001498static void drbd_update_congested(struct drbd_connection *connection)
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001499{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001500 struct sock *sk = connection->data.socket->sk;
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001501 if (sk->sk_wmem_queued > sk->sk_sndbuf * 4 / 5)
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001502 set_bit(NET_CONGESTED, &connection->flags);
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001503}
1504
Philipp Reisnerb411b362009-09-25 16:07:19 -07001505/* The idea of sendpage seems to be to put some kind of reference
1506 * to the page into the skb, and to hand it over to the NIC. In
1507 * this process get_page() gets called.
1508 *
1509 * As soon as the page was really sent over the network put_page()
1510 * gets called by some part of the network layer. [ NIC driver? ]
1511 *
1512 * [ get_page() / put_page() increment/decrement the count. If count
1513 * reaches 0 the page will be freed. ]
1514 *
1515 * This works nicely with pages from FSs.
1516 * But this means that in protocol A we might signal IO completion too early!
1517 *
1518 * In order not to corrupt data during a resync we must make sure
1519 * that we do not reuse our own buffer pages (EEs) to early, therefore
1520 * we have the net_ee list.
1521 *
1522 * XFS seems to have problems, still, it submits pages with page_count == 0!
1523 * As a workaround, we disable sendpage on pages
1524 * with page_count == 0 or PageSlab.
1525 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001526static int _drbd_no_send_page(struct drbd_peer_device *peer_device, struct page *page,
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001527 int offset, size_t size, unsigned msg_flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001528{
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001529 struct socket *socket;
1530 void *addr;
1531 int err;
1532
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001533 socket = peer_device->connection->data.socket;
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001534 addr = kmap(page) + offset;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001535 err = drbd_send_all(peer_device->connection, socket, addr, size, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001536 kunmap(page);
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001537 if (!err)
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001538 peer_device->device->send_cnt += size >> 9;
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001539 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001540}
1541
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001542static int _drbd_send_page(struct drbd_peer_device *peer_device, struct page *page,
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001543 int offset, size_t size, unsigned msg_flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001544{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001545 struct socket *socket = peer_device->connection->data.socket;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001546 int len = size;
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001547 int err = -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001548
1549 /* e.g. XFS meta- & log-data is in slab pages, which have a
1550 * page_count of 0 and/or have PageSlab() set.
1551 * we cannot use send_page for those, as that does get_page();
1552 * put_page(); and would cause either a VM_BUG directly, or
1553 * __page_cache_release a page that would actually still be referenced
1554 * by someone, leading to some obscure delayed Oops somewhere else. */
Roland Kammerer183ece32017-08-29 10:20:46 +02001555 if (drbd_disable_sendpage || (page_count(page) < 1) || PageSlab(page))
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001556 return _drbd_no_send_page(peer_device, page, offset, size, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001557
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001558 msg_flags |= MSG_NOSIGNAL;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001559 drbd_update_congested(peer_device->connection);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001560 do {
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001561 int sent;
1562
1563 sent = socket->ops->sendpage(socket, page, offset, len, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001564 if (sent <= 0) {
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001565 if (sent == -EAGAIN) {
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001566 if (we_should_drop_the_connection(peer_device->connection, socket))
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001567 break;
1568 continue;
1569 }
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001570 drbd_warn(peer_device->device, "%s: size=%d len=%d sent=%d\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -07001571 __func__, (int)size, len, sent);
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001572 if (sent < 0)
1573 err = sent;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001574 break;
1575 }
1576 len -= sent;
1577 offset += sent;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001578 } while (len > 0 /* THINK && device->cstate >= C_CONNECTED*/);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001579 clear_bit(NET_CONGESTED, &peer_device->connection->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001580
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001581 if (len == 0) {
1582 err = 0;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001583 peer_device->device->send_cnt += size >> 9;
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001584 }
1585 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001586}
1587
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001588static int _drbd_send_bio(struct drbd_peer_device *peer_device, struct bio *bio)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001589{
Kent Overstreet79886132013-11-23 17:19:00 -08001590 struct bio_vec bvec;
1591 struct bvec_iter iter;
1592
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001593 /* hint all but last page with MSG_MORE */
Kent Overstreet79886132013-11-23 17:19:00 -08001594 bio_for_each_segment(bvec, bio, iter) {
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001595 int err;
1596
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001597 err = _drbd_no_send_page(peer_device, bvec.bv_page,
Kent Overstreet79886132013-11-23 17:19:00 -08001598 bvec.bv_offset, bvec.bv_len,
Kent Overstreet4550dd62013-08-07 14:26:21 -07001599 bio_iter_last(bvec, iter)
Kent Overstreet79886132013-11-23 17:19:00 -08001600 ? 0 : MSG_MORE);
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001601 if (err)
1602 return err;
Lars Ellenberg9104d312016-06-14 00:26:31 +02001603 /* REQ_OP_WRITE_SAME has only one segment */
1604 if (bio_op(bio) == REQ_OP_WRITE_SAME)
1605 break;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001606 }
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001607 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001608}
1609
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001610static int _drbd_send_zc_bio(struct drbd_peer_device *peer_device, struct bio *bio)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001611{
Kent Overstreet79886132013-11-23 17:19:00 -08001612 struct bio_vec bvec;
1613 struct bvec_iter iter;
1614
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001615 /* hint all but last page with MSG_MORE */
Kent Overstreet79886132013-11-23 17:19:00 -08001616 bio_for_each_segment(bvec, bio, iter) {
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001617 int err;
1618
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001619 err = _drbd_send_page(peer_device, bvec.bv_page,
Kent Overstreet79886132013-11-23 17:19:00 -08001620 bvec.bv_offset, bvec.bv_len,
Kent Overstreet4550dd62013-08-07 14:26:21 -07001621 bio_iter_last(bvec, iter) ? 0 : MSG_MORE);
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001622 if (err)
1623 return err;
Lars Ellenberg9104d312016-06-14 00:26:31 +02001624 /* REQ_OP_WRITE_SAME has only one segment */
1625 if (bio_op(bio) == REQ_OP_WRITE_SAME)
1626 break;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001627 }
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001628 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001629}
1630
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001631static int _drbd_send_zc_ee(struct drbd_peer_device *peer_device,
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001632 struct drbd_peer_request *peer_req)
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001633{
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001634 struct page *page = peer_req->pages;
1635 unsigned len = peer_req->i.size;
Andreas Gruenbacher9f692302011-03-16 10:49:09 +01001636 int err;
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001637
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001638 /* hint all but last page with MSG_MORE */
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001639 page_chain_for_each(page) {
1640 unsigned l = min_t(unsigned, len, PAGE_SIZE);
Andreas Gruenbacher9f692302011-03-16 10:49:09 +01001641
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001642 err = _drbd_send_page(peer_device, page, 0, l,
Andreas Gruenbacher9f692302011-03-16 10:49:09 +01001643 page_chain_next(page) ? MSG_MORE : 0);
1644 if (err)
1645 return err;
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001646 len -= l;
1647 }
Andreas Gruenbacher9f692302011-03-16 10:49:09 +01001648 return 0;
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001649}
1650
Mike Christiebb3cc852016-06-05 14:32:06 -05001651static u32 bio_flags_to_wire(struct drbd_connection *connection,
1652 struct bio *bio)
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001653{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001654 if (connection->agreed_pro_version >= 95)
Jens Axboe1eff9d32016-08-05 15:35:16 -06001655 return (bio->bi_opf & REQ_SYNC ? DP_RW_SYNC : 0) |
1656 (bio->bi_opf & REQ_FUA ? DP_FUA : 0) |
1657 (bio->bi_opf & REQ_PREFLUSH ? DP_FLUSH : 0) |
Lars Ellenberg9104d312016-06-14 00:26:31 +02001658 (bio_op(bio) == REQ_OP_WRITE_SAME ? DP_WSAME : 0) |
Christoph Hellwig45c21792017-04-05 19:21:22 +02001659 (bio_op(bio) == REQ_OP_DISCARD ? DP_DISCARD : 0) |
Lars Ellenbergf31e5832018-12-20 17:23:42 +01001660 (bio_op(bio) == REQ_OP_WRITE_ZEROES ?
1661 ((connection->agreed_features & DRBD_FF_WZEROES) ?
1662 (DP_ZEROES |(!(bio->bi_opf & REQ_NOUNMAP) ? DP_DISCARD : 0))
1663 : DP_DISCARD)
1664 : 0);
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001665 else
Jens Axboe1eff9d32016-08-05 15:35:16 -06001666 return bio->bi_opf & REQ_SYNC ? DP_RW_SYNC : 0;
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001667}
1668
Bart Van Assche93054552018-10-03 13:56:25 -07001669/* Used to send write or TRIM aka REQ_OP_DISCARD requests
Lars Ellenberg2f632ae2014-04-28 18:43:24 +02001670 * R_PRIMARY -> Peer (P_DATA, P_TRIM)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001671 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001672int drbd_send_dblock(struct drbd_peer_device *peer_device, struct drbd_request *req)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001673{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001674 struct drbd_device *device = peer_device->device;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001675 struct drbd_socket *sock;
1676 struct p_data *p;
Lars Ellenberg9104d312016-06-14 00:26:31 +02001677 struct p_wsame *wsame = NULL;
1678 void *digest_out;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001679 unsigned int dp_flags = 0;
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001680 int digest_size;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001681 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001682
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001683 sock = &peer_device->connection->data;
1684 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001685 digest_size = peer_device->connection->integrity_tfm ?
Kees Cook3d0e6372018-08-06 16:32:16 -07001686 crypto_shash_digestsize(peer_device->connection->integrity_tfm) : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001687
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001688 if (!p)
1689 return -EIO;
1690 p->sector = cpu_to_be64(req->i.sector);
1691 p->block_id = (unsigned long)req;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001692 p->seq_num = cpu_to_be32(atomic_inc_return(&device->packet_seq));
Mike Christiebb3cc852016-06-05 14:32:06 -05001693 dp_flags = bio_flags_to_wire(peer_device->connection, req->master_bio);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001694 if (device->state.conn >= C_SYNC_SOURCE &&
1695 device->state.conn <= C_PAUSED_SYNC_T)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001696 dp_flags |= DP_MAY_SET_IN_SYNC;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001697 if (peer_device->connection->agreed_pro_version >= 100) {
Philipp Reisner303d1442011-04-13 16:24:47 -07001698 if (req->rq_state & RQ_EXP_RECEIVE_ACK)
1699 dp_flags |= DP_SEND_RECEIVE_ACK;
Lars Ellenberg08d0dab2014-03-20 11:19:22 +01001700 /* During resync, request an explicit write ack,
1701 * even in protocol != C */
1702 if (req->rq_state & RQ_EXP_WRITE_ACK
1703 || (dp_flags & DP_MAY_SET_IN_SYNC))
Philipp Reisner303d1442011-04-13 16:24:47 -07001704 dp_flags |= DP_SEND_WRITE_ACK;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001705 }
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001706 p->dp_flags = cpu_to_be32(dp_flags);
Lars Ellenberg2f632ae2014-04-28 18:43:24 +02001707
Lars Ellenbergf31e5832018-12-20 17:23:42 +01001708 if (dp_flags & (DP_DISCARD|DP_ZEROES)) {
1709 enum drbd_packet cmd = (dp_flags & DP_ZEROES) ? P_ZEROES : P_TRIM;
Lars Ellenberg2f632ae2014-04-28 18:43:24 +02001710 struct p_trim *t = (struct p_trim*)p;
1711 t->size = cpu_to_be32(req->i.size);
Lars Ellenbergf31e5832018-12-20 17:23:42 +01001712 err = __send_command(peer_device->connection, device->vnr, sock, cmd, sizeof(*t), NULL, 0);
Lars Ellenberg2f632ae2014-04-28 18:43:24 +02001713 goto out;
1714 }
Lars Ellenberg9104d312016-06-14 00:26:31 +02001715 if (dp_flags & DP_WSAME) {
1716 /* this will only work if DRBD_FF_WSAME is set AND the
1717 * handshake agreed that all nodes and backend devices are
1718 * WRITE_SAME capable and agree on logical_block_size */
1719 wsame = (struct p_wsame*)p;
1720 digest_out = wsame + 1;
1721 wsame->size = cpu_to_be32(req->i.size);
1722 } else
1723 digest_out = p + 1;
Lars Ellenberg2f632ae2014-04-28 18:43:24 +02001724
1725 /* our digest is still only over the payload.
1726 * TRIM does not carry any payload. */
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001727 if (digest_size)
Lars Ellenberg9104d312016-06-14 00:26:31 +02001728 drbd_csum_bio(peer_device->connection->integrity_tfm, req->master_bio, digest_out);
1729 if (wsame) {
1730 err =
1731 __send_command(peer_device->connection, device->vnr, sock, P_WSAME,
1732 sizeof(*wsame) + digest_size, NULL,
1733 bio_iovec(req->master_bio).bv_len);
1734 } else
1735 err =
1736 __send_command(peer_device->connection, device->vnr, sock, P_DATA,
1737 sizeof(*p) + digest_size, NULL, req->i.size);
Andreas Gruenbacher6bdb9b02011-03-16 11:52:58 +01001738 if (!err) {
Lars Ellenberg470be442010-11-10 10:36:52 +01001739 /* For protocol A, we have to memcpy the payload into
1740 * socket buffers, as we may complete right away
1741 * as soon as we handed it over to tcp, at which point the data
1742 * pages may become invalid.
1743 *
1744 * For data-integrity enabled, we copy it as well, so we can be
1745 * sure that even if the bio pages may still be modified, it
1746 * won't change the data on the wire, thus if the digest checks
1747 * out ok after sending on this side, but does not fit on the
1748 * receiving side, we sure have detected corruption elsewhere.
1749 */
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001750 if (!(req->rq_state & (RQ_EXP_RECEIVE_ACK | RQ_EXP_WRITE_ACK)) || digest_size)
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001751 err = _drbd_send_bio(peer_device, req->master_bio);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001752 else
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001753 err = _drbd_send_zc_bio(peer_device, req->master_bio);
Lars Ellenberg470be442010-11-10 10:36:52 +01001754
1755 /* double check digest, sometimes buffers have been modified in flight. */
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001756 if (digest_size > 0 && digest_size <= 64) {
Bart Van Assche24c48302011-05-21 18:32:29 +02001757 /* 64 byte, 512 bit, is the largest digest size
Lars Ellenberg470be442010-11-10 10:36:52 +01001758 * currently supported in kernel crypto. */
1759 unsigned char digest[64];
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001760 drbd_csum_bio(peer_device->connection->integrity_tfm, req->master_bio, digest);
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001761 if (memcmp(p + 1, digest, digest_size)) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001762 drbd_warn(device,
Lars Ellenberg470be442010-11-10 10:36:52 +01001763 "Digest mismatch, buffer modified by upper layers during write: %llus +%u\n",
Andreas Gruenbacherace652a2011-01-03 17:09:58 +01001764 (unsigned long long)req->i.sector, req->i.size);
Lars Ellenberg470be442010-11-10 10:36:52 +01001765 }
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001766 } /* else if (digest_size > 64) {
Lars Ellenberg470be442010-11-10 10:36:52 +01001767 ... Be noisy about digest too large ...
1768 } */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001769 }
Lars Ellenberg2f632ae2014-04-28 18:43:24 +02001770out:
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001771 mutex_unlock(&sock->mutex); /* locked by drbd_prepare_command() */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001772
Andreas Gruenbacher6bdb9b02011-03-16 11:52:58 +01001773 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001774}
1775
1776/* answer packet, used to send data back for read requests:
1777 * Peer -> (diskless) R_PRIMARY (P_DATA_REPLY)
1778 * C_SYNC_SOURCE -> C_SYNC_TARGET (P_RS_DATA_REPLY)
1779 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001780int drbd_send_block(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001781 struct drbd_peer_request *peer_req)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001782{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001783 struct drbd_device *device = peer_device->device;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001784 struct drbd_socket *sock;
1785 struct p_data *p;
Andreas Gruenbacher7b57b89d2011-03-16 11:35:20 +01001786 int err;
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001787 int digest_size;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001788
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001789 sock = &peer_device->connection->data;
1790 p = drbd_prepare_command(peer_device, sock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001791
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001792 digest_size = peer_device->connection->integrity_tfm ?
Kees Cook3d0e6372018-08-06 16:32:16 -07001793 crypto_shash_digestsize(peer_device->connection->integrity_tfm) : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001794
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001795 if (!p)
1796 return -EIO;
1797 p->sector = cpu_to_be64(peer_req->i.sector);
1798 p->block_id = peer_req->block_id;
1799 p->seq_num = 0; /* unused */
Lars Ellenbergb17f33c2012-02-08 15:32:51 +01001800 p->dp_flags = 0;
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001801 if (digest_size)
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001802 drbd_csum_ee(peer_device->connection->integrity_tfm, peer_req, p + 1);
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001803 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 +01001804 if (!err)
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001805 err = _drbd_send_zc_ee(peer_device, peer_req);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001806 mutex_unlock(&sock->mutex); /* locked by drbd_prepare_command() */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001807
Andreas Gruenbacher7b57b89d2011-03-16 11:35:20 +01001808 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001809}
1810
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001811int drbd_send_out_of_sync(struct drbd_peer_device *peer_device, struct drbd_request *req)
Philipp Reisner73a01a12010-10-27 14:33:00 +02001812{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001813 struct drbd_socket *sock;
1814 struct p_block_desc *p;
Philipp Reisner73a01a12010-10-27 14:33:00 +02001815
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001816 sock = &peer_device->connection->data;
1817 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001818 if (!p)
1819 return -EIO;
1820 p->sector = cpu_to_be64(req->i.sector);
1821 p->blksize = cpu_to_be32(req->i.size);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001822 return drbd_send_command(peer_device, sock, P_OUT_OF_SYNC, sizeof(*p), NULL, 0);
Philipp Reisner73a01a12010-10-27 14:33:00 +02001823}
1824
Philipp Reisnerb411b362009-09-25 16:07:19 -07001825/*
1826 drbd_send distinguishes two cases:
1827
1828 Packets sent via the data socket "sock"
1829 and packets sent via the meta data socket "msock"
1830
1831 sock msock
1832 -----------------+-------------------------+------------------------------
1833 timeout conf.timeout / 2 conf.timeout / 2
1834 timeout action send a ping via msock Abort communication
1835 and close all sockets
1836*/
1837
1838/*
1839 * you must have down()ed the appropriate [m]sock_mutex elsewhere!
1840 */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001841int drbd_send(struct drbd_connection *connection, struct socket *sock,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001842 void *buf, size_t size, unsigned msg_flags)
1843{
Al Viro79ab80b2014-12-10 17:06:38 -05001844 struct kvec iov = {.iov_base = buf, .iov_len = size};
Al Virof7765c32017-09-20 20:05:43 -04001845 struct msghdr msg = {.msg_flags = msg_flags | MSG_NOSIGNAL};
Philipp Reisnerb411b362009-09-25 16:07:19 -07001846 int rv, sent = 0;
1847
1848 if (!sock)
Andreas Gruenbacherc0d42c82010-12-09 23:52:22 +01001849 return -EBADR;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001850
1851 /* THINK if (signal_pending) return ... ? */
1852
David Howellsaa563d72018-10-20 00:57:56 +01001853 iov_iter_kvec(&msg.msg_iter, WRITE, &iov, 1, size);
Al Viro79ab80b2014-12-10 17:06:38 -05001854
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001855 if (sock == connection->data.socket) {
Philipp Reisner44ed1672011-04-19 17:10:19 +02001856 rcu_read_lock();
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001857 connection->ko_count = rcu_dereference(connection->net_conf)->ko_count;
Philipp Reisner44ed1672011-04-19 17:10:19 +02001858 rcu_read_unlock();
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001859 drbd_update_congested(connection);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001860 }
1861 do {
Al Viro79ab80b2014-12-10 17:06:38 -05001862 rv = sock_sendmsg(sock, &msg);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001863 if (rv == -EAGAIN) {
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001864 if (we_should_drop_the_connection(connection, sock))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001865 break;
1866 else
1867 continue;
1868 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001869 if (rv == -EINTR) {
1870 flush_signals(current);
1871 rv = 0;
1872 }
1873 if (rv < 0)
1874 break;
1875 sent += rv;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001876 } while (sent < size);
1877
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001878 if (sock == connection->data.socket)
1879 clear_bit(NET_CONGESTED, &connection->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001880
1881 if (rv <= 0) {
1882 if (rv != -EAGAIN) {
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +02001883 drbd_err(connection, "%s_sendmsg returned %d\n",
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001884 sock == connection->meta.socket ? "msock" : "sock",
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001885 rv);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001886 conn_request_state(connection, NS(conn, C_BROKEN_PIPE), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001887 } else
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001888 conn_request_state(connection, NS(conn, C_TIMEOUT), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001889 }
1890
1891 return sent;
1892}
1893
Andreas Gruenbacherfb708e42010-12-15 17:04:36 +01001894/**
1895 * drbd_send_all - Send an entire buffer
1896 *
1897 * Returns 0 upon success and a negative error value otherwise.
1898 */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001899int drbd_send_all(struct drbd_connection *connection, struct socket *sock, void *buffer,
Andreas Gruenbacherfb708e42010-12-15 17:04:36 +01001900 size_t size, unsigned msg_flags)
1901{
1902 int err;
1903
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001904 err = drbd_send(connection, sock, buffer, size, msg_flags);
Andreas Gruenbacherfb708e42010-12-15 17:04:36 +01001905 if (err < 0)
1906 return err;
1907 if (err != size)
1908 return -EIO;
1909 return 0;
1910}
1911
Philipp Reisnerb411b362009-09-25 16:07:19 -07001912static int drbd_open(struct block_device *bdev, fmode_t mode)
1913{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001914 struct drbd_device *device = bdev->bd_disk->private_data;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001915 unsigned long flags;
1916 int rv = 0;
1917
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001918 mutex_lock(&drbd_main_mutex);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001919 spin_lock_irqsave(&device->resource->req_lock, flags);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001920 /* to have a stable device->state.role
Philipp Reisnerb411b362009-09-25 16:07:19 -07001921 * and no race with updating open_cnt */
1922
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001923 if (device->state.role != R_PRIMARY) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001924 if (mode & FMODE_WRITE)
1925 rv = -EROFS;
Roland Kammerer183ece32017-08-29 10:20:46 +02001926 else if (!drbd_allow_oos)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001927 rv = -EMEDIUMTYPE;
1928 }
1929
1930 if (!rv)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001931 device->open_cnt++;
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001932 spin_unlock_irqrestore(&device->resource->req_lock, flags);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001933 mutex_unlock(&drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001934
1935 return rv;
1936}
1937
Al Virodb2a1442013-05-05 21:52:57 -04001938static void drbd_release(struct gendisk *gd, fmode_t mode)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001939{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001940 struct drbd_device *device = gd->private_data;
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001941 mutex_lock(&drbd_main_mutex);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001942 device->open_cnt--;
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001943 mutex_unlock(&drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001944}
1945
Lars Ellenbergc51a0ef2017-08-29 10:20:32 +02001946/* need to hold resource->req_lock */
1947void drbd_queue_unplug(struct drbd_device *device)
1948{
1949 if (device->state.pdsk >= D_INCONSISTENT && device->state.conn >= C_CONNECTED) {
1950 D_ASSERT(device, device->state.role == R_PRIMARY);
1951 if (test_and_clear_bit(UNPLUG_REMOTE, &device->flags)) {
1952 drbd_queue_work_if_unqueued(
1953 &first_peer_device(device)->connection->sender_work,
1954 &device->unplug_work);
1955 }
1956 }
1957}
1958
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001959static void drbd_set_defaults(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001960{
Lars Ellenbergf3990022011-03-23 14:31:09 +01001961 /* Beware! The actual layout differs
1962 * between big endian and little endian */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001963 device->state = (union drbd_dev_state) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001964 { .role = R_SECONDARY,
1965 .peer = R_UNKNOWN,
1966 .conn = C_STANDALONE,
1967 .disk = D_DISKLESS,
1968 .pdsk = D_UNKNOWN,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001969 } };
1970}
1971
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001972void drbd_init_set_defaults(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001973{
1974 /* the memset(,0,) did most of this.
1975 * note: only assignments, no allocation in here */
1976
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001977 drbd_set_defaults(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001978
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001979 atomic_set(&device->ap_bio_cnt, 0);
Lars Ellenbergad3fee72013-12-20 11:22:13 +01001980 atomic_set(&device->ap_actlog_cnt, 0);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001981 atomic_set(&device->ap_pending_cnt, 0);
1982 atomic_set(&device->rs_pending_cnt, 0);
1983 atomic_set(&device->unacked_cnt, 0);
1984 atomic_set(&device->local_cnt, 0);
1985 atomic_set(&device->pp_in_use_by_net, 0);
1986 atomic_set(&device->rs_sect_in, 0);
1987 atomic_set(&device->rs_sect_ev, 0);
1988 atomic_set(&device->ap_in_flight, 0);
Lars Ellenberge37d2432014-04-01 23:53:30 +02001989 atomic_set(&device->md_io.in_use, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001990
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001991 mutex_init(&device->own_state_mutex);
1992 device->state_mutex = &device->own_state_mutex;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001993
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001994 spin_lock_init(&device->al_lock);
1995 spin_lock_init(&device->peer_seq_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001996
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001997 INIT_LIST_HEAD(&device->active_ee);
1998 INIT_LIST_HEAD(&device->sync_ee);
1999 INIT_LIST_HEAD(&device->done_ee);
2000 INIT_LIST_HEAD(&device->read_ee);
2001 INIT_LIST_HEAD(&device->net_ee);
2002 INIT_LIST_HEAD(&device->resync_reads);
2003 INIT_LIST_HEAD(&device->resync_work.list);
2004 INIT_LIST_HEAD(&device->unplug_work.list);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002005 INIT_LIST_HEAD(&device->bm_io_work.w.list);
Lars Ellenberg844a6ae72013-11-22 12:52:03 +01002006 INIT_LIST_HEAD(&device->pending_master_completion[0]);
2007 INIT_LIST_HEAD(&device->pending_master_completion[1]);
2008 INIT_LIST_HEAD(&device->pending_completion[0]);
2009 INIT_LIST_HEAD(&device->pending_completion[1]);
Philipp Reisner0ced55a2010-04-30 15:26:20 +02002010
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002011 device->resync_work.cb = w_resync_timer;
2012 device->unplug_work.cb = w_send_write_hint;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002013 device->bm_io_work.w.cb = w_bitmap_io;
Philipp Reisnera21e9292011-02-08 15:08:49 +01002014
Kees Cook2bccef32017-10-17 20:33:01 -07002015 timer_setup(&device->resync_timer, resync_timer_fn, 0);
2016 timer_setup(&device->md_sync_timer, md_sync_timer_fn, 0);
2017 timer_setup(&device->start_resync_timer, start_resync_timer_fn, 0);
2018 timer_setup(&device->request_timer, request_timer_fn, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002019
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002020 init_waitqueue_head(&device->misc_wait);
2021 init_waitqueue_head(&device->state_wait);
2022 init_waitqueue_head(&device->ee_wait);
2023 init_waitqueue_head(&device->al_wait);
2024 init_waitqueue_head(&device->seq_wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002025
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002026 device->resync_wenr = LC_FREE;
2027 device->peer_max_bio_size = DRBD_MAX_BIO_SIZE_SAFE;
2028 device->local_max_bio_size = DRBD_MAX_BIO_SIZE_SAFE;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002029}
2030
Lars Ellenbergd5412e82018-12-20 17:23:30 +01002031static void _drbd_set_my_capacity(struct drbd_device *device, sector_t size)
2032{
2033 /* set_capacity(device->this_bdev->bd_disk, size); */
2034 set_capacity(device->vdisk, size);
2035 device->this_bdev->bd_inode->i_size = (loff_t)size << 9;
2036}
2037
2038void drbd_set_my_capacity(struct drbd_device *device, sector_t size)
2039{
2040 char ppb[10];
2041 _drbd_set_my_capacity(device, size);
2042 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
Lars Ellenbergd5412e82018-12-20 17:23:30 +01002071 _drbd_set_my_capacity(device, 0);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002072 if (device->bitmap) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002073 /* maybe never allocated. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002074 drbd_bm_resize(device, 0, 1);
2075 drbd_bm_cleanup(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002076 }
2077
Lars Ellenberg63a7c8a2015-03-26 20:53:55 +01002078 drbd_backing_dev_free(device, device->ldev);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002079 device->ldev = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002080
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002081 clear_bit(AL_SUSPENDED, &device->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002082
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02002083 D_ASSERT(device, list_empty(&device->active_ee));
2084 D_ASSERT(device, list_empty(&device->sync_ee));
2085 D_ASSERT(device, list_empty(&device->done_ee));
2086 D_ASSERT(device, list_empty(&device->read_ee));
2087 D_ASSERT(device, list_empty(&device->net_ee));
2088 D_ASSERT(device, list_empty(&device->resync_reads));
2089 D_ASSERT(device, list_empty(&first_peer_device(device)->connection->sender_work.q));
2090 D_ASSERT(device, list_empty(&device->resync_work.list));
2091 D_ASSERT(device, list_empty(&device->unplug_work.list));
Lars Ellenberg2265b472010-12-16 15:41:26 +01002092
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002093 drbd_set_defaults(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002094}
2095
2096
2097static void drbd_destroy_mempools(void)
2098{
2099 struct page *page;
2100
2101 while (drbd_pp_pool) {
2102 page = drbd_pp_pool;
2103 drbd_pp_pool = (struct page *)page_private(page);
2104 __free_page(page);
2105 drbd_pp_vacant--;
2106 }
2107
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02002108 /* D_ASSERT(device, atomic_read(&drbd_pp_vacant)==0); */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002109
Kent Overstreet0892fac2018-05-20 18:25:48 -04002110 bioset_exit(&drbd_io_bio_set);
2111 bioset_exit(&drbd_md_io_bio_set);
2112 mempool_exit(&drbd_md_io_page_pool);
2113 mempool_exit(&drbd_ee_mempool);
2114 mempool_exit(&drbd_request_mempool);
zhong jianga12fc002018-08-08 23:22:47 +08002115 kmem_cache_destroy(drbd_ee_cache);
2116 kmem_cache_destroy(drbd_request_cache);
2117 kmem_cache_destroy(drbd_bm_ext_cache);
2118 kmem_cache_destroy(drbd_al_ext_cache);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002119
Philipp Reisnerb411b362009-09-25 16:07:19 -07002120 drbd_ee_cache = NULL;
2121 drbd_request_cache = NULL;
2122 drbd_bm_ext_cache = NULL;
2123 drbd_al_ext_cache = NULL;
2124
2125 return;
2126}
2127
2128static int drbd_create_mempools(void)
2129{
2130 struct page *page;
Roland Kammerer183ece32017-08-29 10:20:46 +02002131 const int number = (DRBD_MAX_BIO_SIZE/PAGE_SIZE) * drbd_minor_count;
Kent Overstreet0892fac2018-05-20 18:25:48 -04002132 int i, ret;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002133
2134 /* caches */
2135 drbd_request_cache = kmem_cache_create(
2136 "drbd_req", sizeof(struct drbd_request), 0, 0, NULL);
2137 if (drbd_request_cache == NULL)
2138 goto Enomem;
2139
2140 drbd_ee_cache = kmem_cache_create(
Andreas Gruenbacherf6ffca92011-02-04 15:30:34 +01002141 "drbd_ee", sizeof(struct drbd_peer_request), 0, 0, NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002142 if (drbd_ee_cache == NULL)
2143 goto Enomem;
2144
2145 drbd_bm_ext_cache = kmem_cache_create(
2146 "drbd_bm", sizeof(struct bm_extent), 0, 0, NULL);
2147 if (drbd_bm_ext_cache == NULL)
2148 goto Enomem;
2149
2150 drbd_al_ext_cache = kmem_cache_create(
2151 "drbd_al", sizeof(struct lc_element), 0, 0, NULL);
2152 if (drbd_al_ext_cache == NULL)
2153 goto Enomem;
2154
2155 /* mempools */
Kent Overstreet0892fac2018-05-20 18:25:48 -04002156 ret = bioset_init(&drbd_io_bio_set, BIO_POOL_SIZE, 0, 0);
2157 if (ret)
NeilBrown8cb0def2017-06-18 14:38:58 +10002158 goto Enomem;
2159
Kent Overstreet0892fac2018-05-20 18:25:48 -04002160 ret = bioset_init(&drbd_md_io_bio_set, DRBD_MIN_POOL_PAGES, 0,
2161 BIOSET_NEED_BVECS);
2162 if (ret)
Lars Ellenberg9476f392011-02-23 17:02:01 +01002163 goto Enomem;
Lars Ellenberg9476f392011-02-23 17:02:01 +01002164
Kent Overstreet0892fac2018-05-20 18:25:48 -04002165 ret = mempool_init_page_pool(&drbd_md_io_page_pool, DRBD_MIN_POOL_PAGES, 0);
2166 if (ret)
Lars Ellenberg42818082011-02-23 12:39:46 +01002167 goto Enomem;
2168
Kent Overstreet0892fac2018-05-20 18:25:48 -04002169 ret = mempool_init_slab_pool(&drbd_request_mempool, number,
2170 drbd_request_cache);
2171 if (ret)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002172 goto Enomem;
2173
Kent Overstreet0892fac2018-05-20 18:25:48 -04002174 ret = mempool_init_slab_pool(&drbd_ee_mempool, number, drbd_ee_cache);
2175 if (ret)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002176 goto Enomem;
2177
2178 /* drbd's page pool */
2179 spin_lock_init(&drbd_pp_lock);
2180
2181 for (i = 0; i < number; i++) {
2182 page = alloc_page(GFP_HIGHUSER);
2183 if (!page)
2184 goto Enomem;
2185 set_page_private(page, (unsigned long)drbd_pp_pool);
2186 drbd_pp_pool = page;
2187 }
2188 drbd_pp_vacant = number;
2189
2190 return 0;
2191
2192Enomem:
2193 drbd_destroy_mempools(); /* in case we allocated some */
2194 return -ENOMEM;
2195}
2196
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002197static void drbd_release_all_peer_reqs(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002198{
2199 int rr;
2200
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002201 rr = drbd_free_peer_reqs(device, &device->active_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002202 if (rr)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002203 drbd_err(device, "%d EEs in active list found!\n", rr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002204
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002205 rr = drbd_free_peer_reqs(device, &device->sync_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002206 if (rr)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002207 drbd_err(device, "%d EEs in sync list found!\n", rr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002208
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002209 rr = drbd_free_peer_reqs(device, &device->read_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002210 if (rr)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002211 drbd_err(device, "%d EEs in read list found!\n", rr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002212
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002213 rr = drbd_free_peer_reqs(device, &device->done_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002214 if (rr)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002215 drbd_err(device, "%d EEs in done list found!\n", rr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002216
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002217 rr = drbd_free_peer_reqs(device, &device->net_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002218 if (rr)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002219 drbd_err(device, "%d EEs in net list found!\n", rr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002220}
2221
Philipp Reisner774b3052011-02-22 02:07:03 -05002222/* caution. no locking. */
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +02002223void drbd_destroy_device(struct kref *kref)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002224{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002225 struct drbd_device *device = container_of(kref, struct drbd_device, kref);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002226 struct drbd_resource *resource = device->resource;
Lars Ellenberga8ba0d62014-05-14 21:34:47 +02002227 struct drbd_peer_device *peer_device, *tmp_peer_device;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002228
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002229 del_timer_sync(&device->request_timer);
Philipp Reisnerdfa8bed2011-06-29 14:06:08 +02002230
Philipp Reisnerb411b362009-09-25 16:07:19 -07002231 /* paranoia asserts */
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02002232 D_ASSERT(device, device->open_cnt == 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002233 /* end paranoia asserts */
2234
Philipp Reisnerb411b362009-09-25 16:07:19 -07002235 /* cleanup stuff that may have been allocated during
2236 * device (re-)configuration or state changes */
2237
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002238 if (device->this_bdev)
2239 bdput(device->this_bdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002240
Lars Ellenberg63a7c8a2015-03-26 20:53:55 +01002241 drbd_backing_dev_free(device, device->ldev);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002242 device->ldev = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002243
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002244 drbd_release_all_peer_reqs(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002245
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002246 lc_destroy(device->act_log);
2247 lc_destroy(device->resync);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002248
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002249 kfree(device->p_uuid);
2250 /* device->p_uuid = NULL; */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002251
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002252 if (device->bitmap) /* should no longer be there. */
2253 drbd_bm_cleanup(device);
Lars Ellenberge37d2432014-04-01 23:53:30 +02002254 __free_page(device->md_io.page);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002255 put_disk(device->vdisk);
2256 blk_cleanup_queue(device->rq_queue);
2257 kfree(device->rs_plan_s);
Lars Ellenberga8ba0d62014-05-14 21:34:47 +02002258
2259 /* not for_each_connection(connection, resource):
2260 * those may have been cleaned up and disassociated already.
2261 */
2262 for_each_peer_device_safe(peer_device, tmp_peer_device, device) {
2263 kref_put(&peer_device->connection->kref, drbd_destroy_connection);
2264 kfree(peer_device);
2265 }
Lars Ellenbergc2258ff2014-05-14 21:35:21 +02002266 memset(device, 0xfd, sizeof(*device));
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002267 kfree(device);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002268 kref_put(&resource->kref, drbd_destroy_resource);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002269}
2270
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002271/* One global retry thread, if we need to push back some bio and have it
2272 * reinserted through our make request function.
2273 */
2274static struct retry_worker {
2275 struct workqueue_struct *wq;
2276 struct work_struct worker;
2277
2278 spinlock_t lock;
2279 struct list_head writes;
2280} retry;
2281
2282static void do_retry(struct work_struct *ws)
2283{
2284 struct retry_worker *retry = container_of(ws, struct retry_worker, worker);
2285 LIST_HEAD(writes);
2286 struct drbd_request *req, *tmp;
2287
2288 spin_lock_irq(&retry->lock);
2289 list_splice_init(&retry->writes, &writes);
2290 spin_unlock_irq(&retry->lock);
2291
2292 list_for_each_entry_safe(req, tmp, &writes, tl_requests) {
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02002293 struct drbd_device *device = req->device;
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002294 struct bio *bio = req->master_bio;
Lars Ellenberge5f891b2013-11-22 12:32:01 +01002295 unsigned long start_jif = req->start_jif;
Lars Ellenberg9a278a72012-07-24 10:12:36 +02002296 bool expected;
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002297
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02002298 expected =
Lars Ellenberg9a278a72012-07-24 10:12:36 +02002299 expect(atomic_read(&req->completion_ref) == 0) &&
2300 expect(req->rq_state & RQ_POSTPONED) &&
2301 expect((req->rq_state & RQ_LOCAL_PENDING) == 0 ||
2302 (req->rq_state & RQ_LOCAL_ABORTED) != 0);
2303
2304 if (!expected)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002305 drbd_err(device, "req=%p completion_ref=%d rq_state=%x\n",
Lars Ellenberg9a278a72012-07-24 10:12:36 +02002306 req, atomic_read(&req->completion_ref),
2307 req->rq_state);
2308
2309 /* We still need to put one kref associated with the
2310 * "completion_ref" going zero in the code path that queued it
2311 * here. The request object may still be referenced by a
2312 * frozen local req->private_bio, in case we force-detached.
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002313 */
Lars Ellenberg9a278a72012-07-24 10:12:36 +02002314 kref_put(&req->kref, drbd_req_destroy);
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002315
2316 /* A single suspended or otherwise blocking device may stall
2317 * all others as well. Fortunately, this code path is to
2318 * recover from a situation that "should not happen":
2319 * concurrent writes in multi-primary setup.
2320 * In a "normal" lifecycle, this workqueue is supposed to be
2321 * destroyed without ever doing anything.
2322 * If it turns out to be an issue anyways, we can do per
2323 * resource (replication group) or per device (minor) retry
2324 * workqueues instead.
2325 */
2326
2327 /* We are not just doing generic_make_request(),
2328 * as we want to keep the start_time information. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002329 inc_ap_bio(device);
Lars Ellenberge5f891b2013-11-22 12:32:01 +01002330 __drbd_make_request(device, bio, start_jif);
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002331 }
2332}
2333
Lars Ellenberg844a6ae72013-11-22 12:52:03 +01002334/* called via drbd_req_put_completion_ref(),
2335 * holds resource->req_lock */
Lars Ellenberg9d05e7c2012-07-17 10:05:04 +02002336void drbd_restart_request(struct drbd_request *req)
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002337{
2338 unsigned long flags;
2339 spin_lock_irqsave(&retry.lock, flags);
2340 list_move_tail(&req->tl_requests, &retry.writes);
2341 spin_unlock_irqrestore(&retry.lock, flags);
2342
2343 /* Drop the extra reference that would otherwise
2344 * have been dropped by complete_master_bio.
2345 * do_retry() needs to grab a new one. */
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02002346 dec_ap_bio(req->device);
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002347
2348 queue_work(retry.wq, &retry.worker);
2349}
2350
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002351void drbd_destroy_resource(struct kref *kref)
2352{
2353 struct drbd_resource *resource =
2354 container_of(kref, struct drbd_resource, kref);
2355
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002356 idr_destroy(&resource->devices);
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +02002357 free_cpumask_var(resource->cpu_mask);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002358 kfree(resource->name);
Lars Ellenbergc2258ff2014-05-14 21:35:21 +02002359 memset(resource, 0xf2, sizeof(*resource));
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002360 kfree(resource);
2361}
2362
2363void drbd_free_resource(struct drbd_resource *resource)
2364{
2365 struct drbd_connection *connection, *tmp;
2366
2367 for_each_connection_safe(connection, tmp, resource) {
2368 list_del(&connection->connections);
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002369 drbd_debugfs_connection_cleanup(connection);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002370 kref_put(&connection->kref, drbd_destroy_connection);
2371 }
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002372 drbd_debugfs_resource_cleanup(resource);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002373 kref_put(&resource->kref, drbd_destroy_resource);
2374}
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002375
Philipp Reisnerb411b362009-09-25 16:07:19 -07002376static void drbd_cleanup(void)
2377{
2378 unsigned int i;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002379 struct drbd_device *device;
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002380 struct drbd_resource *resource, *tmp;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002381
Lars Ellenberg17a93f32010-11-24 10:37:35 +01002382 /* first remove proc,
2383 * drbdsetup uses it's presence to detect
2384 * whether DRBD is loaded.
2385 * If we would get stuck in proc removal,
2386 * but have netlink already deregistered,
2387 * some drbdsetup commands may wait forever
2388 * for an answer.
2389 */
2390 if (drbd_proc)
2391 remove_proc_entry("drbd", NULL);
2392
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002393 if (retry.wq)
2394 destroy_workqueue(retry.wq);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002395
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002396 drbd_genl_unregister();
Philipp Reisnerb411b362009-09-25 16:07:19 -07002397
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002398 idr_for_each_entry(&drbd_devices, device, i)
Andreas Gruenbacherf82795d2011-07-03 23:32:26 +02002399 drbd_delete_device(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002400
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002401 /* not _rcu since, no other updater anymore. Genl already unregistered */
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002402 for_each_resource_safe(resource, tmp, &drbd_resources) {
2403 list_del(&resource->resources);
2404 drbd_free_resource(resource);
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002405 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07002406
Lars Ellenberg3f1a1b72017-08-29 10:20:41 +02002407 drbd_debugfs_cleanup();
2408
Philipp Reisner81a5d602011-02-22 19:53:16 -05002409 drbd_destroy_mempools();
Philipp Reisnerb411b362009-09-25 16:07:19 -07002410 unregister_blkdev(DRBD_MAJOR, "drbd");
2411
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +02002412 idr_destroy(&drbd_devices);
Philipp Reisner81a5d602011-02-22 19:53:16 -05002413
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002414 pr_info("module cleanup done.\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07002415}
2416
2417/**
Artem Bityutskiyd97482e2012-07-25 18:12:12 +03002418 * drbd_congested() - Callback for the flusher thread
Philipp Reisnerb411b362009-09-25 16:07:19 -07002419 * @congested_data: User data
Artem Bityutskiyd97482e2012-07-25 18:12:12 +03002420 * @bdi_bits: Bits the BDI flusher thread is currently interested in
Philipp Reisnerb411b362009-09-25 16:07:19 -07002421 *
Tejun Heo44522262015-05-22 17:13:26 -04002422 * Returns 1<<WB_async_congested and/or 1<<WB_sync_congested if we are congested.
Philipp Reisnerb411b362009-09-25 16:07:19 -07002423 */
2424static int drbd_congested(void *congested_data, int bdi_bits)
2425{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002426 struct drbd_device *device = congested_data;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002427 struct request_queue *q;
2428 char reason = '-';
2429 int r = 0;
2430
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002431 if (!may_inc_ap_bio(device)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002432 /* DRBD has frozen IO */
2433 r = bdi_bits;
2434 reason = 'd';
2435 goto out;
2436 }
2437
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02002438 if (test_bit(CALLBACK_PENDING, &first_peer_device(device)->connection->flags)) {
Tejun Heo44522262015-05-22 17:13:26 -04002439 r |= (1 << WB_async_congested);
Lars Ellenbergc2ba6862012-06-14 15:14:06 +02002440 /* Without good local data, we would need to read from remote,
2441 * and that would need the worker thread as well, which is
2442 * currently blocked waiting for that usermode helper to
2443 * finish.
2444 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002445 if (!get_ldev_if_state(device, D_UP_TO_DATE))
Tejun Heo44522262015-05-22 17:13:26 -04002446 r |= (1 << WB_sync_congested);
Lars Ellenbergc2ba6862012-06-14 15:14:06 +02002447 else
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002448 put_ldev(device);
Lars Ellenbergc2ba6862012-06-14 15:14:06 +02002449 r &= bdi_bits;
2450 reason = 'c';
2451 goto out;
2452 }
2453
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002454 if (get_ldev(device)) {
2455 q = bdev_get_queue(device->ldev->backing_bdev);
Jan Karadc3b17c2017-02-02 15:56:50 +01002456 r = bdi_congested(q->backing_dev_info, bdi_bits);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002457 put_ldev(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002458 if (r)
2459 reason = 'b';
2460 }
2461
Tejun Heo44522262015-05-22 17:13:26 -04002462 if (bdi_bits & (1 << WB_async_congested) &&
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02002463 test_bit(NET_CONGESTED, &first_peer_device(device)->connection->flags)) {
Tejun Heo44522262015-05-22 17:13:26 -04002464 r |= (1 << WB_async_congested);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002465 reason = reason == 'b' ? 'a' : 'n';
2466 }
2467
2468out:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002469 device->congestion_reason = reason;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002470 return r;
2471}
2472
Philipp Reisner6699b652011-02-09 11:10:24 +01002473static void drbd_init_workqueue(struct drbd_work_queue* wq)
2474{
Philipp Reisner6699b652011-02-09 11:10:24 +01002475 spin_lock_init(&wq->q_lock);
2476 INIT_LIST_HEAD(&wq->q);
Lars Ellenberg8c0785a2011-10-19 11:50:57 +02002477 init_waitqueue_head(&wq->q_wait);
Philipp Reisner6699b652011-02-09 11:10:24 +01002478}
2479
Andreas Gruenbacherb5043c52011-07-28 15:56:02 +02002480struct completion_work {
2481 struct drbd_work w;
2482 struct completion done;
2483};
2484
2485static int w_complete(struct drbd_work *w, int cancel)
2486{
2487 struct completion_work *completion_work =
2488 container_of(w, struct completion_work, w);
2489
2490 complete(&completion_work->done);
2491 return 0;
2492}
2493
2494void drbd_flush_workqueue(struct drbd_work_queue *work_queue)
2495{
2496 struct completion_work completion_work;
2497
2498 completion_work.w.cb = w_complete;
2499 init_completion(&completion_work.done);
2500 drbd_queue_work(work_queue, &completion_work.w);
2501 wait_for_completion(&completion_work.done);
2502}
2503
Andreas Gruenbacher4bc76042011-06-13 14:27:45 +02002504struct drbd_resource *drbd_find_resource(const char *name)
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002505{
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002506 struct drbd_resource *resource;
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002507
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002508 if (!name || !name[0])
2509 return NULL;
2510
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002511 rcu_read_lock();
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002512 for_each_resource_rcu(resource, &drbd_resources) {
2513 if (!strcmp(resource->name, name)) {
Andreas Gruenbacher4bc76042011-06-13 14:27:45 +02002514 kref_get(&resource->kref);
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002515 goto found;
Philipp Reisner0ace9df2011-04-24 10:53:19 +02002516 }
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002517 }
Andreas Gruenbacher4bc76042011-06-13 14:27:45 +02002518 resource = NULL;
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002519found:
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002520 rcu_read_unlock();
Andreas Gruenbacher4bc76042011-06-13 14:27:45 +02002521 return resource;
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002522}
2523
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002524struct drbd_connection *conn_get_by_addrs(void *my_addr, int my_addr_len,
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002525 void *peer_addr, int peer_addr_len)
2526{
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002527 struct drbd_resource *resource;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002528 struct drbd_connection *connection;
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002529
2530 rcu_read_lock();
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002531 for_each_resource_rcu(resource, &drbd_resources) {
2532 for_each_connection_rcu(connection, resource) {
2533 if (connection->my_addr_len == my_addr_len &&
2534 connection->peer_addr_len == peer_addr_len &&
2535 !memcmp(&connection->my_addr, my_addr, my_addr_len) &&
2536 !memcmp(&connection->peer_addr, peer_addr, peer_addr_len)) {
2537 kref_get(&connection->kref);
2538 goto found;
2539 }
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002540 }
2541 }
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002542 connection = NULL;
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002543found:
2544 rcu_read_unlock();
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002545 return connection;
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002546}
2547
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002548static int drbd_alloc_socket(struct drbd_socket *socket)
2549{
2550 socket->rbuf = (void *) __get_free_page(GFP_KERNEL);
2551 if (!socket->rbuf)
2552 return -ENOMEM;
Andreas Gruenbacher5a87d922011-03-24 21:17:52 +01002553 socket->sbuf = (void *) __get_free_page(GFP_KERNEL);
2554 if (!socket->sbuf)
2555 return -ENOMEM;
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002556 return 0;
2557}
2558
2559static void drbd_free_socket(struct drbd_socket *socket)
2560{
Andreas Gruenbacher5a87d922011-03-24 21:17:52 +01002561 free_page((unsigned long) socket->sbuf);
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002562 free_page((unsigned long) socket->rbuf);
2563}
2564
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002565void conn_free_crypto(struct drbd_connection *connection)
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002566{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002567 drbd_free_sock(connection);
Philipp Reisner1d041222011-04-22 15:20:23 +02002568
Kees Cook3d0e6372018-08-06 16:32:16 -07002569 crypto_free_shash(connection->csums_tfm);
2570 crypto_free_shash(connection->verify_tfm);
Herbert Xu9534d672016-01-24 21:19:21 +08002571 crypto_free_shash(connection->cram_hmac_tfm);
Kees Cook3d0e6372018-08-06 16:32:16 -07002572 crypto_free_shash(connection->integrity_tfm);
2573 crypto_free_shash(connection->peer_integrity_tfm);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002574 kfree(connection->int_dig_in);
2575 kfree(connection->int_dig_vv);
Philipp Reisner1d041222011-04-22 15:20:23 +02002576
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002577 connection->csums_tfm = NULL;
2578 connection->verify_tfm = NULL;
2579 connection->cram_hmac_tfm = NULL;
2580 connection->integrity_tfm = NULL;
2581 connection->peer_integrity_tfm = NULL;
2582 connection->int_dig_in = NULL;
2583 connection->int_dig_vv = NULL;
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002584}
2585
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002586int set_resource_options(struct drbd_resource *resource, struct res_opts *res_opts)
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002587{
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002588 struct drbd_connection *connection;
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002589 cpumask_var_t new_cpu_mask;
2590 int err;
2591
2592 if (!zalloc_cpumask_var(&new_cpu_mask, GFP_KERNEL))
2593 return -ENOMEM;
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002594
2595 /* silently ignore cpu mask on UP kernel */
2596 if (nr_cpu_ids > 1 && res_opts->cpu_mask[0] != 0) {
Andreas Gruenbacherf44d0432011-07-22 13:53:19 +02002597 err = bitmap_parse(res_opts->cpu_mask, DRBD_CPU_MASK_SIZE,
Philipp Reisnerc5b005a2012-04-30 12:53:52 +02002598 cpumask_bits(new_cpu_mask), nr_cpu_ids);
Lars Ellenberg1e391522014-05-19 09:52:02 +02002599 if (err == -EOVERFLOW) {
2600 /* So what. mask it out. */
2601 cpumask_var_t tmp_cpu_mask;
2602 if (zalloc_cpumask_var(&tmp_cpu_mask, GFP_KERNEL)) {
2603 cpumask_setall(tmp_cpu_mask);
2604 cpumask_and(new_cpu_mask, new_cpu_mask, tmp_cpu_mask);
2605 drbd_warn(resource, "Overflow in bitmap_parse(%.12s%s), truncating to %u bits\n",
2606 res_opts->cpu_mask,
2607 strlen(res_opts->cpu_mask) > 12 ? "..." : "",
2608 nr_cpu_ids);
2609 free_cpumask_var(tmp_cpu_mask);
2610 err = 0;
2611 }
2612 }
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002613 if (err) {
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +02002614 drbd_warn(resource, "bitmap_parse() failed with %d\n", err);
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002615 /* retcode = ERR_CPU_MASK_PARSE; */
2616 goto fail;
2617 }
2618 }
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002619 resource->res_opts = *res_opts;
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +02002620 if (cpumask_empty(new_cpu_mask))
2621 drbd_calc_cpu_mask(&new_cpu_mask);
2622 if (!cpumask_equal(resource->cpu_mask, new_cpu_mask)) {
2623 cpumask_copy(resource->cpu_mask, new_cpu_mask);
2624 for_each_connection_rcu(connection, resource) {
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002625 connection->receiver.reset_cpu_mask = 1;
Philipp Reisner1c03e522015-03-16 15:01:00 +01002626 connection->ack_receiver.reset_cpu_mask = 1;
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002627 connection->worker.reset_cpu_mask = 1;
2628 }
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002629 }
2630 err = 0;
2631
2632fail:
2633 free_cpumask_var(new_cpu_mask);
2634 return err;
2635
2636}
2637
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002638struct drbd_resource *drbd_create_resource(const char *name)
2639{
2640 struct drbd_resource *resource;
2641
Andreas Gruenbacher6bbf53c2011-07-08 01:19:44 +02002642 resource = kzalloc(sizeof(struct drbd_resource), GFP_KERNEL);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002643 if (!resource)
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +02002644 goto fail;
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002645 resource->name = kstrdup(name, GFP_KERNEL);
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +02002646 if (!resource->name)
2647 goto fail_free_resource;
2648 if (!zalloc_cpumask_var(&resource->cpu_mask, GFP_KERNEL))
2649 goto fail_free_name;
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002650 kref_init(&resource->kref);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002651 idr_init(&resource->devices);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002652 INIT_LIST_HEAD(&resource->connections);
Andreas Gruenbacherf6ba8632014-08-13 18:33:55 +02002653 resource->write_ordering = WO_BDEV_FLUSH;
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002654 list_add_tail_rcu(&resource->resources, &drbd_resources);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02002655 mutex_init(&resource->conf_update);
Lars Ellenberg9e276872014-04-28 18:43:22 +02002656 mutex_init(&resource->adm_mutex);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02002657 spin_lock_init(&resource->req_lock);
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002658 drbd_debugfs_resource_add(resource);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002659 return resource;
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +02002660
2661fail_free_name:
2662 kfree(resource->name);
2663fail_free_resource:
2664 kfree(resource);
2665fail:
2666 return NULL;
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002667}
2668
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002669/* caller must be under adm_mutex */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002670struct drbd_connection *conn_create(const char *name, struct res_opts *res_opts)
Philipp Reisner21114382011-01-19 12:26:59 +01002671{
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002672 struct drbd_resource *resource;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002673 struct drbd_connection *connection;
Philipp Reisner21114382011-01-19 12:26:59 +01002674
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002675 connection = kzalloc(sizeof(struct drbd_connection), GFP_KERNEL);
2676 if (!connection)
Philipp Reisner21114382011-01-19 12:26:59 +01002677 return NULL;
2678
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002679 if (drbd_alloc_socket(&connection->data))
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002680 goto fail;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002681 if (drbd_alloc_socket(&connection->meta))
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002682 goto fail;
2683
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002684 connection->current_epoch = kzalloc(sizeof(struct drbd_epoch), GFP_KERNEL);
2685 if (!connection->current_epoch)
Philipp Reisner12038a32011-11-09 19:18:00 +01002686 goto fail;
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01002687
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002688 INIT_LIST_HEAD(&connection->transfer_log);
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01002689
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002690 INIT_LIST_HEAD(&connection->current_epoch->list);
2691 connection->epochs = 1;
2692 spin_lock_init(&connection->epoch_lock);
Philipp Reisner4b0007c2011-11-09 20:12:34 +01002693
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002694 connection->send.seen_any_write_yet = false;
2695 connection->send.current_epoch_nr = 0;
2696 connection->send.current_epoch_writes = 0;
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01002697
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002698 resource = drbd_create_resource(name);
2699 if (!resource)
2700 goto fail;
2701
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002702 connection->cstate = C_STANDALONE;
2703 mutex_init(&connection->cstate_mutex);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002704 init_waitqueue_head(&connection->ping_wait);
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02002705 idr_init(&connection->peer_devices);
Philipp Reisnerb2fb6dbe2011-01-19 13:48:44 +01002706
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002707 drbd_init_workqueue(&connection->sender_work);
2708 mutex_init(&connection->data.mutex);
2709 mutex_init(&connection->meta.mutex);
Philipp Reisner6699b652011-02-09 11:10:24 +01002710
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +02002711 drbd_thread_init(resource, &connection->receiver, drbd_receiver, "receiver");
2712 connection->receiver.connection = connection;
2713 drbd_thread_init(resource, &connection->worker, drbd_worker, "worker");
2714 connection->worker.connection = connection;
Philipp Reisner1c03e522015-03-16 15:01:00 +01002715 drbd_thread_init(resource, &connection->ack_receiver, drbd_ack_receiver, "ack_recv");
2716 connection->ack_receiver.connection = connection;
Philipp Reisner392c8802011-02-09 10:33:31 +01002717
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002718 kref_init(&connection->kref);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002719
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002720 connection->resource = resource;
Philipp Reisner21114382011-01-19 12:26:59 +01002721
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002722 if (set_resource_options(resource, res_opts))
2723 goto fail_resource;
2724
2725 kref_get(&resource->kref);
2726 list_add_tail_rcu(&connection->connections, &resource->connections);
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002727 drbd_debugfs_connection_add(connection);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002728 return connection;
Philipp Reisner21114382011-01-19 12:26:59 +01002729
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002730fail_resource:
2731 list_del(&resource->resources);
2732 drbd_free_resource(resource);
Philipp Reisner21114382011-01-19 12:26:59 +01002733fail:
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002734 kfree(connection->current_epoch);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002735 drbd_free_socket(&connection->meta);
2736 drbd_free_socket(&connection->data);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002737 kfree(connection);
Philipp Reisner21114382011-01-19 12:26:59 +01002738 return NULL;
2739}
2740
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +02002741void drbd_destroy_connection(struct kref *kref)
Philipp Reisner21114382011-01-19 12:26:59 +01002742{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002743 struct drbd_connection *connection = container_of(kref, struct drbd_connection, kref);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002744 struct drbd_resource *resource = connection->resource;
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002745
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002746 if (atomic_read(&connection->current_epoch->epoch_size) != 0)
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +02002747 drbd_err(connection, "epoch_size:%d\n", atomic_read(&connection->current_epoch->epoch_size));
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002748 kfree(connection->current_epoch);
Philipp Reisner12038a32011-11-09 19:18:00 +01002749
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02002750 idr_destroy(&connection->peer_devices);
Philipp Reisner21114382011-01-19 12:26:59 +01002751
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002752 drbd_free_socket(&connection->meta);
2753 drbd_free_socket(&connection->data);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002754 kfree(connection->int_dig_in);
2755 kfree(connection->int_dig_vv);
Lars Ellenbergc2258ff2014-05-14 21:35:21 +02002756 memset(connection, 0xfc, sizeof(*connection));
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002757 kfree(connection);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002758 kref_put(&resource->kref, drbd_destroy_resource);
Philipp Reisner21114382011-01-19 12:26:59 +01002759}
2760
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002761static int init_submitter(struct drbd_device *device)
Lars Ellenberg113fef92013-03-22 18:14:40 -06002762{
2763 /* opencoded create_singlethread_workqueue(),
2764 * to be able to say "drbd%d", ..., minor */
Lars Ellenberg39e91a62015-03-24 10:40:26 +01002765 device->submit.wq =
2766 alloc_ordered_workqueue("drbd%u_submit", WQ_MEM_RECLAIM, device->minor);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002767 if (!device->submit.wq)
Lars Ellenberg113fef92013-03-22 18:14:40 -06002768 return -ENOMEM;
2769
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002770 INIT_WORK(&device->submit.worker, do_submit);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002771 INIT_LIST_HEAD(&device->submit.writes);
Lars Ellenberg113fef92013-03-22 18:14:40 -06002772 return 0;
2773}
2774
Lars Ellenberga910b122014-04-28 18:43:21 +02002775enum drbd_ret_code drbd_create_device(struct drbd_config_context *adm_ctx, unsigned int minor)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002776{
Lars Ellenberga910b122014-04-28 18:43:21 +02002777 struct drbd_resource *resource = adm_ctx->resource;
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002778 struct drbd_connection *connection;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002779 struct drbd_device *device;
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002780 struct drbd_peer_device *peer_device, *tmp_peer_device;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002781 struct gendisk *disk;
2782 struct request_queue *q;
Andreas Gruenbacher93e4bf72013-05-23 14:57:17 +02002783 int id;
Lars Ellenberga910b122014-04-28 18:43:21 +02002784 int vnr = adm_ctx->volume;
Lars Ellenberg8432b312011-03-08 16:11:16 +01002785 enum drbd_ret_code err = ERR_NOMEM;
Philipp Reisner774b3052011-02-22 02:07:03 -05002786
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002787 device = minor_to_device(minor);
2788 if (device)
Andreas Gruenbacher179e20b82014-11-10 17:21:09 +01002789 return ERR_MINOR_OR_VOLUME_EXISTS;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002790
2791 /* GFP_KERNEL, we are outside of all write-out paths */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002792 device = kzalloc(sizeof(struct drbd_device), GFP_KERNEL);
2793 if (!device)
Philipp Reisner774b3052011-02-22 02:07:03 -05002794 return ERR_NOMEM;
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002795 kref_init(&device->kref);
2796
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002797 kref_get(&resource->kref);
2798 device->resource = resource;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002799 device->minor = minor;
2800 device->vnr = vnr;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002801
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002802 drbd_init_set_defaults(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002803
Christoph Hellwig3d745ea2020-03-27 09:30:11 +01002804 q = blk_alloc_queue(drbd_make_request, NUMA_NO_NODE);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002805 if (!q)
2806 goto out_no_q;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002807 device->rq_queue = q;
2808 q->queuedata = device;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002809
2810 disk = alloc_disk(1);
2811 if (!disk)
2812 goto out_no_disk;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002813 device->vdisk = disk;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002814
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01002815 set_disk_ro(disk, true);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002816
2817 disk->queue = q;
2818 disk->major = DRBD_MAJOR;
2819 disk->first_minor = minor;
2820 disk->fops = &drbd_ops;
2821 sprintf(disk->disk_name, "drbd%d", minor);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002822 disk->private_data = device;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002823
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002824 device->this_bdev = bdget(MKDEV(DRBD_MAJOR, minor));
Philipp Reisnerb411b362009-09-25 16:07:19 -07002825 /* we have no partitions. we contain only ourselves. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002826 device->this_bdev->bd_contains = device->this_bdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002827
Jan Karadc3b17c2017-02-02 15:56:50 +01002828 q->backing_dev_info->congested_fn = drbd_congested;
2829 q->backing_dev_info->congested_data = device;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002830
Jens Axboefe8fb752016-03-30 10:09:01 -06002831 blk_queue_write_cache(q, true, true);
Philipp Reisner99432fc2011-05-20 16:39:13 +02002832 /* Setting the max_hw_sectors to an odd value of 8kibyte here
2833 This triggers a max_bio_size message upon first attach or connect */
2834 blk_queue_max_hw_sectors(q, DRBD_MAX_BIO_SIZE_SAFE >> 8);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002835
Lars Ellenberge37d2432014-04-01 23:53:30 +02002836 device->md_io.page = alloc_page(GFP_KERNEL);
2837 if (!device->md_io.page)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002838 goto out_no_io_page;
2839
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002840 if (drbd_bm_init(device))
Philipp Reisnerb411b362009-09-25 16:07:19 -07002841 goto out_no_bitmap;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002842 device->read_requests = RB_ROOT;
2843 device->write_requests = RB_ROOT;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002844
Andreas Gruenbacher93e4bf72013-05-23 14:57:17 +02002845 id = idr_alloc(&drbd_devices, device, minor, minor + 1, GFP_KERNEL);
2846 if (id < 0) {
Andreas Gruenbacherf221f4b2014-11-10 17:21:10 +01002847 if (id == -ENOSPC)
Andreas Gruenbacher179e20b82014-11-10 17:21:09 +01002848 err = ERR_MINOR_OR_VOLUME_EXISTS;
Lars Ellenberg8432b312011-03-08 16:11:16 +01002849 goto out_no_minor_idr;
Tejun Heo56de2102013-02-27 17:04:01 -08002850 }
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002851 kref_get(&device->kref);
2852
2853 id = idr_alloc(&resource->devices, device, vnr, vnr + 1, GFP_KERNEL);
2854 if (id < 0) {
Andreas Gruenbacherf221f4b2014-11-10 17:21:10 +01002855 if (id == -ENOSPC)
Andreas Gruenbacher179e20b82014-11-10 17:21:09 +01002856 err = ERR_MINOR_OR_VOLUME_EXISTS;
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002857 goto out_idr_remove_minor;
2858 }
2859 kref_get(&device->kref);
Tejun Heo56de2102013-02-27 17:04:01 -08002860
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002861 INIT_LIST_HEAD(&device->peer_devices);
Lars Ellenberg4ce49262014-05-06 00:44:59 +02002862 INIT_LIST_HEAD(&device->pending_bitmap_io);
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002863 for_each_connection(connection, resource) {
2864 peer_device = kzalloc(sizeof(struct drbd_peer_device), GFP_KERNEL);
2865 if (!peer_device)
2866 goto out_idr_remove_from_resource;
2867 peer_device->connection = connection;
2868 peer_device->device = device;
2869
2870 list_add(&peer_device->peer_devices, &device->peer_devices);
2871 kref_get(&device->kref);
2872
2873 id = idr_alloc(&connection->peer_devices, peer_device, vnr, vnr + 1, GFP_KERNEL);
2874 if (id < 0) {
Andreas Gruenbacherf221f4b2014-11-10 17:21:10 +01002875 if (id == -ENOSPC)
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002876 err = ERR_INVALID_REQUEST;
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002877 goto out_idr_remove_from_resource;
Tejun Heo56de2102013-02-27 17:04:01 -08002878 }
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002879 kref_get(&connection->kref);
Philipp Reisner668700b2015-03-16 16:08:29 +01002880 INIT_WORK(&peer_device->send_acks_work, drbd_send_acks_wf);
Lars Ellenberg569083c2011-03-07 09:49:02 +01002881 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07002882
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002883 if (init_submitter(device)) {
Lars Ellenberg113fef92013-03-22 18:14:40 -06002884 err = ERR_NOMEM;
Lars Ellenberg113fef92013-03-22 18:14:40 -06002885 goto out_idr_remove_vol;
2886 }
2887
Philipp Reisner774b3052011-02-22 02:07:03 -05002888 add_disk(disk);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002889
Philipp Reisner2325eb62011-03-15 16:56:18 +01002890 /* inherit the connection state */
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002891 device->state.conn = first_connection(resource)->cstate;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02002892 if (device->state.conn == C_WF_REPORT_PARAMS) {
2893 for_each_peer_device(peer_device, device)
2894 drbd_connected(peer_device);
2895 }
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002896 /* move to create_peer_device() */
2897 for_each_peer_device(peer_device, device)
2898 drbd_debugfs_peer_device_add(peer_device);
2899 drbd_debugfs_device_add(device);
Philipp Reisner774b3052011-02-22 02:07:03 -05002900 return NO_ERROR;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002901
Lars Ellenberg113fef92013-03-22 18:14:40 -06002902out_idr_remove_vol:
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02002903 idr_remove(&connection->peer_devices, vnr);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002904out_idr_remove_from_resource:
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002905 for_each_connection(connection, resource) {
Matthew Wilcoxd3e709e2016-12-22 13:30:22 -05002906 peer_device = idr_remove(&connection->peer_devices, vnr);
2907 if (peer_device)
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002908 kref_put(&connection->kref, drbd_destroy_connection);
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002909 }
2910 for_each_peer_device_safe(peer_device, tmp_peer_device, device) {
2911 list_del(&peer_device->peer_devices);
2912 kfree(peer_device);
2913 }
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002914 idr_remove(&resource->devices, vnr);
Lars Ellenberg8432b312011-03-08 16:11:16 +01002915out_idr_remove_minor:
Andreas Gruenbacher93e4bf72013-05-23 14:57:17 +02002916 idr_remove(&drbd_devices, minor);
Lars Ellenberg569083c2011-03-07 09:49:02 +01002917 synchronize_rcu();
Lars Ellenberg8432b312011-03-08 16:11:16 +01002918out_no_minor_idr:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002919 drbd_bm_cleanup(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002920out_no_bitmap:
Lars Ellenberge37d2432014-04-01 23:53:30 +02002921 __free_page(device->md_io.page);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002922out_no_io_page:
2923 put_disk(disk);
2924out_no_disk:
2925 blk_cleanup_queue(q);
2926out_no_q:
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002927 kref_put(&resource->kref, drbd_destroy_resource);
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02002928 kfree(device);
Lars Ellenberg8432b312011-03-08 16:11:16 +01002929 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002930}
2931
Andreas Gruenbacherf82795d2011-07-03 23:32:26 +02002932void drbd_delete_device(struct drbd_device *device)
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002933{
2934 struct drbd_resource *resource = device->resource;
2935 struct drbd_connection *connection;
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002936 struct drbd_peer_device *peer_device;
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002937
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002938 /* move to free_peer_device() */
2939 for_each_peer_device(peer_device, device)
2940 drbd_debugfs_peer_device_cleanup(peer_device);
2941 drbd_debugfs_device_cleanup(device);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002942 for_each_connection(connection, resource) {
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02002943 idr_remove(&connection->peer_devices, device->vnr);
Peter Zijlstrabdfafc42016-11-14 17:34:19 +01002944 kref_put(&device->kref, drbd_destroy_device);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002945 }
2946 idr_remove(&resource->devices, device->vnr);
Peter Zijlstrabdfafc42016-11-14 17:34:19 +01002947 kref_put(&device->kref, drbd_destroy_device);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002948 idr_remove(&drbd_devices, device_to_minor(device));
Peter Zijlstrabdfafc42016-11-14 17:34:19 +01002949 kref_put(&device->kref, drbd_destroy_device);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002950 del_gendisk(device->vdisk);
2951 synchronize_rcu();
Peter Zijlstrabdfafc42016-11-14 17:34:19 +01002952 kref_put(&device->kref, drbd_destroy_device);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002953}
2954
Lars Ellenberg8ce953a2014-02-27 09:46:18 +01002955static int __init drbd_init(void)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002956{
2957 int err;
2958
Roland Kammerer183ece32017-08-29 10:20:46 +02002959 if (drbd_minor_count < DRBD_MINOR_COUNT_MIN || drbd_minor_count > DRBD_MINOR_COUNT_MAX) {
2960 pr_err("invalid minor_count (%d)\n", drbd_minor_count);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002961#ifdef MODULE
2962 return -EINVAL;
2963#else
Philipp Reisner5fc1efd2017-08-30 13:47:11 +02002964 drbd_minor_count = DRBD_MINOR_COUNT_DEF;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002965#endif
2966 }
2967
Philipp Reisnerb411b362009-09-25 16:07:19 -07002968 err = register_blkdev(DRBD_MAJOR, "drbd");
2969 if (err) {
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002970 pr_err("unable to register block device major %d\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -07002971 DRBD_MAJOR);
2972 return err;
2973 }
2974
Philipp Reisnerb411b362009-09-25 16:07:19 -07002975 /*
2976 * allocate all necessary structs
2977 */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002978 init_waitqueue_head(&drbd_pp_wait);
2979
2980 drbd_proc = NULL; /* play safe for drbd_cleanup */
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +02002981 idr_init(&drbd_devices);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002982
Andreas Gruenbacher28bc3b82014-08-14 18:33:30 +02002983 mutex_init(&resources_mutex);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002984 INIT_LIST_HEAD(&drbd_resources);
Lars Ellenberg69babf02013-10-23 10:59:15 +02002985
2986 err = drbd_genl_register();
2987 if (err) {
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002988 pr_err("unable to register generic netlink family\n");
Lars Ellenberg69babf02013-10-23 10:59:15 +02002989 goto fail;
2990 }
2991
Philipp Reisnerb411b362009-09-25 16:07:19 -07002992 err = drbd_create_mempools();
2993 if (err)
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002994 goto fail;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002995
Wei Yongjun6110d702013-06-25 16:50:04 +02002996 err = -ENOMEM;
Linus Torvaldscf626b02018-06-04 10:00:01 -07002997 drbd_proc = proc_create_single("drbd", S_IFREG | 0444 , NULL, drbd_seq_show);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002998 if (!drbd_proc) {
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002999 pr_err("unable to register proc file\n");
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01003000 goto fail;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003001 }
3002
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01003003 retry.wq = create_singlethread_workqueue("drbd-reissue");
3004 if (!retry.wq) {
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01003005 pr_err("unable to create retry workqueue\n");
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01003006 goto fail;
3007 }
3008 INIT_WORK(&retry.worker, do_retry);
3009 spin_lock_init(&retry.lock);
3010 INIT_LIST_HEAD(&retry.writes);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003011
Greg Kroah-Hartmand27e84a2019-06-18 17:45:49 +02003012 drbd_debugfs_init();
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02003013
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01003014 pr_info("initialized. "
Philipp Reisnerb411b362009-09-25 16:07:19 -07003015 "Version: " REL_VERSION " (api:%d/proto:%d-%d)\n",
3016 API_VERSION, PRO_VERSION_MIN, PRO_VERSION_MAX);
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01003017 pr_info("%s\n", drbd_buildtag());
3018 pr_info("registered as block device major %d\n", DRBD_MAJOR);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003019 return 0; /* Success! */
3020
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01003021fail:
Philipp Reisnerb411b362009-09-25 16:07:19 -07003022 drbd_cleanup();
3023 if (err == -ENOMEM)
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01003024 pr_err("ran out of memory\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07003025 else
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01003026 pr_err("initialization failure\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07003027 return err;
3028}
3029
Lars Ellenbergf4188152014-05-05 23:05:47 +02003030static void drbd_free_one_sock(struct drbd_socket *ds)
3031{
3032 struct socket *s;
3033 mutex_lock(&ds->mutex);
3034 s = ds->socket;
3035 ds->socket = NULL;
3036 mutex_unlock(&ds->mutex);
3037 if (s) {
3038 /* so debugfs does not need to mutex_lock() */
3039 synchronize_rcu();
3040 kernel_sock_shutdown(s, SHUT_RDWR);
3041 sock_release(s);
3042 }
3043}
3044
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02003045void drbd_free_sock(struct drbd_connection *connection)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003046{
Lars Ellenbergf4188152014-05-05 23:05:47 +02003047 if (connection->data.socket)
3048 drbd_free_one_sock(&connection->data);
3049 if (connection->meta.socket)
3050 drbd_free_one_sock(&connection->meta);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003051}
3052
Philipp Reisnerb411b362009-09-25 16:07:19 -07003053/* meta data management */
3054
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02003055void conn_md_sync(struct drbd_connection *connection)
Philipp Reisner19fffd72012-08-28 16:48:03 +02003056{
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02003057 struct drbd_peer_device *peer_device;
Philipp Reisner19fffd72012-08-28 16:48:03 +02003058 int vnr;
3059
3060 rcu_read_lock();
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02003061 idr_for_each_entry(&connection->peer_devices, peer_device, vnr) {
3062 struct drbd_device *device = peer_device->device;
3063
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003064 kref_get(&device->kref);
Philipp Reisner19fffd72012-08-28 16:48:03 +02003065 rcu_read_unlock();
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003066 drbd_md_sync(device);
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +02003067 kref_put(&device->kref, drbd_destroy_device);
Philipp Reisner19fffd72012-08-28 16:48:03 +02003068 rcu_read_lock();
3069 }
3070 rcu_read_unlock();
3071}
3072
Lars Ellenbergae8bf312013-03-19 18:16:43 +01003073/* aligned 4kByte */
Philipp Reisnerb411b362009-09-25 16:07:19 -07003074struct meta_data_on_disk {
Lars Ellenbergcccac982013-03-19 18:16:46 +01003075 u64 la_size_sect; /* last agreed size. */
Philipp Reisnerb411b362009-09-25 16:07:19 -07003076 u64 uuid[UI_SIZE]; /* UUIDs. */
3077 u64 device_uuid;
3078 u64 reserved_u64_1;
3079 u32 flags; /* MDF */
3080 u32 magic;
3081 u32 md_size_sect;
3082 u32 al_offset; /* offset to this block */
Lars Ellenbergae8bf312013-03-19 18:16:43 +01003083 u32 al_nr_extents; /* important for restoring the AL (userspace) */
Lars Ellenbergf3990022011-03-23 14:31:09 +01003084 /* `-- act_log->nr_elements <-- ldev->dc.al_extents */
Philipp Reisnerb411b362009-09-25 16:07:19 -07003085 u32 bm_offset; /* offset to the bitmap, from here */
3086 u32 bm_bytes_per_bit; /* BM_BLOCK_SIZE */
Philipp Reisner99432fc2011-05-20 16:39:13 +02003087 u32 la_peer_max_bio_size; /* last peer max_bio_size */
Philipp Reisnerb411b362009-09-25 16:07:19 -07003088
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003089 /* see al_tr_number_to_on_disk_sector() */
3090 u32 al_stripes;
3091 u32 al_stripe_size_4k;
3092
3093 u8 reserved_u8[4096 - (7*8 + 10*4)];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003094} __packed;
3095
Philipp Reisnerd752b262013-06-25 16:50:08 +02003096
3097
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003098void drbd_md_write(struct drbd_device *device, void *b)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003099{
Philipp Reisnerd752b262013-06-25 16:50:08 +02003100 struct meta_data_on_disk *buffer = b;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003101 sector_t sector;
3102 int i;
3103
Lars Ellenbergae8bf312013-03-19 18:16:43 +01003104 memset(buffer, 0, sizeof(*buffer));
Philipp Reisnerb411b362009-09-25 16:07:19 -07003105
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003106 buffer->la_size_sect = cpu_to_be64(drbd_get_capacity(device->this_bdev));
Philipp Reisnerb411b362009-09-25 16:07:19 -07003107 for (i = UI_CURRENT; i < UI_SIZE; i++)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003108 buffer->uuid[i] = cpu_to_be64(device->ldev->md.uuid[i]);
3109 buffer->flags = cpu_to_be32(device->ldev->md.flags);
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003110 buffer->magic = cpu_to_be32(DRBD_MD_MAGIC_84_UNCLEAN);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003111
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003112 buffer->md_size_sect = cpu_to_be32(device->ldev->md.md_size_sect);
3113 buffer->al_offset = cpu_to_be32(device->ldev->md.al_offset);
3114 buffer->al_nr_extents = cpu_to_be32(device->act_log->nr_elements);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003115 buffer->bm_bytes_per_bit = cpu_to_be32(BM_BLOCK_SIZE);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003116 buffer->device_uuid = cpu_to_be64(device->ldev->md.device_uuid);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003117
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003118 buffer->bm_offset = cpu_to_be32(device->ldev->md.bm_offset);
3119 buffer->la_peer_max_bio_size = cpu_to_be32(device->peer_max_bio_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003120
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003121 buffer->al_stripes = cpu_to_be32(device->ldev->md.al_stripes);
3122 buffer->al_stripe_size_4k = cpu_to_be32(device->ldev->md.al_stripe_size_4k);
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003123
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02003124 D_ASSERT(device, drbd_md_ss(device->ldev) == device->ldev->md.md_offset);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003125 sector = device->ldev->md.md_offset;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003126
Mike Christiebb3cc852016-06-05 14:32:06 -05003127 if (drbd_md_sync_page_io(device, device->ldev, sector, REQ_OP_WRITE)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07003128 /* this was a try anyways ... */
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003129 drbd_err(device, "meta data update failed!\n");
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003130 drbd_chk_io_error(device, 1, DRBD_META_IO_ERROR);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003131 }
Philipp Reisnerd752b262013-06-25 16:50:08 +02003132}
3133
3134/**
3135 * drbd_md_sync() - Writes the meta data super block if the MD_DIRTY flag bit is set
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003136 * @device: DRBD device.
Philipp Reisnerd752b262013-06-25 16:50:08 +02003137 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003138void drbd_md_sync(struct drbd_device *device)
Philipp Reisnerd752b262013-06-25 16:50:08 +02003139{
3140 struct meta_data_on_disk *buffer;
3141
3142 /* Don't accidentally change the DRBD meta data layout. */
3143 BUILD_BUG_ON(UI_SIZE != 4);
3144 BUILD_BUG_ON(sizeof(struct meta_data_on_disk) != 4096);
3145
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003146 del_timer(&device->md_sync_timer);
Philipp Reisnerd752b262013-06-25 16:50:08 +02003147 /* timer may be rearmed by drbd_md_mark_dirty() now. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003148 if (!test_and_clear_bit(MD_DIRTY, &device->flags))
Philipp Reisnerd752b262013-06-25 16:50:08 +02003149 return;
3150
3151 /* We use here D_FAILED and not D_ATTACHING because we try to write
3152 * metadata even if we detach due to a disk failure! */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003153 if (!get_ldev_if_state(device, D_FAILED))
Philipp Reisnerd752b262013-06-25 16:50:08 +02003154 return;
3155
Lars Ellenberge37d2432014-04-01 23:53:30 +02003156 buffer = drbd_md_get_buffer(device, __func__);
Philipp Reisnerd752b262013-06-25 16:50:08 +02003157 if (!buffer)
3158 goto out;
3159
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003160 drbd_md_write(device, buffer);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003161
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003162 /* Update device->ldev->md.la_size_sect,
Philipp Reisnerb411b362009-09-25 16:07:19 -07003163 * since we updated it on metadata. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003164 device->ldev->md.la_size_sect = drbd_get_capacity(device->this_bdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003165
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003166 drbd_md_put_buffer(device);
Philipp Reisnere1711732011-06-27 11:51:46 +02003167out:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003168 put_ldev(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003169}
3170
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003171static int check_activity_log_stripe_size(struct drbd_device *device,
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003172 struct meta_data_on_disk *on_disk,
3173 struct drbd_md *in_core)
3174{
3175 u32 al_stripes = be32_to_cpu(on_disk->al_stripes);
3176 u32 al_stripe_size_4k = be32_to_cpu(on_disk->al_stripe_size_4k);
3177 u64 al_size_4k;
3178
3179 /* both not set: default to old fixed size activity log */
3180 if (al_stripes == 0 && al_stripe_size_4k == 0) {
3181 al_stripes = 1;
3182 al_stripe_size_4k = MD_32kB_SECT/8;
3183 }
3184
3185 /* some paranoia plausibility checks */
3186
3187 /* we need both values to be set */
3188 if (al_stripes == 0 || al_stripe_size_4k == 0)
3189 goto err;
3190
3191 al_size_4k = (u64)al_stripes * al_stripe_size_4k;
3192
3193 /* Upper limit of activity log area, to avoid potential overflow
3194 * problems in al_tr_number_to_on_disk_sector(). As right now, more
3195 * than 72 * 4k blocks total only increases the amount of history,
3196 * limiting this arbitrarily to 16 GB is not a real limitation ;-) */
3197 if (al_size_4k > (16 * 1024 * 1024/4))
3198 goto err;
3199
3200 /* Lower limit: we need at least 8 transaction slots (32kB)
3201 * to not break existing setups */
3202 if (al_size_4k < MD_32kB_SECT/8)
3203 goto err;
3204
3205 in_core->al_stripe_size_4k = al_stripe_size_4k;
3206 in_core->al_stripes = al_stripes;
3207 in_core->al_size_4k = al_size_4k;
3208
3209 return 0;
3210err:
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003211 drbd_err(device, "invalid activity log striping: al_stripes=%u, al_stripe_size_4k=%u\n",
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003212 al_stripes, al_stripe_size_4k);
3213 return -EINVAL;
3214}
3215
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003216static int check_offsets_and_sizes(struct drbd_device *device, struct drbd_backing_dev *bdev)
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003217{
3218 sector_t capacity = drbd_get_capacity(bdev->md_bdev);
3219 struct drbd_md *in_core = &bdev->md;
3220 s32 on_disk_al_sect;
3221 s32 on_disk_bm_sect;
3222
3223 /* The on-disk size of the activity log, calculated from offsets, and
3224 * the size of the activity log calculated from the stripe settings,
3225 * should match.
3226 * Though we could relax this a bit: it is ok, if the striped activity log
3227 * fits in the available on-disk activity log size.
3228 * Right now, that would break how resize is implemented.
3229 * TODO: make drbd_determine_dev_size() (and the drbdmeta tool) aware
3230 * of possible unused padding space in the on disk layout. */
3231 if (in_core->al_offset < 0) {
3232 if (in_core->bm_offset > in_core->al_offset)
3233 goto err;
3234 on_disk_al_sect = -in_core->al_offset;
3235 on_disk_bm_sect = in_core->al_offset - in_core->bm_offset;
3236 } else {
3237 if (in_core->al_offset != MD_4kB_SECT)
3238 goto err;
3239 if (in_core->bm_offset < in_core->al_offset + in_core->al_size_4k * MD_4kB_SECT)
3240 goto err;
3241
3242 on_disk_al_sect = in_core->bm_offset - MD_4kB_SECT;
3243 on_disk_bm_sect = in_core->md_size_sect - in_core->bm_offset;
3244 }
3245
3246 /* old fixed size meta data is exactly that: fixed. */
3247 if (in_core->meta_dev_idx >= 0) {
3248 if (in_core->md_size_sect != MD_128MB_SECT
3249 || in_core->al_offset != MD_4kB_SECT
3250 || in_core->bm_offset != MD_4kB_SECT + MD_32kB_SECT
3251 || in_core->al_stripes != 1
3252 || in_core->al_stripe_size_4k != MD_32kB_SECT/8)
3253 goto err;
3254 }
3255
3256 if (capacity < in_core->md_size_sect)
3257 goto err;
3258 if (capacity - in_core->md_size_sect < drbd_md_first_sector(bdev))
3259 goto err;
3260
3261 /* should be aligned, and at least 32k */
3262 if ((on_disk_al_sect & 7) || (on_disk_al_sect < MD_32kB_SECT))
3263 goto err;
3264
3265 /* should fit (for now: exactly) into the available on-disk space;
3266 * overflow prevention is in check_activity_log_stripe_size() above. */
3267 if (on_disk_al_sect != in_core->al_size_4k * MD_4kB_SECT)
3268 goto err;
3269
3270 /* again, should be aligned */
3271 if (in_core->bm_offset & 7)
3272 goto err;
3273
3274 /* FIXME check for device grow with flex external meta data? */
3275
3276 /* can the available bitmap space cover the last agreed device size? */
3277 if (on_disk_bm_sect < (in_core->la_size_sect+7)/MD_4kB_SECT/8/512)
3278 goto err;
3279
3280 return 0;
3281
3282err:
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003283 drbd_err(device, "meta data offsets don't make sense: idx=%d "
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003284 "al_s=%u, al_sz4k=%u, al_offset=%d, bm_offset=%d, "
3285 "md_size_sect=%u, la_size=%llu, md_capacity=%llu\n",
3286 in_core->meta_dev_idx,
3287 in_core->al_stripes, in_core->al_stripe_size_4k,
3288 in_core->al_offset, in_core->bm_offset, in_core->md_size_sect,
3289 (unsigned long long)in_core->la_size_sect,
3290 (unsigned long long)capacity);
3291
3292 return -EINVAL;
3293}
3294
3295
Philipp Reisnerb411b362009-09-25 16:07:19 -07003296/**
3297 * drbd_md_read() - Reads in the meta data super block
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003298 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003299 * @bdev: Device from which the meta data should be read in.
3300 *
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003301 * Return NO_ERROR on success, and an enum drbd_ret_code in case
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003302 * something goes wrong.
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003303 *
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003304 * Called exactly once during drbd_adm_attach(), while still being D_DISKLESS,
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003305 * even before @bdev is assigned to @device->ldev.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003306 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003307int drbd_md_read(struct drbd_device *device, struct drbd_backing_dev *bdev)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003308{
3309 struct meta_data_on_disk *buffer;
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003310 u32 magic, flags;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003311 int i, rv = NO_ERROR;
3312
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003313 if (device->state.disk != D_DISKLESS)
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003314 return ERR_DISK_CONFIGURED;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003315
Lars Ellenberge37d2432014-04-01 23:53:30 +02003316 buffer = drbd_md_get_buffer(device, __func__);
Philipp Reisnere1711732011-06-27 11:51:46 +02003317 if (!buffer)
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003318 return ERR_NOMEM;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003319
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003320 /* First, figure out where our meta data superblock is located,
3321 * and read it. */
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003322 bdev->md.meta_dev_idx = bdev->disk_conf->meta_dev_idx;
3323 bdev->md.md_offset = drbd_md_ss(bdev);
Lars Ellenbergedb5e5f2015-03-24 21:35:26 +01003324 /* Even for (flexible or indexed) external meta data,
3325 * initially restrict us to the 4k superblock for now.
3326 * Affects the paranoia out-of-range access check in drbd_md_sync_page_io(). */
3327 bdev->md.md_size_sect = 8;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003328
Mike Christiebb3cc852016-06-05 14:32:06 -05003329 if (drbd_md_sync_page_io(device, bdev, bdev->md.md_offset,
3330 REQ_OP_READ)) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003331 /* NOTE: can't do normal error processing here as this is
Philipp Reisnerb411b362009-09-25 16:07:19 -07003332 called BEFORE disk is attached */
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003333 drbd_err(device, "Error while reading metadata.\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07003334 rv = ERR_IO_MD_DISK;
3335 goto err;
3336 }
3337
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003338 magic = be32_to_cpu(buffer->magic);
3339 flags = be32_to_cpu(buffer->flags);
3340 if (magic == DRBD_MD_MAGIC_84_UNCLEAN ||
3341 (magic == DRBD_MD_MAGIC_08 && !(flags & MDF_AL_CLEAN))) {
3342 /* btw: that's Activity Log clean, not "all" clean. */
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003343 drbd_err(device, "Found unclean meta data. Did you \"drbdadm apply-al\"?\n");
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003344 rv = ERR_MD_UNCLEAN;
3345 goto err;
3346 }
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003347
3348 rv = ERR_MD_INVALID;
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003349 if (magic != DRBD_MD_MAGIC_08) {
Philipp Reisner43de7c82011-11-10 13:16:13 +01003350 if (magic == DRBD_MD_MAGIC_07)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003351 drbd_err(device, "Found old (0.7) meta data magic. Did you \"drbdadm create-md\"?\n");
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003352 else
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003353 drbd_err(device, "Meta data magic not found. Did you \"drbdadm create-md\"?\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07003354 goto err;
3355 }
3356
3357 if (be32_to_cpu(buffer->bm_bytes_per_bit) != BM_BLOCK_SIZE) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003358 drbd_err(device, "unexpected bm_bytes_per_bit: %u (expected %u)\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003359 be32_to_cpu(buffer->bm_bytes_per_bit), BM_BLOCK_SIZE);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003360 goto err;
3361 }
3362
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003363
3364 /* convert to in_core endian */
3365 bdev->md.la_size_sect = be64_to_cpu(buffer->la_size_sect);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003366 for (i = UI_CURRENT; i < UI_SIZE; i++)
3367 bdev->md.uuid[i] = be64_to_cpu(buffer->uuid[i]);
3368 bdev->md.flags = be32_to_cpu(buffer->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003369 bdev->md.device_uuid = be64_to_cpu(buffer->device_uuid);
3370
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003371 bdev->md.md_size_sect = be32_to_cpu(buffer->md_size_sect);
3372 bdev->md.al_offset = be32_to_cpu(buffer->al_offset);
3373 bdev->md.bm_offset = be32_to_cpu(buffer->bm_offset);
3374
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003375 if (check_activity_log_stripe_size(device, buffer, &bdev->md))
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003376 goto err;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003377 if (check_offsets_and_sizes(device, bdev))
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003378 goto err;
3379
Philipp Reisnerb411b362009-09-25 16:07:19 -07003380 if (be32_to_cpu(buffer->bm_offset) != bdev->md.bm_offset) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003381 drbd_err(device, "unexpected bm_offset: %d (expected %d)\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003382 be32_to_cpu(buffer->bm_offset), bdev->md.bm_offset);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003383 goto err;
3384 }
3385 if (be32_to_cpu(buffer->md_size_sect) != bdev->md.md_size_sect) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003386 drbd_err(device, "unexpected md_size: %u (expected %u)\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003387 be32_to_cpu(buffer->md_size_sect), bdev->md.md_size_sect);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003388 goto err;
3389 }
3390
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003391 rv = NO_ERROR;
3392
Andreas Gruenbacher05008132011-07-07 14:19:42 +02003393 spin_lock_irq(&device->resource->req_lock);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003394 if (device->state.conn < C_CONNECTED) {
Lars Ellenbergdb141b22012-06-25 19:15:58 +02003395 unsigned int peer;
Philipp Reisner99432fc2011-05-20 16:39:13 +02003396 peer = be32_to_cpu(buffer->la_peer_max_bio_size);
Lars Ellenbergdb141b22012-06-25 19:15:58 +02003397 peer = max(peer, DRBD_MAX_BIO_SIZE_SAFE);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003398 device->peer_max_bio_size = peer;
Philipp Reisner99432fc2011-05-20 16:39:13 +02003399 }
Andreas Gruenbacher05008132011-07-07 14:19:42 +02003400 spin_unlock_irq(&device->resource->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003401
3402 err:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003403 drbd_md_put_buffer(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003404
3405 return rv;
3406}
3407
3408/**
3409 * drbd_md_mark_dirty() - Mark meta data super block as dirty
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003410 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003411 *
3412 * Call this function if you change anything that should be written to
3413 * the meta-data super block. This function sets MD_DIRTY, and starts a
3414 * timer that ensures that within five seconds you have to call drbd_md_sync().
3415 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003416void drbd_md_mark_dirty(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003417{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003418 if (!test_and_set_bit(MD_DIRTY, &device->flags))
3419 mod_timer(&device->md_sync_timer, jiffies + 5*HZ);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003420}
Philipp Reisnerb411b362009-09-25 16:07:19 -07003421
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003422void drbd_uuid_move_history(struct drbd_device *device) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003423{
3424 int i;
3425
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003426 for (i = UI_HISTORY_START; i < UI_HISTORY_END; i++)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003427 device->ldev->md.uuid[i+1] = device->ldev->md.uuid[i];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003428}
3429
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003430void __drbd_uuid_set(struct drbd_device *device, int idx, u64 val) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003431{
3432 if (idx == UI_CURRENT) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003433 if (device->state.role == R_PRIMARY)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003434 val |= 1;
3435 else
3436 val &= ~((u64)1);
3437
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003438 drbd_set_ed_uuid(device, val);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003439 }
3440
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003441 device->ldev->md.uuid[idx] = val;
3442 drbd_md_mark_dirty(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003443}
3444
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003445void _drbd_uuid_set(struct drbd_device *device, int idx, u64 val) __must_hold(local)
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003446{
3447 unsigned long flags;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003448 spin_lock_irqsave(&device->ldev->md.uuid_lock, flags);
3449 __drbd_uuid_set(device, idx, val);
3450 spin_unlock_irqrestore(&device->ldev->md.uuid_lock, flags);
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003451}
Philipp Reisnerb411b362009-09-25 16:07:19 -07003452
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003453void drbd_uuid_set(struct drbd_device *device, int idx, u64 val) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003454{
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003455 unsigned long flags;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003456 spin_lock_irqsave(&device->ldev->md.uuid_lock, flags);
3457 if (device->ldev->md.uuid[idx]) {
3458 drbd_uuid_move_history(device);
3459 device->ldev->md.uuid[UI_HISTORY_START] = device->ldev->md.uuid[idx];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003460 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003461 __drbd_uuid_set(device, idx, val);
3462 spin_unlock_irqrestore(&device->ldev->md.uuid_lock, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003463}
3464
3465/**
3466 * drbd_uuid_new_current() - Creates a new current UUID
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003467 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003468 *
3469 * Creates a new current UUID, and rotates the old current UUID into
3470 * the bitmap slot. Causes an incremental resync upon next connect.
3471 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003472void drbd_uuid_new_current(struct drbd_device *device) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003473{
3474 u64 val;
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003475 unsigned long long bm_uuid;
3476
3477 get_random_bytes(&val, sizeof(u64));
3478
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003479 spin_lock_irq(&device->ldev->md.uuid_lock);
3480 bm_uuid = device->ldev->md.uuid[UI_BITMAP];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003481
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003482 if (bm_uuid)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003483 drbd_warn(device, "bm UUID was already set: %llX\n", bm_uuid);
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003484
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003485 device->ldev->md.uuid[UI_BITMAP] = device->ldev->md.uuid[UI_CURRENT];
3486 __drbd_uuid_set(device, UI_CURRENT, val);
3487 spin_unlock_irq(&device->ldev->md.uuid_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003488
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003489 drbd_print_uuids(device, "new current UUID");
Lars Ellenbergaaa8e2b2010-10-15 13:16:53 +02003490 /* get it to stable storage _now_ */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003491 drbd_md_sync(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003492}
3493
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003494void drbd_uuid_set_bm(struct drbd_device *device, u64 val) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003495{
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003496 unsigned long flags;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003497 if (device->ldev->md.uuid[UI_BITMAP] == 0 && val == 0)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003498 return;
3499
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003500 spin_lock_irqsave(&device->ldev->md.uuid_lock, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003501 if (val == 0) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003502 drbd_uuid_move_history(device);
3503 device->ldev->md.uuid[UI_HISTORY_START] = device->ldev->md.uuid[UI_BITMAP];
3504 device->ldev->md.uuid[UI_BITMAP] = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003505 } else {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003506 unsigned long long bm_uuid = device->ldev->md.uuid[UI_BITMAP];
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003507 if (bm_uuid)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003508 drbd_warn(device, "bm UUID was already set: %llX\n", bm_uuid);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003509
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003510 device->ldev->md.uuid[UI_BITMAP] = val & ~((u64)1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003511 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003512 spin_unlock_irqrestore(&device->ldev->md.uuid_lock, flags);
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003513
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003514 drbd_md_mark_dirty(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003515}
3516
3517/**
3518 * drbd_bmio_set_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003519 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003520 *
3521 * Sets all bits in the bitmap and writes the whole bitmap to stable storage.
3522 */
Philipp Reisner8fe39aa2013-11-22 13:22:13 +01003523int drbd_bmio_set_n_write(struct drbd_device *device) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003524{
3525 int rv = -EIO;
3526
Philipp Reisner8fe39aa2013-11-22 13:22:13 +01003527 drbd_md_set_flag(device, MDF_FULL_SYNC);
3528 drbd_md_sync(device);
3529 drbd_bm_set_all(device);
3530
3531 rv = drbd_bm_write(device);
3532
3533 if (!rv) {
3534 drbd_md_clear_flag(device, MDF_FULL_SYNC);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003535 drbd_md_sync(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003536 }
3537
3538 return rv;
3539}
3540
3541/**
3542 * drbd_bmio_clear_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003543 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003544 *
3545 * Clears all bits in the bitmap and writes the whole bitmap to stable storage.
3546 */
Philipp Reisner8fe39aa2013-11-22 13:22:13 +01003547int drbd_bmio_clear_n_write(struct drbd_device *device) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003548{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003549 drbd_resume_al(device);
Philipp Reisner8fe39aa2013-11-22 13:22:13 +01003550 drbd_bm_clear_all(device);
3551 return drbd_bm_write(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003552}
3553
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003554static int w_bitmap_io(struct drbd_work *w, int unused)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003555{
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02003556 struct drbd_device *device =
3557 container_of(w, struct drbd_device, bm_io_work.w);
3558 struct bm_io_work *work = &device->bm_io_work;
Lars Ellenberg02851e92010-12-16 14:47:39 +01003559 int rv = -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003560
Lars Ellenbergbca1cba2016-06-14 00:26:16 +02003561 if (work->flags != BM_LOCKED_CHANGE_ALLOWED) {
3562 int cnt = atomic_read(&device->ap_bio_cnt);
3563 if (cnt)
3564 drbd_err(device, "FIXME: ap_bio_cnt %d, expected 0; queued for '%s'\n",
3565 cnt, work->why);
3566 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07003567
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003568 if (get_ldev(device)) {
3569 drbd_bm_lock(device, work->why, work->flags);
3570 rv = work->io_fn(device);
3571 drbd_bm_unlock(device);
3572 put_ldev(device);
Lars Ellenberg02851e92010-12-16 14:47:39 +01003573 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07003574
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003575 clear_bit_unlock(BITMAP_IO, &device->flags);
3576 wake_up(&device->misc_wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003577
3578 if (work->done)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003579 work->done(device, rv);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003580
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003581 clear_bit(BITMAP_IO_QUEUED, &device->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003582 work->why = NULL;
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003583 work->flags = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003584
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003585 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003586}
3587
3588/**
3589 * drbd_queue_bitmap_io() - Queues an IO operation on the whole bitmap
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003590 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003591 * @io_fn: IO callback to be called when bitmap IO is possible
3592 * @done: callback to be called after the bitmap IO was performed
3593 * @why: Descriptive text of the reason for doing the IO
3594 *
3595 * While IO on the bitmap happens we freeze application IO thus we ensure
3596 * that drbd_set_out_of_sync() can not be called. This function MAY ONLY be
3597 * called from worker context. It MUST NOT be used while a previous such
3598 * work is still pending!
Philipp Reisner8fe39aa2013-11-22 13:22:13 +01003599 *
3600 * Its worker function encloses the call of io_fn() by get_ldev() and
3601 * put_ldev().
Philipp Reisnerb411b362009-09-25 16:07:19 -07003602 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003603void drbd_queue_bitmap_io(struct drbd_device *device,
Andreas Gruenbacher54761692011-05-30 16:15:21 +02003604 int (*io_fn)(struct drbd_device *),
3605 void (*done)(struct drbd_device *, int),
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003606 char *why, enum bm_flag flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003607{
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02003608 D_ASSERT(device, current == first_peer_device(device)->connection->worker.task);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003609
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02003610 D_ASSERT(device, !test_bit(BITMAP_IO_QUEUED, &device->flags));
3611 D_ASSERT(device, !test_bit(BITMAP_IO, &device->flags));
3612 D_ASSERT(device, list_empty(&device->bm_io_work.w.list));
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003613 if (device->bm_io_work.why)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003614 drbd_err(device, "FIXME going to queue '%s' but '%s' still pending?\n",
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003615 why, device->bm_io_work.why);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003616
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003617 device->bm_io_work.io_fn = io_fn;
3618 device->bm_io_work.done = done;
3619 device->bm_io_work.why = why;
3620 device->bm_io_work.flags = flags;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003621
Andreas Gruenbacher05008132011-07-07 14:19:42 +02003622 spin_lock_irq(&device->resource->req_lock);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003623 set_bit(BITMAP_IO, &device->flags);
Lars Ellenberg5bded4e2015-04-16 16:51:34 +02003624 /* don't wait for pending application IO if the caller indicates that
3625 * application IO does not conflict anyways. */
3626 if (flags == BM_LOCKED_CHANGE_ALLOWED || atomic_read(&device->ap_bio_cnt) == 0) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003627 if (!test_and_set_bit(BITMAP_IO_QUEUED, &device->flags))
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02003628 drbd_queue_work(&first_peer_device(device)->connection->sender_work,
3629 &device->bm_io_work.w);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003630 }
Andreas Gruenbacher05008132011-07-07 14:19:42 +02003631 spin_unlock_irq(&device->resource->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003632}
3633
3634/**
3635 * drbd_bitmap_io() - Does an IO operation on the whole bitmap
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003636 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003637 * @io_fn: IO callback to be called when bitmap IO is possible
3638 * @why: Descriptive text of the reason for doing the IO
3639 *
3640 * freezes application IO while that the actual IO operations runs. This
3641 * functions MAY NOT be called from worker context.
3642 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003643int drbd_bitmap_io(struct drbd_device *device, int (*io_fn)(struct drbd_device *),
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003644 char *why, enum bm_flag flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003645{
Lars Ellenbergc0065f92016-06-14 00:26:10 +02003646 /* Only suspend io, if some operation is supposed to be locked out */
3647 const bool do_suspend_io = flags & (BM_DONT_CLEAR|BM_DONT_SET|BM_DONT_TEST);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003648 int rv;
3649
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02003650 D_ASSERT(device, current != first_peer_device(device)->connection->worker.task);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003651
Lars Ellenbergc0065f92016-06-14 00:26:10 +02003652 if (do_suspend_io)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003653 drbd_suspend_io(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003654
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003655 drbd_bm_lock(device, why, flags);
3656 rv = io_fn(device);
3657 drbd_bm_unlock(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003658
Lars Ellenbergc0065f92016-06-14 00:26:10 +02003659 if (do_suspend_io)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003660 drbd_resume_io(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003661
3662 return rv;
3663}
3664
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003665void drbd_md_set_flag(struct drbd_device *device, int flag) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003666{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003667 if ((device->ldev->md.flags & flag) != flag) {
3668 drbd_md_mark_dirty(device);
3669 device->ldev->md.flags |= flag;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003670 }
3671}
3672
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003673void drbd_md_clear_flag(struct drbd_device *device, int flag) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003674{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003675 if ((device->ldev->md.flags & flag) != 0) {
3676 drbd_md_mark_dirty(device);
3677 device->ldev->md.flags &= ~flag;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003678 }
3679}
3680int drbd_md_test_flag(struct drbd_backing_dev *bdev, int flag)
3681{
3682 return (bdev->md.flags & flag) != 0;
3683}
3684
Kees Cook2bccef32017-10-17 20:33:01 -07003685static void md_sync_timer_fn(struct timer_list *t)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003686{
Kees Cook2bccef32017-10-17 20:33:01 -07003687 struct drbd_device *device = from_timer(device, t, md_sync_timer);
Lars Ellenbergac0acb92014-02-11 09:47:58 +01003688 drbd_device_post_work(device, MD_SYNC);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003689}
3690
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01003691const char *cmdname(enum drbd_packet cmd)
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003692{
3693 /* THINK may need to become several global tables
3694 * when we want to support more than
3695 * one PRO_VERSION */
3696 static const char *cmdnames[] = {
3697 [P_DATA] = "Data",
Lars Ellenberg9104d312016-06-14 00:26:31 +02003698 [P_WSAME] = "WriteSame",
3699 [P_TRIM] = "Trim",
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003700 [P_DATA_REPLY] = "DataReply",
3701 [P_RS_DATA_REPLY] = "RSDataReply",
3702 [P_BARRIER] = "Barrier",
3703 [P_BITMAP] = "ReportBitMap",
3704 [P_BECOME_SYNC_TARGET] = "BecomeSyncTarget",
3705 [P_BECOME_SYNC_SOURCE] = "BecomeSyncSource",
3706 [P_UNPLUG_REMOTE] = "UnplugRemote",
3707 [P_DATA_REQUEST] = "DataRequest",
3708 [P_RS_DATA_REQUEST] = "RSDataRequest",
3709 [P_SYNC_PARAM] = "SyncParam",
3710 [P_SYNC_PARAM89] = "SyncParam89",
3711 [P_PROTOCOL] = "ReportProtocol",
3712 [P_UUIDS] = "ReportUUIDs",
3713 [P_SIZES] = "ReportSizes",
3714 [P_STATE] = "ReportState",
3715 [P_SYNC_UUID] = "ReportSyncUUID",
3716 [P_AUTH_CHALLENGE] = "AuthChallenge",
3717 [P_AUTH_RESPONSE] = "AuthResponse",
3718 [P_PING] = "Ping",
3719 [P_PING_ACK] = "PingAck",
3720 [P_RECV_ACK] = "RecvAck",
3721 [P_WRITE_ACK] = "WriteAck",
3722 [P_RS_WRITE_ACK] = "RSWriteAck",
Lars Ellenbergd4dabbe2012-08-01 12:33:51 +02003723 [P_SUPERSEDED] = "Superseded",
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003724 [P_NEG_ACK] = "NegAck",
3725 [P_NEG_DREPLY] = "NegDReply",
3726 [P_NEG_RS_DREPLY] = "NegRSDReply",
3727 [P_BARRIER_ACK] = "BarrierAck",
3728 [P_STATE_CHG_REQ] = "StateChgRequest",
3729 [P_STATE_CHG_REPLY] = "StateChgReply",
3730 [P_OV_REQUEST] = "OVRequest",
3731 [P_OV_REPLY] = "OVReply",
3732 [P_OV_RESULT] = "OVResult",
3733 [P_CSUM_RS_REQUEST] = "CsumRSRequest",
3734 [P_RS_IS_IN_SYNC] = "CsumRSIsInSync",
3735 [P_COMPRESSED_BITMAP] = "CBitmap",
3736 [P_DELAY_PROBE] = "DelayProbe",
3737 [P_OUT_OF_SYNC] = "OutOfSync",
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003738 [P_RETRY_WRITE] = "RetryWrite",
Lars Ellenbergae25b332011-04-24 00:01:16 +02003739 [P_RS_CANCEL] = "RSCancel",
3740 [P_CONN_ST_CHG_REQ] = "conn_st_chg_req",
3741 [P_CONN_ST_CHG_REPLY] = "conn_st_chg_reply",
Philipp Reisner036b17e2011-05-16 17:38:11 +02003742 [P_RETRY_WRITE] = "retry_write",
3743 [P_PROTOCOL_UPDATE] = "protocol_update",
Philipp Reisner700ca8c2016-06-14 00:26:13 +02003744 [P_RS_THIN_REQ] = "rs_thin_req",
3745 [P_RS_DEALLOCATED] = "rs_deallocated",
Lars Ellenbergae25b332011-04-24 00:01:16 +02003746
3747 /* enum drbd_packet, but not commands - obsoleted flags:
3748 * P_MAY_IGNORE
3749 * P_MAX_OPT_CMD
3750 */
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003751 };
3752
Lars Ellenbergae25b332011-04-24 00:01:16 +02003753 /* too big for the array: 0xfffX */
Andreas Gruenbachere5d6f332011-03-28 16:44:40 +02003754 if (cmd == P_INITIAL_META)
3755 return "InitialMeta";
3756 if (cmd == P_INITIAL_DATA)
3757 return "InitialData";
Andreas Gruenbacher60381782011-03-28 17:05:50 +02003758 if (cmd == P_CONNECTION_FEATURES)
3759 return "ConnectionFeatures";
Andreas Gruenbacher6e849ce2011-03-14 17:27:45 +01003760 if (cmd >= ARRAY_SIZE(cmdnames))
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003761 return "Unknown";
3762 return cmdnames[cmd];
3763}
3764
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003765/**
3766 * drbd_wait_misc - wait for a request to make progress
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003767 * @device: device associated with the request
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003768 * @i: the struct drbd_interval embedded in struct drbd_request or
3769 * struct drbd_peer_request
3770 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003771int drbd_wait_misc(struct drbd_device *device, struct drbd_interval *i)
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003772{
Philipp Reisner44ed1672011-04-19 17:10:19 +02003773 struct net_conf *nc;
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003774 DEFINE_WAIT(wait);
3775 long timeout;
3776
Philipp Reisner44ed1672011-04-19 17:10:19 +02003777 rcu_read_lock();
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02003778 nc = rcu_dereference(first_peer_device(device)->connection->net_conf);
Philipp Reisner44ed1672011-04-19 17:10:19 +02003779 if (!nc) {
3780 rcu_read_unlock();
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003781 return -ETIMEDOUT;
Philipp Reisner44ed1672011-04-19 17:10:19 +02003782 }
3783 timeout = nc->ko_count ? nc->timeout * HZ / 10 * nc->ko_count : MAX_SCHEDULE_TIMEOUT;
3784 rcu_read_unlock();
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003785
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003786 /* Indicate to wake up device->misc_wait on progress. */
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003787 i->waiting = true;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003788 prepare_to_wait(&device->misc_wait, &wait, TASK_INTERRUPTIBLE);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02003789 spin_unlock_irq(&device->resource->req_lock);
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003790 timeout = schedule_timeout(timeout);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003791 finish_wait(&device->misc_wait, &wait);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02003792 spin_lock_irq(&device->resource->req_lock);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003793 if (!timeout || device->state.conn < C_CONNECTED)
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003794 return -ETIMEDOUT;
3795 if (signal_pending(current))
3796 return -ERESTARTSYS;
3797 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003798}
3799
Andreas Gruenbacher28bc3b82014-08-14 18:33:30 +02003800void lock_all_resources(void)
3801{
3802 struct drbd_resource *resource;
3803 int __maybe_unused i = 0;
3804
3805 mutex_lock(&resources_mutex);
3806 local_irq_disable();
3807 for_each_resource(resource, &drbd_resources)
3808 spin_lock_nested(&resource->req_lock, i++);
3809}
3810
3811void unlock_all_resources(void)
3812{
3813 struct drbd_resource *resource;
3814
3815 for_each_resource(resource, &drbd_resources)
3816 spin_unlock(&resource->req_lock);
3817 local_irq_enable();
3818 mutex_unlock(&resources_mutex);
3819}
3820
Philipp Reisnerb411b362009-09-25 16:07:19 -07003821#ifdef CONFIG_DRBD_FAULT_INJECTION
3822/* Fault insertion support including random number generator shamelessly
3823 * stolen from kernel/rcutorture.c */
3824struct fault_random_state {
3825 unsigned long state;
3826 unsigned long count;
3827};
3828
3829#define FAULT_RANDOM_MULT 39916801 /* prime */
3830#define FAULT_RANDOM_ADD 479001701 /* prime */
3831#define FAULT_RANDOM_REFRESH 10000
3832
3833/*
3834 * Crude but fast random-number generator. Uses a linear congruential
3835 * generator, with occasional help from get_random_bytes().
3836 */
3837static unsigned long
3838_drbd_fault_random(struct fault_random_state *rsp)
3839{
3840 long refresh;
3841
Roel Kluin49829ea2009-12-15 22:55:44 +01003842 if (!rsp->count--) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07003843 get_random_bytes(&refresh, sizeof(refresh));
3844 rsp->state += refresh;
3845 rsp->count = FAULT_RANDOM_REFRESH;
3846 }
3847 rsp->state = rsp->state * FAULT_RANDOM_MULT + FAULT_RANDOM_ADD;
3848 return swahw32(rsp->state);
3849}
3850
3851static char *
3852_drbd_fault_str(unsigned int type) {
3853 static char *_faults[] = {
3854 [DRBD_FAULT_MD_WR] = "Meta-data write",
3855 [DRBD_FAULT_MD_RD] = "Meta-data read",
3856 [DRBD_FAULT_RS_WR] = "Resync write",
3857 [DRBD_FAULT_RS_RD] = "Resync read",
3858 [DRBD_FAULT_DT_WR] = "Data write",
3859 [DRBD_FAULT_DT_RD] = "Data read",
3860 [DRBD_FAULT_DT_RA] = "Data read ahead",
3861 [DRBD_FAULT_BM_ALLOC] = "BM allocation",
Philipp Reisner6b4388a2010-04-26 14:11:45 +02003862 [DRBD_FAULT_AL_EE] = "EE allocation",
3863 [DRBD_FAULT_RECEIVE] = "receive data corruption",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003864 };
3865
3866 return (type < DRBD_FAULT_MAX) ? _faults[type] : "**Unknown**";
3867}
3868
3869unsigned int
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003870_drbd_insert_fault(struct drbd_device *device, unsigned int type)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003871{
3872 static struct fault_random_state rrs = {0, 0};
3873
3874 unsigned int ret = (
Roland Kammerer183ece32017-08-29 10:20:46 +02003875 (drbd_fault_devs == 0 ||
3876 ((1 << device_to_minor(device)) & drbd_fault_devs) != 0) &&
3877 (((_drbd_fault_random(&rrs) % 100) + 1) <= drbd_fault_rate));
Philipp Reisnerb411b362009-09-25 16:07:19 -07003878
3879 if (ret) {
Roland Kammerer183ece32017-08-29 10:20:46 +02003880 drbd_fault_count++;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003881
Lars Ellenberg73835062010-05-27 11:51:56 +02003882 if (__ratelimit(&drbd_ratelimit_state))
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003883 drbd_warn(device, "***Simulating %s failure\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003884 _drbd_fault_str(type));
3885 }
3886
3887 return ret;
3888}
3889#endif
3890
3891const char *drbd_buildtag(void)
3892{
3893 /* DRBD built from external sources has here a reference to the
3894 git hash of the source code. */
3895
3896 static char buildtag[38] = "\0uilt-in";
3897
3898 if (buildtag[0] == 0) {
Cong Wangbc4854b2012-04-03 14:13:36 +08003899#ifdef MODULE
3900 sprintf(buildtag, "srcversion: %-24s", THIS_MODULE->srcversion);
3901#else
3902 buildtag[0] = 'b';
Philipp Reisnerb411b362009-09-25 16:07:19 -07003903#endif
Philipp Reisnerb411b362009-09-25 16:07:19 -07003904 }
3905
3906 return buildtag;
3907}
3908
3909module_init(drbd_init)
3910module_exit(drbd_cleanup)
3911
Philipp Reisnerb411b362009-09-25 16:07:19 -07003912EXPORT_SYMBOL(drbd_conn_str);
3913EXPORT_SYMBOL(drbd_role_str);
3914EXPORT_SYMBOL(drbd_disk_str);
3915EXPORT_SYMBOL(drbd_set_st_err_str);