blob: 40edaf87241ce3ee3c84ea02cf7c93c5d83686f2 [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
Philipp Reisnerb411b362009-09-25 16:07:19 -0700325restart:
326 retval = thi->function(thi);
327
328 spin_lock_irqsave(&thi->t_lock, flags);
329
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100330 /* if the receiver has been "EXITING", the last thing it did
Philipp Reisnerb411b362009-09-25 16:07:19 -0700331 * was set the conn state to "StandAlone",
332 * if now a re-connect request comes in, conn state goes C_UNCONNECTED,
333 * and receiver thread will be "started".
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100334 * drbd_thread_start needs to set "RESTARTING" in that case.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700335 * t_state check and assignment needs to be within the same spinlock,
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100336 * so either thread_start sees EXITING, and can remap to RESTARTING,
337 * or thread_start see NONE, and can proceed as normal.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700338 */
339
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100340 if (thi->t_state == RESTARTING) {
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200341 drbd_info(resource, "Restarting %s thread\n", thi->name);
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100342 thi->t_state = RUNNING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700343 spin_unlock_irqrestore(&thi->t_lock, flags);
344 goto restart;
345 }
346
347 thi->task = NULL;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100348 thi->t_state = NONE;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700349 smp_mb();
Lars Ellenberg992d6e92011-05-02 11:47:18 +0200350 complete_all(&thi->stop);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700351 spin_unlock_irqrestore(&thi->t_lock, flags);
352
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200353 drbd_info(resource, "Terminating %s\n", current->comm);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700354
355 /* Release mod reference taken when thread was started */
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +0200356
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200357 if (thi->connection)
358 kref_put(&thi->connection->kref, drbd_destroy_connection);
359 kref_put(&resource->kref, drbd_destroy_resource);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700360 module_put(THIS_MODULE);
361 return retval;
362}
363
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200364static void drbd_thread_init(struct drbd_resource *resource, struct drbd_thread *thi,
Andreas Gruenbacherc60b0252011-08-10 15:05:02 +0200365 int (*func) (struct drbd_thread *), const char *name)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700366{
367 spin_lock_init(&thi->t_lock);
368 thi->task = NULL;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100369 thi->t_state = NONE;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700370 thi->function = func;
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200371 thi->resource = resource;
372 thi->connection = NULL;
Andreas Gruenbacherc60b0252011-08-10 15:05:02 +0200373 thi->name = name;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700374}
375
376int drbd_thread_start(struct drbd_thread *thi)
377{
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200378 struct drbd_resource *resource = thi->resource;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700379 struct task_struct *nt;
380 unsigned long flags;
381
Philipp Reisnerb411b362009-09-25 16:07:19 -0700382 /* is used from state engine doing drbd_thread_stop_nowait,
383 * while holding the req lock irqsave */
384 spin_lock_irqsave(&thi->t_lock, flags);
385
386 switch (thi->t_state) {
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100387 case NONE:
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200388 drbd_info(resource, "Starting %s thread (from %s [%d])\n",
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100389 thi->name, current->comm, current->pid);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700390
391 /* Get ref on module for thread - this is released when thread exits */
392 if (!try_module_get(THIS_MODULE)) {
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200393 drbd_err(resource, "Failed to get module reference in drbd_thread_start\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700394 spin_unlock_irqrestore(&thi->t_lock, flags);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100395 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700396 }
397
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200398 kref_get(&resource->kref);
399 if (thi->connection)
400 kref_get(&thi->connection->kref);
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +0200401
Philipp Reisnerb411b362009-09-25 16:07:19 -0700402 init_completion(&thi->stop);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700403 thi->reset_cpu_mask = 1;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100404 thi->t_state = RUNNING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700405 spin_unlock_irqrestore(&thi->t_lock, flags);
406 flush_signals(current); /* otherw. may get -ERESTARTNOINTR */
407
408 nt = kthread_create(drbd_thread_setup, (void *) thi,
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200409 "drbd_%c_%s", thi->name[0], thi->resource->name);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700410
411 if (IS_ERR(nt)) {
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200412 drbd_err(resource, "Couldn't start thread\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700413
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200414 if (thi->connection)
415 kref_put(&thi->connection->kref, drbd_destroy_connection);
416 kref_put(&resource->kref, drbd_destroy_resource);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700417 module_put(THIS_MODULE);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100418 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700419 }
420 spin_lock_irqsave(&thi->t_lock, flags);
421 thi->task = nt;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100422 thi->t_state = RUNNING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700423 spin_unlock_irqrestore(&thi->t_lock, flags);
424 wake_up_process(nt);
425 break;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100426 case EXITING:
427 thi->t_state = RESTARTING;
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200428 drbd_info(resource, "Restarting %s thread (from %s [%d])\n",
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100429 thi->name, current->comm, current->pid);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700430 /* fall through */
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100431 case RUNNING:
432 case RESTARTING:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700433 default:
434 spin_unlock_irqrestore(&thi->t_lock, flags);
435 break;
436 }
437
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100438 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700439}
440
441
442void _drbd_thread_stop(struct drbd_thread *thi, int restart, int wait)
443{
444 unsigned long flags;
445
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100446 enum drbd_thread_state ns = restart ? RESTARTING : EXITING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700447
448 /* may be called from state engine, holding the req lock irqsave */
449 spin_lock_irqsave(&thi->t_lock, flags);
450
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100451 if (thi->t_state == NONE) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700452 spin_unlock_irqrestore(&thi->t_lock, flags);
453 if (restart)
454 drbd_thread_start(thi);
455 return;
456 }
457
458 if (thi->t_state != ns) {
459 if (thi->task == NULL) {
460 spin_unlock_irqrestore(&thi->t_lock, flags);
461 return;
462 }
463
464 thi->t_state = ns;
465 smp_mb();
466 init_completion(&thi->stop);
467 if (thi->task != current)
468 force_sig(DRBD_SIGKILL, thi->task);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700469 }
470
471 spin_unlock_irqrestore(&thi->t_lock, flags);
472
473 if (wait)
474 wait_for_completion(&thi->stop);
475}
476
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200477int conn_lowest_minor(struct drbd_connection *connection)
Philipp Reisner80822282011-02-08 12:46:30 +0100478{
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +0200479 struct drbd_peer_device *peer_device;
480 int vnr = 0, minor = -1;
Philipp Reisner774b3052011-02-22 02:07:03 -0500481
Philipp Reisner695d08f2011-04-11 22:53:32 -0700482 rcu_read_lock();
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +0200483 peer_device = idr_get_next(&connection->peer_devices, &vnr);
484 if (peer_device)
485 minor = device_to_minor(peer_device->device);
Philipp Reisner695d08f2011-04-11 22:53:32 -0700486 rcu_read_unlock();
487
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +0200488 return minor;
Philipp Reisner80822282011-02-08 12:46:30 +0100489}
Philipp Reisner774b3052011-02-22 02:07:03 -0500490
Philipp Reisnerb411b362009-09-25 16:07:19 -0700491#ifdef CONFIG_SMP
492/**
493 * drbd_calc_cpu_mask() - Generate CPU masks, spread over all CPUs
Philipp Reisnerb411b362009-09-25 16:07:19 -0700494 *
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +0200495 * Forces all threads of a resource onto the same CPU. This is beneficial for
Philipp Reisnerb411b362009-09-25 16:07:19 -0700496 * DRBD's performance. May be overwritten by user's configuration.
497 */
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +0200498static void drbd_calc_cpu_mask(cpumask_var_t *cpu_mask)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700499{
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +0200500 unsigned int *resources_per_cpu, min_index = ~0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700501
Kees Cook6396bb22018-06-12 14:03:40 -0700502 resources_per_cpu = kcalloc(nr_cpu_ids, sizeof(*resources_per_cpu),
503 GFP_KERNEL);
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +0200504 if (resources_per_cpu) {
505 struct drbd_resource *resource;
506 unsigned int cpu, min = ~0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700507
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +0200508 rcu_read_lock();
509 for_each_resource_rcu(resource, &drbd_resources) {
510 for_each_cpu(cpu, resource->cpu_mask)
511 resources_per_cpu[cpu]++;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700512 }
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +0200513 rcu_read_unlock();
514 for_each_online_cpu(cpu) {
515 if (resources_per_cpu[cpu] < min) {
516 min = resources_per_cpu[cpu];
517 min_index = cpu;
518 }
519 }
520 kfree(resources_per_cpu);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700521 }
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +0200522 if (min_index == ~0) {
523 cpumask_setall(*cpu_mask);
524 return;
525 }
526 cpumask_set_cpu(min_index, *cpu_mask);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700527}
528
529/**
530 * drbd_thread_current_set_cpu() - modifies the cpu mask of the _current_ thread
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200531 * @device: DRBD device.
Philipp Reisnerbc31fe32011-02-07 11:14:38 +0100532 * @thi: drbd_thread object
Philipp Reisnerb411b362009-09-25 16:07:19 -0700533 *
534 * call in the "main loop" of _all_ threads, no need for any mutex, current won't die
535 * prematurely.
536 */
Philipp Reisner80822282011-02-08 12:46:30 +0100537void drbd_thread_current_set_cpu(struct drbd_thread *thi)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700538{
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200539 struct drbd_resource *resource = thi->resource;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700540 struct task_struct *p = current;
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100541
Philipp Reisnerb411b362009-09-25 16:07:19 -0700542 if (!thi->reset_cpu_mask)
543 return;
544 thi->reset_cpu_mask = 0;
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +0200545 set_cpus_allowed_ptr(p, resource->cpu_mask);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700546}
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +0200547#else
548#define drbd_calc_cpu_mask(A) ({})
Philipp Reisnerb411b362009-09-25 16:07:19 -0700549#endif
550
Andreas Gruenbacher52b061a2011-03-30 11:38:49 +0200551/**
552 * drbd_header_size - size of a packet header
553 *
554 * The header size is a multiple of 8, so any payload following the header is
555 * word aligned on 64-bit architectures. (The bitmap send and receive code
556 * relies on this.)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700557 */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200558unsigned int drbd_header_size(struct drbd_connection *connection)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700559{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200560 if (connection->agreed_pro_version >= 100) {
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200561 BUILD_BUG_ON(!IS_ALIGNED(sizeof(struct p_header100), 8));
562 return sizeof(struct p_header100);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700563 } else {
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200564 BUILD_BUG_ON(sizeof(struct p_header80) !=
565 sizeof(struct p_header95));
566 BUILD_BUG_ON(!IS_ALIGNED(sizeof(struct p_header80), 8));
567 return sizeof(struct p_header80);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700568 }
Andreas Gruenbacher52b061a2011-03-30 11:38:49 +0200569}
Philipp Reisnerb411b362009-09-25 16:07:19 -0700570
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200571static unsigned int prepare_header80(struct p_header80 *h, enum drbd_packet cmd, int size)
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100572{
573 h->magic = cpu_to_be32(DRBD_MAGIC);
574 h->command = cpu_to_be16(cmd);
575 h->length = cpu_to_be16(size);
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200576 return sizeof(struct p_header80);
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100577}
Philipp Reisnerb411b362009-09-25 16:07:19 -0700578
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200579static unsigned int prepare_header95(struct p_header95 *h, enum drbd_packet cmd, int size)
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100580{
581 h->magic = cpu_to_be16(DRBD_MAGIC_BIG);
582 h->command = cpu_to_be16(cmd);
Andreas Gruenbacherb55d84b2011-03-22 13:17:47 +0100583 h->length = cpu_to_be32(size);
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200584 return sizeof(struct p_header95);
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100585}
586
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200587static unsigned int prepare_header100(struct p_header100 *h, enum drbd_packet cmd,
588 int size, int vnr)
Philipp Reisnerd38e7872011-02-07 15:32:04 +0100589{
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200590 h->magic = cpu_to_be32(DRBD_MAGIC_100);
591 h->volume = cpu_to_be16(vnr);
592 h->command = cpu_to_be16(cmd);
593 h->length = cpu_to_be32(size);
594 h->pad = 0;
595 return sizeof(struct p_header100);
596}
597
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200598static unsigned int prepare_header(struct drbd_connection *connection, int vnr,
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200599 void *buffer, enum drbd_packet cmd, int size)
600{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200601 if (connection->agreed_pro_version >= 100)
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200602 return prepare_header100(buffer, cmd, size, vnr);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200603 else if (connection->agreed_pro_version >= 95 &&
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200604 size > DRBD_MAX_SIZE_H80_PACKET)
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200605 return prepare_header95(buffer, cmd, size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700606 else
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200607 return prepare_header80(buffer, cmd, size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700608}
609
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200610static void *__conn_prepare_command(struct drbd_connection *connection,
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200611 struct drbd_socket *sock)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700612{
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200613 if (!sock->socket)
614 return NULL;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200615 return sock->sbuf + drbd_header_size(connection);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700616}
617
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200618void *conn_prepare_command(struct drbd_connection *connection, struct drbd_socket *sock)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700619{
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200620 void *p;
621
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200622 mutex_lock(&sock->mutex);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200623 p = __conn_prepare_command(connection, sock);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200624 if (!p)
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200625 mutex_unlock(&sock->mutex);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200626
627 return p;
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200628}
629
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200630void *drbd_prepare_command(struct drbd_peer_device *peer_device, struct drbd_socket *sock)
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200631{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200632 return conn_prepare_command(peer_device->connection, sock);
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200633}
634
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200635static int __send_command(struct drbd_connection *connection, int vnr,
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200636 struct drbd_socket *sock, enum drbd_packet cmd,
637 unsigned int header_size, void *data,
638 unsigned int size)
639{
640 int msg_flags;
641 int err;
642
643 /*
644 * Called with @data == NULL and the size of the data blocks in @size
645 * for commands that send data blocks. For those commands, omit the
646 * MSG_MORE flag: this will increase the likelihood that data blocks
647 * which are page aligned on the sender will end up page aligned on the
648 * receiver.
649 */
650 msg_flags = data ? MSG_MORE : 0;
651
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200652 header_size += prepare_header(connection, vnr, sock->sbuf, cmd,
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200653 header_size + size);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200654 err = drbd_send_all(connection, sock->socket, sock->sbuf, header_size,
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200655 msg_flags);
656 if (data && !err)
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200657 err = drbd_send_all(connection, sock->socket, data, size, 0);
Lars Ellenberg123ff122014-02-05 06:13:53 +0100658 /* DRBD protocol "pings" are latency critical.
659 * This is supposed to trigger tcp_push_pending_frames() */
660 if (!err && (cmd == P_PING || cmd == P_PING_ACK))
661 drbd_tcp_nodelay(sock->socket);
662
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200663 return err;
664}
665
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200666static int __conn_send_command(struct drbd_connection *connection, struct drbd_socket *sock,
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200667 enum drbd_packet cmd, unsigned int header_size,
668 void *data, unsigned int size)
669{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200670 return __send_command(connection, 0, sock, cmd, header_size, data, size);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200671}
672
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200673int conn_send_command(struct drbd_connection *connection, struct drbd_socket *sock,
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200674 enum drbd_packet cmd, unsigned int header_size,
675 void *data, unsigned int size)
676{
677 int err;
678
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200679 err = __conn_send_command(connection, sock, cmd, header_size, data, size);
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200680 mutex_unlock(&sock->mutex);
681 return err;
682}
683
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200684int drbd_send_command(struct drbd_peer_device *peer_device, struct drbd_socket *sock,
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200685 enum drbd_packet cmd, unsigned int header_size,
686 void *data, unsigned int size)
687{
688 int err;
689
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200690 err = __send_command(peer_device->connection, peer_device->device->vnr,
691 sock, cmd, header_size, data, size);
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200692 mutex_unlock(&sock->mutex);
693 return err;
694}
695
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200696int drbd_send_ping(struct drbd_connection *connection)
Andreas Gruenbachere307f352011-03-22 10:55:48 +0100697{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200698 struct drbd_socket *sock;
699
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200700 sock = &connection->meta;
701 if (!conn_prepare_command(connection, sock))
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200702 return -EIO;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200703 return conn_send_command(connection, sock, P_PING, 0, NULL, 0);
Andreas Gruenbachere307f352011-03-22 10:55:48 +0100704}
705
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200706int drbd_send_ping_ack(struct drbd_connection *connection)
Andreas Gruenbachere307f352011-03-22 10:55:48 +0100707{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200708 struct drbd_socket *sock;
709
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200710 sock = &connection->meta;
711 if (!conn_prepare_command(connection, sock))
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200712 return -EIO;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200713 return conn_send_command(connection, sock, P_PING_ACK, 0, NULL, 0);
Andreas Gruenbachere307f352011-03-22 10:55:48 +0100714}
715
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200716int drbd_send_sync_param(struct drbd_peer_device *peer_device)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700717{
Andreas Gruenbacher7c967152011-03-22 00:49:36 +0100718 struct drbd_socket *sock;
Philipp Reisner8e26f9c2010-07-06 17:25:54 +0200719 struct p_rs_param_95 *p;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200720 int size;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200721 const int apv = peer_device->connection->agreed_pro_version;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200722 enum drbd_packet cmd;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200723 struct net_conf *nc;
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200724 struct disk_conf *dc;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200725
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200726 sock = &peer_device->connection->data;
727 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200728 if (!p)
729 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700730
Philipp Reisner44ed1672011-04-19 17:10:19 +0200731 rcu_read_lock();
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200732 nc = rcu_dereference(peer_device->connection->net_conf);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700733
734 size = apv <= 87 ? sizeof(struct p_rs_param)
735 : apv == 88 ? sizeof(struct p_rs_param)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200736 + strlen(nc->verify_alg) + 1
Philipp Reisner8e26f9c2010-07-06 17:25:54 +0200737 : apv <= 94 ? sizeof(struct p_rs_param_89)
738 : /* apv >= 95 */ sizeof(struct p_rs_param_95);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700739
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200740 cmd = apv >= 89 ? P_SYNC_PARAM89 : P_SYNC_PARAM;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700741
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200742 /* initialize verify_alg and csums_alg */
743 memset(p->verify_alg, 0, 2 * SHARED_SECRET_MAX);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700744
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200745 if (get_ldev(peer_device->device)) {
746 dc = rcu_dereference(peer_device->device->ldev->disk_conf);
Andreas Gruenbacher6394b932011-05-11 14:29:52 +0200747 p->resync_rate = cpu_to_be32(dc->resync_rate);
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200748 p->c_plan_ahead = cpu_to_be32(dc->c_plan_ahead);
749 p->c_delay_target = cpu_to_be32(dc->c_delay_target);
750 p->c_fill_target = cpu_to_be32(dc->c_fill_target);
751 p->c_max_rate = cpu_to_be32(dc->c_max_rate);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200752 put_ldev(peer_device->device);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200753 } else {
Andreas Gruenbacher6394b932011-05-11 14:29:52 +0200754 p->resync_rate = cpu_to_be32(DRBD_RESYNC_RATE_DEF);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200755 p->c_plan_ahead = cpu_to_be32(DRBD_C_PLAN_AHEAD_DEF);
756 p->c_delay_target = cpu_to_be32(DRBD_C_DELAY_TARGET_DEF);
757 p->c_fill_target = cpu_to_be32(DRBD_C_FILL_TARGET_DEF);
758 p->c_max_rate = cpu_to_be32(DRBD_C_MAX_RATE_DEF);
759 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700760
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200761 if (apv >= 88)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200762 strcpy(p->verify_alg, nc->verify_alg);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200763 if (apv >= 89)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200764 strcpy(p->csums_alg, nc->csums_alg);
765 rcu_read_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -0700766
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200767 return drbd_send_command(peer_device, sock, cmd, size, NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700768}
769
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200770int __drbd_send_protocol(struct drbd_connection *connection, enum drbd_packet cmd)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700771{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200772 struct drbd_socket *sock;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700773 struct p_protocol *p;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200774 struct net_conf *nc;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200775 int size, cf;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700776
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200777 sock = &connection->data;
778 p = __conn_prepare_command(connection, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200779 if (!p)
780 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700781
Philipp Reisner44ed1672011-04-19 17:10:19 +0200782 rcu_read_lock();
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200783 nc = rcu_dereference(connection->net_conf);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700784
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200785 if (nc->tentative && connection->agreed_pro_version < 92) {
Philipp Reisner44ed1672011-04-19 17:10:19 +0200786 rcu_read_unlock();
787 mutex_unlock(&sock->mutex);
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +0200788 drbd_err(connection, "--dry-run is not supported by peer");
Philipp Reisner44ed1672011-04-19 17:10:19 +0200789 return -EOPNOTSUPP;
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100790 }
Philipp Reisner44ed1672011-04-19 17:10:19 +0200791
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200792 size = sizeof(*p);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200793 if (connection->agreed_pro_version >= 87)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200794 size += strlen(nc->integrity_alg) + 1;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700795
Philipp Reisner44ed1672011-04-19 17:10:19 +0200796 p->protocol = cpu_to_be32(nc->wire_protocol);
797 p->after_sb_0p = cpu_to_be32(nc->after_sb_0p);
798 p->after_sb_1p = cpu_to_be32(nc->after_sb_1p);
799 p->after_sb_2p = cpu_to_be32(nc->after_sb_2p);
800 p->two_primaries = cpu_to_be32(nc->two_primaries);
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100801 cf = 0;
Andreas Gruenbacher6139f602011-05-06 20:00:02 +0200802 if (nc->discard_my_data)
803 cf |= CF_DISCARD_MY_DATA;
Andreas Gruenbacher6dff2902011-06-28 14:18:12 +0200804 if (nc->tentative)
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200805 cf |= CF_DRY_RUN;
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100806 p->conn_flags = cpu_to_be32(cf);
807
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200808 if (connection->agreed_pro_version >= 87)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200809 strcpy(p->integrity_alg, nc->integrity_alg);
810 rcu_read_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -0700811
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200812 return __conn_send_command(connection, sock, cmd, size, NULL, 0);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200813}
814
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200815int drbd_send_protocol(struct drbd_connection *connection)
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200816{
817 int err;
818
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200819 mutex_lock(&connection->data.mutex);
820 err = __drbd_send_protocol(connection, P_PROTOCOL);
821 mutex_unlock(&connection->data.mutex);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200822
823 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700824}
825
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200826static int _drbd_send_uuids(struct drbd_peer_device *peer_device, u64 uuid_flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700827{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200828 struct drbd_device *device = peer_device->device;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200829 struct drbd_socket *sock;
830 struct p_uuids *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700831 int i;
832
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200833 if (!get_ldev_if_state(device, D_NEGOTIATING))
Andreas Gruenbacher2ae5f952011-03-16 01:07:20 +0100834 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700835
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200836 sock = &peer_device->connection->data;
837 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200838 if (!p) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200839 put_ldev(device);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200840 return -EIO;
841 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200842 spin_lock_irq(&device->ldev->md.uuid_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700843 for (i = UI_CURRENT; i < UI_SIZE; i++)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200844 p->uuid[i] = cpu_to_be64(device->ldev->md.uuid[i]);
845 spin_unlock_irq(&device->ldev->md.uuid_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700846
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200847 device->comm_bm_set = drbd_bm_total_weight(device);
848 p->uuid[UI_SIZE] = cpu_to_be64(device->comm_bm_set);
Philipp Reisner44ed1672011-04-19 17:10:19 +0200849 rcu_read_lock();
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200850 uuid_flags |= rcu_dereference(peer_device->connection->net_conf)->discard_my_data ? 1 : 0;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200851 rcu_read_unlock();
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200852 uuid_flags |= test_bit(CRASHED_PRIMARY, &device->flags) ? 2 : 0;
853 uuid_flags |= device->new_state_tmp.disk == D_INCONSISTENT ? 4 : 0;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200854 p->uuid[UI_FLAGS] = cpu_to_be64(uuid_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700855
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200856 put_ldev(device);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200857 return drbd_send_command(peer_device, sock, P_UUIDS, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700858}
859
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200860int drbd_send_uuids(struct drbd_peer_device *peer_device)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700861{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200862 return _drbd_send_uuids(peer_device, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700863}
864
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200865int drbd_send_uuids_skip_initial_sync(struct drbd_peer_device *peer_device)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700866{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200867 return _drbd_send_uuids(peer_device, 8);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700868}
869
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200870void drbd_print_uuids(struct drbd_device *device, const char *text)
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100871{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200872 if (get_ldev_if_state(device, D_NEGOTIATING)) {
873 u64 *uuid = device->ldev->md.uuid;
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200874 drbd_info(device, "%s %016llX:%016llX:%016llX:%016llX\n",
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100875 text,
876 (unsigned long long)uuid[UI_CURRENT],
877 (unsigned long long)uuid[UI_BITMAP],
878 (unsigned long long)uuid[UI_HISTORY_START],
879 (unsigned long long)uuid[UI_HISTORY_END]);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200880 put_ldev(device);
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100881 } else {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200882 drbd_info(device, "%s effective data uuid: %016llX\n",
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100883 text,
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200884 (unsigned long long)device->ed_uuid);
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100885 }
886}
887
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200888void drbd_gen_and_send_sync_uuid(struct drbd_peer_device *peer_device)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700889{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200890 struct drbd_device *device = peer_device->device;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200891 struct drbd_socket *sock;
892 struct p_rs_uuid *p;
Lars Ellenberg5a22db82010-12-17 21:14:23 +0100893 u64 uuid;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700894
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200895 D_ASSERT(device, device->state.disk == D_UP_TO_DATE);
Lars Ellenberg5a22db82010-12-17 21:14:23 +0100896
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200897 uuid = device->ldev->md.uuid[UI_BITMAP];
Philipp Reisner5ba3dac2011-10-05 15:54:18 +0200898 if (uuid && uuid != UUID_JUST_CREATED)
899 uuid = uuid + UUID_NEW_BM_OFFSET;
900 else
901 get_random_bytes(&uuid, sizeof(u64));
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200902 drbd_uuid_set(device, UI_BITMAP, uuid);
903 drbd_print_uuids(device, "updated sync UUID");
904 drbd_md_sync(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700905
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200906 sock = &peer_device->connection->data;
907 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200908 if (p) {
909 p->uuid = cpu_to_be64(uuid);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200910 drbd_send_command(peer_device, sock, P_SYNC_UUID, sizeof(*p), NULL, 0);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200911 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700912}
913
Lars Ellenberg9104d312016-06-14 00:26:31 +0200914/* communicated if (agreed_features & DRBD_FF_WSAME) */
Baoyou Xie1ffa7bf2017-08-29 10:20:36 +0200915static void
916assign_p_sizes_qlim(struct drbd_device *device, struct p_sizes *p,
917 struct request_queue *q)
Lars Ellenberg9104d312016-06-14 00:26:31 +0200918{
919 if (q) {
920 p->qlim->physical_block_size = cpu_to_be32(queue_physical_block_size(q));
921 p->qlim->logical_block_size = cpu_to_be32(queue_logical_block_size(q));
922 p->qlim->alignment_offset = cpu_to_be32(queue_alignment_offset(q));
923 p->qlim->io_min = cpu_to_be32(queue_io_min(q));
924 p->qlim->io_opt = cpu_to_be32(queue_io_opt(q));
925 p->qlim->discard_enabled = blk_queue_discard(q);
Lars Ellenberg9104d312016-06-14 00:26:31 +0200926 p->qlim->write_same_capable = !!q->limits.max_write_same_sectors;
927 } else {
928 q = device->rq_queue;
929 p->qlim->physical_block_size = cpu_to_be32(queue_physical_block_size(q));
930 p->qlim->logical_block_size = cpu_to_be32(queue_logical_block_size(q));
931 p->qlim->alignment_offset = 0;
932 p->qlim->io_min = cpu_to_be32(queue_io_min(q));
933 p->qlim->io_opt = cpu_to_be32(queue_io_opt(q));
934 p->qlim->discard_enabled = 0;
Lars Ellenberg9104d312016-06-14 00:26:31 +0200935 p->qlim->write_same_capable = 0;
936 }
937}
938
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200939int drbd_send_sizes(struct drbd_peer_device *peer_device, int trigger_reply, enum dds_flags flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700940{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200941 struct drbd_device *device = peer_device->device;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200942 struct drbd_socket *sock;
943 struct p_sizes *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700944 sector_t d_size, u_size;
Lars Ellenbergdb141b22012-06-25 19:15:58 +0200945 int q_order_type;
946 unsigned int max_bio_size;
Lars Ellenberg9104d312016-06-14 00:26:31 +0200947 unsigned int packet_size;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700948
Lars Ellenberg9104d312016-06-14 00:26:31 +0200949 sock = &peer_device->connection->data;
950 p = drbd_prepare_command(peer_device, sock);
951 if (!p)
952 return -EIO;
953
954 packet_size = sizeof(*p);
955 if (peer_device->connection->agreed_features & DRBD_FF_WSAME)
956 packet_size += sizeof(p->qlim[0]);
957
958 memset(p, 0, packet_size);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200959 if (get_ldev_if_state(device, D_NEGOTIATING)) {
Lars Ellenberg9104d312016-06-14 00:26:31 +0200960 struct request_queue *q = bdev_get_queue(device->ldev->backing_bdev);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200961 d_size = drbd_get_max_capacity(device->ldev);
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200962 rcu_read_lock();
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200963 u_size = rcu_dereference(device->ldev->disk_conf)->disk_size;
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200964 rcu_read_unlock();
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200965 q_order_type = drbd_queue_order_type(device);
Lars Ellenberg9104d312016-06-14 00:26:31 +0200966 max_bio_size = queue_max_hw_sectors(q) << 9;
Lars Ellenbergdb141b22012-06-25 19:15:58 +0200967 max_bio_size = min(max_bio_size, DRBD_MAX_BIO_SIZE);
Lars Ellenberg9104d312016-06-14 00:26:31 +0200968 assign_p_sizes_qlim(device, p, q);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200969 put_ldev(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700970 } else {
971 d_size = 0;
972 u_size = 0;
973 q_order_type = QUEUE_ORDERED_NONE;
Philipp Reisner99432fc2011-05-20 16:39:13 +0200974 max_bio_size = DRBD_MAX_BIO_SIZE; /* ... multiple BIOs per peer_request */
Lars Ellenberg9104d312016-06-14 00:26:31 +0200975 assign_p_sizes_qlim(device, p, NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700976 }
977
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200978 if (peer_device->connection->agreed_pro_version <= 94)
Lars Ellenbergdb141b22012-06-25 19:15:58 +0200979 max_bio_size = min(max_bio_size, DRBD_MAX_SIZE_H80_PACKET);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200980 else if (peer_device->connection->agreed_pro_version < 100)
Philipp Reisner98683652012-11-09 14:18:43 +0100981 max_bio_size = min(max_bio_size, DRBD_MAX_BIO_SIZE_P95);
Philipp Reisner68093842011-06-30 15:43:06 +0200982
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200983 p->d_size = cpu_to_be64(d_size);
984 p->u_size = cpu_to_be64(u_size);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200985 p->c_size = cpu_to_be64(trigger_reply ? 0 : drbd_get_capacity(device->this_bdev));
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200986 p->max_bio_size = cpu_to_be32(max_bio_size);
987 p->queue_order_type = cpu_to_be16(q_order_type);
988 p->dds_flags = cpu_to_be16(flags);
Lars Ellenberg9104d312016-06-14 00:26:31 +0200989
990 return drbd_send_command(peer_device, sock, P_SIZES, packet_size, NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700991}
992
993/**
Lars Ellenbergf479ea02011-10-27 16:52:30 +0200994 * drbd_send_current_state() - Sends the drbd state to the peer
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200995 * @peer_device: DRBD peer device.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700996 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200997int drbd_send_current_state(struct drbd_peer_device *peer_device)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700998{
Andreas Gruenbacher7c967152011-03-22 00:49:36 +0100999 struct drbd_socket *sock;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001000 struct p_state *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001001
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001002 sock = &peer_device->connection->data;
1003 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001004 if (!p)
1005 return -EIO;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001006 p->state = cpu_to_be32(peer_device->device->state.i); /* Within the send mutex */
1007 return drbd_send_command(peer_device, sock, P_STATE, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001008}
1009
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001010/**
1011 * drbd_send_state() - After a state change, sends the new state to the peer
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001012 * @peer_device: DRBD peer device.
Philipp Reisner43de7c82011-11-10 13:16:13 +01001013 * @state: the state to send, not necessarily the current state.
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001014 *
1015 * Each state change queues an "after_state_ch" work, which will eventually
1016 * send the resulting new state to the peer. If more state changes happen
1017 * between queuing and processing of the after_state_ch work, we still
1018 * want to send each intermediary state in the order it occurred.
1019 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001020int drbd_send_state(struct drbd_peer_device *peer_device, union drbd_state state)
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001021{
Philipp Reisner43de7c82011-11-10 13:16:13 +01001022 struct drbd_socket *sock;
1023 struct p_state *p;
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001024
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001025 sock = &peer_device->connection->data;
1026 p = drbd_prepare_command(peer_device, sock);
Philipp Reisner43de7c82011-11-10 13:16:13 +01001027 if (!p)
1028 return -EIO;
1029 p->state = cpu_to_be32(state.i); /* Within the send mutex */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001030 return drbd_send_command(peer_device, sock, P_STATE, sizeof(*p), NULL, 0);
Philipp Reisner43de7c82011-11-10 13:16:13 +01001031}
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001032
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001033int 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 -07001034{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001035 struct drbd_socket *sock;
1036 struct p_req_state *p;
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001037
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001038 sock = &peer_device->connection->data;
1039 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001040 if (!p)
1041 return -EIO;
1042 p->mask = cpu_to_be32(mask.i);
1043 p->val = cpu_to_be32(val.i);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001044 return drbd_send_command(peer_device, sock, P_STATE_CHG_REQ, sizeof(*p), NULL, 0);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001045}
1046
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001047int conn_send_state_req(struct drbd_connection *connection, union drbd_state mask, union drbd_state val)
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001048{
1049 enum drbd_packet cmd;
1050 struct drbd_socket *sock;
1051 struct p_req_state *p;
1052
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001053 cmd = connection->agreed_pro_version < 100 ? P_STATE_CHG_REQ : P_CONN_ST_CHG_REQ;
1054 sock = &connection->data;
1055 p = conn_prepare_command(connection, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001056 if (!p)
1057 return -EIO;
1058 p->mask = cpu_to_be32(mask.i);
1059 p->val = cpu_to_be32(val.i);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001060 return conn_send_command(connection, sock, cmd, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001061}
1062
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001063void drbd_send_sr_reply(struct drbd_peer_device *peer_device, enum drbd_state_rv retcode)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001064{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001065 struct drbd_socket *sock;
1066 struct p_req_state_reply *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001067
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001068 sock = &peer_device->connection->meta;
1069 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001070 if (p) {
1071 p->retcode = cpu_to_be32(retcode);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001072 drbd_send_command(peer_device, sock, P_STATE_CHG_REPLY, sizeof(*p), NULL, 0);
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001073 }
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001074}
1075
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001076void conn_send_sr_reply(struct drbd_connection *connection, enum drbd_state_rv retcode)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001077{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001078 struct drbd_socket *sock;
1079 struct p_req_state_reply *p;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001080 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 -07001081
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001082 sock = &connection->meta;
1083 p = conn_prepare_command(connection, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001084 if (p) {
1085 p->retcode = cpu_to_be32(retcode);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001086 conn_send_command(connection, sock, cmd, sizeof(*p), NULL, 0);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001087 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001088}
1089
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001090static void dcbp_set_code(struct p_compressed_bm *p, enum drbd_bitmap_code code)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001091{
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001092 BUG_ON(code & ~0xf);
1093 p->encoding = (p->encoding & ~0xf) | code;
1094}
Philipp Reisnerb411b362009-09-25 16:07:19 -07001095
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001096static void dcbp_set_start(struct p_compressed_bm *p, int set)
1097{
1098 p->encoding = (p->encoding & ~0x80) | (set ? 0x80 : 0);
1099}
Philipp Reisnerb411b362009-09-25 16:07:19 -07001100
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001101static void dcbp_set_pad_bits(struct p_compressed_bm *p, int n)
1102{
1103 BUG_ON(n & ~0x7);
1104 p->encoding = (p->encoding & (~0x7 << 4)) | (n << 4);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001105}
1106
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001107static int fill_bitmap_rle_bits(struct drbd_device *device,
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001108 struct p_compressed_bm *p,
1109 unsigned int size,
1110 struct bm_xfer_ctx *c)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001111{
1112 struct bitstream bs;
1113 unsigned long plain_bits;
1114 unsigned long tmp;
1115 unsigned long rl;
1116 unsigned len;
1117 unsigned toggle;
Philipp Reisner44ed1672011-04-19 17:10:19 +02001118 int bits, use_rle;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001119
1120 /* may we use this feature? */
Philipp Reisner44ed1672011-04-19 17:10:19 +02001121 rcu_read_lock();
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001122 use_rle = rcu_dereference(first_peer_device(device)->connection->net_conf)->use_rle;
Philipp Reisner44ed1672011-04-19 17:10:19 +02001123 rcu_read_unlock();
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001124 if (!use_rle || first_peer_device(device)->connection->agreed_pro_version < 90)
Philipp Reisner44ed1672011-04-19 17:10:19 +02001125 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001126
1127 if (c->bit_offset >= c->bm_bits)
1128 return 0; /* nothing to do. */
1129
1130 /* use at most thus many bytes */
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001131 bitstream_init(&bs, p->code, size, 0);
1132 memset(p->code, 0, size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001133 /* plain bits covered in this code string */
1134 plain_bits = 0;
1135
1136 /* p->encoding & 0x80 stores whether the first run length is set.
1137 * bit offset is implicit.
1138 * start with toggle == 2 to be able to tell the first iteration */
1139 toggle = 2;
1140
1141 /* see how much plain bits we can stuff into one packet
1142 * using RLE and VLI. */
1143 do {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001144 tmp = (toggle == 0) ? _drbd_bm_find_next_zero(device, c->bit_offset)
1145 : _drbd_bm_find_next(device, c->bit_offset);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001146 if (tmp == -1UL)
1147 tmp = c->bm_bits;
1148 rl = tmp - c->bit_offset;
1149
1150 if (toggle == 2) { /* first iteration */
1151 if (rl == 0) {
1152 /* the first checked bit was set,
1153 * store start value, */
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001154 dcbp_set_start(p, 1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001155 /* but skip encoding of zero run length */
1156 toggle = !toggle;
1157 continue;
1158 }
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001159 dcbp_set_start(p, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001160 }
1161
1162 /* paranoia: catch zero runlength.
1163 * can only happen if bitmap is modified while we scan it. */
1164 if (rl == 0) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001165 drbd_err(device, "unexpected zero runlength while encoding bitmap "
Philipp Reisnerb411b362009-09-25 16:07:19 -07001166 "t:%u bo:%lu\n", toggle, c->bit_offset);
1167 return -1;
1168 }
1169
1170 bits = vli_encode_bits(&bs, rl);
1171 if (bits == -ENOBUFS) /* buffer full */
1172 break;
1173 if (bits <= 0) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001174 drbd_err(device, "error while encoding bitmap: %d\n", bits);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001175 return 0;
1176 }
1177
1178 toggle = !toggle;
1179 plain_bits += rl;
1180 c->bit_offset = tmp;
1181 } while (c->bit_offset < c->bm_bits);
1182
1183 len = bs.cur.b - p->code + !!bs.cur.bit;
1184
1185 if (plain_bits < (len << 3)) {
1186 /* incompressible with this method.
1187 * we need to rewind both word and bit position. */
1188 c->bit_offset -= plain_bits;
1189 bm_xfer_ctx_bit_to_word_offset(c);
1190 c->bit_offset = c->word_offset * BITS_PER_LONG;
1191 return 0;
1192 }
1193
1194 /* RLE + VLI was able to compress it just fine.
1195 * update c->word_offset. */
1196 bm_xfer_ctx_bit_to_word_offset(c);
1197
1198 /* store pad_bits */
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001199 dcbp_set_pad_bits(p, (8 - bs.cur.bit) & 0x7);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001200
1201 return len;
1202}
1203
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001204/**
1205 * send_bitmap_rle_or_plain
1206 *
1207 * Return 0 when done, 1 when another iteration is needed, and a negative error
1208 * code upon failure.
1209 */
1210static int
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001211send_bitmap_rle_or_plain(struct drbd_device *device, struct bm_xfer_ctx *c)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001212{
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001213 struct drbd_socket *sock = &first_peer_device(device)->connection->data;
1214 unsigned int header_size = drbd_header_size(first_peer_device(device)->connection);
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001215 struct p_compressed_bm *p = sock->sbuf + header_size;
Andreas Gruenbachera982dd52010-12-10 00:45:25 +01001216 int len, err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001217
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001218 len = fill_bitmap_rle_bits(device, p,
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001219 DRBD_SOCKET_BUFFER_SIZE - header_size - sizeof(*p), c);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001220 if (len < 0)
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001221 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001222
1223 if (len) {
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001224 dcbp_set_code(p, RLE_VLI_Bits);
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001225 err = __send_command(first_peer_device(device)->connection, device->vnr, sock,
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001226 P_COMPRESSED_BITMAP, sizeof(*p) + len,
1227 NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001228 c->packets[0]++;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001229 c->bytes[0] += header_size + sizeof(*p) + len;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001230
1231 if (c->bit_offset >= c->bm_bits)
1232 len = 0; /* DONE */
1233 } else {
1234 /* was not compressible.
1235 * send a buffer full of plain text bits instead. */
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001236 unsigned int data_size;
1237 unsigned long num_words;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001238 unsigned long *p = sock->sbuf + header_size;
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001239
1240 data_size = DRBD_SOCKET_BUFFER_SIZE - header_size;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001241 num_words = min_t(size_t, data_size / sizeof(*p),
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001242 c->bm_words - c->word_offset);
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001243 len = num_words * sizeof(*p);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001244 if (len)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001245 drbd_bm_get_lel(device, c->word_offset, num_words, p);
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001246 err = __send_command(first_peer_device(device)->connection, device->vnr, sock, P_BITMAP, len, NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001247 c->word_offset += num_words;
1248 c->bit_offset = c->word_offset * BITS_PER_LONG;
1249
1250 c->packets[1]++;
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001251 c->bytes[1] += header_size + len;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001252
1253 if (c->bit_offset > c->bm_bits)
1254 c->bit_offset = c->bm_bits;
1255 }
Andreas Gruenbachera982dd52010-12-10 00:45:25 +01001256 if (!err) {
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001257 if (len == 0) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001258 INFO_bm_xfer_stats(device, "send", c);
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001259 return 0;
1260 } else
1261 return 1;
1262 }
1263 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001264}
1265
1266/* See the comment at receive_bitmap() */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001267static int _drbd_send_bitmap(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001268{
1269 struct bm_xfer_ctx c;
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001270 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001271
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001272 if (!expect(device->bitmap))
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001273 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001274
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001275 if (get_ldev(device)) {
1276 if (drbd_md_test_flag(device->ldev, MDF_FULL_SYNC)) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001277 drbd_info(device, "Writing the whole bitmap, MDF_FullSync was set.\n");
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001278 drbd_bm_set_all(device);
1279 if (drbd_bm_write(device)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001280 /* write_bm did fail! Leave full sync flag set in Meta P_DATA
1281 * but otherwise process as per normal - need to tell other
1282 * side that a full resync is required! */
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001283 drbd_err(device, "Failed to write bitmap to disk!\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07001284 } else {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001285 drbd_md_clear_flag(device, MDF_FULL_SYNC);
1286 drbd_md_sync(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001287 }
1288 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001289 put_ldev(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001290 }
1291
1292 c = (struct bm_xfer_ctx) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001293 .bm_bits = drbd_bm_bits(device),
1294 .bm_words = drbd_bm_words(device),
Philipp Reisnerb411b362009-09-25 16:07:19 -07001295 };
1296
1297 do {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001298 err = send_bitmap_rle_or_plain(device, &c);
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001299 } while (err > 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001300
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001301 return err == 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001302}
1303
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001304int drbd_send_bitmap(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001305{
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001306 struct drbd_socket *sock = &first_peer_device(device)->connection->data;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001307 int err = -1;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001308
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001309 mutex_lock(&sock->mutex);
1310 if (sock->socket)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001311 err = !_drbd_send_bitmap(device);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001312 mutex_unlock(&sock->mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001313 return err;
1314}
1315
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001316void drbd_send_b_ack(struct drbd_connection *connection, u32 barrier_nr, u32 set_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001317{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001318 struct drbd_socket *sock;
1319 struct p_barrier_ack *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001320
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001321 if (connection->cstate < C_WF_REPORT_PARAMS)
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001322 return;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001323
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001324 sock = &connection->meta;
1325 p = conn_prepare_command(connection, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001326 if (!p)
1327 return;
1328 p->barrier = barrier_nr;
1329 p->set_size = cpu_to_be32(set_size);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001330 conn_send_command(connection, sock, P_BARRIER_ACK, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001331}
1332
1333/**
1334 * _drbd_send_ack() - Sends an ack packet
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001335 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07001336 * @cmd: Packet command code.
1337 * @sector: sector, needs to be in big endian byte order
1338 * @blksize: size in byte, needs to be in big endian byte order
1339 * @block_id: Id, big endian byte order
1340 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001341static int _drbd_send_ack(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001342 u64 sector, u32 blksize, u64 block_id)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001343{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001344 struct drbd_socket *sock;
1345 struct p_block_ack *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001346
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001347 if (peer_device->device->state.conn < C_CONNECTED)
Andreas Gruenbachera8c32aa2011-03-16 01:27:22 +01001348 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001349
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001350 sock = &peer_device->connection->meta;
1351 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001352 if (!p)
1353 return -EIO;
1354 p->sector = sector;
1355 p->block_id = block_id;
1356 p->blksize = blksize;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001357 p->seq_num = cpu_to_be32(atomic_inc_return(&peer_device->device->packet_seq));
1358 return drbd_send_command(peer_device, sock, cmd, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001359}
1360
Lars Ellenberg2b2bf212010-10-06 11:46:55 +02001361/* dp->sector and dp->block_id already/still in network byte order,
1362 * data_size is payload size according to dp->head,
1363 * and may need to be corrected for digest size. */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001364void drbd_send_ack_dp(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
Andreas Gruenbachera9a99942011-03-16 01:30:14 +01001365 struct p_data *dp, int data_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001366{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001367 if (peer_device->connection->peer_integrity_tfm)
Kees Cook3d0e6372018-08-06 16:32:16 -07001368 data_size -= crypto_shash_digestsize(peer_device->connection->peer_integrity_tfm);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001369 _drbd_send_ack(peer_device, cmd, dp->sector, cpu_to_be32(data_size),
Andreas Gruenbachera9a99942011-03-16 01:30:14 +01001370 dp->block_id);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001371}
1372
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001373void drbd_send_ack_rp(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
Andreas Gruenbachera9a99942011-03-16 01:30:14 +01001374 struct p_block_req *rp)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001375{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001376 _drbd_send_ack(peer_device, cmd, rp->sector, rp->blksize, rp->block_id);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001377}
1378
1379/**
1380 * drbd_send_ack() - Sends an ack packet
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001381 * @device: DRBD device
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001382 * @cmd: packet command code
1383 * @peer_req: peer request
Philipp Reisnerb411b362009-09-25 16:07:19 -07001384 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001385int drbd_send_ack(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001386 struct drbd_peer_request *peer_req)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001387{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001388 return _drbd_send_ack(peer_device, cmd,
Andreas Gruenbacherdd516122011-03-16 15:39:08 +01001389 cpu_to_be64(peer_req->i.sector),
1390 cpu_to_be32(peer_req->i.size),
1391 peer_req->block_id);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001392}
1393
1394/* This function misuses the block_id field to signal if the blocks
1395 * are is sync or not. */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001396int drbd_send_ack_ex(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001397 sector_t sector, int blksize, u64 block_id)
1398{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001399 return _drbd_send_ack(peer_device, cmd,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001400 cpu_to_be64(sector),
1401 cpu_to_be32(blksize),
1402 cpu_to_be64(block_id));
1403}
1404
Philipp Reisner700ca8c2016-06-14 00:26:13 +02001405int drbd_send_rs_deallocated(struct drbd_peer_device *peer_device,
1406 struct drbd_peer_request *peer_req)
1407{
1408 struct drbd_socket *sock;
1409 struct p_block_desc *p;
1410
1411 sock = &peer_device->connection->data;
1412 p = drbd_prepare_command(peer_device, sock);
1413 if (!p)
1414 return -EIO;
1415 p->sector = cpu_to_be64(peer_req->i.sector);
1416 p->blksize = cpu_to_be32(peer_req->i.size);
1417 p->pad = 0;
1418 return drbd_send_command(peer_device, sock, P_RS_DEALLOCATED, sizeof(*p), NULL, 0);
1419}
1420
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001421int drbd_send_drequest(struct drbd_peer_device *peer_device, int cmd,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001422 sector_t sector, int size, u64 block_id)
1423{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001424 struct drbd_socket *sock;
1425 struct p_block_req *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001426
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001427 sock = &peer_device->connection->data;
1428 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001429 if (!p)
1430 return -EIO;
1431 p->sector = cpu_to_be64(sector);
1432 p->block_id = block_id;
1433 p->blksize = cpu_to_be32(size);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001434 return drbd_send_command(peer_device, sock, cmd, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001435}
1436
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001437int drbd_send_drequest_csum(struct drbd_peer_device *peer_device, sector_t sector, int size,
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001438 void *digest, int digest_size, enum drbd_packet cmd)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001439{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001440 struct drbd_socket *sock;
1441 struct p_block_req *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001442
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001443 /* FIXME: Put the digest into the preallocated socket buffer. */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001444
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001445 sock = &peer_device->connection->data;
1446 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001447 if (!p)
1448 return -EIO;
1449 p->sector = cpu_to_be64(sector);
1450 p->block_id = ID_SYNCER /* unused */;
1451 p->blksize = cpu_to_be32(size);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001452 return drbd_send_command(peer_device, sock, cmd, sizeof(*p), digest, digest_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001453}
1454
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001455int drbd_send_ov_request(struct drbd_peer_device *peer_device, sector_t sector, int size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001456{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001457 struct drbd_socket *sock;
1458 struct p_block_req *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001459
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001460 sock = &peer_device->connection->data;
1461 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001462 if (!p)
1463 return -EIO;
1464 p->sector = cpu_to_be64(sector);
1465 p->block_id = ID_SYNCER /* unused */;
1466 p->blksize = cpu_to_be32(size);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001467 return drbd_send_command(peer_device, sock, P_OV_REQUEST, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001468}
1469
1470/* called on sndtimeo
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001471 * returns false if we should retry,
1472 * true if we think connection is dead
Philipp Reisnerb411b362009-09-25 16:07:19 -07001473 */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001474static int we_should_drop_the_connection(struct drbd_connection *connection, struct socket *sock)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001475{
1476 int drop_it;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001477 /* long elapsed = (long)(jiffies - device->last_received); */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001478
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001479 drop_it = connection->meta.socket == sock
Philipp Reisner1c03e522015-03-16 15:01:00 +01001480 || !connection->ack_receiver.task
1481 || get_t_state(&connection->ack_receiver) != RUNNING
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001482 || connection->cstate < C_WF_REPORT_PARAMS;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001483
1484 if (drop_it)
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001485 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001486
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001487 drop_it = !--connection->ko_count;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001488 if (!drop_it) {
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +02001489 drbd_err(connection, "[%s/%d] sock_sendmsg time expired, ko = %u\n",
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001490 current->comm, current->pid, connection->ko_count);
1491 request_ping(connection);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001492 }
1493
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001494 return drop_it; /* && (device->state == R_PRIMARY) */;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001495}
1496
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001497static void drbd_update_congested(struct drbd_connection *connection)
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001498{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001499 struct sock *sk = connection->data.socket->sk;
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001500 if (sk->sk_wmem_queued > sk->sk_sndbuf * 4 / 5)
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001501 set_bit(NET_CONGESTED, &connection->flags);
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001502}
1503
Philipp Reisnerb411b362009-09-25 16:07:19 -07001504/* The idea of sendpage seems to be to put some kind of reference
1505 * to the page into the skb, and to hand it over to the NIC. In
1506 * this process get_page() gets called.
1507 *
1508 * As soon as the page was really sent over the network put_page()
1509 * gets called by some part of the network layer. [ NIC driver? ]
1510 *
1511 * [ get_page() / put_page() increment/decrement the count. If count
1512 * reaches 0 the page will be freed. ]
1513 *
1514 * This works nicely with pages from FSs.
1515 * But this means that in protocol A we might signal IO completion too early!
1516 *
1517 * In order not to corrupt data during a resync we must make sure
1518 * that we do not reuse our own buffer pages (EEs) to early, therefore
1519 * we have the net_ee list.
1520 *
1521 * XFS seems to have problems, still, it submits pages with page_count == 0!
1522 * As a workaround, we disable sendpage on pages
1523 * with page_count == 0 or PageSlab.
1524 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001525static int _drbd_no_send_page(struct drbd_peer_device *peer_device, struct page *page,
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001526 int offset, size_t size, unsigned msg_flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001527{
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001528 struct socket *socket;
1529 void *addr;
1530 int err;
1531
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001532 socket = peer_device->connection->data.socket;
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001533 addr = kmap(page) + offset;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001534 err = drbd_send_all(peer_device->connection, socket, addr, size, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001535 kunmap(page);
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001536 if (!err)
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001537 peer_device->device->send_cnt += size >> 9;
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001538 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001539}
1540
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001541static int _drbd_send_page(struct drbd_peer_device *peer_device, struct page *page,
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001542 int offset, size_t size, unsigned msg_flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001543{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001544 struct socket *socket = peer_device->connection->data.socket;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001545 int len = size;
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001546 int err = -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001547
1548 /* e.g. XFS meta- & log-data is in slab pages, which have a
1549 * page_count of 0 and/or have PageSlab() set.
1550 * we cannot use send_page for those, as that does get_page();
1551 * put_page(); and would cause either a VM_BUG directly, or
1552 * __page_cache_release a page that would actually still be referenced
1553 * by someone, leading to some obscure delayed Oops somewhere else. */
Roland Kammerer183ece32017-08-29 10:20:46 +02001554 if (drbd_disable_sendpage || (page_count(page) < 1) || PageSlab(page))
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001555 return _drbd_no_send_page(peer_device, page, offset, size, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001556
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001557 msg_flags |= MSG_NOSIGNAL;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001558 drbd_update_congested(peer_device->connection);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001559 do {
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001560 int sent;
1561
1562 sent = socket->ops->sendpage(socket, page, offset, len, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001563 if (sent <= 0) {
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001564 if (sent == -EAGAIN) {
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001565 if (we_should_drop_the_connection(peer_device->connection, socket))
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001566 break;
1567 continue;
1568 }
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001569 drbd_warn(peer_device->device, "%s: size=%d len=%d sent=%d\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -07001570 __func__, (int)size, len, sent);
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001571 if (sent < 0)
1572 err = sent;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001573 break;
1574 }
1575 len -= sent;
1576 offset += sent;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001577 } while (len > 0 /* THINK && device->cstate >= C_CONNECTED*/);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001578 clear_bit(NET_CONGESTED, &peer_device->connection->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001579
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001580 if (len == 0) {
1581 err = 0;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001582 peer_device->device->send_cnt += size >> 9;
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001583 }
1584 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001585}
1586
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001587static int _drbd_send_bio(struct drbd_peer_device *peer_device, struct bio *bio)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001588{
Kent Overstreet79886132013-11-23 17:19:00 -08001589 struct bio_vec bvec;
1590 struct bvec_iter iter;
1591
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001592 /* hint all but last page with MSG_MORE */
Kent Overstreet79886132013-11-23 17:19:00 -08001593 bio_for_each_segment(bvec, bio, iter) {
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001594 int err;
1595
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001596 err = _drbd_no_send_page(peer_device, bvec.bv_page,
Kent Overstreet79886132013-11-23 17:19:00 -08001597 bvec.bv_offset, bvec.bv_len,
Kent Overstreet4550dd62013-08-07 14:26:21 -07001598 bio_iter_last(bvec, iter)
Kent Overstreet79886132013-11-23 17:19:00 -08001599 ? 0 : MSG_MORE);
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001600 if (err)
1601 return err;
Lars Ellenberg9104d312016-06-14 00:26:31 +02001602 /* REQ_OP_WRITE_SAME has only one segment */
1603 if (bio_op(bio) == REQ_OP_WRITE_SAME)
1604 break;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001605 }
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001606 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001607}
1608
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001609static int _drbd_send_zc_bio(struct drbd_peer_device *peer_device, struct bio *bio)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001610{
Kent Overstreet79886132013-11-23 17:19:00 -08001611 struct bio_vec bvec;
1612 struct bvec_iter iter;
1613
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001614 /* hint all but last page with MSG_MORE */
Kent Overstreet79886132013-11-23 17:19:00 -08001615 bio_for_each_segment(bvec, bio, iter) {
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001616 int err;
1617
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001618 err = _drbd_send_page(peer_device, bvec.bv_page,
Kent Overstreet79886132013-11-23 17:19:00 -08001619 bvec.bv_offset, bvec.bv_len,
Kent Overstreet4550dd62013-08-07 14:26:21 -07001620 bio_iter_last(bvec, iter) ? 0 : MSG_MORE);
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001621 if (err)
1622 return err;
Lars Ellenberg9104d312016-06-14 00:26:31 +02001623 /* REQ_OP_WRITE_SAME has only one segment */
1624 if (bio_op(bio) == REQ_OP_WRITE_SAME)
1625 break;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001626 }
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001627 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001628}
1629
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001630static int _drbd_send_zc_ee(struct drbd_peer_device *peer_device,
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001631 struct drbd_peer_request *peer_req)
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001632{
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001633 struct page *page = peer_req->pages;
1634 unsigned len = peer_req->i.size;
Andreas Gruenbacher9f692302011-03-16 10:49:09 +01001635 int err;
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001636
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001637 /* hint all but last page with MSG_MORE */
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001638 page_chain_for_each(page) {
1639 unsigned l = min_t(unsigned, len, PAGE_SIZE);
Andreas Gruenbacher9f692302011-03-16 10:49:09 +01001640
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001641 err = _drbd_send_page(peer_device, page, 0, l,
Andreas Gruenbacher9f692302011-03-16 10:49:09 +01001642 page_chain_next(page) ? MSG_MORE : 0);
1643 if (err)
1644 return err;
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001645 len -= l;
1646 }
Andreas Gruenbacher9f692302011-03-16 10:49:09 +01001647 return 0;
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001648}
1649
Mike Christiebb3cc852016-06-05 14:32:06 -05001650static u32 bio_flags_to_wire(struct drbd_connection *connection,
1651 struct bio *bio)
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001652{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001653 if (connection->agreed_pro_version >= 95)
Jens Axboe1eff9d32016-08-05 15:35:16 -06001654 return (bio->bi_opf & REQ_SYNC ? DP_RW_SYNC : 0) |
1655 (bio->bi_opf & REQ_FUA ? DP_FUA : 0) |
1656 (bio->bi_opf & REQ_PREFLUSH ? DP_FLUSH : 0) |
Lars Ellenberg9104d312016-06-14 00:26:31 +02001657 (bio_op(bio) == REQ_OP_WRITE_SAME ? DP_WSAME : 0) |
Christoph Hellwig45c21792017-04-05 19:21:22 +02001658 (bio_op(bio) == REQ_OP_DISCARD ? DP_DISCARD : 0) |
Lars Ellenbergf31e5832018-12-20 17:23:42 +01001659 (bio_op(bio) == REQ_OP_WRITE_ZEROES ?
1660 ((connection->agreed_features & DRBD_FF_WZEROES) ?
1661 (DP_ZEROES |(!(bio->bi_opf & REQ_NOUNMAP) ? DP_DISCARD : 0))
1662 : DP_DISCARD)
1663 : 0);
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001664 else
Jens Axboe1eff9d32016-08-05 15:35:16 -06001665 return bio->bi_opf & REQ_SYNC ? DP_RW_SYNC : 0;
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001666}
1667
Bart Van Assche93054552018-10-03 13:56:25 -07001668/* Used to send write or TRIM aka REQ_OP_DISCARD requests
Lars Ellenberg2f632ae2014-04-28 18:43:24 +02001669 * R_PRIMARY -> Peer (P_DATA, P_TRIM)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001670 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001671int drbd_send_dblock(struct drbd_peer_device *peer_device, struct drbd_request *req)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001672{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001673 struct drbd_device *device = peer_device->device;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001674 struct drbd_socket *sock;
1675 struct p_data *p;
Lars Ellenberg9104d312016-06-14 00:26:31 +02001676 struct p_wsame *wsame = NULL;
1677 void *digest_out;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001678 unsigned int dp_flags = 0;
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001679 int digest_size;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001680 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001681
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001682 sock = &peer_device->connection->data;
1683 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001684 digest_size = peer_device->connection->integrity_tfm ?
Kees Cook3d0e6372018-08-06 16:32:16 -07001685 crypto_shash_digestsize(peer_device->connection->integrity_tfm) : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001686
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001687 if (!p)
1688 return -EIO;
1689 p->sector = cpu_to_be64(req->i.sector);
1690 p->block_id = (unsigned long)req;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001691 p->seq_num = cpu_to_be32(atomic_inc_return(&device->packet_seq));
Mike Christiebb3cc852016-06-05 14:32:06 -05001692 dp_flags = bio_flags_to_wire(peer_device->connection, req->master_bio);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001693 if (device->state.conn >= C_SYNC_SOURCE &&
1694 device->state.conn <= C_PAUSED_SYNC_T)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001695 dp_flags |= DP_MAY_SET_IN_SYNC;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001696 if (peer_device->connection->agreed_pro_version >= 100) {
Philipp Reisner303d1442011-04-13 16:24:47 -07001697 if (req->rq_state & RQ_EXP_RECEIVE_ACK)
1698 dp_flags |= DP_SEND_RECEIVE_ACK;
Lars Ellenberg08d0dab2014-03-20 11:19:22 +01001699 /* During resync, request an explicit write ack,
1700 * even in protocol != C */
1701 if (req->rq_state & RQ_EXP_WRITE_ACK
1702 || (dp_flags & DP_MAY_SET_IN_SYNC))
Philipp Reisner303d1442011-04-13 16:24:47 -07001703 dp_flags |= DP_SEND_WRITE_ACK;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001704 }
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001705 p->dp_flags = cpu_to_be32(dp_flags);
Lars Ellenberg2f632ae2014-04-28 18:43:24 +02001706
Lars Ellenbergf31e5832018-12-20 17:23:42 +01001707 if (dp_flags & (DP_DISCARD|DP_ZEROES)) {
1708 enum drbd_packet cmd = (dp_flags & DP_ZEROES) ? P_ZEROES : P_TRIM;
Lars Ellenberg2f632ae2014-04-28 18:43:24 +02001709 struct p_trim *t = (struct p_trim*)p;
1710 t->size = cpu_to_be32(req->i.size);
Lars Ellenbergf31e5832018-12-20 17:23:42 +01001711 err = __send_command(peer_device->connection, device->vnr, sock, cmd, sizeof(*t), NULL, 0);
Lars Ellenberg2f632ae2014-04-28 18:43:24 +02001712 goto out;
1713 }
Lars Ellenberg9104d312016-06-14 00:26:31 +02001714 if (dp_flags & DP_WSAME) {
1715 /* this will only work if DRBD_FF_WSAME is set AND the
1716 * handshake agreed that all nodes and backend devices are
1717 * WRITE_SAME capable and agree on logical_block_size */
1718 wsame = (struct p_wsame*)p;
1719 digest_out = wsame + 1;
1720 wsame->size = cpu_to_be32(req->i.size);
1721 } else
1722 digest_out = p + 1;
Lars Ellenberg2f632ae2014-04-28 18:43:24 +02001723
1724 /* our digest is still only over the payload.
1725 * TRIM does not carry any payload. */
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001726 if (digest_size)
Lars Ellenberg9104d312016-06-14 00:26:31 +02001727 drbd_csum_bio(peer_device->connection->integrity_tfm, req->master_bio, digest_out);
1728 if (wsame) {
1729 err =
1730 __send_command(peer_device->connection, device->vnr, sock, P_WSAME,
1731 sizeof(*wsame) + digest_size, NULL,
1732 bio_iovec(req->master_bio).bv_len);
1733 } else
1734 err =
1735 __send_command(peer_device->connection, device->vnr, sock, P_DATA,
1736 sizeof(*p) + digest_size, NULL, req->i.size);
Andreas Gruenbacher6bdb9b02011-03-16 11:52:58 +01001737 if (!err) {
Lars Ellenberg470be442010-11-10 10:36:52 +01001738 /* For protocol A, we have to memcpy the payload into
1739 * socket buffers, as we may complete right away
1740 * as soon as we handed it over to tcp, at which point the data
1741 * pages may become invalid.
1742 *
1743 * For data-integrity enabled, we copy it as well, so we can be
1744 * sure that even if the bio pages may still be modified, it
1745 * won't change the data on the wire, thus if the digest checks
1746 * out ok after sending on this side, but does not fit on the
1747 * receiving side, we sure have detected corruption elsewhere.
1748 */
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001749 if (!(req->rq_state & (RQ_EXP_RECEIVE_ACK | RQ_EXP_WRITE_ACK)) || digest_size)
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001750 err = _drbd_send_bio(peer_device, req->master_bio);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001751 else
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001752 err = _drbd_send_zc_bio(peer_device, req->master_bio);
Lars Ellenberg470be442010-11-10 10:36:52 +01001753
1754 /* double check digest, sometimes buffers have been modified in flight. */
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001755 if (digest_size > 0 && digest_size <= 64) {
Bart Van Assche24c48302011-05-21 18:32:29 +02001756 /* 64 byte, 512 bit, is the largest digest size
Lars Ellenberg470be442010-11-10 10:36:52 +01001757 * currently supported in kernel crypto. */
1758 unsigned char digest[64];
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001759 drbd_csum_bio(peer_device->connection->integrity_tfm, req->master_bio, digest);
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001760 if (memcmp(p + 1, digest, digest_size)) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001761 drbd_warn(device,
Lars Ellenberg470be442010-11-10 10:36:52 +01001762 "Digest mismatch, buffer modified by upper layers during write: %llus +%u\n",
Andreas Gruenbacherace652a2011-01-03 17:09:58 +01001763 (unsigned long long)req->i.sector, req->i.size);
Lars Ellenberg470be442010-11-10 10:36:52 +01001764 }
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001765 } /* else if (digest_size > 64) {
Lars Ellenberg470be442010-11-10 10:36:52 +01001766 ... Be noisy about digest too large ...
1767 } */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001768 }
Lars Ellenberg2f632ae2014-04-28 18:43:24 +02001769out:
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001770 mutex_unlock(&sock->mutex); /* locked by drbd_prepare_command() */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001771
Andreas Gruenbacher6bdb9b02011-03-16 11:52:58 +01001772 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001773}
1774
1775/* answer packet, used to send data back for read requests:
1776 * Peer -> (diskless) R_PRIMARY (P_DATA_REPLY)
1777 * C_SYNC_SOURCE -> C_SYNC_TARGET (P_RS_DATA_REPLY)
1778 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001779int drbd_send_block(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001780 struct drbd_peer_request *peer_req)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001781{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001782 struct drbd_device *device = peer_device->device;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001783 struct drbd_socket *sock;
1784 struct p_data *p;
Andreas Gruenbacher7b57b89d2011-03-16 11:35:20 +01001785 int err;
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001786 int digest_size;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001787
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001788 sock = &peer_device->connection->data;
1789 p = drbd_prepare_command(peer_device, sock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001790
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001791 digest_size = peer_device->connection->integrity_tfm ?
Kees Cook3d0e6372018-08-06 16:32:16 -07001792 crypto_shash_digestsize(peer_device->connection->integrity_tfm) : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001793
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001794 if (!p)
1795 return -EIO;
1796 p->sector = cpu_to_be64(peer_req->i.sector);
1797 p->block_id = peer_req->block_id;
1798 p->seq_num = 0; /* unused */
Lars Ellenbergb17f33c2012-02-08 15:32:51 +01001799 p->dp_flags = 0;
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001800 if (digest_size)
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001801 drbd_csum_ee(peer_device->connection->integrity_tfm, peer_req, p + 1);
Andreas Gruenbacher11f8b2b2014-09-11 14:29:05 +02001802 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 +01001803 if (!err)
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001804 err = _drbd_send_zc_ee(peer_device, peer_req);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001805 mutex_unlock(&sock->mutex); /* locked by drbd_prepare_command() */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001806
Andreas Gruenbacher7b57b89d2011-03-16 11:35:20 +01001807 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001808}
1809
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001810int drbd_send_out_of_sync(struct drbd_peer_device *peer_device, struct drbd_request *req)
Philipp Reisner73a01a12010-10-27 14:33:00 +02001811{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001812 struct drbd_socket *sock;
1813 struct p_block_desc *p;
Philipp Reisner73a01a12010-10-27 14:33:00 +02001814
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001815 sock = &peer_device->connection->data;
1816 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001817 if (!p)
1818 return -EIO;
1819 p->sector = cpu_to_be64(req->i.sector);
1820 p->blksize = cpu_to_be32(req->i.size);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001821 return drbd_send_command(peer_device, sock, P_OUT_OF_SYNC, sizeof(*p), NULL, 0);
Philipp Reisner73a01a12010-10-27 14:33:00 +02001822}
1823
Philipp Reisnerb411b362009-09-25 16:07:19 -07001824/*
1825 drbd_send distinguishes two cases:
1826
1827 Packets sent via the data socket "sock"
1828 and packets sent via the meta data socket "msock"
1829
1830 sock msock
1831 -----------------+-------------------------+------------------------------
1832 timeout conf.timeout / 2 conf.timeout / 2
1833 timeout action send a ping via msock Abort communication
1834 and close all sockets
1835*/
1836
1837/*
1838 * you must have down()ed the appropriate [m]sock_mutex elsewhere!
1839 */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001840int drbd_send(struct drbd_connection *connection, struct socket *sock,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001841 void *buf, size_t size, unsigned msg_flags)
1842{
Al Viro79ab80b2014-12-10 17:06:38 -05001843 struct kvec iov = {.iov_base = buf, .iov_len = size};
Al Virof7765c32017-09-20 20:05:43 -04001844 struct msghdr msg = {.msg_flags = msg_flags | MSG_NOSIGNAL};
Philipp Reisnerb411b362009-09-25 16:07:19 -07001845 int rv, sent = 0;
1846
1847 if (!sock)
Andreas Gruenbacherc0d42c82010-12-09 23:52:22 +01001848 return -EBADR;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001849
1850 /* THINK if (signal_pending) return ... ? */
1851
David Howellsaa563d72018-10-20 00:57:56 +01001852 iov_iter_kvec(&msg.msg_iter, WRITE, &iov, 1, size);
Al Viro79ab80b2014-12-10 17:06:38 -05001853
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001854 if (sock == connection->data.socket) {
Philipp Reisner44ed1672011-04-19 17:10:19 +02001855 rcu_read_lock();
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001856 connection->ko_count = rcu_dereference(connection->net_conf)->ko_count;
Philipp Reisner44ed1672011-04-19 17:10:19 +02001857 rcu_read_unlock();
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001858 drbd_update_congested(connection);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001859 }
1860 do {
Al Viro79ab80b2014-12-10 17:06:38 -05001861 rv = sock_sendmsg(sock, &msg);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001862 if (rv == -EAGAIN) {
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001863 if (we_should_drop_the_connection(connection, sock))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001864 break;
1865 else
1866 continue;
1867 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001868 if (rv == -EINTR) {
1869 flush_signals(current);
1870 rv = 0;
1871 }
1872 if (rv < 0)
1873 break;
1874 sent += rv;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001875 } while (sent < size);
1876
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001877 if (sock == connection->data.socket)
1878 clear_bit(NET_CONGESTED, &connection->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001879
1880 if (rv <= 0) {
1881 if (rv != -EAGAIN) {
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +02001882 drbd_err(connection, "%s_sendmsg returned %d\n",
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001883 sock == connection->meta.socket ? "msock" : "sock",
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001884 rv);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001885 conn_request_state(connection, NS(conn, C_BROKEN_PIPE), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001886 } else
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001887 conn_request_state(connection, NS(conn, C_TIMEOUT), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001888 }
1889
1890 return sent;
1891}
1892
Andreas Gruenbacherfb708e42010-12-15 17:04:36 +01001893/**
1894 * drbd_send_all - Send an entire buffer
1895 *
1896 * Returns 0 upon success and a negative error value otherwise.
1897 */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001898int drbd_send_all(struct drbd_connection *connection, struct socket *sock, void *buffer,
Andreas Gruenbacherfb708e42010-12-15 17:04:36 +01001899 size_t size, unsigned msg_flags)
1900{
1901 int err;
1902
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001903 err = drbd_send(connection, sock, buffer, size, msg_flags);
Andreas Gruenbacherfb708e42010-12-15 17:04:36 +01001904 if (err < 0)
1905 return err;
1906 if (err != size)
1907 return -EIO;
1908 return 0;
1909}
1910
Philipp Reisnerb411b362009-09-25 16:07:19 -07001911static int drbd_open(struct block_device *bdev, fmode_t mode)
1912{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001913 struct drbd_device *device = bdev->bd_disk->private_data;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001914 unsigned long flags;
1915 int rv = 0;
1916
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001917 mutex_lock(&drbd_main_mutex);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001918 spin_lock_irqsave(&device->resource->req_lock, flags);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001919 /* to have a stable device->state.role
Philipp Reisnerb411b362009-09-25 16:07:19 -07001920 * and no race with updating open_cnt */
1921
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001922 if (device->state.role != R_PRIMARY) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001923 if (mode & FMODE_WRITE)
1924 rv = -EROFS;
Roland Kammerer183ece32017-08-29 10:20:46 +02001925 else if (!drbd_allow_oos)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001926 rv = -EMEDIUMTYPE;
1927 }
1928
1929 if (!rv)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001930 device->open_cnt++;
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001931 spin_unlock_irqrestore(&device->resource->req_lock, flags);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001932 mutex_unlock(&drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001933
1934 return rv;
1935}
1936
Al Virodb2a1442013-05-05 21:52:57 -04001937static void drbd_release(struct gendisk *gd, fmode_t mode)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001938{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001939 struct drbd_device *device = gd->private_data;
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001940 mutex_lock(&drbd_main_mutex);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001941 device->open_cnt--;
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001942 mutex_unlock(&drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001943}
1944
Lars Ellenbergc51a0ef2017-08-29 10:20:32 +02001945/* need to hold resource->req_lock */
1946void drbd_queue_unplug(struct drbd_device *device)
1947{
1948 if (device->state.pdsk >= D_INCONSISTENT && device->state.conn >= C_CONNECTED) {
1949 D_ASSERT(device, device->state.role == R_PRIMARY);
1950 if (test_and_clear_bit(UNPLUG_REMOTE, &device->flags)) {
1951 drbd_queue_work_if_unqueued(
1952 &first_peer_device(device)->connection->sender_work,
1953 &device->unplug_work);
1954 }
1955 }
1956}
1957
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001958static void drbd_set_defaults(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001959{
Lars Ellenbergf3990022011-03-23 14:31:09 +01001960 /* Beware! The actual layout differs
1961 * between big endian and little endian */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001962 device->state = (union drbd_dev_state) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001963 { .role = R_SECONDARY,
1964 .peer = R_UNKNOWN,
1965 .conn = C_STANDALONE,
1966 .disk = D_DISKLESS,
1967 .pdsk = D_UNKNOWN,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001968 } };
1969}
1970
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001971void drbd_init_set_defaults(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001972{
1973 /* the memset(,0,) did most of this.
1974 * note: only assignments, no allocation in here */
1975
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001976 drbd_set_defaults(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001977
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001978 atomic_set(&device->ap_bio_cnt, 0);
Lars Ellenbergad3fee72013-12-20 11:22:13 +01001979 atomic_set(&device->ap_actlog_cnt, 0);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001980 atomic_set(&device->ap_pending_cnt, 0);
1981 atomic_set(&device->rs_pending_cnt, 0);
1982 atomic_set(&device->unacked_cnt, 0);
1983 atomic_set(&device->local_cnt, 0);
1984 atomic_set(&device->pp_in_use_by_net, 0);
1985 atomic_set(&device->rs_sect_in, 0);
1986 atomic_set(&device->rs_sect_ev, 0);
1987 atomic_set(&device->ap_in_flight, 0);
Lars Ellenberge37d2432014-04-01 23:53:30 +02001988 atomic_set(&device->md_io.in_use, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001989
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001990 mutex_init(&device->own_state_mutex);
1991 device->state_mutex = &device->own_state_mutex;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001992
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001993 spin_lock_init(&device->al_lock);
1994 spin_lock_init(&device->peer_seq_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001995
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001996 INIT_LIST_HEAD(&device->active_ee);
1997 INIT_LIST_HEAD(&device->sync_ee);
1998 INIT_LIST_HEAD(&device->done_ee);
1999 INIT_LIST_HEAD(&device->read_ee);
2000 INIT_LIST_HEAD(&device->net_ee);
2001 INIT_LIST_HEAD(&device->resync_reads);
2002 INIT_LIST_HEAD(&device->resync_work.list);
2003 INIT_LIST_HEAD(&device->unplug_work.list);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002004 INIT_LIST_HEAD(&device->bm_io_work.w.list);
Lars Ellenberg844a6ae72013-11-22 12:52:03 +01002005 INIT_LIST_HEAD(&device->pending_master_completion[0]);
2006 INIT_LIST_HEAD(&device->pending_master_completion[1]);
2007 INIT_LIST_HEAD(&device->pending_completion[0]);
2008 INIT_LIST_HEAD(&device->pending_completion[1]);
Philipp Reisner0ced55a2010-04-30 15:26:20 +02002009
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002010 device->resync_work.cb = w_resync_timer;
2011 device->unplug_work.cb = w_send_write_hint;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002012 device->bm_io_work.w.cb = w_bitmap_io;
Philipp Reisnera21e9292011-02-08 15:08:49 +01002013
Kees Cook2bccef32017-10-17 20:33:01 -07002014 timer_setup(&device->resync_timer, resync_timer_fn, 0);
2015 timer_setup(&device->md_sync_timer, md_sync_timer_fn, 0);
2016 timer_setup(&device->start_resync_timer, start_resync_timer_fn, 0);
2017 timer_setup(&device->request_timer, request_timer_fn, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002018
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002019 init_waitqueue_head(&device->misc_wait);
2020 init_waitqueue_head(&device->state_wait);
2021 init_waitqueue_head(&device->ee_wait);
2022 init_waitqueue_head(&device->al_wait);
2023 init_waitqueue_head(&device->seq_wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002024
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002025 device->resync_wenr = LC_FREE;
2026 device->peer_max_bio_size = DRBD_MAX_BIO_SIZE_SAFE;
2027 device->local_max_bio_size = DRBD_MAX_BIO_SIZE_SAFE;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002028}
2029
Lars Ellenbergd5412e82018-12-20 17:23:30 +01002030static void _drbd_set_my_capacity(struct drbd_device *device, sector_t size)
2031{
2032 /* set_capacity(device->this_bdev->bd_disk, size); */
2033 set_capacity(device->vdisk, size);
2034 device->this_bdev->bd_inode->i_size = (loff_t)size << 9;
2035}
2036
2037void drbd_set_my_capacity(struct drbd_device *device, sector_t size)
2038{
2039 char ppb[10];
2040 _drbd_set_my_capacity(device, size);
2041 drbd_info(device, "size = %s (%llu KB)\n",
2042 ppsize(ppb, size>>1), (unsigned long long)size>>1);
2043}
2044
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002045void drbd_device_cleanup(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002046{
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02002047 int i;
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02002048 if (first_peer_device(device)->connection->receiver.t_state != NONE)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002049 drbd_err(device, "ASSERT FAILED: receiver t_state == %d expected 0.\n",
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02002050 first_peer_device(device)->connection->receiver.t_state);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002051
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002052 device->al_writ_cnt =
2053 device->bm_writ_cnt =
2054 device->read_cnt =
2055 device->recv_cnt =
2056 device->send_cnt =
2057 device->writ_cnt =
2058 device->p_size =
2059 device->rs_start =
2060 device->rs_total =
2061 device->rs_failed = 0;
2062 device->rs_last_events = 0;
2063 device->rs_last_sect_ev = 0;
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02002064 for (i = 0; i < DRBD_SYNC_MARKS; i++) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002065 device->rs_mark_left[i] = 0;
2066 device->rs_mark_time[i] = 0;
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02002067 }
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02002068 D_ASSERT(device, first_peer_device(device)->connection->net_conf == NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002069
Lars Ellenbergd5412e82018-12-20 17:23:30 +01002070 _drbd_set_my_capacity(device, 0);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002071 if (device->bitmap) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002072 /* maybe never allocated. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002073 drbd_bm_resize(device, 0, 1);
2074 drbd_bm_cleanup(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002075 }
2076
Lars Ellenberg63a7c8a2015-03-26 20:53:55 +01002077 drbd_backing_dev_free(device, device->ldev);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002078 device->ldev = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002079
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002080 clear_bit(AL_SUSPENDED, &device->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002081
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02002082 D_ASSERT(device, list_empty(&device->active_ee));
2083 D_ASSERT(device, list_empty(&device->sync_ee));
2084 D_ASSERT(device, list_empty(&device->done_ee));
2085 D_ASSERT(device, list_empty(&device->read_ee));
2086 D_ASSERT(device, list_empty(&device->net_ee));
2087 D_ASSERT(device, list_empty(&device->resync_reads));
2088 D_ASSERT(device, list_empty(&first_peer_device(device)->connection->sender_work.q));
2089 D_ASSERT(device, list_empty(&device->resync_work.list));
2090 D_ASSERT(device, list_empty(&device->unplug_work.list));
Lars Ellenberg2265b472010-12-16 15:41:26 +01002091
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002092 drbd_set_defaults(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002093}
2094
2095
2096static void drbd_destroy_mempools(void)
2097{
2098 struct page *page;
2099
2100 while (drbd_pp_pool) {
2101 page = drbd_pp_pool;
2102 drbd_pp_pool = (struct page *)page_private(page);
2103 __free_page(page);
2104 drbd_pp_vacant--;
2105 }
2106
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02002107 /* D_ASSERT(device, atomic_read(&drbd_pp_vacant)==0); */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002108
Kent Overstreet0892fac2018-05-20 18:25:48 -04002109 bioset_exit(&drbd_io_bio_set);
2110 bioset_exit(&drbd_md_io_bio_set);
2111 mempool_exit(&drbd_md_io_page_pool);
2112 mempool_exit(&drbd_ee_mempool);
2113 mempool_exit(&drbd_request_mempool);
zhong jianga12fc002018-08-08 23:22:47 +08002114 kmem_cache_destroy(drbd_ee_cache);
2115 kmem_cache_destroy(drbd_request_cache);
2116 kmem_cache_destroy(drbd_bm_ext_cache);
2117 kmem_cache_destroy(drbd_al_ext_cache);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002118
Philipp Reisnerb411b362009-09-25 16:07:19 -07002119 drbd_ee_cache = NULL;
2120 drbd_request_cache = NULL;
2121 drbd_bm_ext_cache = NULL;
2122 drbd_al_ext_cache = NULL;
2123
2124 return;
2125}
2126
2127static int drbd_create_mempools(void)
2128{
2129 struct page *page;
Roland Kammerer183ece32017-08-29 10:20:46 +02002130 const int number = (DRBD_MAX_BIO_SIZE/PAGE_SIZE) * drbd_minor_count;
Kent Overstreet0892fac2018-05-20 18:25:48 -04002131 int i, ret;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002132
2133 /* caches */
2134 drbd_request_cache = kmem_cache_create(
2135 "drbd_req", sizeof(struct drbd_request), 0, 0, NULL);
2136 if (drbd_request_cache == NULL)
2137 goto Enomem;
2138
2139 drbd_ee_cache = kmem_cache_create(
Andreas Gruenbacherf6ffca92011-02-04 15:30:34 +01002140 "drbd_ee", sizeof(struct drbd_peer_request), 0, 0, NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002141 if (drbd_ee_cache == NULL)
2142 goto Enomem;
2143
2144 drbd_bm_ext_cache = kmem_cache_create(
2145 "drbd_bm", sizeof(struct bm_extent), 0, 0, NULL);
2146 if (drbd_bm_ext_cache == NULL)
2147 goto Enomem;
2148
2149 drbd_al_ext_cache = kmem_cache_create(
2150 "drbd_al", sizeof(struct lc_element), 0, 0, NULL);
2151 if (drbd_al_ext_cache == NULL)
2152 goto Enomem;
2153
2154 /* mempools */
Kent Overstreet0892fac2018-05-20 18:25:48 -04002155 ret = bioset_init(&drbd_io_bio_set, BIO_POOL_SIZE, 0, 0);
2156 if (ret)
NeilBrown8cb0def2017-06-18 14:38:58 +10002157 goto Enomem;
2158
Kent Overstreet0892fac2018-05-20 18:25:48 -04002159 ret = bioset_init(&drbd_md_io_bio_set, DRBD_MIN_POOL_PAGES, 0,
2160 BIOSET_NEED_BVECS);
2161 if (ret)
Lars Ellenberg9476f392011-02-23 17:02:01 +01002162 goto Enomem;
Lars Ellenberg9476f392011-02-23 17:02:01 +01002163
Kent Overstreet0892fac2018-05-20 18:25:48 -04002164 ret = mempool_init_page_pool(&drbd_md_io_page_pool, DRBD_MIN_POOL_PAGES, 0);
2165 if (ret)
Lars Ellenberg42818082011-02-23 12:39:46 +01002166 goto Enomem;
2167
Kent Overstreet0892fac2018-05-20 18:25:48 -04002168 ret = mempool_init_slab_pool(&drbd_request_mempool, number,
2169 drbd_request_cache);
2170 if (ret)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002171 goto Enomem;
2172
Kent Overstreet0892fac2018-05-20 18:25:48 -04002173 ret = mempool_init_slab_pool(&drbd_ee_mempool, number, drbd_ee_cache);
2174 if (ret)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002175 goto Enomem;
2176
2177 /* drbd's page pool */
2178 spin_lock_init(&drbd_pp_lock);
2179
2180 for (i = 0; i < number; i++) {
2181 page = alloc_page(GFP_HIGHUSER);
2182 if (!page)
2183 goto Enomem;
2184 set_page_private(page, (unsigned long)drbd_pp_pool);
2185 drbd_pp_pool = page;
2186 }
2187 drbd_pp_vacant = number;
2188
2189 return 0;
2190
2191Enomem:
2192 drbd_destroy_mempools(); /* in case we allocated some */
2193 return -ENOMEM;
2194}
2195
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002196static void drbd_release_all_peer_reqs(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002197{
2198 int rr;
2199
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002200 rr = drbd_free_peer_reqs(device, &device->active_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002201 if (rr)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002202 drbd_err(device, "%d EEs in active list found!\n", rr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002203
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002204 rr = drbd_free_peer_reqs(device, &device->sync_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002205 if (rr)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002206 drbd_err(device, "%d EEs in sync list found!\n", rr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002207
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002208 rr = drbd_free_peer_reqs(device, &device->read_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002209 if (rr)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002210 drbd_err(device, "%d EEs in read list found!\n", rr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002211
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002212 rr = drbd_free_peer_reqs(device, &device->done_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002213 if (rr)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002214 drbd_err(device, "%d EEs in done list found!\n", rr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002215
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002216 rr = drbd_free_peer_reqs(device, &device->net_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002217 if (rr)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002218 drbd_err(device, "%d EEs in net list found!\n", rr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002219}
2220
Philipp Reisner774b3052011-02-22 02:07:03 -05002221/* caution. no locking. */
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +02002222void drbd_destroy_device(struct kref *kref)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002223{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002224 struct drbd_device *device = container_of(kref, struct drbd_device, kref);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002225 struct drbd_resource *resource = device->resource;
Lars Ellenberga8ba0d62014-05-14 21:34:47 +02002226 struct drbd_peer_device *peer_device, *tmp_peer_device;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002227
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002228 del_timer_sync(&device->request_timer);
Philipp Reisnerdfa8bed2011-06-29 14:06:08 +02002229
Philipp Reisnerb411b362009-09-25 16:07:19 -07002230 /* paranoia asserts */
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02002231 D_ASSERT(device, device->open_cnt == 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002232 /* end paranoia asserts */
2233
Philipp Reisnerb411b362009-09-25 16:07:19 -07002234 /* cleanup stuff that may have been allocated during
2235 * device (re-)configuration or state changes */
2236
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002237 if (device->this_bdev)
2238 bdput(device->this_bdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002239
Lars Ellenberg63a7c8a2015-03-26 20:53:55 +01002240 drbd_backing_dev_free(device, device->ldev);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002241 device->ldev = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002242
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002243 drbd_release_all_peer_reqs(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002244
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002245 lc_destroy(device->act_log);
2246 lc_destroy(device->resync);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002247
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002248 kfree(device->p_uuid);
2249 /* device->p_uuid = NULL; */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002250
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002251 if (device->bitmap) /* should no longer be there. */
2252 drbd_bm_cleanup(device);
Lars Ellenberge37d2432014-04-01 23:53:30 +02002253 __free_page(device->md_io.page);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002254 put_disk(device->vdisk);
2255 blk_cleanup_queue(device->rq_queue);
2256 kfree(device->rs_plan_s);
Lars Ellenberga8ba0d62014-05-14 21:34:47 +02002257
2258 /* not for_each_connection(connection, resource):
2259 * those may have been cleaned up and disassociated already.
2260 */
2261 for_each_peer_device_safe(peer_device, tmp_peer_device, device) {
2262 kref_put(&peer_device->connection->kref, drbd_destroy_connection);
2263 kfree(peer_device);
2264 }
Lars Ellenbergc2258ff2014-05-14 21:35:21 +02002265 memset(device, 0xfd, sizeof(*device));
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002266 kfree(device);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002267 kref_put(&resource->kref, drbd_destroy_resource);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002268}
2269
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002270/* One global retry thread, if we need to push back some bio and have it
2271 * reinserted through our make request function.
2272 */
2273static struct retry_worker {
2274 struct workqueue_struct *wq;
2275 struct work_struct worker;
2276
2277 spinlock_t lock;
2278 struct list_head writes;
2279} retry;
2280
2281static void do_retry(struct work_struct *ws)
2282{
2283 struct retry_worker *retry = container_of(ws, struct retry_worker, worker);
2284 LIST_HEAD(writes);
2285 struct drbd_request *req, *tmp;
2286
2287 spin_lock_irq(&retry->lock);
2288 list_splice_init(&retry->writes, &writes);
2289 spin_unlock_irq(&retry->lock);
2290
2291 list_for_each_entry_safe(req, tmp, &writes, tl_requests) {
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02002292 struct drbd_device *device = req->device;
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002293 struct bio *bio = req->master_bio;
Lars Ellenberge5f891b2013-11-22 12:32:01 +01002294 unsigned long start_jif = req->start_jif;
Lars Ellenberg9a278a72012-07-24 10:12:36 +02002295 bool expected;
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002296
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02002297 expected =
Lars Ellenberg9a278a72012-07-24 10:12:36 +02002298 expect(atomic_read(&req->completion_ref) == 0) &&
2299 expect(req->rq_state & RQ_POSTPONED) &&
2300 expect((req->rq_state & RQ_LOCAL_PENDING) == 0 ||
2301 (req->rq_state & RQ_LOCAL_ABORTED) != 0);
2302
2303 if (!expected)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002304 drbd_err(device, "req=%p completion_ref=%d rq_state=%x\n",
Lars Ellenberg9a278a72012-07-24 10:12:36 +02002305 req, atomic_read(&req->completion_ref),
2306 req->rq_state);
2307
2308 /* We still need to put one kref associated with the
2309 * "completion_ref" going zero in the code path that queued it
2310 * here. The request object may still be referenced by a
2311 * frozen local req->private_bio, in case we force-detached.
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002312 */
Lars Ellenberg9a278a72012-07-24 10:12:36 +02002313 kref_put(&req->kref, drbd_req_destroy);
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002314
2315 /* A single suspended or otherwise blocking device may stall
2316 * all others as well. Fortunately, this code path is to
2317 * recover from a situation that "should not happen":
2318 * concurrent writes in multi-primary setup.
2319 * In a "normal" lifecycle, this workqueue is supposed to be
2320 * destroyed without ever doing anything.
2321 * If it turns out to be an issue anyways, we can do per
2322 * resource (replication group) or per device (minor) retry
2323 * workqueues instead.
2324 */
2325
2326 /* We are not just doing generic_make_request(),
2327 * as we want to keep the start_time information. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002328 inc_ap_bio(device);
Lars Ellenberge5f891b2013-11-22 12:32:01 +01002329 __drbd_make_request(device, bio, start_jif);
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002330 }
2331}
2332
Lars Ellenberg844a6ae72013-11-22 12:52:03 +01002333/* called via drbd_req_put_completion_ref(),
2334 * holds resource->req_lock */
Lars Ellenberg9d05e7c2012-07-17 10:05:04 +02002335void drbd_restart_request(struct drbd_request *req)
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002336{
2337 unsigned long flags;
2338 spin_lock_irqsave(&retry.lock, flags);
2339 list_move_tail(&req->tl_requests, &retry.writes);
2340 spin_unlock_irqrestore(&retry.lock, flags);
2341
2342 /* Drop the extra reference that would otherwise
2343 * have been dropped by complete_master_bio.
2344 * do_retry() needs to grab a new one. */
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02002345 dec_ap_bio(req->device);
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002346
2347 queue_work(retry.wq, &retry.worker);
2348}
2349
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002350void drbd_destroy_resource(struct kref *kref)
2351{
2352 struct drbd_resource *resource =
2353 container_of(kref, struct drbd_resource, kref);
2354
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002355 idr_destroy(&resource->devices);
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +02002356 free_cpumask_var(resource->cpu_mask);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002357 kfree(resource->name);
Lars Ellenbergc2258ff2014-05-14 21:35:21 +02002358 memset(resource, 0xf2, sizeof(*resource));
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002359 kfree(resource);
2360}
2361
2362void drbd_free_resource(struct drbd_resource *resource)
2363{
2364 struct drbd_connection *connection, *tmp;
2365
2366 for_each_connection_safe(connection, tmp, resource) {
2367 list_del(&connection->connections);
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002368 drbd_debugfs_connection_cleanup(connection);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002369 kref_put(&connection->kref, drbd_destroy_connection);
2370 }
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002371 drbd_debugfs_resource_cleanup(resource);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002372 kref_put(&resource->kref, drbd_destroy_resource);
2373}
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002374
Philipp Reisnerb411b362009-09-25 16:07:19 -07002375static void drbd_cleanup(void)
2376{
2377 unsigned int i;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002378 struct drbd_device *device;
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002379 struct drbd_resource *resource, *tmp;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002380
Lars Ellenberg17a93f32010-11-24 10:37:35 +01002381 /* first remove proc,
2382 * drbdsetup uses it's presence to detect
2383 * whether DRBD is loaded.
2384 * If we would get stuck in proc removal,
2385 * but have netlink already deregistered,
2386 * some drbdsetup commands may wait forever
2387 * for an answer.
2388 */
2389 if (drbd_proc)
2390 remove_proc_entry("drbd", NULL);
2391
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002392 if (retry.wq)
2393 destroy_workqueue(retry.wq);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002394
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002395 drbd_genl_unregister();
Philipp Reisnerb411b362009-09-25 16:07:19 -07002396
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002397 idr_for_each_entry(&drbd_devices, device, i)
Andreas Gruenbacherf82795d2011-07-03 23:32:26 +02002398 drbd_delete_device(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002399
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002400 /* not _rcu since, no other updater anymore. Genl already unregistered */
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002401 for_each_resource_safe(resource, tmp, &drbd_resources) {
2402 list_del(&resource->resources);
2403 drbd_free_resource(resource);
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002404 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07002405
Lars Ellenberg3f1a1b72017-08-29 10:20:41 +02002406 drbd_debugfs_cleanup();
2407
Philipp Reisner81a5d602011-02-22 19:53:16 -05002408 drbd_destroy_mempools();
Philipp Reisnerb411b362009-09-25 16:07:19 -07002409 unregister_blkdev(DRBD_MAJOR, "drbd");
2410
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +02002411 idr_destroy(&drbd_devices);
Philipp Reisner81a5d602011-02-22 19:53:16 -05002412
Lars Ellenbergf88c5d92014-03-27 14:10:55 +01002413 pr_info("module cleanup done.\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07002414}
2415
2416/**
Artem Bityutskiyd97482e2012-07-25 18:12:12 +03002417 * drbd_congested() - Callback for the flusher thread
Philipp Reisnerb411b362009-09-25 16:07:19 -07002418 * @congested_data: User data
Artem Bityutskiyd97482e2012-07-25 18:12:12 +03002419 * @bdi_bits: Bits the BDI flusher thread is currently interested in
Philipp Reisnerb411b362009-09-25 16:07:19 -07002420 *
Tejun Heo44522262015-05-22 17:13:26 -04002421 * Returns 1<<WB_async_congested and/or 1<<WB_sync_congested if we are congested.
Philipp Reisnerb411b362009-09-25 16:07:19 -07002422 */
2423static int drbd_congested(void *congested_data, int bdi_bits)
2424{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002425 struct drbd_device *device = congested_data;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002426 struct request_queue *q;
2427 char reason = '-';
2428 int r = 0;
2429
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002430 if (!may_inc_ap_bio(device)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002431 /* DRBD has frozen IO */
2432 r = bdi_bits;
2433 reason = 'd';
2434 goto out;
2435 }
2436
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02002437 if (test_bit(CALLBACK_PENDING, &first_peer_device(device)->connection->flags)) {
Tejun Heo44522262015-05-22 17:13:26 -04002438 r |= (1 << WB_async_congested);
Lars Ellenbergc2ba6862012-06-14 15:14:06 +02002439 /* Without good local data, we would need to read from remote,
2440 * and that would need the worker thread as well, which is
2441 * currently blocked waiting for that usermode helper to
2442 * finish.
2443 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002444 if (!get_ldev_if_state(device, D_UP_TO_DATE))
Tejun Heo44522262015-05-22 17:13:26 -04002445 r |= (1 << WB_sync_congested);
Lars Ellenbergc2ba6862012-06-14 15:14:06 +02002446 else
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002447 put_ldev(device);
Lars Ellenbergc2ba6862012-06-14 15:14:06 +02002448 r &= bdi_bits;
2449 reason = 'c';
2450 goto out;
2451 }
2452
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002453 if (get_ldev(device)) {
2454 q = bdev_get_queue(device->ldev->backing_bdev);
Jan Karadc3b17c2017-02-02 15:56:50 +01002455 r = bdi_congested(q->backing_dev_info, bdi_bits);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002456 put_ldev(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002457 if (r)
2458 reason = 'b';
2459 }
2460
Tejun Heo44522262015-05-22 17:13:26 -04002461 if (bdi_bits & (1 << WB_async_congested) &&
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02002462 test_bit(NET_CONGESTED, &first_peer_device(device)->connection->flags)) {
Tejun Heo44522262015-05-22 17:13:26 -04002463 r |= (1 << WB_async_congested);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002464 reason = reason == 'b' ? 'a' : 'n';
2465 }
2466
2467out:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002468 device->congestion_reason = reason;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002469 return r;
2470}
2471
Philipp Reisner6699b652011-02-09 11:10:24 +01002472static void drbd_init_workqueue(struct drbd_work_queue* wq)
2473{
Philipp Reisner6699b652011-02-09 11:10:24 +01002474 spin_lock_init(&wq->q_lock);
2475 INIT_LIST_HEAD(&wq->q);
Lars Ellenberg8c0785a2011-10-19 11:50:57 +02002476 init_waitqueue_head(&wq->q_wait);
Philipp Reisner6699b652011-02-09 11:10:24 +01002477}
2478
Andreas Gruenbacherb5043c52011-07-28 15:56:02 +02002479struct completion_work {
2480 struct drbd_work w;
2481 struct completion done;
2482};
2483
2484static int w_complete(struct drbd_work *w, int cancel)
2485{
2486 struct completion_work *completion_work =
2487 container_of(w, struct completion_work, w);
2488
2489 complete(&completion_work->done);
2490 return 0;
2491}
2492
2493void drbd_flush_workqueue(struct drbd_work_queue *work_queue)
2494{
2495 struct completion_work completion_work;
2496
2497 completion_work.w.cb = w_complete;
2498 init_completion(&completion_work.done);
2499 drbd_queue_work(work_queue, &completion_work.w);
2500 wait_for_completion(&completion_work.done);
2501}
2502
Andreas Gruenbacher4bc76042011-06-13 14:27:45 +02002503struct drbd_resource *drbd_find_resource(const char *name)
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002504{
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002505 struct drbd_resource *resource;
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002506
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002507 if (!name || !name[0])
2508 return NULL;
2509
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002510 rcu_read_lock();
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002511 for_each_resource_rcu(resource, &drbd_resources) {
2512 if (!strcmp(resource->name, name)) {
Andreas Gruenbacher4bc76042011-06-13 14:27:45 +02002513 kref_get(&resource->kref);
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002514 goto found;
Philipp Reisner0ace9df2011-04-24 10:53:19 +02002515 }
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002516 }
Andreas Gruenbacher4bc76042011-06-13 14:27:45 +02002517 resource = NULL;
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002518found:
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002519 rcu_read_unlock();
Andreas Gruenbacher4bc76042011-06-13 14:27:45 +02002520 return resource;
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002521}
2522
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002523struct drbd_connection *conn_get_by_addrs(void *my_addr, int my_addr_len,
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002524 void *peer_addr, int peer_addr_len)
2525{
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002526 struct drbd_resource *resource;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002527 struct drbd_connection *connection;
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002528
2529 rcu_read_lock();
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002530 for_each_resource_rcu(resource, &drbd_resources) {
2531 for_each_connection_rcu(connection, resource) {
2532 if (connection->my_addr_len == my_addr_len &&
2533 connection->peer_addr_len == peer_addr_len &&
2534 !memcmp(&connection->my_addr, my_addr, my_addr_len) &&
2535 !memcmp(&connection->peer_addr, peer_addr, peer_addr_len)) {
2536 kref_get(&connection->kref);
2537 goto found;
2538 }
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002539 }
2540 }
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002541 connection = NULL;
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002542found:
2543 rcu_read_unlock();
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002544 return connection;
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002545}
2546
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002547static int drbd_alloc_socket(struct drbd_socket *socket)
2548{
2549 socket->rbuf = (void *) __get_free_page(GFP_KERNEL);
2550 if (!socket->rbuf)
2551 return -ENOMEM;
Andreas Gruenbacher5a87d922011-03-24 21:17:52 +01002552 socket->sbuf = (void *) __get_free_page(GFP_KERNEL);
2553 if (!socket->sbuf)
2554 return -ENOMEM;
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002555 return 0;
2556}
2557
2558static void drbd_free_socket(struct drbd_socket *socket)
2559{
Andreas Gruenbacher5a87d922011-03-24 21:17:52 +01002560 free_page((unsigned long) socket->sbuf);
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002561 free_page((unsigned long) socket->rbuf);
2562}
2563
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002564void conn_free_crypto(struct drbd_connection *connection)
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002565{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002566 drbd_free_sock(connection);
Philipp Reisner1d041222011-04-22 15:20:23 +02002567
Kees Cook3d0e6372018-08-06 16:32:16 -07002568 crypto_free_shash(connection->csums_tfm);
2569 crypto_free_shash(connection->verify_tfm);
Herbert Xu9534d672016-01-24 21:19:21 +08002570 crypto_free_shash(connection->cram_hmac_tfm);
Kees Cook3d0e6372018-08-06 16:32:16 -07002571 crypto_free_shash(connection->integrity_tfm);
2572 crypto_free_shash(connection->peer_integrity_tfm);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002573 kfree(connection->int_dig_in);
2574 kfree(connection->int_dig_vv);
Philipp Reisner1d041222011-04-22 15:20:23 +02002575
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002576 connection->csums_tfm = NULL;
2577 connection->verify_tfm = NULL;
2578 connection->cram_hmac_tfm = NULL;
2579 connection->integrity_tfm = NULL;
2580 connection->peer_integrity_tfm = NULL;
2581 connection->int_dig_in = NULL;
2582 connection->int_dig_vv = NULL;
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002583}
2584
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002585int set_resource_options(struct drbd_resource *resource, struct res_opts *res_opts)
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002586{
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002587 struct drbd_connection *connection;
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002588 cpumask_var_t new_cpu_mask;
2589 int err;
2590
2591 if (!zalloc_cpumask_var(&new_cpu_mask, GFP_KERNEL))
2592 return -ENOMEM;
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002593
2594 /* silently ignore cpu mask on UP kernel */
2595 if (nr_cpu_ids > 1 && res_opts->cpu_mask[0] != 0) {
Andreas Gruenbacherf44d0432011-07-22 13:53:19 +02002596 err = bitmap_parse(res_opts->cpu_mask, DRBD_CPU_MASK_SIZE,
Philipp Reisnerc5b005a2012-04-30 12:53:52 +02002597 cpumask_bits(new_cpu_mask), nr_cpu_ids);
Lars Ellenberg1e391522014-05-19 09:52:02 +02002598 if (err == -EOVERFLOW) {
2599 /* So what. mask it out. */
2600 cpumask_var_t tmp_cpu_mask;
2601 if (zalloc_cpumask_var(&tmp_cpu_mask, GFP_KERNEL)) {
2602 cpumask_setall(tmp_cpu_mask);
2603 cpumask_and(new_cpu_mask, new_cpu_mask, tmp_cpu_mask);
2604 drbd_warn(resource, "Overflow in bitmap_parse(%.12s%s), truncating to %u bits\n",
2605 res_opts->cpu_mask,
2606 strlen(res_opts->cpu_mask) > 12 ? "..." : "",
2607 nr_cpu_ids);
2608 free_cpumask_var(tmp_cpu_mask);
2609 err = 0;
2610 }
2611 }
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002612 if (err) {
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +02002613 drbd_warn(resource, "bitmap_parse() failed with %d\n", err);
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002614 /* retcode = ERR_CPU_MASK_PARSE; */
2615 goto fail;
2616 }
2617 }
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002618 resource->res_opts = *res_opts;
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +02002619 if (cpumask_empty(new_cpu_mask))
2620 drbd_calc_cpu_mask(&new_cpu_mask);
2621 if (!cpumask_equal(resource->cpu_mask, new_cpu_mask)) {
2622 cpumask_copy(resource->cpu_mask, new_cpu_mask);
2623 for_each_connection_rcu(connection, resource) {
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002624 connection->receiver.reset_cpu_mask = 1;
Philipp Reisner1c03e522015-03-16 15:01:00 +01002625 connection->ack_receiver.reset_cpu_mask = 1;
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002626 connection->worker.reset_cpu_mask = 1;
2627 }
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002628 }
2629 err = 0;
2630
2631fail:
2632 free_cpumask_var(new_cpu_mask);
2633 return err;
2634
2635}
2636
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002637struct drbd_resource *drbd_create_resource(const char *name)
2638{
2639 struct drbd_resource *resource;
2640
Andreas Gruenbacher6bbf53c2011-07-08 01:19:44 +02002641 resource = kzalloc(sizeof(struct drbd_resource), GFP_KERNEL);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002642 if (!resource)
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +02002643 goto fail;
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002644 resource->name = kstrdup(name, GFP_KERNEL);
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +02002645 if (!resource->name)
2646 goto fail_free_resource;
2647 if (!zalloc_cpumask_var(&resource->cpu_mask, GFP_KERNEL))
2648 goto fail_free_name;
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002649 kref_init(&resource->kref);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002650 idr_init(&resource->devices);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002651 INIT_LIST_HEAD(&resource->connections);
Andreas Gruenbacherf6ba8632014-08-13 18:33:55 +02002652 resource->write_ordering = WO_BDEV_FLUSH;
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002653 list_add_tail_rcu(&resource->resources, &drbd_resources);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02002654 mutex_init(&resource->conf_update);
Lars Ellenberg9e276872014-04-28 18:43:22 +02002655 mutex_init(&resource->adm_mutex);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02002656 spin_lock_init(&resource->req_lock);
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002657 drbd_debugfs_resource_add(resource);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002658 return resource;
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +02002659
2660fail_free_name:
2661 kfree(resource->name);
2662fail_free_resource:
2663 kfree(resource);
2664fail:
2665 return NULL;
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002666}
2667
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002668/* caller must be under adm_mutex */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002669struct drbd_connection *conn_create(const char *name, struct res_opts *res_opts)
Philipp Reisner21114382011-01-19 12:26:59 +01002670{
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002671 struct drbd_resource *resource;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002672 struct drbd_connection *connection;
Philipp Reisner21114382011-01-19 12:26:59 +01002673
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002674 connection = kzalloc(sizeof(struct drbd_connection), GFP_KERNEL);
2675 if (!connection)
Philipp Reisner21114382011-01-19 12:26:59 +01002676 return NULL;
2677
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002678 if (drbd_alloc_socket(&connection->data))
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002679 goto fail;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002680 if (drbd_alloc_socket(&connection->meta))
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002681 goto fail;
2682
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002683 connection->current_epoch = kzalloc(sizeof(struct drbd_epoch), GFP_KERNEL);
2684 if (!connection->current_epoch)
Philipp Reisner12038a32011-11-09 19:18:00 +01002685 goto fail;
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01002686
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002687 INIT_LIST_HEAD(&connection->transfer_log);
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01002688
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002689 INIT_LIST_HEAD(&connection->current_epoch->list);
2690 connection->epochs = 1;
2691 spin_lock_init(&connection->epoch_lock);
Philipp Reisner4b0007c2011-11-09 20:12:34 +01002692
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002693 connection->send.seen_any_write_yet = false;
2694 connection->send.current_epoch_nr = 0;
2695 connection->send.current_epoch_writes = 0;
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01002696
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002697 resource = drbd_create_resource(name);
2698 if (!resource)
2699 goto fail;
2700
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002701 connection->cstate = C_STANDALONE;
2702 mutex_init(&connection->cstate_mutex);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002703 init_waitqueue_head(&connection->ping_wait);
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02002704 idr_init(&connection->peer_devices);
Philipp Reisnerb2fb6dbe2011-01-19 13:48:44 +01002705
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002706 drbd_init_workqueue(&connection->sender_work);
2707 mutex_init(&connection->data.mutex);
2708 mutex_init(&connection->meta.mutex);
Philipp Reisner6699b652011-02-09 11:10:24 +01002709
Andreas Gruenbacher2457b6d2011-07-21 13:45:21 +02002710 drbd_thread_init(resource, &connection->receiver, drbd_receiver, "receiver");
2711 connection->receiver.connection = connection;
2712 drbd_thread_init(resource, &connection->worker, drbd_worker, "worker");
2713 connection->worker.connection = connection;
Philipp Reisner1c03e522015-03-16 15:01:00 +01002714 drbd_thread_init(resource, &connection->ack_receiver, drbd_ack_receiver, "ack_recv");
2715 connection->ack_receiver.connection = connection;
Philipp Reisner392c8802011-02-09 10:33:31 +01002716
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002717 kref_init(&connection->kref);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002718
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002719 connection->resource = resource;
Philipp Reisner21114382011-01-19 12:26:59 +01002720
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002721 if (set_resource_options(resource, res_opts))
2722 goto fail_resource;
2723
2724 kref_get(&resource->kref);
2725 list_add_tail_rcu(&connection->connections, &resource->connections);
Lars Ellenberg4d3d5aa2014-05-02 13:19:51 +02002726 drbd_debugfs_connection_add(connection);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002727 return connection;
Philipp Reisner21114382011-01-19 12:26:59 +01002728
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002729fail_resource:
2730 list_del(&resource->resources);
2731 drbd_free_resource(resource);
Philipp Reisner21114382011-01-19 12:26:59 +01002732fail:
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002733 kfree(connection->current_epoch);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002734 drbd_free_socket(&connection->meta);
2735 drbd_free_socket(&connection->data);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002736 kfree(connection);
Philipp Reisner21114382011-01-19 12:26:59 +01002737 return NULL;
2738}
2739
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +02002740void drbd_destroy_connection(struct kref *kref)
Philipp Reisner21114382011-01-19 12:26:59 +01002741{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002742 struct drbd_connection *connection = container_of(kref, struct drbd_connection, kref);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002743 struct drbd_resource *resource = connection->resource;
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002744
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002745 if (atomic_read(&connection->current_epoch->epoch_size) != 0)
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +02002746 drbd_err(connection, "epoch_size:%d\n", atomic_read(&connection->current_epoch->epoch_size));
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002747 kfree(connection->current_epoch);
Philipp Reisner12038a32011-11-09 19:18:00 +01002748
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02002749 idr_destroy(&connection->peer_devices);
Philipp Reisner21114382011-01-19 12:26:59 +01002750
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002751 drbd_free_socket(&connection->meta);
2752 drbd_free_socket(&connection->data);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002753 kfree(connection->int_dig_in);
2754 kfree(connection->int_dig_vv);
Lars Ellenbergc2258ff2014-05-14 21:35:21 +02002755 memset(connection, 0xfc, sizeof(*connection));
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002756 kfree(connection);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002757 kref_put(&resource->kref, drbd_destroy_resource);
Philipp Reisner21114382011-01-19 12:26:59 +01002758}
2759
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002760static int init_submitter(struct drbd_device *device)
Lars Ellenberg113fef92013-03-22 18:14:40 -06002761{
2762 /* opencoded create_singlethread_workqueue(),
2763 * to be able to say "drbd%d", ..., minor */
Lars Ellenberg39e91a62015-03-24 10:40:26 +01002764 device->submit.wq =
2765 alloc_ordered_workqueue("drbd%u_submit", WQ_MEM_RECLAIM, device->minor);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002766 if (!device->submit.wq)
Lars Ellenberg113fef92013-03-22 18:14:40 -06002767 return -ENOMEM;
2768
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002769 INIT_WORK(&device->submit.worker, do_submit);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002770 INIT_LIST_HEAD(&device->submit.writes);
Lars Ellenberg113fef92013-03-22 18:14:40 -06002771 return 0;
2772}
2773
Lars Ellenberga910b122014-04-28 18:43:21 +02002774enum drbd_ret_code drbd_create_device(struct drbd_config_context *adm_ctx, unsigned int minor)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002775{
Lars Ellenberga910b122014-04-28 18:43:21 +02002776 struct drbd_resource *resource = adm_ctx->resource;
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002777 struct drbd_connection *connection;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002778 struct drbd_device *device;
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002779 struct drbd_peer_device *peer_device, *tmp_peer_device;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002780 struct gendisk *disk;
2781 struct request_queue *q;
Andreas Gruenbacher93e4bf72013-05-23 14:57:17 +02002782 int id;
Lars Ellenberga910b122014-04-28 18:43:21 +02002783 int vnr = adm_ctx->volume;
Lars Ellenberg8432b312011-03-08 16:11:16 +01002784 enum drbd_ret_code err = ERR_NOMEM;
Philipp Reisner774b3052011-02-22 02:07:03 -05002785
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002786 device = minor_to_device(minor);
2787 if (device)
Andreas Gruenbacher179e20b82014-11-10 17:21:09 +01002788 return ERR_MINOR_OR_VOLUME_EXISTS;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002789
2790 /* GFP_KERNEL, we are outside of all write-out paths */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002791 device = kzalloc(sizeof(struct drbd_device), GFP_KERNEL);
2792 if (!device)
Philipp Reisner774b3052011-02-22 02:07:03 -05002793 return ERR_NOMEM;
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002794 kref_init(&device->kref);
2795
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002796 kref_get(&resource->kref);
2797 device->resource = resource;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002798 device->minor = minor;
2799 device->vnr = vnr;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002800
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002801 drbd_init_set_defaults(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002802
Christoph Hellwig6d469642018-11-14 17:02:18 +01002803 q = blk_alloc_queue_node(GFP_KERNEL, NUMA_NO_NODE);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002804 if (!q)
2805 goto out_no_q;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002806 device->rq_queue = q;
2807 q->queuedata = device;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002808
2809 disk = alloc_disk(1);
2810 if (!disk)
2811 goto out_no_disk;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002812 device->vdisk = disk;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002813
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01002814 set_disk_ro(disk, true);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002815
2816 disk->queue = q;
2817 disk->major = DRBD_MAJOR;
2818 disk->first_minor = minor;
2819 disk->fops = &drbd_ops;
2820 sprintf(disk->disk_name, "drbd%d", minor);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002821 disk->private_data = device;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002822
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002823 device->this_bdev = bdget(MKDEV(DRBD_MAJOR, minor));
Philipp Reisnerb411b362009-09-25 16:07:19 -07002824 /* we have no partitions. we contain only ourselves. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002825 device->this_bdev->bd_contains = device->this_bdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002826
Jan Karadc3b17c2017-02-02 15:56:50 +01002827 q->backing_dev_info->congested_fn = drbd_congested;
2828 q->backing_dev_info->congested_data = device;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002829
Andreas Gruenbacher2f58dcf2010-12-13 17:48:19 +01002830 blk_queue_make_request(q, drbd_make_request);
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 */
Lars Ellenbergca0e6092010-10-14 15:01:21 +02003416#ifdef DEBUG
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003417void drbd_md_mark_dirty_(struct drbd_device *device, unsigned int line, const char *func)
Lars Ellenbergee15b032010-09-03 10:00:09 +02003418{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003419 if (!test_and_set_bit(MD_DIRTY, &device->flags)) {
3420 mod_timer(&device->md_sync_timer, jiffies + HZ);
3421 device->last_md_mark_dirty.line = line;
3422 device->last_md_mark_dirty.func = func;
Lars Ellenbergee15b032010-09-03 10:00:09 +02003423 }
3424}
3425#else
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003426void drbd_md_mark_dirty(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003427{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003428 if (!test_and_set_bit(MD_DIRTY, &device->flags))
3429 mod_timer(&device->md_sync_timer, jiffies + 5*HZ);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003430}
Lars Ellenbergee15b032010-09-03 10:00:09 +02003431#endif
Philipp Reisnerb411b362009-09-25 16:07:19 -07003432
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003433void drbd_uuid_move_history(struct drbd_device *device) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003434{
3435 int i;
3436
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003437 for (i = UI_HISTORY_START; i < UI_HISTORY_END; i++)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003438 device->ldev->md.uuid[i+1] = device->ldev->md.uuid[i];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003439}
3440
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003441void __drbd_uuid_set(struct drbd_device *device, int idx, u64 val) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003442{
3443 if (idx == UI_CURRENT) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003444 if (device->state.role == R_PRIMARY)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003445 val |= 1;
3446 else
3447 val &= ~((u64)1);
3448
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003449 drbd_set_ed_uuid(device, val);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003450 }
3451
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003452 device->ldev->md.uuid[idx] = val;
3453 drbd_md_mark_dirty(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003454}
3455
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003456void _drbd_uuid_set(struct drbd_device *device, int idx, u64 val) __must_hold(local)
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003457{
3458 unsigned long flags;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003459 spin_lock_irqsave(&device->ldev->md.uuid_lock, flags);
3460 __drbd_uuid_set(device, idx, val);
3461 spin_unlock_irqrestore(&device->ldev->md.uuid_lock, flags);
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003462}
Philipp Reisnerb411b362009-09-25 16:07:19 -07003463
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003464void drbd_uuid_set(struct drbd_device *device, int idx, u64 val) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003465{
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003466 unsigned long flags;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003467 spin_lock_irqsave(&device->ldev->md.uuid_lock, flags);
3468 if (device->ldev->md.uuid[idx]) {
3469 drbd_uuid_move_history(device);
3470 device->ldev->md.uuid[UI_HISTORY_START] = device->ldev->md.uuid[idx];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003471 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003472 __drbd_uuid_set(device, idx, val);
3473 spin_unlock_irqrestore(&device->ldev->md.uuid_lock, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003474}
3475
3476/**
3477 * drbd_uuid_new_current() - Creates a new current UUID
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003478 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003479 *
3480 * Creates a new current UUID, and rotates the old current UUID into
3481 * the bitmap slot. Causes an incremental resync upon next connect.
3482 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003483void drbd_uuid_new_current(struct drbd_device *device) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003484{
3485 u64 val;
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003486 unsigned long long bm_uuid;
3487
3488 get_random_bytes(&val, sizeof(u64));
3489
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003490 spin_lock_irq(&device->ldev->md.uuid_lock);
3491 bm_uuid = device->ldev->md.uuid[UI_BITMAP];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003492
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003493 if (bm_uuid)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003494 drbd_warn(device, "bm UUID was already set: %llX\n", bm_uuid);
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003495
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003496 device->ldev->md.uuid[UI_BITMAP] = device->ldev->md.uuid[UI_CURRENT];
3497 __drbd_uuid_set(device, UI_CURRENT, val);
3498 spin_unlock_irq(&device->ldev->md.uuid_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003499
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003500 drbd_print_uuids(device, "new current UUID");
Lars Ellenbergaaa8e2b2010-10-15 13:16:53 +02003501 /* get it to stable storage _now_ */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003502 drbd_md_sync(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003503}
3504
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003505void drbd_uuid_set_bm(struct drbd_device *device, u64 val) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003506{
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003507 unsigned long flags;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003508 if (device->ldev->md.uuid[UI_BITMAP] == 0 && val == 0)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003509 return;
3510
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003511 spin_lock_irqsave(&device->ldev->md.uuid_lock, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003512 if (val == 0) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003513 drbd_uuid_move_history(device);
3514 device->ldev->md.uuid[UI_HISTORY_START] = device->ldev->md.uuid[UI_BITMAP];
3515 device->ldev->md.uuid[UI_BITMAP] = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003516 } else {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003517 unsigned long long bm_uuid = device->ldev->md.uuid[UI_BITMAP];
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003518 if (bm_uuid)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003519 drbd_warn(device, "bm UUID was already set: %llX\n", bm_uuid);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003520
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003521 device->ldev->md.uuid[UI_BITMAP] = val & ~((u64)1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003522 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003523 spin_unlock_irqrestore(&device->ldev->md.uuid_lock, flags);
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003524
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003525 drbd_md_mark_dirty(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003526}
3527
3528/**
3529 * drbd_bmio_set_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003530 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003531 *
3532 * Sets all bits in the bitmap and writes the whole bitmap to stable storage.
3533 */
Philipp Reisner8fe39aa2013-11-22 13:22:13 +01003534int drbd_bmio_set_n_write(struct drbd_device *device) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003535{
3536 int rv = -EIO;
3537
Philipp Reisner8fe39aa2013-11-22 13:22:13 +01003538 drbd_md_set_flag(device, MDF_FULL_SYNC);
3539 drbd_md_sync(device);
3540 drbd_bm_set_all(device);
3541
3542 rv = drbd_bm_write(device);
3543
3544 if (!rv) {
3545 drbd_md_clear_flag(device, MDF_FULL_SYNC);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003546 drbd_md_sync(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003547 }
3548
3549 return rv;
3550}
3551
3552/**
3553 * drbd_bmio_clear_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003554 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003555 *
3556 * Clears all bits in the bitmap and writes the whole bitmap to stable storage.
3557 */
Philipp Reisner8fe39aa2013-11-22 13:22:13 +01003558int drbd_bmio_clear_n_write(struct drbd_device *device) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003559{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003560 drbd_resume_al(device);
Philipp Reisner8fe39aa2013-11-22 13:22:13 +01003561 drbd_bm_clear_all(device);
3562 return drbd_bm_write(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003563}
3564
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003565static int w_bitmap_io(struct drbd_work *w, int unused)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003566{
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02003567 struct drbd_device *device =
3568 container_of(w, struct drbd_device, bm_io_work.w);
3569 struct bm_io_work *work = &device->bm_io_work;
Lars Ellenberg02851e92010-12-16 14:47:39 +01003570 int rv = -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003571
Lars Ellenbergbca1cba2016-06-14 00:26:16 +02003572 if (work->flags != BM_LOCKED_CHANGE_ALLOWED) {
3573 int cnt = atomic_read(&device->ap_bio_cnt);
3574 if (cnt)
3575 drbd_err(device, "FIXME: ap_bio_cnt %d, expected 0; queued for '%s'\n",
3576 cnt, work->why);
3577 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07003578
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003579 if (get_ldev(device)) {
3580 drbd_bm_lock(device, work->why, work->flags);
3581 rv = work->io_fn(device);
3582 drbd_bm_unlock(device);
3583 put_ldev(device);
Lars Ellenberg02851e92010-12-16 14:47:39 +01003584 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07003585
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003586 clear_bit_unlock(BITMAP_IO, &device->flags);
3587 wake_up(&device->misc_wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003588
3589 if (work->done)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003590 work->done(device, rv);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003591
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003592 clear_bit(BITMAP_IO_QUEUED, &device->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003593 work->why = NULL;
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003594 work->flags = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003595
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003596 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003597}
3598
3599/**
3600 * drbd_queue_bitmap_io() - Queues an IO operation on the whole bitmap
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003601 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003602 * @io_fn: IO callback to be called when bitmap IO is possible
3603 * @done: callback to be called after the bitmap IO was performed
3604 * @why: Descriptive text of the reason for doing the IO
3605 *
3606 * While IO on the bitmap happens we freeze application IO thus we ensure
3607 * that drbd_set_out_of_sync() can not be called. This function MAY ONLY be
3608 * called from worker context. It MUST NOT be used while a previous such
3609 * work is still pending!
Philipp Reisner8fe39aa2013-11-22 13:22:13 +01003610 *
3611 * Its worker function encloses the call of io_fn() by get_ldev() and
3612 * put_ldev().
Philipp Reisnerb411b362009-09-25 16:07:19 -07003613 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003614void drbd_queue_bitmap_io(struct drbd_device *device,
Andreas Gruenbacher54761692011-05-30 16:15:21 +02003615 int (*io_fn)(struct drbd_device *),
3616 void (*done)(struct drbd_device *, int),
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003617 char *why, enum bm_flag flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003618{
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02003619 D_ASSERT(device, current == first_peer_device(device)->connection->worker.task);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003620
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02003621 D_ASSERT(device, !test_bit(BITMAP_IO_QUEUED, &device->flags));
3622 D_ASSERT(device, !test_bit(BITMAP_IO, &device->flags));
3623 D_ASSERT(device, list_empty(&device->bm_io_work.w.list));
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003624 if (device->bm_io_work.why)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003625 drbd_err(device, "FIXME going to queue '%s' but '%s' still pending?\n",
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003626 why, device->bm_io_work.why);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003627
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003628 device->bm_io_work.io_fn = io_fn;
3629 device->bm_io_work.done = done;
3630 device->bm_io_work.why = why;
3631 device->bm_io_work.flags = flags;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003632
Andreas Gruenbacher05008132011-07-07 14:19:42 +02003633 spin_lock_irq(&device->resource->req_lock);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003634 set_bit(BITMAP_IO, &device->flags);
Lars Ellenberg5bded4e2015-04-16 16:51:34 +02003635 /* don't wait for pending application IO if the caller indicates that
3636 * application IO does not conflict anyways. */
3637 if (flags == BM_LOCKED_CHANGE_ALLOWED || atomic_read(&device->ap_bio_cnt) == 0) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003638 if (!test_and_set_bit(BITMAP_IO_QUEUED, &device->flags))
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02003639 drbd_queue_work(&first_peer_device(device)->connection->sender_work,
3640 &device->bm_io_work.w);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003641 }
Andreas Gruenbacher05008132011-07-07 14:19:42 +02003642 spin_unlock_irq(&device->resource->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003643}
3644
3645/**
3646 * drbd_bitmap_io() - Does an IO operation on the whole bitmap
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003647 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003648 * @io_fn: IO callback to be called when bitmap IO is possible
3649 * @why: Descriptive text of the reason for doing the IO
3650 *
3651 * freezes application IO while that the actual IO operations runs. This
3652 * functions MAY NOT be called from worker context.
3653 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003654int drbd_bitmap_io(struct drbd_device *device, int (*io_fn)(struct drbd_device *),
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003655 char *why, enum bm_flag flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003656{
Lars Ellenbergc0065f92016-06-14 00:26:10 +02003657 /* Only suspend io, if some operation is supposed to be locked out */
3658 const bool do_suspend_io = flags & (BM_DONT_CLEAR|BM_DONT_SET|BM_DONT_TEST);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003659 int rv;
3660
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02003661 D_ASSERT(device, current != first_peer_device(device)->connection->worker.task);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003662
Lars Ellenbergc0065f92016-06-14 00:26:10 +02003663 if (do_suspend_io)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003664 drbd_suspend_io(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003665
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003666 drbd_bm_lock(device, why, flags);
3667 rv = io_fn(device);
3668 drbd_bm_unlock(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003669
Lars Ellenbergc0065f92016-06-14 00:26:10 +02003670 if (do_suspend_io)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003671 drbd_resume_io(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003672
3673 return rv;
3674}
3675
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003676void drbd_md_set_flag(struct drbd_device *device, int flag) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003677{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003678 if ((device->ldev->md.flags & flag) != flag) {
3679 drbd_md_mark_dirty(device);
3680 device->ldev->md.flags |= flag;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003681 }
3682}
3683
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003684void drbd_md_clear_flag(struct drbd_device *device, int flag) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003685{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003686 if ((device->ldev->md.flags & flag) != 0) {
3687 drbd_md_mark_dirty(device);
3688 device->ldev->md.flags &= ~flag;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003689 }
3690}
3691int drbd_md_test_flag(struct drbd_backing_dev *bdev, int flag)
3692{
3693 return (bdev->md.flags & flag) != 0;
3694}
3695
Kees Cook2bccef32017-10-17 20:33:01 -07003696static void md_sync_timer_fn(struct timer_list *t)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003697{
Kees Cook2bccef32017-10-17 20:33:01 -07003698 struct drbd_device *device = from_timer(device, t, md_sync_timer);
Lars Ellenbergac0acb92014-02-11 09:47:58 +01003699 drbd_device_post_work(device, MD_SYNC);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003700}
3701
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01003702const char *cmdname(enum drbd_packet cmd)
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003703{
3704 /* THINK may need to become several global tables
3705 * when we want to support more than
3706 * one PRO_VERSION */
3707 static const char *cmdnames[] = {
3708 [P_DATA] = "Data",
Lars Ellenberg9104d312016-06-14 00:26:31 +02003709 [P_WSAME] = "WriteSame",
3710 [P_TRIM] = "Trim",
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003711 [P_DATA_REPLY] = "DataReply",
3712 [P_RS_DATA_REPLY] = "RSDataReply",
3713 [P_BARRIER] = "Barrier",
3714 [P_BITMAP] = "ReportBitMap",
3715 [P_BECOME_SYNC_TARGET] = "BecomeSyncTarget",
3716 [P_BECOME_SYNC_SOURCE] = "BecomeSyncSource",
3717 [P_UNPLUG_REMOTE] = "UnplugRemote",
3718 [P_DATA_REQUEST] = "DataRequest",
3719 [P_RS_DATA_REQUEST] = "RSDataRequest",
3720 [P_SYNC_PARAM] = "SyncParam",
3721 [P_SYNC_PARAM89] = "SyncParam89",
3722 [P_PROTOCOL] = "ReportProtocol",
3723 [P_UUIDS] = "ReportUUIDs",
3724 [P_SIZES] = "ReportSizes",
3725 [P_STATE] = "ReportState",
3726 [P_SYNC_UUID] = "ReportSyncUUID",
3727 [P_AUTH_CHALLENGE] = "AuthChallenge",
3728 [P_AUTH_RESPONSE] = "AuthResponse",
3729 [P_PING] = "Ping",
3730 [P_PING_ACK] = "PingAck",
3731 [P_RECV_ACK] = "RecvAck",
3732 [P_WRITE_ACK] = "WriteAck",
3733 [P_RS_WRITE_ACK] = "RSWriteAck",
Lars Ellenbergd4dabbe2012-08-01 12:33:51 +02003734 [P_SUPERSEDED] = "Superseded",
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003735 [P_NEG_ACK] = "NegAck",
3736 [P_NEG_DREPLY] = "NegDReply",
3737 [P_NEG_RS_DREPLY] = "NegRSDReply",
3738 [P_BARRIER_ACK] = "BarrierAck",
3739 [P_STATE_CHG_REQ] = "StateChgRequest",
3740 [P_STATE_CHG_REPLY] = "StateChgReply",
3741 [P_OV_REQUEST] = "OVRequest",
3742 [P_OV_REPLY] = "OVReply",
3743 [P_OV_RESULT] = "OVResult",
3744 [P_CSUM_RS_REQUEST] = "CsumRSRequest",
3745 [P_RS_IS_IN_SYNC] = "CsumRSIsInSync",
3746 [P_COMPRESSED_BITMAP] = "CBitmap",
3747 [P_DELAY_PROBE] = "DelayProbe",
3748 [P_OUT_OF_SYNC] = "OutOfSync",
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003749 [P_RETRY_WRITE] = "RetryWrite",
Lars Ellenbergae25b332011-04-24 00:01:16 +02003750 [P_RS_CANCEL] = "RSCancel",
3751 [P_CONN_ST_CHG_REQ] = "conn_st_chg_req",
3752 [P_CONN_ST_CHG_REPLY] = "conn_st_chg_reply",
Philipp Reisner036b17e2011-05-16 17:38:11 +02003753 [P_RETRY_WRITE] = "retry_write",
3754 [P_PROTOCOL_UPDATE] = "protocol_update",
Philipp Reisner700ca8c2016-06-14 00:26:13 +02003755 [P_RS_THIN_REQ] = "rs_thin_req",
3756 [P_RS_DEALLOCATED] = "rs_deallocated",
Lars Ellenbergae25b332011-04-24 00:01:16 +02003757
3758 /* enum drbd_packet, but not commands - obsoleted flags:
3759 * P_MAY_IGNORE
3760 * P_MAX_OPT_CMD
3761 */
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003762 };
3763
Lars Ellenbergae25b332011-04-24 00:01:16 +02003764 /* too big for the array: 0xfffX */
Andreas Gruenbachere5d6f332011-03-28 16:44:40 +02003765 if (cmd == P_INITIAL_META)
3766 return "InitialMeta";
3767 if (cmd == P_INITIAL_DATA)
3768 return "InitialData";
Andreas Gruenbacher60381782011-03-28 17:05:50 +02003769 if (cmd == P_CONNECTION_FEATURES)
3770 return "ConnectionFeatures";
Andreas Gruenbacher6e849ce2011-03-14 17:27:45 +01003771 if (cmd >= ARRAY_SIZE(cmdnames))
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003772 return "Unknown";
3773 return cmdnames[cmd];
3774}
3775
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003776/**
3777 * drbd_wait_misc - wait for a request to make progress
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003778 * @device: device associated with the request
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003779 * @i: the struct drbd_interval embedded in struct drbd_request or
3780 * struct drbd_peer_request
3781 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003782int drbd_wait_misc(struct drbd_device *device, struct drbd_interval *i)
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003783{
Philipp Reisner44ed1672011-04-19 17:10:19 +02003784 struct net_conf *nc;
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003785 DEFINE_WAIT(wait);
3786 long timeout;
3787
Philipp Reisner44ed1672011-04-19 17:10:19 +02003788 rcu_read_lock();
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02003789 nc = rcu_dereference(first_peer_device(device)->connection->net_conf);
Philipp Reisner44ed1672011-04-19 17:10:19 +02003790 if (!nc) {
3791 rcu_read_unlock();
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003792 return -ETIMEDOUT;
Philipp Reisner44ed1672011-04-19 17:10:19 +02003793 }
3794 timeout = nc->ko_count ? nc->timeout * HZ / 10 * nc->ko_count : MAX_SCHEDULE_TIMEOUT;
3795 rcu_read_unlock();
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003796
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003797 /* Indicate to wake up device->misc_wait on progress. */
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003798 i->waiting = true;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003799 prepare_to_wait(&device->misc_wait, &wait, TASK_INTERRUPTIBLE);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02003800 spin_unlock_irq(&device->resource->req_lock);
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003801 timeout = schedule_timeout(timeout);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003802 finish_wait(&device->misc_wait, &wait);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02003803 spin_lock_irq(&device->resource->req_lock);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003804 if (!timeout || device->state.conn < C_CONNECTED)
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003805 return -ETIMEDOUT;
3806 if (signal_pending(current))
3807 return -ERESTARTSYS;
3808 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003809}
3810
Andreas Gruenbacher28bc3b82014-08-14 18:33:30 +02003811void lock_all_resources(void)
3812{
3813 struct drbd_resource *resource;
3814 int __maybe_unused i = 0;
3815
3816 mutex_lock(&resources_mutex);
3817 local_irq_disable();
3818 for_each_resource(resource, &drbd_resources)
3819 spin_lock_nested(&resource->req_lock, i++);
3820}
3821
3822void unlock_all_resources(void)
3823{
3824 struct drbd_resource *resource;
3825
3826 for_each_resource(resource, &drbd_resources)
3827 spin_unlock(&resource->req_lock);
3828 local_irq_enable();
3829 mutex_unlock(&resources_mutex);
3830}
3831
Philipp Reisnerb411b362009-09-25 16:07:19 -07003832#ifdef CONFIG_DRBD_FAULT_INJECTION
3833/* Fault insertion support including random number generator shamelessly
3834 * stolen from kernel/rcutorture.c */
3835struct fault_random_state {
3836 unsigned long state;
3837 unsigned long count;
3838};
3839
3840#define FAULT_RANDOM_MULT 39916801 /* prime */
3841#define FAULT_RANDOM_ADD 479001701 /* prime */
3842#define FAULT_RANDOM_REFRESH 10000
3843
3844/*
3845 * Crude but fast random-number generator. Uses a linear congruential
3846 * generator, with occasional help from get_random_bytes().
3847 */
3848static unsigned long
3849_drbd_fault_random(struct fault_random_state *rsp)
3850{
3851 long refresh;
3852
Roel Kluin49829ea2009-12-15 22:55:44 +01003853 if (!rsp->count--) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07003854 get_random_bytes(&refresh, sizeof(refresh));
3855 rsp->state += refresh;
3856 rsp->count = FAULT_RANDOM_REFRESH;
3857 }
3858 rsp->state = rsp->state * FAULT_RANDOM_MULT + FAULT_RANDOM_ADD;
3859 return swahw32(rsp->state);
3860}
3861
3862static char *
3863_drbd_fault_str(unsigned int type) {
3864 static char *_faults[] = {
3865 [DRBD_FAULT_MD_WR] = "Meta-data write",
3866 [DRBD_FAULT_MD_RD] = "Meta-data read",
3867 [DRBD_FAULT_RS_WR] = "Resync write",
3868 [DRBD_FAULT_RS_RD] = "Resync read",
3869 [DRBD_FAULT_DT_WR] = "Data write",
3870 [DRBD_FAULT_DT_RD] = "Data read",
3871 [DRBD_FAULT_DT_RA] = "Data read ahead",
3872 [DRBD_FAULT_BM_ALLOC] = "BM allocation",
Philipp Reisner6b4388a2010-04-26 14:11:45 +02003873 [DRBD_FAULT_AL_EE] = "EE allocation",
3874 [DRBD_FAULT_RECEIVE] = "receive data corruption",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003875 };
3876
3877 return (type < DRBD_FAULT_MAX) ? _faults[type] : "**Unknown**";
3878}
3879
3880unsigned int
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003881_drbd_insert_fault(struct drbd_device *device, unsigned int type)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003882{
3883 static struct fault_random_state rrs = {0, 0};
3884
3885 unsigned int ret = (
Roland Kammerer183ece32017-08-29 10:20:46 +02003886 (drbd_fault_devs == 0 ||
3887 ((1 << device_to_minor(device)) & drbd_fault_devs) != 0) &&
3888 (((_drbd_fault_random(&rrs) % 100) + 1) <= drbd_fault_rate));
Philipp Reisnerb411b362009-09-25 16:07:19 -07003889
3890 if (ret) {
Roland Kammerer183ece32017-08-29 10:20:46 +02003891 drbd_fault_count++;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003892
Lars Ellenberg73835062010-05-27 11:51:56 +02003893 if (__ratelimit(&drbd_ratelimit_state))
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003894 drbd_warn(device, "***Simulating %s failure\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003895 _drbd_fault_str(type));
3896 }
3897
3898 return ret;
3899}
3900#endif
3901
3902const char *drbd_buildtag(void)
3903{
3904 /* DRBD built from external sources has here a reference to the
3905 git hash of the source code. */
3906
3907 static char buildtag[38] = "\0uilt-in";
3908
3909 if (buildtag[0] == 0) {
Cong Wangbc4854b2012-04-03 14:13:36 +08003910#ifdef MODULE
3911 sprintf(buildtag, "srcversion: %-24s", THIS_MODULE->srcversion);
3912#else
3913 buildtag[0] = 'b';
Philipp Reisnerb411b362009-09-25 16:07:19 -07003914#endif
Philipp Reisnerb411b362009-09-25 16:07:19 -07003915 }
3916
3917 return buildtag;
3918}
3919
3920module_init(drbd_init)
3921module_exit(drbd_cleanup)
3922
Philipp Reisnerb411b362009-09-25 16:07:19 -07003923EXPORT_SYMBOL(drbd_conn_str);
3924EXPORT_SYMBOL(drbd_role_str);
3925EXPORT_SYMBOL(drbd_disk_str);
3926EXPORT_SYMBOL(drbd_set_st_err_str);