blob: 232cd570d3aeaefb4b2e3f2772fa19036a285f5d [file] [log] [blame]
Philipp Reisnerb411b362009-09-25 16:07:19 -07001/*
2 drbd.c
3
4 This file is part of DRBD by Philipp Reisner and Lars Ellenberg.
5
6 Copyright (C) 2001-2008, LINBIT Information Technologies GmbH.
7 Copyright (C) 1999-2008, Philipp Reisner <philipp.reisner@linbit.com>.
8 Copyright (C) 2002-2008, Lars Ellenberg <lars.ellenberg@linbit.com>.
9
10 Thanks to Carter Burden, Bart Grantham and Gennadiy Nerubayev
11 from Logicworks, Inc. for making SDP replication support possible.
12
13 drbd is free software; you can redistribute it and/or modify
14 it under the terms of the GNU General Public License as published by
15 the Free Software Foundation; either version 2, or (at your option)
16 any later version.
17
18 drbd is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with drbd; see the file COPYING. If not, write to
25 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
26
27 */
28
Philipp Reisnerb411b362009-09-25 16:07:19 -070029#include <linux/module.h>
Philipp Reisnerb411b362009-09-25 16:07:19 -070030#include <linux/drbd.h>
31#include <asm/uaccess.h>
32#include <asm/types.h>
33#include <net/sock.h>
34#include <linux/ctype.h>
Arnd Bergmann2a48fc02010-06-02 14:28:52 +020035#include <linux/mutex.h>
Philipp Reisnerb411b362009-09-25 16:07:19 -070036#include <linux/fs.h>
37#include <linux/file.h>
38#include <linux/proc_fs.h>
39#include <linux/init.h>
40#include <linux/mm.h>
41#include <linux/memcontrol.h>
42#include <linux/mm_inline.h>
43#include <linux/slab.h>
44#include <linux/random.h>
45#include <linux/reboot.h>
46#include <linux/notifier.h>
47#include <linux/kthread.h>
Lars Ellenberg113fef92013-03-22 18:14:40 -060048#include <linux/workqueue.h>
Philipp Reisnerb411b362009-09-25 16:07:19 -070049#define __KERNEL_SYSCALLS__
50#include <linux/unistd.h>
51#include <linux/vmalloc.h>
52
53#include <linux/drbd_limits.h>
54#include "drbd_int.h"
Andreas Gruenbachera3603a62011-05-30 11:47:37 +020055#include "drbd_protocol.h"
Philipp Reisnerb411b362009-09-25 16:07:19 -070056#include "drbd_req.h" /* only for _req_mod in tl_release and tl_clear */
57
58#include "drbd_vli.h"
59
Arnd Bergmann2a48fc02010-06-02 14:28:52 +020060static DEFINE_MUTEX(drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -070061static int drbd_open(struct block_device *bdev, fmode_t mode);
Al Virodb2a1442013-05-05 21:52:57 -040062static void drbd_release(struct gendisk *gd, fmode_t mode);
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +010063static int w_md_sync(struct drbd_work *w, int unused);
Philipp Reisnerb411b362009-09-25 16:07:19 -070064static void md_sync_timer_fn(unsigned long data);
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +010065static int w_bitmap_io(struct drbd_work *w, int unused);
66static int w_go_diskless(struct drbd_work *w, int unused);
Philipp Reisnerb411b362009-09-25 16:07:19 -070067
Philipp Reisnerb411b362009-09-25 16:07:19 -070068MODULE_AUTHOR("Philipp Reisner <phil@linbit.com>, "
69 "Lars Ellenberg <lars@linbit.com>");
70MODULE_DESCRIPTION("drbd - Distributed Replicated Block Device v" REL_VERSION);
71MODULE_VERSION(REL_VERSION);
72MODULE_LICENSE("GPL");
Philipp Reisner81a5d602011-02-22 19:53:16 -050073MODULE_PARM_DESC(minor_count, "Approximate number of drbd devices ("
Philipp Reisner2b8a90b2011-01-10 11:15:17 +010074 __stringify(DRBD_MINOR_COUNT_MIN) "-" __stringify(DRBD_MINOR_COUNT_MAX) ")");
Philipp Reisnerb411b362009-09-25 16:07:19 -070075MODULE_ALIAS_BLOCKDEV_MAJOR(DRBD_MAJOR);
76
77#include <linux/moduleparam.h>
78/* allow_open_on_secondary */
79MODULE_PARM_DESC(allow_oos, "DONT USE!");
80/* thanks to these macros, if compiled into the kernel (not-module),
81 * this becomes the boot parameter drbd.minor_count */
82module_param(minor_count, uint, 0444);
83module_param(disable_sendpage, bool, 0644);
84module_param(allow_oos, bool, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -070085module_param(proc_details, int, 0644);
86
87#ifdef CONFIG_DRBD_FAULT_INJECTION
88int enable_faults;
89int fault_rate;
90static int fault_count;
91int fault_devs;
92/* bitmap of enabled faults */
93module_param(enable_faults, int, 0664);
94/* fault rate % value - applies to all enabled faults */
95module_param(fault_rate, int, 0664);
96/* count of faults inserted */
97module_param(fault_count, int, 0664);
98/* bitmap of devices to insert faults on */
99module_param(fault_devs, int, 0644);
100#endif
101
102/* module parameter, defined */
Philipp Reisner2b8a90b2011-01-10 11:15:17 +0100103unsigned int minor_count = DRBD_MINOR_COUNT_DEF;
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030104bool disable_sendpage;
105bool allow_oos;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700106int proc_details; /* Detail level in proc drbd*/
107
108/* Module parameter for setting the user mode helper program
109 * to run. Default is /sbin/drbdadm */
110char usermode_helper[80] = "/sbin/drbdadm";
111
112module_param_string(usermode_helper, usermode_helper, sizeof(usermode_helper), 0644);
113
114/* in 2.6.x, our device mapping and config info contains our virtual gendisks
115 * as member "struct gendisk *vdisk;"
116 */
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +0200117struct idr drbd_devices;
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +0200118struct list_head drbd_resources;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700119
120struct kmem_cache *drbd_request_cache;
Andreas Gruenbacher6c852be2011-02-04 15:38:52 +0100121struct kmem_cache *drbd_ee_cache; /* peer requests */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700122struct kmem_cache *drbd_bm_ext_cache; /* bitmap extents */
123struct kmem_cache *drbd_al_ext_cache; /* activity log extents */
124mempool_t *drbd_request_mempool;
125mempool_t *drbd_ee_mempool;
Lars Ellenberg42818082011-02-23 12:39:46 +0100126mempool_t *drbd_md_io_page_pool;
Lars Ellenberg9476f392011-02-23 17:02:01 +0100127struct bio_set *drbd_md_io_bio_set;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700128
129/* I do not use a standard mempool, because:
130 1) I want to hand out the pre-allocated objects first.
131 2) I want to be able to interrupt sleeping allocation with a signal.
132 Note: This is a single linked list, the next pointer is the private
133 member of struct page.
134 */
135struct page *drbd_pp_pool;
136spinlock_t drbd_pp_lock;
137int drbd_pp_vacant;
138wait_queue_head_t drbd_pp_wait;
139
140DEFINE_RATELIMIT_STATE(drbd_ratelimit_state, 5 * HZ, 5);
141
Emese Revfy7d4e9d02009-12-14 00:59:30 +0100142static const struct block_device_operations drbd_ops = {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700143 .owner = THIS_MODULE,
144 .open = drbd_open,
145 .release = drbd_release,
146};
147
Lars Ellenberg9476f392011-02-23 17:02:01 +0100148struct bio *bio_alloc_drbd(gfp_t gfp_mask)
149{
Lars Ellenbergda4a75d2011-02-23 17:02:01 +0100150 struct bio *bio;
151
Lars Ellenberg9476f392011-02-23 17:02:01 +0100152 if (!drbd_md_io_bio_set)
153 return bio_alloc(gfp_mask, 1);
154
Lars Ellenbergda4a75d2011-02-23 17:02:01 +0100155 bio = bio_alloc_bioset(gfp_mask, 1, drbd_md_io_bio_set);
156 if (!bio)
157 return NULL;
Lars Ellenbergda4a75d2011-02-23 17:02:01 +0100158 return bio;
Lars Ellenberg9476f392011-02-23 17:02:01 +0100159}
160
Philipp Reisnerb411b362009-09-25 16:07:19 -0700161#ifdef __CHECKER__
162/* When checking with sparse, and this is an inline function, sparse will
163 give tons of false positives. When this is a real functions sparse works.
164 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200165int _get_ldev_if_state(struct drbd_device *device, enum drbd_disk_state mins)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700166{
167 int io_allowed;
168
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200169 atomic_inc(&device->local_cnt);
170 io_allowed = (device->state.disk >= mins);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700171 if (!io_allowed) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200172 if (atomic_dec_and_test(&device->local_cnt))
173 wake_up(&device->misc_wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700174 }
175 return io_allowed;
176}
177
178#endif
179
180/**
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100181 * tl_release() - mark as BARRIER_ACKED all requests in the corresponding transfer log epoch
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200182 * @connection: DRBD connection.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700183 * @barrier_nr: Expected identifier of the DRBD write barrier packet.
184 * @set_size: Expected number of requests before that barrier.
185 *
186 * In case the passed barrier_nr or set_size does not match the oldest
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100187 * epoch of not yet barrier-acked requests, this function will cause a
188 * termination of the connection.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700189 */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200190void tl_release(struct drbd_connection *connection, unsigned int barrier_nr,
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100191 unsigned int set_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700192{
Philipp Reisnerb411b362009-09-25 16:07:19 -0700193 struct drbd_request *r;
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100194 struct drbd_request *req = NULL;
195 int expect_epoch = 0;
196 int expect_size = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700197
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200198 spin_lock_irq(&connection->resource->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700199
Philipp Reisner98683652012-11-09 14:18:43 +0100200 /* find oldest not yet barrier-acked write request,
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100201 * count writes in its epoch. */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200202 list_for_each_entry(r, &connection->transfer_log, tl_requests) {
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100203 const unsigned s = r->rq_state;
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100204 if (!req) {
205 if (!(s & RQ_WRITE))
206 continue;
207 if (!(s & RQ_NET_MASK))
208 continue;
209 if (s & RQ_NET_DONE)
210 continue;
211 req = r;
212 expect_epoch = req->epoch;
213 expect_size ++;
214 } else {
215 if (r->epoch != expect_epoch)
216 break;
217 if (!(s & RQ_WRITE))
218 continue;
219 /* if (s & RQ_DONE): not expected */
220 /* if (!(s & RQ_NET_MASK)): not expected */
221 expect_size++;
222 }
223 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700224
225 /* first some paranoia code */
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100226 if (req == NULL) {
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +0200227 drbd_err(connection, "BAD! BarrierAck #%u received, but no epoch in tl!?\n",
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100228 barrier_nr);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700229 goto bail;
230 }
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100231 if (expect_epoch != barrier_nr) {
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +0200232 drbd_err(connection, "BAD! BarrierAck #%u received, expected #%u!\n",
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100233 barrier_nr, expect_epoch);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700234 goto bail;
235 }
236
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100237 if (expect_size != set_size) {
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +0200238 drbd_err(connection, "BAD! BarrierAck #%u received with n_writes=%u, expected n_writes=%u!\n",
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100239 barrier_nr, set_size, expect_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700240 goto bail;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700241 }
242
Philipp Reisner98683652012-11-09 14:18:43 +0100243 /* Clean up list of requests processed during current epoch. */
244 /* this extra list walk restart is paranoia,
245 * to catch requests being barrier-acked "unexpectedly".
246 * It usually should find the same req again, or some READ preceding it. */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200247 list_for_each_entry(req, &connection->transfer_log, tl_requests)
Philipp Reisner98683652012-11-09 14:18:43 +0100248 if (req->epoch == expect_epoch)
249 break;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200250 list_for_each_entry_safe_from(req, r, &connection->transfer_log, tl_requests) {
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100251 if (req->epoch != expect_epoch)
252 break;
253 _req_mod(req, BARRIER_ACKED);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700254 }
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200255 spin_unlock_irq(&connection->resource->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700256
257 return;
258
259bail:
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200260 spin_unlock_irq(&connection->resource->req_lock);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200261 conn_request_state(connection, NS(conn, C_PROTOCOL_ERROR), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700262}
263
Philipp Reisner617049a2010-12-22 12:48:31 +0100264
Philipp Reisner11b58e72010-05-12 17:08:26 +0200265/**
266 * _tl_restart() - Walks the transfer log, and applies an action to all requests
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200267 * @device: DRBD device.
Philipp Reisner11b58e72010-05-12 17:08:26 +0200268 * @what: The action/event to perform with all request objects
269 *
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100270 * @what might be one of CONNECTION_LOST_WHILE_PENDING, RESEND, FAIL_FROZEN_DISK_IO,
271 * RESTART_FROZEN_DISK_IO.
Philipp Reisner11b58e72010-05-12 17:08:26 +0200272 */
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100273/* must hold resource->req_lock */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200274void _tl_restart(struct drbd_connection *connection, enum drbd_req_event what)
Philipp Reisner11b58e72010-05-12 17:08:26 +0200275{
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100276 struct drbd_request *req, *r;
Philipp Reisner11b58e72010-05-12 17:08:26 +0200277
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200278 list_for_each_entry_safe(req, r, &connection->transfer_log, tl_requests)
Philipp Reisner509fc012012-07-31 11:22:58 +0200279 _req_mod(req, what);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200280}
281
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200282void tl_restart(struct drbd_connection *connection, enum drbd_req_event what)
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100283{
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200284 spin_lock_irq(&connection->resource->req_lock);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200285 _tl_restart(connection, what);
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200286 spin_unlock_irq(&connection->resource->req_lock);
Philipp Reisnercdfda632011-07-05 15:38:59 +0200287}
Philipp Reisnerb411b362009-09-25 16:07:19 -0700288
289/**
290 * tl_clear() - Clears all requests and &struct drbd_tl_epoch objects out of the TL
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200291 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700292 *
293 * This is called after the connection to the peer was lost. The storage covered
294 * by the requests on the transfer gets marked as our of sync. Called from the
295 * receiver thread and the worker thread.
296 */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200297void tl_clear(struct drbd_connection *connection)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700298{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200299 tl_restart(connection, CONNECTION_LOST_WHILE_PENDING);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700300}
301
302/**
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200303 * tl_abort_disk_io() - Abort disk I/O for all requests for a certain device in the TL
304 * @device: DRBD device.
Philipp Reisnerfd2491f2011-07-18 16:25:15 +0200305 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200306void tl_abort_disk_io(struct drbd_device *device)
Philipp Reisnerfd2491f2011-07-18 16:25:15 +0200307{
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +0200308 struct drbd_connection *connection = first_peer_device(device)->connection;
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100309 struct drbd_request *req, *r;
Philipp Reisnerfd2491f2011-07-18 16:25:15 +0200310
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200311 spin_lock_irq(&connection->resource->req_lock);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200312 list_for_each_entry_safe(req, r, &connection->transfer_log, tl_requests) {
Philipp Reisnerfd2491f2011-07-18 16:25:15 +0200313 if (!(req->rq_state & RQ_LOCAL_PENDING))
314 continue;
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +0200315 if (req->device != device)
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100316 continue;
317 _req_mod(req, ABORT_DISK_IO);
Philipp Reisnerfd2491f2011-07-18 16:25:15 +0200318 }
Andreas Gruenbacher05008132011-07-07 14:19:42 +0200319 spin_unlock_irq(&connection->resource->req_lock);
Philipp Reisnerfd2491f2011-07-18 16:25:15 +0200320}
321
Philipp Reisnerb411b362009-09-25 16:07:19 -0700322static int drbd_thread_setup(void *arg)
323{
324 struct drbd_thread *thi = (struct drbd_thread *) arg;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200325 struct drbd_connection *connection = thi->connection;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700326 unsigned long flags;
327 int retval;
328
Philipp Reisnerf1b3a6e2011-02-08 15:35:58 +0100329 snprintf(current->comm, sizeof(current->comm), "drbd_%c_%s",
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +0200330 thi->name[0],
331 thi->connection->resource->name);
Philipp Reisnerf1b3a6e2011-02-08 15:35:58 +0100332
Philipp Reisnerb411b362009-09-25 16:07:19 -0700333restart:
334 retval = thi->function(thi);
335
336 spin_lock_irqsave(&thi->t_lock, flags);
337
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100338 /* if the receiver has been "EXITING", the last thing it did
Philipp Reisnerb411b362009-09-25 16:07:19 -0700339 * was set the conn state to "StandAlone",
340 * if now a re-connect request comes in, conn state goes C_UNCONNECTED,
341 * and receiver thread will be "started".
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100342 * drbd_thread_start needs to set "RESTARTING" in that case.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700343 * t_state check and assignment needs to be within the same spinlock,
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100344 * so either thread_start sees EXITING, and can remap to RESTARTING,
345 * or thread_start see NONE, and can proceed as normal.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700346 */
347
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100348 if (thi->t_state == RESTARTING) {
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +0200349 drbd_info(connection, "Restarting %s thread\n", thi->name);
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100350 thi->t_state = RUNNING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700351 spin_unlock_irqrestore(&thi->t_lock, flags);
352 goto restart;
353 }
354
355 thi->task = NULL;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100356 thi->t_state = NONE;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700357 smp_mb();
Lars Ellenberg992d6e92011-05-02 11:47:18 +0200358 complete_all(&thi->stop);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700359 spin_unlock_irqrestore(&thi->t_lock, flags);
360
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +0200361 drbd_info(connection, "Terminating %s\n", current->comm);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700362
363 /* Release mod reference taken when thread was started */
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +0200364
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +0200365 kref_put(&connection->kref, drbd_destroy_connection);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700366 module_put(THIS_MODULE);
367 return retval;
368}
369
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200370static void drbd_thread_init(struct drbd_connection *connection, struct drbd_thread *thi,
Andreas Gruenbacherc60b0252011-08-10 15:05:02 +0200371 int (*func) (struct drbd_thread *), const char *name)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700372{
373 spin_lock_init(&thi->t_lock);
374 thi->task = NULL;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100375 thi->t_state = NONE;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700376 thi->function = func;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200377 thi->connection = connection;
Andreas Gruenbacherc60b0252011-08-10 15:05:02 +0200378 thi->name = name;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700379}
380
381int drbd_thread_start(struct drbd_thread *thi)
382{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200383 struct drbd_connection *connection = thi->connection;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700384 struct task_struct *nt;
385 unsigned long flags;
386
Philipp Reisnerb411b362009-09-25 16:07:19 -0700387 /* is used from state engine doing drbd_thread_stop_nowait,
388 * while holding the req lock irqsave */
389 spin_lock_irqsave(&thi->t_lock, flags);
390
391 switch (thi->t_state) {
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100392 case NONE:
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +0200393 drbd_info(connection, "Starting %s thread (from %s [%d])\n",
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100394 thi->name, current->comm, current->pid);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700395
396 /* Get ref on module for thread - this is released when thread exits */
397 if (!try_module_get(THIS_MODULE)) {
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +0200398 drbd_err(connection, "Failed to get module reference in drbd_thread_start\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700399 spin_unlock_irqrestore(&thi->t_lock, flags);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100400 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700401 }
402
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200403 kref_get(&thi->connection->kref);
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +0200404
Philipp Reisnerb411b362009-09-25 16:07:19 -0700405 init_completion(&thi->stop);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700406 thi->reset_cpu_mask = 1;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100407 thi->t_state = RUNNING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700408 spin_unlock_irqrestore(&thi->t_lock, flags);
409 flush_signals(current); /* otherw. may get -ERESTARTNOINTR */
410
411 nt = kthread_create(drbd_thread_setup, (void *) thi,
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +0200412 "drbd_%c_%s", thi->name[0], thi->connection->resource->name);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700413
414 if (IS_ERR(nt)) {
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +0200415 drbd_err(connection, "Couldn't start thread\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700416
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +0200417 kref_put(&connection->kref, drbd_destroy_connection);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700418 module_put(THIS_MODULE);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100419 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700420 }
421 spin_lock_irqsave(&thi->t_lock, flags);
422 thi->task = nt;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100423 thi->t_state = RUNNING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700424 spin_unlock_irqrestore(&thi->t_lock, flags);
425 wake_up_process(nt);
426 break;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100427 case EXITING:
428 thi->t_state = RESTARTING;
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +0200429 drbd_info(connection, "Restarting %s thread (from %s [%d])\n",
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100430 thi->name, current->comm, current->pid);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700431 /* fall through */
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100432 case RUNNING:
433 case RESTARTING:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700434 default:
435 spin_unlock_irqrestore(&thi->t_lock, flags);
436 break;
437 }
438
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100439 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700440}
441
442
443void _drbd_thread_stop(struct drbd_thread *thi, int restart, int wait)
444{
445 unsigned long flags;
446
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100447 enum drbd_thread_state ns = restart ? RESTARTING : EXITING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700448
449 /* may be called from state engine, holding the req lock irqsave */
450 spin_lock_irqsave(&thi->t_lock, flags);
451
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100452 if (thi->t_state == NONE) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700453 spin_unlock_irqrestore(&thi->t_lock, flags);
454 if (restart)
455 drbd_thread_start(thi);
456 return;
457 }
458
459 if (thi->t_state != ns) {
460 if (thi->task == NULL) {
461 spin_unlock_irqrestore(&thi->t_lock, flags);
462 return;
463 }
464
465 thi->t_state = ns;
466 smp_mb();
467 init_completion(&thi->stop);
468 if (thi->task != current)
469 force_sig(DRBD_SIGKILL, thi->task);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700470 }
471
472 spin_unlock_irqrestore(&thi->t_lock, flags);
473
474 if (wait)
475 wait_for_completion(&thi->stop);
476}
477
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200478int conn_lowest_minor(struct drbd_connection *connection)
Philipp Reisner80822282011-02-08 12:46:30 +0100479{
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +0200480 struct drbd_peer_device *peer_device;
481 int vnr = 0, minor = -1;
Philipp Reisner774b3052011-02-22 02:07:03 -0500482
Philipp Reisner695d08f2011-04-11 22:53:32 -0700483 rcu_read_lock();
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +0200484 peer_device = idr_get_next(&connection->peer_devices, &vnr);
485 if (peer_device)
486 minor = device_to_minor(peer_device->device);
Philipp Reisner695d08f2011-04-11 22:53:32 -0700487 rcu_read_unlock();
488
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +0200489 return minor;
Philipp Reisner80822282011-02-08 12:46:30 +0100490}
Philipp Reisner774b3052011-02-22 02:07:03 -0500491
Philipp Reisnerb411b362009-09-25 16:07:19 -0700492#ifdef CONFIG_SMP
493/**
494 * drbd_calc_cpu_mask() - Generate CPU masks, spread over all CPUs
Philipp Reisnerb411b362009-09-25 16:07:19 -0700495 *
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +0200496 * Forces all threads of a resource onto the same CPU. This is beneficial for
Philipp Reisnerb411b362009-09-25 16:07:19 -0700497 * DRBD's performance. May be overwritten by user's configuration.
498 */
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +0200499static void drbd_calc_cpu_mask(cpumask_var_t *cpu_mask)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700500{
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +0200501 unsigned int *resources_per_cpu, min_index = ~0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700502
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +0200503 resources_per_cpu = kzalloc(nr_cpu_ids * sizeof(*resources_per_cpu), GFP_KERNEL);
504 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{
539 struct task_struct *p = current;
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100540
Philipp Reisnerb411b362009-09-25 16:07:19 -0700541 if (!thi->reset_cpu_mask)
542 return;
543 thi->reset_cpu_mask = 0;
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +0200544 set_cpus_allowed_ptr(p, thi->connection->resource->cpu_mask);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700545}
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +0200546#else
547#define drbd_calc_cpu_mask(A) ({})
Philipp Reisnerb411b362009-09-25 16:07:19 -0700548#endif
549
Andreas Gruenbacher52b061a2011-03-30 11:38:49 +0200550/**
551 * drbd_header_size - size of a packet header
552 *
553 * The header size is a multiple of 8, so any payload following the header is
554 * word aligned on 64-bit architectures. (The bitmap send and receive code
555 * relies on this.)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700556 */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200557unsigned int drbd_header_size(struct drbd_connection *connection)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700558{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200559 if (connection->agreed_pro_version >= 100) {
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200560 BUILD_BUG_ON(!IS_ALIGNED(sizeof(struct p_header100), 8));
561 return sizeof(struct p_header100);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700562 } else {
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200563 BUILD_BUG_ON(sizeof(struct p_header80) !=
564 sizeof(struct p_header95));
565 BUILD_BUG_ON(!IS_ALIGNED(sizeof(struct p_header80), 8));
566 return sizeof(struct p_header80);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700567 }
Andreas Gruenbacher52b061a2011-03-30 11:38:49 +0200568}
Philipp Reisnerb411b362009-09-25 16:07:19 -0700569
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200570static unsigned int prepare_header80(struct p_header80 *h, enum drbd_packet cmd, int size)
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100571{
572 h->magic = cpu_to_be32(DRBD_MAGIC);
573 h->command = cpu_to_be16(cmd);
574 h->length = cpu_to_be16(size);
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200575 return sizeof(struct p_header80);
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100576}
Philipp Reisnerb411b362009-09-25 16:07:19 -0700577
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200578static unsigned int prepare_header95(struct p_header95 *h, enum drbd_packet cmd, int size)
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100579{
580 h->magic = cpu_to_be16(DRBD_MAGIC_BIG);
581 h->command = cpu_to_be16(cmd);
Andreas Gruenbacherb55d84b2011-03-22 13:17:47 +0100582 h->length = cpu_to_be32(size);
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200583 return sizeof(struct p_header95);
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100584}
585
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200586static unsigned int prepare_header100(struct p_header100 *h, enum drbd_packet cmd,
587 int size, int vnr)
Philipp Reisnerd38e7872011-02-07 15:32:04 +0100588{
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200589 h->magic = cpu_to_be32(DRBD_MAGIC_100);
590 h->volume = cpu_to_be16(vnr);
591 h->command = cpu_to_be16(cmd);
592 h->length = cpu_to_be32(size);
593 h->pad = 0;
594 return sizeof(struct p_header100);
595}
596
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200597static unsigned int prepare_header(struct drbd_connection *connection, int vnr,
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200598 void *buffer, enum drbd_packet cmd, int size)
599{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200600 if (connection->agreed_pro_version >= 100)
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200601 return prepare_header100(buffer, cmd, size, vnr);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200602 else if (connection->agreed_pro_version >= 95 &&
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200603 size > DRBD_MAX_SIZE_H80_PACKET)
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200604 return prepare_header95(buffer, cmd, size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700605 else
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200606 return prepare_header80(buffer, cmd, size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700607}
608
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200609static void *__conn_prepare_command(struct drbd_connection *connection,
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200610 struct drbd_socket *sock)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700611{
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200612 if (!sock->socket)
613 return NULL;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200614 return sock->sbuf + drbd_header_size(connection);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700615}
616
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200617void *conn_prepare_command(struct drbd_connection *connection, struct drbd_socket *sock)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700618{
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200619 void *p;
620
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200621 mutex_lock(&sock->mutex);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200622 p = __conn_prepare_command(connection, sock);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200623 if (!p)
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200624 mutex_unlock(&sock->mutex);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200625
626 return p;
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200627}
628
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200629void *drbd_prepare_command(struct drbd_peer_device *peer_device, struct drbd_socket *sock)
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200630{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200631 return conn_prepare_command(peer_device->connection, sock);
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200632}
633
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200634static int __send_command(struct drbd_connection *connection, int vnr,
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200635 struct drbd_socket *sock, enum drbd_packet cmd,
636 unsigned int header_size, void *data,
637 unsigned int size)
638{
639 int msg_flags;
640 int err;
641
642 /*
643 * Called with @data == NULL and the size of the data blocks in @size
644 * for commands that send data blocks. For those commands, omit the
645 * MSG_MORE flag: this will increase the likelihood that data blocks
646 * which are page aligned on the sender will end up page aligned on the
647 * receiver.
648 */
649 msg_flags = data ? MSG_MORE : 0;
650
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200651 header_size += prepare_header(connection, vnr, sock->sbuf, cmd,
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200652 header_size + size);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200653 err = drbd_send_all(connection, sock->socket, sock->sbuf, header_size,
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200654 msg_flags);
655 if (data && !err)
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200656 err = drbd_send_all(connection, sock->socket, data, size, 0);
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200657 return err;
658}
659
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200660static int __conn_send_command(struct drbd_connection *connection, struct drbd_socket *sock,
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200661 enum drbd_packet cmd, unsigned int header_size,
662 void *data, unsigned int size)
663{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200664 return __send_command(connection, 0, sock, cmd, header_size, data, size);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200665}
666
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200667int conn_send_command(struct drbd_connection *connection, struct drbd_socket *sock,
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200668 enum drbd_packet cmd, unsigned int header_size,
669 void *data, unsigned int size)
670{
671 int err;
672
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200673 err = __conn_send_command(connection, sock, cmd, header_size, data, size);
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200674 mutex_unlock(&sock->mutex);
675 return err;
676}
677
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200678int drbd_send_command(struct drbd_peer_device *peer_device, struct drbd_socket *sock,
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200679 enum drbd_packet cmd, unsigned int header_size,
680 void *data, unsigned int size)
681{
682 int err;
683
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200684 err = __send_command(peer_device->connection, peer_device->device->vnr,
685 sock, cmd, header_size, data, size);
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200686 mutex_unlock(&sock->mutex);
687 return err;
688}
689
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200690int drbd_send_ping(struct drbd_connection *connection)
Andreas Gruenbachere307f352011-03-22 10:55:48 +0100691{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200692 struct drbd_socket *sock;
693
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200694 sock = &connection->meta;
695 if (!conn_prepare_command(connection, sock))
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200696 return -EIO;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200697 return conn_send_command(connection, sock, P_PING, 0, NULL, 0);
Andreas Gruenbachere307f352011-03-22 10:55:48 +0100698}
699
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200700int drbd_send_ping_ack(struct drbd_connection *connection)
Andreas Gruenbachere307f352011-03-22 10:55:48 +0100701{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200702 struct drbd_socket *sock;
703
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200704 sock = &connection->meta;
705 if (!conn_prepare_command(connection, sock))
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200706 return -EIO;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200707 return conn_send_command(connection, sock, P_PING_ACK, 0, NULL, 0);
Andreas Gruenbachere307f352011-03-22 10:55:48 +0100708}
709
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200710int drbd_send_sync_param(struct drbd_peer_device *peer_device)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700711{
Andreas Gruenbacher7c967152011-03-22 00:49:36 +0100712 struct drbd_socket *sock;
Philipp Reisner8e26f9c2010-07-06 17:25:54 +0200713 struct p_rs_param_95 *p;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200714 int size;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200715 const int apv = peer_device->connection->agreed_pro_version;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200716 enum drbd_packet cmd;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200717 struct net_conf *nc;
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200718 struct disk_conf *dc;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200719
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200720 sock = &peer_device->connection->data;
721 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200722 if (!p)
723 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700724
Philipp Reisner44ed1672011-04-19 17:10:19 +0200725 rcu_read_lock();
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200726 nc = rcu_dereference(peer_device->connection->net_conf);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700727
728 size = apv <= 87 ? sizeof(struct p_rs_param)
729 : apv == 88 ? sizeof(struct p_rs_param)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200730 + strlen(nc->verify_alg) + 1
Philipp Reisner8e26f9c2010-07-06 17:25:54 +0200731 : apv <= 94 ? sizeof(struct p_rs_param_89)
732 : /* apv >= 95 */ sizeof(struct p_rs_param_95);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700733
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200734 cmd = apv >= 89 ? P_SYNC_PARAM89 : P_SYNC_PARAM;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700735
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200736 /* initialize verify_alg and csums_alg */
737 memset(p->verify_alg, 0, 2 * SHARED_SECRET_MAX);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700738
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200739 if (get_ldev(peer_device->device)) {
740 dc = rcu_dereference(peer_device->device->ldev->disk_conf);
Andreas Gruenbacher6394b932011-05-11 14:29:52 +0200741 p->resync_rate = cpu_to_be32(dc->resync_rate);
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200742 p->c_plan_ahead = cpu_to_be32(dc->c_plan_ahead);
743 p->c_delay_target = cpu_to_be32(dc->c_delay_target);
744 p->c_fill_target = cpu_to_be32(dc->c_fill_target);
745 p->c_max_rate = cpu_to_be32(dc->c_max_rate);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200746 put_ldev(peer_device->device);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200747 } else {
Andreas Gruenbacher6394b932011-05-11 14:29:52 +0200748 p->resync_rate = cpu_to_be32(DRBD_RESYNC_RATE_DEF);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200749 p->c_plan_ahead = cpu_to_be32(DRBD_C_PLAN_AHEAD_DEF);
750 p->c_delay_target = cpu_to_be32(DRBD_C_DELAY_TARGET_DEF);
751 p->c_fill_target = cpu_to_be32(DRBD_C_FILL_TARGET_DEF);
752 p->c_max_rate = cpu_to_be32(DRBD_C_MAX_RATE_DEF);
753 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700754
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200755 if (apv >= 88)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200756 strcpy(p->verify_alg, nc->verify_alg);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200757 if (apv >= 89)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200758 strcpy(p->csums_alg, nc->csums_alg);
759 rcu_read_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -0700760
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200761 return drbd_send_command(peer_device, sock, cmd, size, NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700762}
763
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200764int __drbd_send_protocol(struct drbd_connection *connection, enum drbd_packet cmd)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700765{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200766 struct drbd_socket *sock;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700767 struct p_protocol *p;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200768 struct net_conf *nc;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200769 int size, cf;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700770
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200771 sock = &connection->data;
772 p = __conn_prepare_command(connection, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200773 if (!p)
774 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700775
Philipp Reisner44ed1672011-04-19 17:10:19 +0200776 rcu_read_lock();
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200777 nc = rcu_dereference(connection->net_conf);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700778
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200779 if (nc->tentative && connection->agreed_pro_version < 92) {
Philipp Reisner44ed1672011-04-19 17:10:19 +0200780 rcu_read_unlock();
781 mutex_unlock(&sock->mutex);
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +0200782 drbd_err(connection, "--dry-run is not supported by peer");
Philipp Reisner44ed1672011-04-19 17:10:19 +0200783 return -EOPNOTSUPP;
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100784 }
Philipp Reisner44ed1672011-04-19 17:10:19 +0200785
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200786 size = sizeof(*p);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200787 if (connection->agreed_pro_version >= 87)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200788 size += strlen(nc->integrity_alg) + 1;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700789
Philipp Reisner44ed1672011-04-19 17:10:19 +0200790 p->protocol = cpu_to_be32(nc->wire_protocol);
791 p->after_sb_0p = cpu_to_be32(nc->after_sb_0p);
792 p->after_sb_1p = cpu_to_be32(nc->after_sb_1p);
793 p->after_sb_2p = cpu_to_be32(nc->after_sb_2p);
794 p->two_primaries = cpu_to_be32(nc->two_primaries);
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100795 cf = 0;
Andreas Gruenbacher6139f602011-05-06 20:00:02 +0200796 if (nc->discard_my_data)
797 cf |= CF_DISCARD_MY_DATA;
Andreas Gruenbacher6dff2902011-06-28 14:18:12 +0200798 if (nc->tentative)
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200799 cf |= CF_DRY_RUN;
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100800 p->conn_flags = cpu_to_be32(cf);
801
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200802 if (connection->agreed_pro_version >= 87)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200803 strcpy(p->integrity_alg, nc->integrity_alg);
804 rcu_read_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -0700805
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200806 return __conn_send_command(connection, sock, cmd, size, NULL, 0);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200807}
808
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200809int drbd_send_protocol(struct drbd_connection *connection)
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200810{
811 int err;
812
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +0200813 mutex_lock(&connection->data.mutex);
814 err = __drbd_send_protocol(connection, P_PROTOCOL);
815 mutex_unlock(&connection->data.mutex);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200816
817 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700818}
819
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200820static int _drbd_send_uuids(struct drbd_peer_device *peer_device, u64 uuid_flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700821{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200822 struct drbd_device *device = peer_device->device;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200823 struct drbd_socket *sock;
824 struct p_uuids *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700825 int i;
826
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200827 if (!get_ldev_if_state(device, D_NEGOTIATING))
Andreas Gruenbacher2ae5f952011-03-16 01:07:20 +0100828 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700829
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200830 sock = &peer_device->connection->data;
831 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200832 if (!p) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200833 put_ldev(device);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200834 return -EIO;
835 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200836 spin_lock_irq(&device->ldev->md.uuid_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700837 for (i = UI_CURRENT; i < UI_SIZE; i++)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200838 p->uuid[i] = cpu_to_be64(device->ldev->md.uuid[i]);
839 spin_unlock_irq(&device->ldev->md.uuid_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700840
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200841 device->comm_bm_set = drbd_bm_total_weight(device);
842 p->uuid[UI_SIZE] = cpu_to_be64(device->comm_bm_set);
Philipp Reisner44ed1672011-04-19 17:10:19 +0200843 rcu_read_lock();
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200844 uuid_flags |= rcu_dereference(peer_device->connection->net_conf)->discard_my_data ? 1 : 0;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200845 rcu_read_unlock();
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200846 uuid_flags |= test_bit(CRASHED_PRIMARY, &device->flags) ? 2 : 0;
847 uuid_flags |= device->new_state_tmp.disk == D_INCONSISTENT ? 4 : 0;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200848 p->uuid[UI_FLAGS] = cpu_to_be64(uuid_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700849
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200850 put_ldev(device);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200851 return drbd_send_command(peer_device, sock, P_UUIDS, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700852}
853
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200854int drbd_send_uuids(struct drbd_peer_device *peer_device)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700855{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200856 return _drbd_send_uuids(peer_device, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700857}
858
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200859int drbd_send_uuids_skip_initial_sync(struct drbd_peer_device *peer_device)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700860{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200861 return _drbd_send_uuids(peer_device, 8);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700862}
863
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200864void drbd_print_uuids(struct drbd_device *device, const char *text)
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100865{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200866 if (get_ldev_if_state(device, D_NEGOTIATING)) {
867 u64 *uuid = device->ldev->md.uuid;
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200868 drbd_info(device, "%s %016llX:%016llX:%016llX:%016llX\n",
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100869 text,
870 (unsigned long long)uuid[UI_CURRENT],
871 (unsigned long long)uuid[UI_BITMAP],
872 (unsigned long long)uuid[UI_HISTORY_START],
873 (unsigned long long)uuid[UI_HISTORY_END]);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200874 put_ldev(device);
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100875 } else {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +0200876 drbd_info(device, "%s effective data uuid: %016llX\n",
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100877 text,
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200878 (unsigned long long)device->ed_uuid);
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100879 }
880}
881
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200882void drbd_gen_and_send_sync_uuid(struct drbd_peer_device *peer_device)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700883{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200884 struct drbd_device *device = peer_device->device;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200885 struct drbd_socket *sock;
886 struct p_rs_uuid *p;
Lars Ellenberg5a22db82010-12-17 21:14:23 +0100887 u64 uuid;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700888
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200889 D_ASSERT(device, device->state.disk == D_UP_TO_DATE);
Lars Ellenberg5a22db82010-12-17 21:14:23 +0100890
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200891 uuid = device->ldev->md.uuid[UI_BITMAP];
Philipp Reisner5ba3dac2011-10-05 15:54:18 +0200892 if (uuid && uuid != UUID_JUST_CREATED)
893 uuid = uuid + UUID_NEW_BM_OFFSET;
894 else
895 get_random_bytes(&uuid, sizeof(u64));
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200896 drbd_uuid_set(device, UI_BITMAP, uuid);
897 drbd_print_uuids(device, "updated sync UUID");
898 drbd_md_sync(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700899
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200900 sock = &peer_device->connection->data;
901 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200902 if (p) {
903 p->uuid = cpu_to_be64(uuid);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200904 drbd_send_command(peer_device, sock, P_SYNC_UUID, sizeof(*p), NULL, 0);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200905 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700906}
907
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200908int drbd_send_sizes(struct drbd_peer_device *peer_device, int trigger_reply, enum dds_flags flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700909{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200910 struct drbd_device *device = peer_device->device;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200911 struct drbd_socket *sock;
912 struct p_sizes *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700913 sector_t d_size, u_size;
Lars Ellenbergdb141b22012-06-25 19:15:58 +0200914 int q_order_type;
915 unsigned int max_bio_size;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700916
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200917 if (get_ldev_if_state(device, D_NEGOTIATING)) {
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +0200918 D_ASSERT(device, device->ldev->backing_bdev);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200919 d_size = drbd_get_max_capacity(device->ldev);
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200920 rcu_read_lock();
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200921 u_size = rcu_dereference(device->ldev->disk_conf)->disk_size;
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200922 rcu_read_unlock();
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200923 q_order_type = drbd_queue_order_type(device);
924 max_bio_size = queue_max_hw_sectors(device->ldev->backing_bdev->bd_disk->queue) << 9;
Lars Ellenbergdb141b22012-06-25 19:15:58 +0200925 max_bio_size = min(max_bio_size, DRBD_MAX_BIO_SIZE);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200926 put_ldev(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700927 } else {
928 d_size = 0;
929 u_size = 0;
930 q_order_type = QUEUE_ORDERED_NONE;
Philipp Reisner99432fc2011-05-20 16:39:13 +0200931 max_bio_size = DRBD_MAX_BIO_SIZE; /* ... multiple BIOs per peer_request */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700932 }
933
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200934 sock = &peer_device->connection->data;
935 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200936 if (!p)
937 return -EIO;
Philipp Reisner2ffca4f2011-06-30 15:43:06 +0200938
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200939 if (peer_device->connection->agreed_pro_version <= 94)
Lars Ellenbergdb141b22012-06-25 19:15:58 +0200940 max_bio_size = min(max_bio_size, DRBD_MAX_SIZE_H80_PACKET);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200941 else if (peer_device->connection->agreed_pro_version < 100)
Philipp Reisner98683652012-11-09 14:18:43 +0100942 max_bio_size = min(max_bio_size, DRBD_MAX_BIO_SIZE_P95);
Philipp Reisner68093842011-06-30 15:43:06 +0200943
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200944 p->d_size = cpu_to_be64(d_size);
945 p->u_size = cpu_to_be64(u_size);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +0200946 p->c_size = cpu_to_be64(trigger_reply ? 0 : drbd_get_capacity(device->this_bdev));
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200947 p->max_bio_size = cpu_to_be32(max_bio_size);
948 p->queue_order_type = cpu_to_be16(q_order_type);
949 p->dds_flags = cpu_to_be16(flags);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200950 return drbd_send_command(peer_device, sock, P_SIZES, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700951}
952
953/**
Lars Ellenbergf479ea02011-10-27 16:52:30 +0200954 * drbd_send_current_state() - Sends the drbd state to the peer
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200955 * @peer_device: DRBD peer device.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700956 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200957int drbd_send_current_state(struct drbd_peer_device *peer_device)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700958{
Andreas Gruenbacher7c967152011-03-22 00:49:36 +0100959 struct drbd_socket *sock;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200960 struct p_state *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700961
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200962 sock = &peer_device->connection->data;
963 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200964 if (!p)
965 return -EIO;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200966 p->state = cpu_to_be32(peer_device->device->state.i); /* Within the send mutex */
967 return drbd_send_command(peer_device, sock, P_STATE, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700968}
969
Lars Ellenbergf479ea02011-10-27 16:52:30 +0200970/**
971 * drbd_send_state() - After a state change, sends the new state to the peer
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200972 * @peer_device: DRBD peer device.
Philipp Reisner43de7c82011-11-10 13:16:13 +0100973 * @state: the state to send, not necessarily the current state.
Lars Ellenbergf479ea02011-10-27 16:52:30 +0200974 *
975 * Each state change queues an "after_state_ch" work, which will eventually
976 * send the resulting new state to the peer. If more state changes happen
977 * between queuing and processing of the after_state_ch work, we still
978 * want to send each intermediary state in the order it occurred.
979 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200980int drbd_send_state(struct drbd_peer_device *peer_device, union drbd_state state)
Lars Ellenbergf479ea02011-10-27 16:52:30 +0200981{
Philipp Reisner43de7c82011-11-10 13:16:13 +0100982 struct drbd_socket *sock;
983 struct p_state *p;
Lars Ellenbergf479ea02011-10-27 16:52:30 +0200984
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200985 sock = &peer_device->connection->data;
986 p = drbd_prepare_command(peer_device, sock);
Philipp Reisner43de7c82011-11-10 13:16:13 +0100987 if (!p)
988 return -EIO;
989 p->state = cpu_to_be32(state.i); /* Within the send mutex */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200990 return drbd_send_command(peer_device, sock, P_STATE, sizeof(*p), NULL, 0);
Philipp Reisner43de7c82011-11-10 13:16:13 +0100991}
Lars Ellenbergf479ea02011-10-27 16:52:30 +0200992
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200993int 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 -0700994{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200995 struct drbd_socket *sock;
996 struct p_req_state *p;
Lars Ellenbergf479ea02011-10-27 16:52:30 +0200997
Andreas Gruenbacher69a22772011-08-09 00:47:13 +0200998 sock = &peer_device->connection->data;
999 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001000 if (!p)
1001 return -EIO;
1002 p->mask = cpu_to_be32(mask.i);
1003 p->val = cpu_to_be32(val.i);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001004 return drbd_send_command(peer_device, sock, P_STATE_CHG_REQ, sizeof(*p), NULL, 0);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001005}
1006
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001007int conn_send_state_req(struct drbd_connection *connection, union drbd_state mask, union drbd_state val)
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001008{
1009 enum drbd_packet cmd;
1010 struct drbd_socket *sock;
1011 struct p_req_state *p;
1012
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001013 cmd = connection->agreed_pro_version < 100 ? P_STATE_CHG_REQ : P_CONN_ST_CHG_REQ;
1014 sock = &connection->data;
1015 p = conn_prepare_command(connection, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001016 if (!p)
1017 return -EIO;
1018 p->mask = cpu_to_be32(mask.i);
1019 p->val = cpu_to_be32(val.i);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001020 return conn_send_command(connection, sock, cmd, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001021}
1022
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001023void drbd_send_sr_reply(struct drbd_peer_device *peer_device, enum drbd_state_rv retcode)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001024{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001025 struct drbd_socket *sock;
1026 struct p_req_state_reply *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001027
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001028 sock = &peer_device->connection->meta;
1029 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001030 if (p) {
1031 p->retcode = cpu_to_be32(retcode);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001032 drbd_send_command(peer_device, sock, P_STATE_CHG_REPLY, sizeof(*p), NULL, 0);
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001033 }
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001034}
1035
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001036void conn_send_sr_reply(struct drbd_connection *connection, enum drbd_state_rv retcode)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001037{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001038 struct drbd_socket *sock;
1039 struct p_req_state_reply *p;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001040 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 -07001041
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001042 sock = &connection->meta;
1043 p = conn_prepare_command(connection, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001044 if (p) {
1045 p->retcode = cpu_to_be32(retcode);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001046 conn_send_command(connection, sock, cmd, sizeof(*p), NULL, 0);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001047 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001048}
1049
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001050static void dcbp_set_code(struct p_compressed_bm *p, enum drbd_bitmap_code code)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001051{
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001052 BUG_ON(code & ~0xf);
1053 p->encoding = (p->encoding & ~0xf) | code;
1054}
Philipp Reisnerb411b362009-09-25 16:07:19 -07001055
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001056static void dcbp_set_start(struct p_compressed_bm *p, int set)
1057{
1058 p->encoding = (p->encoding & ~0x80) | (set ? 0x80 : 0);
1059}
Philipp Reisnerb411b362009-09-25 16:07:19 -07001060
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001061static void dcbp_set_pad_bits(struct p_compressed_bm *p, int n)
1062{
1063 BUG_ON(n & ~0x7);
1064 p->encoding = (p->encoding & (~0x7 << 4)) | (n << 4);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001065}
1066
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001067static int fill_bitmap_rle_bits(struct drbd_device *device,
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001068 struct p_compressed_bm *p,
1069 unsigned int size,
1070 struct bm_xfer_ctx *c)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001071{
1072 struct bitstream bs;
1073 unsigned long plain_bits;
1074 unsigned long tmp;
1075 unsigned long rl;
1076 unsigned len;
1077 unsigned toggle;
Philipp Reisner44ed1672011-04-19 17:10:19 +02001078 int bits, use_rle;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001079
1080 /* may we use this feature? */
Philipp Reisner44ed1672011-04-19 17:10:19 +02001081 rcu_read_lock();
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001082 use_rle = rcu_dereference(first_peer_device(device)->connection->net_conf)->use_rle;
Philipp Reisner44ed1672011-04-19 17:10:19 +02001083 rcu_read_unlock();
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001084 if (!use_rle || first_peer_device(device)->connection->agreed_pro_version < 90)
Philipp Reisner44ed1672011-04-19 17:10:19 +02001085 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001086
1087 if (c->bit_offset >= c->bm_bits)
1088 return 0; /* nothing to do. */
1089
1090 /* use at most thus many bytes */
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001091 bitstream_init(&bs, p->code, size, 0);
1092 memset(p->code, 0, size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001093 /* plain bits covered in this code string */
1094 plain_bits = 0;
1095
1096 /* p->encoding & 0x80 stores whether the first run length is set.
1097 * bit offset is implicit.
1098 * start with toggle == 2 to be able to tell the first iteration */
1099 toggle = 2;
1100
1101 /* see how much plain bits we can stuff into one packet
1102 * using RLE and VLI. */
1103 do {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001104 tmp = (toggle == 0) ? _drbd_bm_find_next_zero(device, c->bit_offset)
1105 : _drbd_bm_find_next(device, c->bit_offset);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001106 if (tmp == -1UL)
1107 tmp = c->bm_bits;
1108 rl = tmp - c->bit_offset;
1109
1110 if (toggle == 2) { /* first iteration */
1111 if (rl == 0) {
1112 /* the first checked bit was set,
1113 * store start value, */
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001114 dcbp_set_start(p, 1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001115 /* but skip encoding of zero run length */
1116 toggle = !toggle;
1117 continue;
1118 }
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001119 dcbp_set_start(p, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001120 }
1121
1122 /* paranoia: catch zero runlength.
1123 * can only happen if bitmap is modified while we scan it. */
1124 if (rl == 0) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001125 drbd_err(device, "unexpected zero runlength while encoding bitmap "
Philipp Reisnerb411b362009-09-25 16:07:19 -07001126 "t:%u bo:%lu\n", toggle, c->bit_offset);
1127 return -1;
1128 }
1129
1130 bits = vli_encode_bits(&bs, rl);
1131 if (bits == -ENOBUFS) /* buffer full */
1132 break;
1133 if (bits <= 0) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001134 drbd_err(device, "error while encoding bitmap: %d\n", bits);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001135 return 0;
1136 }
1137
1138 toggle = !toggle;
1139 plain_bits += rl;
1140 c->bit_offset = tmp;
1141 } while (c->bit_offset < c->bm_bits);
1142
1143 len = bs.cur.b - p->code + !!bs.cur.bit;
1144
1145 if (plain_bits < (len << 3)) {
1146 /* incompressible with this method.
1147 * we need to rewind both word and bit position. */
1148 c->bit_offset -= plain_bits;
1149 bm_xfer_ctx_bit_to_word_offset(c);
1150 c->bit_offset = c->word_offset * BITS_PER_LONG;
1151 return 0;
1152 }
1153
1154 /* RLE + VLI was able to compress it just fine.
1155 * update c->word_offset. */
1156 bm_xfer_ctx_bit_to_word_offset(c);
1157
1158 /* store pad_bits */
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001159 dcbp_set_pad_bits(p, (8 - bs.cur.bit) & 0x7);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001160
1161 return len;
1162}
1163
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001164/**
1165 * send_bitmap_rle_or_plain
1166 *
1167 * Return 0 when done, 1 when another iteration is needed, and a negative error
1168 * code upon failure.
1169 */
1170static int
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001171send_bitmap_rle_or_plain(struct drbd_device *device, struct bm_xfer_ctx *c)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001172{
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001173 struct drbd_socket *sock = &first_peer_device(device)->connection->data;
1174 unsigned int header_size = drbd_header_size(first_peer_device(device)->connection);
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001175 struct p_compressed_bm *p = sock->sbuf + header_size;
Andreas Gruenbachera982dd52010-12-10 00:45:25 +01001176 int len, err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001177
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001178 len = fill_bitmap_rle_bits(device, p,
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001179 DRBD_SOCKET_BUFFER_SIZE - header_size - sizeof(*p), c);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001180 if (len < 0)
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001181 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001182
1183 if (len) {
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001184 dcbp_set_code(p, RLE_VLI_Bits);
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001185 err = __send_command(first_peer_device(device)->connection, device->vnr, sock,
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001186 P_COMPRESSED_BITMAP, sizeof(*p) + len,
1187 NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001188 c->packets[0]++;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001189 c->bytes[0] += header_size + sizeof(*p) + len;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001190
1191 if (c->bit_offset >= c->bm_bits)
1192 len = 0; /* DONE */
1193 } else {
1194 /* was not compressible.
1195 * send a buffer full of plain text bits instead. */
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001196 unsigned int data_size;
1197 unsigned long num_words;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001198 unsigned long *p = sock->sbuf + header_size;
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001199
1200 data_size = DRBD_SOCKET_BUFFER_SIZE - header_size;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001201 num_words = min_t(size_t, data_size / sizeof(*p),
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001202 c->bm_words - c->word_offset);
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001203 len = num_words * sizeof(*p);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001204 if (len)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001205 drbd_bm_get_lel(device, c->word_offset, num_words, p);
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001206 err = __send_command(first_peer_device(device)->connection, device->vnr, sock, P_BITMAP, len, NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001207 c->word_offset += num_words;
1208 c->bit_offset = c->word_offset * BITS_PER_LONG;
1209
1210 c->packets[1]++;
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001211 c->bytes[1] += header_size + len;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001212
1213 if (c->bit_offset > c->bm_bits)
1214 c->bit_offset = c->bm_bits;
1215 }
Andreas Gruenbachera982dd52010-12-10 00:45:25 +01001216 if (!err) {
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001217 if (len == 0) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001218 INFO_bm_xfer_stats(device, "send", c);
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001219 return 0;
1220 } else
1221 return 1;
1222 }
1223 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001224}
1225
1226/* See the comment at receive_bitmap() */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001227static int _drbd_send_bitmap(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001228{
1229 struct bm_xfer_ctx c;
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001230 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001231
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001232 if (!expect(device->bitmap))
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001233 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001234
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001235 if (get_ldev(device)) {
1236 if (drbd_md_test_flag(device->ldev, MDF_FULL_SYNC)) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001237 drbd_info(device, "Writing the whole bitmap, MDF_FullSync was set.\n");
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001238 drbd_bm_set_all(device);
1239 if (drbd_bm_write(device)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001240 /* write_bm did fail! Leave full sync flag set in Meta P_DATA
1241 * but otherwise process as per normal - need to tell other
1242 * side that a full resync is required! */
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001243 drbd_err(device, "Failed to write bitmap to disk!\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07001244 } else {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001245 drbd_md_clear_flag(device, MDF_FULL_SYNC);
1246 drbd_md_sync(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001247 }
1248 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001249 put_ldev(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001250 }
1251
1252 c = (struct bm_xfer_ctx) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001253 .bm_bits = drbd_bm_bits(device),
1254 .bm_words = drbd_bm_words(device),
Philipp Reisnerb411b362009-09-25 16:07:19 -07001255 };
1256
1257 do {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001258 err = send_bitmap_rle_or_plain(device, &c);
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001259 } while (err > 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001260
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001261 return err == 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001262}
1263
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001264int drbd_send_bitmap(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001265{
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001266 struct drbd_socket *sock = &first_peer_device(device)->connection->data;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001267 int err = -1;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001268
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001269 mutex_lock(&sock->mutex);
1270 if (sock->socket)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001271 err = !_drbd_send_bitmap(device);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001272 mutex_unlock(&sock->mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001273 return err;
1274}
1275
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001276void drbd_send_b_ack(struct drbd_connection *connection, u32 barrier_nr, u32 set_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001277{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001278 struct drbd_socket *sock;
1279 struct p_barrier_ack *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001280
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001281 if (connection->cstate < C_WF_REPORT_PARAMS)
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001282 return;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001283
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001284 sock = &connection->meta;
1285 p = conn_prepare_command(connection, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001286 if (!p)
1287 return;
1288 p->barrier = barrier_nr;
1289 p->set_size = cpu_to_be32(set_size);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001290 conn_send_command(connection, sock, P_BARRIER_ACK, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001291}
1292
1293/**
1294 * _drbd_send_ack() - Sends an ack packet
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001295 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07001296 * @cmd: Packet command code.
1297 * @sector: sector, needs to be in big endian byte order
1298 * @blksize: size in byte, needs to be in big endian byte order
1299 * @block_id: Id, big endian byte order
1300 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001301static int _drbd_send_ack(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001302 u64 sector, u32 blksize, u64 block_id)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001303{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001304 struct drbd_socket *sock;
1305 struct p_block_ack *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001306
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001307 if (peer_device->device->state.conn < C_CONNECTED)
Andreas Gruenbachera8c32aa2011-03-16 01:27:22 +01001308 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001309
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001310 sock = &peer_device->connection->meta;
1311 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001312 if (!p)
1313 return -EIO;
1314 p->sector = sector;
1315 p->block_id = block_id;
1316 p->blksize = blksize;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001317 p->seq_num = cpu_to_be32(atomic_inc_return(&peer_device->device->packet_seq));
1318 return drbd_send_command(peer_device, sock, cmd, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001319}
1320
Lars Ellenberg2b2bf212010-10-06 11:46:55 +02001321/* dp->sector and dp->block_id already/still in network byte order,
1322 * data_size is payload size according to dp->head,
1323 * and may need to be corrected for digest size. */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001324void drbd_send_ack_dp(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
Andreas Gruenbachera9a99942011-03-16 01:30:14 +01001325 struct p_data *dp, int data_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001326{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001327 if (peer_device->connection->peer_integrity_tfm)
1328 data_size -= crypto_hash_digestsize(peer_device->connection->peer_integrity_tfm);
1329 _drbd_send_ack(peer_device, cmd, dp->sector, cpu_to_be32(data_size),
Andreas Gruenbachera9a99942011-03-16 01:30:14 +01001330 dp->block_id);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001331}
1332
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001333void drbd_send_ack_rp(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
Andreas Gruenbachera9a99942011-03-16 01:30:14 +01001334 struct p_block_req *rp)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001335{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001336 _drbd_send_ack(peer_device, cmd, rp->sector, rp->blksize, rp->block_id);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001337}
1338
1339/**
1340 * drbd_send_ack() - Sends an ack packet
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001341 * @device: DRBD device
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001342 * @cmd: packet command code
1343 * @peer_req: peer request
Philipp Reisnerb411b362009-09-25 16:07:19 -07001344 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001345int drbd_send_ack(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001346 struct drbd_peer_request *peer_req)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001347{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001348 return _drbd_send_ack(peer_device, cmd,
Andreas Gruenbacherdd516122011-03-16 15:39:08 +01001349 cpu_to_be64(peer_req->i.sector),
1350 cpu_to_be32(peer_req->i.size),
1351 peer_req->block_id);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001352}
1353
1354/* This function misuses the block_id field to signal if the blocks
1355 * are is sync or not. */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001356int drbd_send_ack_ex(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001357 sector_t sector, int blksize, u64 block_id)
1358{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001359 return _drbd_send_ack(peer_device, cmd,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001360 cpu_to_be64(sector),
1361 cpu_to_be32(blksize),
1362 cpu_to_be64(block_id));
1363}
1364
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001365int drbd_send_drequest(struct drbd_peer_device *peer_device, int cmd,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001366 sector_t sector, int size, u64 block_id)
1367{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001368 struct drbd_socket *sock;
1369 struct p_block_req *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001370
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001371 sock = &peer_device->connection->data;
1372 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001373 if (!p)
1374 return -EIO;
1375 p->sector = cpu_to_be64(sector);
1376 p->block_id = block_id;
1377 p->blksize = cpu_to_be32(size);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001378 return drbd_send_command(peer_device, sock, cmd, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001379}
1380
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001381int drbd_send_drequest_csum(struct drbd_peer_device *peer_device, sector_t sector, int size,
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001382 void *digest, int digest_size, enum drbd_packet cmd)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001383{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001384 struct drbd_socket *sock;
1385 struct p_block_req *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001386
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001387 /* FIXME: Put the digest into the preallocated socket buffer. */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001388
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001389 sock = &peer_device->connection->data;
1390 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001391 if (!p)
1392 return -EIO;
1393 p->sector = cpu_to_be64(sector);
1394 p->block_id = ID_SYNCER /* unused */;
1395 p->blksize = cpu_to_be32(size);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001396 return drbd_send_command(peer_device, sock, cmd, sizeof(*p), digest, digest_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001397}
1398
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001399int drbd_send_ov_request(struct drbd_peer_device *peer_device, sector_t sector, int size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001400{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001401 struct drbd_socket *sock;
1402 struct p_block_req *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001403
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001404 sock = &peer_device->connection->data;
1405 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001406 if (!p)
1407 return -EIO;
1408 p->sector = cpu_to_be64(sector);
1409 p->block_id = ID_SYNCER /* unused */;
1410 p->blksize = cpu_to_be32(size);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001411 return drbd_send_command(peer_device, sock, P_OV_REQUEST, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001412}
1413
1414/* called on sndtimeo
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001415 * returns false if we should retry,
1416 * true if we think connection is dead
Philipp Reisnerb411b362009-09-25 16:07:19 -07001417 */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001418static int we_should_drop_the_connection(struct drbd_connection *connection, struct socket *sock)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001419{
1420 int drop_it;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001421 /* long elapsed = (long)(jiffies - device->last_received); */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001422
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001423 drop_it = connection->meta.socket == sock
1424 || !connection->asender.task
1425 || get_t_state(&connection->asender) != RUNNING
1426 || connection->cstate < C_WF_REPORT_PARAMS;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001427
1428 if (drop_it)
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001429 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001430
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001431 drop_it = !--connection->ko_count;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001432 if (!drop_it) {
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +02001433 drbd_err(connection, "[%s/%d] sock_sendmsg time expired, ko = %u\n",
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001434 current->comm, current->pid, connection->ko_count);
1435 request_ping(connection);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001436 }
1437
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001438 return drop_it; /* && (device->state == R_PRIMARY) */;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001439}
1440
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001441static void drbd_update_congested(struct drbd_connection *connection)
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001442{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001443 struct sock *sk = connection->data.socket->sk;
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001444 if (sk->sk_wmem_queued > sk->sk_sndbuf * 4 / 5)
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001445 set_bit(NET_CONGESTED, &connection->flags);
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001446}
1447
Philipp Reisnerb411b362009-09-25 16:07:19 -07001448/* The idea of sendpage seems to be to put some kind of reference
1449 * to the page into the skb, and to hand it over to the NIC. In
1450 * this process get_page() gets called.
1451 *
1452 * As soon as the page was really sent over the network put_page()
1453 * gets called by some part of the network layer. [ NIC driver? ]
1454 *
1455 * [ get_page() / put_page() increment/decrement the count. If count
1456 * reaches 0 the page will be freed. ]
1457 *
1458 * This works nicely with pages from FSs.
1459 * But this means that in protocol A we might signal IO completion too early!
1460 *
1461 * In order not to corrupt data during a resync we must make sure
1462 * that we do not reuse our own buffer pages (EEs) to early, therefore
1463 * we have the net_ee list.
1464 *
1465 * XFS seems to have problems, still, it submits pages with page_count == 0!
1466 * As a workaround, we disable sendpage on pages
1467 * with page_count == 0 or PageSlab.
1468 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001469static int _drbd_no_send_page(struct drbd_peer_device *peer_device, struct page *page,
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001470 int offset, size_t size, unsigned msg_flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001471{
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001472 struct socket *socket;
1473 void *addr;
1474 int err;
1475
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001476 socket = peer_device->connection->data.socket;
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001477 addr = kmap(page) + offset;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001478 err = drbd_send_all(peer_device->connection, socket, addr, size, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001479 kunmap(page);
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001480 if (!err)
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001481 peer_device->device->send_cnt += size >> 9;
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001482 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001483}
1484
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001485static int _drbd_send_page(struct drbd_peer_device *peer_device, struct page *page,
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001486 int offset, size_t size, unsigned msg_flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001487{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001488 struct socket *socket = peer_device->connection->data.socket;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001489 mm_segment_t oldfs = get_fs();
Philipp Reisnerb411b362009-09-25 16:07:19 -07001490 int len = size;
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001491 int err = -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001492
1493 /* e.g. XFS meta- & log-data is in slab pages, which have a
1494 * page_count of 0 and/or have PageSlab() set.
1495 * we cannot use send_page for those, as that does get_page();
1496 * put_page(); and would cause either a VM_BUG directly, or
1497 * __page_cache_release a page that would actually still be referenced
1498 * by someone, leading to some obscure delayed Oops somewhere else. */
1499 if (disable_sendpage || (page_count(page) < 1) || PageSlab(page))
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001500 return _drbd_no_send_page(peer_device, page, offset, size, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001501
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001502 msg_flags |= MSG_NOSIGNAL;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001503 drbd_update_congested(peer_device->connection);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001504 set_fs(KERNEL_DS);
1505 do {
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001506 int sent;
1507
1508 sent = socket->ops->sendpage(socket, page, offset, len, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001509 if (sent <= 0) {
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001510 if (sent == -EAGAIN) {
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001511 if (we_should_drop_the_connection(peer_device->connection, socket))
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001512 break;
1513 continue;
1514 }
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001515 drbd_warn(peer_device->device, "%s: size=%d len=%d sent=%d\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -07001516 __func__, (int)size, len, sent);
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001517 if (sent < 0)
1518 err = sent;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001519 break;
1520 }
1521 len -= sent;
1522 offset += sent;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001523 } while (len > 0 /* THINK && device->cstate >= C_CONNECTED*/);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001524 set_fs(oldfs);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001525 clear_bit(NET_CONGESTED, &peer_device->connection->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001526
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001527 if (len == 0) {
1528 err = 0;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001529 peer_device->device->send_cnt += size >> 9;
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001530 }
1531 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001532}
1533
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001534static int _drbd_send_bio(struct drbd_peer_device *peer_device, struct bio *bio)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001535{
Kent Overstreet79886132013-11-23 17:19:00 -08001536 struct bio_vec bvec;
1537 struct bvec_iter iter;
1538
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001539 /* hint all but last page with MSG_MORE */
Kent Overstreet79886132013-11-23 17:19:00 -08001540 bio_for_each_segment(bvec, bio, iter) {
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001541 int err;
1542
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001543 err = _drbd_no_send_page(peer_device, bvec.bv_page,
Kent Overstreet79886132013-11-23 17:19:00 -08001544 bvec.bv_offset, bvec.bv_len,
Kent Overstreet4550dd62013-08-07 14:26:21 -07001545 bio_iter_last(bvec, iter)
Kent Overstreet79886132013-11-23 17:19:00 -08001546 ? 0 : MSG_MORE);
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001547 if (err)
1548 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001549 }
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001550 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001551}
1552
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001553static int _drbd_send_zc_bio(struct drbd_peer_device *peer_device, struct bio *bio)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001554{
Kent Overstreet79886132013-11-23 17:19:00 -08001555 struct bio_vec bvec;
1556 struct bvec_iter iter;
1557
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001558 /* hint all but last page with MSG_MORE */
Kent Overstreet79886132013-11-23 17:19:00 -08001559 bio_for_each_segment(bvec, bio, iter) {
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001560 int err;
1561
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001562 err = _drbd_send_page(peer_device, bvec.bv_page,
Kent Overstreet79886132013-11-23 17:19:00 -08001563 bvec.bv_offset, bvec.bv_len,
Kent Overstreet4550dd62013-08-07 14:26:21 -07001564 bio_iter_last(bvec, iter) ? 0 : MSG_MORE);
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001565 if (err)
1566 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001567 }
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001568 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001569}
1570
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001571static int _drbd_send_zc_ee(struct drbd_peer_device *peer_device,
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001572 struct drbd_peer_request *peer_req)
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001573{
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001574 struct page *page = peer_req->pages;
1575 unsigned len = peer_req->i.size;
Andreas Gruenbacher9f692302011-03-16 10:49:09 +01001576 int err;
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001577
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001578 /* hint all but last page with MSG_MORE */
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001579 page_chain_for_each(page) {
1580 unsigned l = min_t(unsigned, len, PAGE_SIZE);
Andreas Gruenbacher9f692302011-03-16 10:49:09 +01001581
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001582 err = _drbd_send_page(peer_device, page, 0, l,
Andreas Gruenbacher9f692302011-03-16 10:49:09 +01001583 page_chain_next(page) ? MSG_MORE : 0);
1584 if (err)
1585 return err;
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001586 len -= l;
1587 }
Andreas Gruenbacher9f692302011-03-16 10:49:09 +01001588 return 0;
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001589}
1590
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001591static u32 bio_flags_to_wire(struct drbd_connection *connection, unsigned long bi_rw)
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001592{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001593 if (connection->agreed_pro_version >= 95)
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001594 return (bi_rw & REQ_SYNC ? DP_RW_SYNC : 0) |
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001595 (bi_rw & REQ_FUA ? DP_FUA : 0) |
1596 (bi_rw & REQ_FLUSH ? DP_FLUSH : 0) |
1597 (bi_rw & REQ_DISCARD ? DP_DISCARD : 0);
1598 else
Jens Axboe721a9602011-03-09 11:56:30 +01001599 return bi_rw & REQ_SYNC ? DP_RW_SYNC : 0;
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001600}
1601
Philipp Reisnerb411b362009-09-25 16:07:19 -07001602/* Used to send write requests
1603 * R_PRIMARY -> Peer (P_DATA)
1604 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001605int drbd_send_dblock(struct drbd_peer_device *peer_device, struct drbd_request *req)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001606{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001607 struct drbd_device *device = peer_device->device;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001608 struct drbd_socket *sock;
1609 struct p_data *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001610 unsigned int dp_flags = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001611 int dgs;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001612 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001613
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001614 sock = &peer_device->connection->data;
1615 p = drbd_prepare_command(peer_device, sock);
1616 dgs = peer_device->connection->integrity_tfm ?
1617 crypto_hash_digestsize(peer_device->connection->integrity_tfm) : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001618
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001619 if (!p)
1620 return -EIO;
1621 p->sector = cpu_to_be64(req->i.sector);
1622 p->block_id = (unsigned long)req;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001623 p->seq_num = cpu_to_be32(atomic_inc_return(&device->packet_seq));
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001624 dp_flags = bio_flags_to_wire(peer_device->connection, req->master_bio->bi_rw);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001625 if (device->state.conn >= C_SYNC_SOURCE &&
1626 device->state.conn <= C_PAUSED_SYNC_T)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001627 dp_flags |= DP_MAY_SET_IN_SYNC;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001628 if (peer_device->connection->agreed_pro_version >= 100) {
Philipp Reisner303d1442011-04-13 16:24:47 -07001629 if (req->rq_state & RQ_EXP_RECEIVE_ACK)
1630 dp_flags |= DP_SEND_RECEIVE_ACK;
1631 if (req->rq_state & RQ_EXP_WRITE_ACK)
1632 dp_flags |= DP_SEND_WRITE_ACK;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001633 }
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001634 p->dp_flags = cpu_to_be32(dp_flags);
1635 if (dgs)
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001636 drbd_csum_bio(peer_device->connection->integrity_tfm, req->master_bio, p + 1);
1637 err = __send_command(peer_device->connection, device->vnr, sock, P_DATA, sizeof(*p) + dgs, NULL, req->i.size);
Andreas Gruenbacher6bdb9b02011-03-16 11:52:58 +01001638 if (!err) {
Lars Ellenberg470be442010-11-10 10:36:52 +01001639 /* For protocol A, we have to memcpy the payload into
1640 * socket buffers, as we may complete right away
1641 * as soon as we handed it over to tcp, at which point the data
1642 * pages may become invalid.
1643 *
1644 * For data-integrity enabled, we copy it as well, so we can be
1645 * sure that even if the bio pages may still be modified, it
1646 * won't change the data on the wire, thus if the digest checks
1647 * out ok after sending on this side, but does not fit on the
1648 * receiving side, we sure have detected corruption elsewhere.
1649 */
Philipp Reisner303d1442011-04-13 16:24:47 -07001650 if (!(req->rq_state & (RQ_EXP_RECEIVE_ACK | RQ_EXP_WRITE_ACK)) || dgs)
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001651 err = _drbd_send_bio(peer_device, req->master_bio);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001652 else
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001653 err = _drbd_send_zc_bio(peer_device, req->master_bio);
Lars Ellenberg470be442010-11-10 10:36:52 +01001654
1655 /* double check digest, sometimes buffers have been modified in flight. */
1656 if (dgs > 0 && dgs <= 64) {
Bart Van Assche24c48302011-05-21 18:32:29 +02001657 /* 64 byte, 512 bit, is the largest digest size
Lars Ellenberg470be442010-11-10 10:36:52 +01001658 * currently supported in kernel crypto. */
1659 unsigned char digest[64];
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001660 drbd_csum_bio(peer_device->connection->integrity_tfm, req->master_bio, digest);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001661 if (memcmp(p + 1, digest, dgs)) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001662 drbd_warn(device,
Lars Ellenberg470be442010-11-10 10:36:52 +01001663 "Digest mismatch, buffer modified by upper layers during write: %llus +%u\n",
Andreas Gruenbacherace652a2011-01-03 17:09:58 +01001664 (unsigned long long)req->i.sector, req->i.size);
Lars Ellenberg470be442010-11-10 10:36:52 +01001665 }
1666 } /* else if (dgs > 64) {
1667 ... Be noisy about digest too large ...
1668 } */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001669 }
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001670 mutex_unlock(&sock->mutex); /* locked by drbd_prepare_command() */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001671
Andreas Gruenbacher6bdb9b02011-03-16 11:52:58 +01001672 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001673}
1674
1675/* answer packet, used to send data back for read requests:
1676 * Peer -> (diskless) R_PRIMARY (P_DATA_REPLY)
1677 * C_SYNC_SOURCE -> C_SYNC_TARGET (P_RS_DATA_REPLY)
1678 */
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001679int drbd_send_block(struct drbd_peer_device *peer_device, enum drbd_packet cmd,
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001680 struct drbd_peer_request *peer_req)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001681{
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001682 struct drbd_device *device = peer_device->device;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001683 struct drbd_socket *sock;
1684 struct p_data *p;
Andreas Gruenbacher7b57b89d2011-03-16 11:35:20 +01001685 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001686 int dgs;
1687
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001688 sock = &peer_device->connection->data;
1689 p = drbd_prepare_command(peer_device, sock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001690
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001691 dgs = peer_device->connection->integrity_tfm ?
1692 crypto_hash_digestsize(peer_device->connection->integrity_tfm) : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001693
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001694 if (!p)
1695 return -EIO;
1696 p->sector = cpu_to_be64(peer_req->i.sector);
1697 p->block_id = peer_req->block_id;
1698 p->seq_num = 0; /* unused */
Lars Ellenbergb17f33c2012-02-08 15:32:51 +01001699 p->dp_flags = 0;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001700 if (dgs)
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001701 drbd_csum_ee(peer_device->connection->integrity_tfm, peer_req, p + 1);
1702 err = __send_command(peer_device->connection, device->vnr, sock, cmd, sizeof(*p) + dgs, NULL, peer_req->i.size);
Andreas Gruenbacher7b57b89d2011-03-16 11:35:20 +01001703 if (!err)
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001704 err = _drbd_send_zc_ee(peer_device, peer_req);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001705 mutex_unlock(&sock->mutex); /* locked by drbd_prepare_command() */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001706
Andreas Gruenbacher7b57b89d2011-03-16 11:35:20 +01001707 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001708}
1709
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001710int drbd_send_out_of_sync(struct drbd_peer_device *peer_device, struct drbd_request *req)
Philipp Reisner73a01a12010-10-27 14:33:00 +02001711{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001712 struct drbd_socket *sock;
1713 struct p_block_desc *p;
Philipp Reisner73a01a12010-10-27 14:33:00 +02001714
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001715 sock = &peer_device->connection->data;
1716 p = drbd_prepare_command(peer_device, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001717 if (!p)
1718 return -EIO;
1719 p->sector = cpu_to_be64(req->i.sector);
1720 p->blksize = cpu_to_be32(req->i.size);
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02001721 return drbd_send_command(peer_device, sock, P_OUT_OF_SYNC, sizeof(*p), NULL, 0);
Philipp Reisner73a01a12010-10-27 14:33:00 +02001722}
1723
Philipp Reisnerb411b362009-09-25 16:07:19 -07001724/*
1725 drbd_send distinguishes two cases:
1726
1727 Packets sent via the data socket "sock"
1728 and packets sent via the meta data socket "msock"
1729
1730 sock msock
1731 -----------------+-------------------------+------------------------------
1732 timeout conf.timeout / 2 conf.timeout / 2
1733 timeout action send a ping via msock Abort communication
1734 and close all sockets
1735*/
1736
1737/*
1738 * you must have down()ed the appropriate [m]sock_mutex elsewhere!
1739 */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001740int drbd_send(struct drbd_connection *connection, struct socket *sock,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001741 void *buf, size_t size, unsigned msg_flags)
1742{
1743 struct kvec iov;
1744 struct msghdr msg;
1745 int rv, sent = 0;
1746
1747 if (!sock)
Andreas Gruenbacherc0d42c82010-12-09 23:52:22 +01001748 return -EBADR;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001749
1750 /* THINK if (signal_pending) return ... ? */
1751
1752 iov.iov_base = buf;
1753 iov.iov_len = size;
1754
1755 msg.msg_name = NULL;
1756 msg.msg_namelen = 0;
1757 msg.msg_control = NULL;
1758 msg.msg_controllen = 0;
1759 msg.msg_flags = msg_flags | MSG_NOSIGNAL;
1760
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001761 if (sock == connection->data.socket) {
Philipp Reisner44ed1672011-04-19 17:10:19 +02001762 rcu_read_lock();
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001763 connection->ko_count = rcu_dereference(connection->net_conf)->ko_count;
Philipp Reisner44ed1672011-04-19 17:10:19 +02001764 rcu_read_unlock();
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001765 drbd_update_congested(connection);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001766 }
1767 do {
1768 /* STRANGE
1769 * tcp_sendmsg does _not_ use its size parameter at all ?
1770 *
1771 * -EAGAIN on timeout, -EINTR on signal.
1772 */
1773/* THINK
1774 * do we need to block DRBD_SIG if sock == &meta.socket ??
1775 * otherwise wake_asender() might interrupt some send_*Ack !
1776 */
1777 rv = kernel_sendmsg(sock, &msg, &iov, 1, size);
1778 if (rv == -EAGAIN) {
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001779 if (we_should_drop_the_connection(connection, sock))
Philipp Reisnerb411b362009-09-25 16:07:19 -07001780 break;
1781 else
1782 continue;
1783 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001784 if (rv == -EINTR) {
1785 flush_signals(current);
1786 rv = 0;
1787 }
1788 if (rv < 0)
1789 break;
1790 sent += rv;
1791 iov.iov_base += rv;
1792 iov.iov_len -= rv;
1793 } while (sent < size);
1794
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001795 if (sock == connection->data.socket)
1796 clear_bit(NET_CONGESTED, &connection->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001797
1798 if (rv <= 0) {
1799 if (rv != -EAGAIN) {
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +02001800 drbd_err(connection, "%s_sendmsg returned %d\n",
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001801 sock == connection->meta.socket ? "msock" : "sock",
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001802 rv);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001803 conn_request_state(connection, NS(conn, C_BROKEN_PIPE), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001804 } else
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001805 conn_request_state(connection, NS(conn, C_TIMEOUT), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001806 }
1807
1808 return sent;
1809}
1810
Andreas Gruenbacherfb708e42010-12-15 17:04:36 +01001811/**
1812 * drbd_send_all - Send an entire buffer
1813 *
1814 * Returns 0 upon success and a negative error value otherwise.
1815 */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001816int drbd_send_all(struct drbd_connection *connection, struct socket *sock, void *buffer,
Andreas Gruenbacherfb708e42010-12-15 17:04:36 +01001817 size_t size, unsigned msg_flags)
1818{
1819 int err;
1820
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02001821 err = drbd_send(connection, sock, buffer, size, msg_flags);
Andreas Gruenbacherfb708e42010-12-15 17:04:36 +01001822 if (err < 0)
1823 return err;
1824 if (err != size)
1825 return -EIO;
1826 return 0;
1827}
1828
Philipp Reisnerb411b362009-09-25 16:07:19 -07001829static int drbd_open(struct block_device *bdev, fmode_t mode)
1830{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001831 struct drbd_device *device = bdev->bd_disk->private_data;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001832 unsigned long flags;
1833 int rv = 0;
1834
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001835 mutex_lock(&drbd_main_mutex);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001836 spin_lock_irqsave(&device->resource->req_lock, flags);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001837 /* to have a stable device->state.role
Philipp Reisnerb411b362009-09-25 16:07:19 -07001838 * and no race with updating open_cnt */
1839
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001840 if (device->state.role != R_PRIMARY) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001841 if (mode & FMODE_WRITE)
1842 rv = -EROFS;
1843 else if (!allow_oos)
1844 rv = -EMEDIUMTYPE;
1845 }
1846
1847 if (!rv)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001848 device->open_cnt++;
Andreas Gruenbacher05008132011-07-07 14:19:42 +02001849 spin_unlock_irqrestore(&device->resource->req_lock, flags);
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001850 mutex_unlock(&drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001851
1852 return rv;
1853}
1854
Al Virodb2a1442013-05-05 21:52:57 -04001855static void drbd_release(struct gendisk *gd, fmode_t mode)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001856{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001857 struct drbd_device *device = gd->private_data;
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001858 mutex_lock(&drbd_main_mutex);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001859 device->open_cnt--;
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001860 mutex_unlock(&drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001861}
1862
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001863static void drbd_set_defaults(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001864{
Lars Ellenbergf3990022011-03-23 14:31:09 +01001865 /* Beware! The actual layout differs
1866 * between big endian and little endian */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001867 device->state = (union drbd_dev_state) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001868 { .role = R_SECONDARY,
1869 .peer = R_UNKNOWN,
1870 .conn = C_STANDALONE,
1871 .disk = D_DISKLESS,
1872 .pdsk = D_UNKNOWN,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001873 } };
1874}
1875
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001876void drbd_init_set_defaults(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001877{
1878 /* the memset(,0,) did most of this.
1879 * note: only assignments, no allocation in here */
1880
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001881 drbd_set_defaults(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001882
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001883 atomic_set(&device->ap_bio_cnt, 0);
1884 atomic_set(&device->ap_pending_cnt, 0);
1885 atomic_set(&device->rs_pending_cnt, 0);
1886 atomic_set(&device->unacked_cnt, 0);
1887 atomic_set(&device->local_cnt, 0);
1888 atomic_set(&device->pp_in_use_by_net, 0);
1889 atomic_set(&device->rs_sect_in, 0);
1890 atomic_set(&device->rs_sect_ev, 0);
1891 atomic_set(&device->ap_in_flight, 0);
1892 atomic_set(&device->md_io_in_use, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001893
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001894 mutex_init(&device->own_state_mutex);
1895 device->state_mutex = &device->own_state_mutex;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001896
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001897 spin_lock_init(&device->al_lock);
1898 spin_lock_init(&device->peer_seq_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001899
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001900 INIT_LIST_HEAD(&device->active_ee);
1901 INIT_LIST_HEAD(&device->sync_ee);
1902 INIT_LIST_HEAD(&device->done_ee);
1903 INIT_LIST_HEAD(&device->read_ee);
1904 INIT_LIST_HEAD(&device->net_ee);
1905 INIT_LIST_HEAD(&device->resync_reads);
1906 INIT_LIST_HEAD(&device->resync_work.list);
1907 INIT_LIST_HEAD(&device->unplug_work.list);
1908 INIT_LIST_HEAD(&device->go_diskless.list);
1909 INIT_LIST_HEAD(&device->md_sync_work.list);
1910 INIT_LIST_HEAD(&device->start_resync_work.list);
1911 INIT_LIST_HEAD(&device->bm_io_work.w.list);
Philipp Reisner0ced55a2010-04-30 15:26:20 +02001912
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001913 device->resync_work.cb = w_resync_timer;
1914 device->unplug_work.cb = w_send_write_hint;
1915 device->go_diskless.cb = w_go_diskless;
1916 device->md_sync_work.cb = w_md_sync;
1917 device->bm_io_work.w.cb = w_bitmap_io;
1918 device->start_resync_work.cb = w_start_resync;
Philipp Reisnera21e9292011-02-08 15:08:49 +01001919
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001920 init_timer(&device->resync_timer);
1921 init_timer(&device->md_sync_timer);
1922 init_timer(&device->start_resync_timer);
1923 init_timer(&device->request_timer);
1924 device->resync_timer.function = resync_timer_fn;
1925 device->resync_timer.data = (unsigned long) device;
1926 device->md_sync_timer.function = md_sync_timer_fn;
1927 device->md_sync_timer.data = (unsigned long) device;
1928 device->start_resync_timer.function = start_resync_timer_fn;
1929 device->start_resync_timer.data = (unsigned long) device;
1930 device->request_timer.function = request_timer_fn;
1931 device->request_timer.data = (unsigned long) device;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001932
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001933 init_waitqueue_head(&device->misc_wait);
1934 init_waitqueue_head(&device->state_wait);
1935 init_waitqueue_head(&device->ee_wait);
1936 init_waitqueue_head(&device->al_wait);
1937 init_waitqueue_head(&device->seq_wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001938
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001939 device->resync_wenr = LC_FREE;
1940 device->peer_max_bio_size = DRBD_MAX_BIO_SIZE_SAFE;
1941 device->local_max_bio_size = DRBD_MAX_BIO_SIZE_SAFE;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001942}
1943
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001944void drbd_device_cleanup(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001945{
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02001946 int i;
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001947 if (first_peer_device(device)->connection->receiver.t_state != NONE)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02001948 drbd_err(device, "ASSERT FAILED: receiver t_state == %d expected 0.\n",
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02001949 first_peer_device(device)->connection->receiver.t_state);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001950
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001951 device->al_writ_cnt =
1952 device->bm_writ_cnt =
1953 device->read_cnt =
1954 device->recv_cnt =
1955 device->send_cnt =
1956 device->writ_cnt =
1957 device->p_size =
1958 device->rs_start =
1959 device->rs_total =
1960 device->rs_failed = 0;
1961 device->rs_last_events = 0;
1962 device->rs_last_sect_ev = 0;
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02001963 for (i = 0; i < DRBD_SYNC_MARKS; i++) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001964 device->rs_mark_left[i] = 0;
1965 device->rs_mark_time[i] = 0;
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02001966 }
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02001967 D_ASSERT(device, first_peer_device(device)->connection->net_conf == NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001968
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001969 drbd_set_my_capacity(device, 0);
1970 if (device->bitmap) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07001971 /* maybe never allocated. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001972 drbd_bm_resize(device, 0, 1);
1973 drbd_bm_cleanup(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001974 }
1975
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001976 drbd_free_bc(device->ldev);
1977 device->ldev = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001978
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001979 clear_bit(AL_SUSPENDED, &device->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001980
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02001981 D_ASSERT(device, list_empty(&device->active_ee));
1982 D_ASSERT(device, list_empty(&device->sync_ee));
1983 D_ASSERT(device, list_empty(&device->done_ee));
1984 D_ASSERT(device, list_empty(&device->read_ee));
1985 D_ASSERT(device, list_empty(&device->net_ee));
1986 D_ASSERT(device, list_empty(&device->resync_reads));
1987 D_ASSERT(device, list_empty(&first_peer_device(device)->connection->sender_work.q));
1988 D_ASSERT(device, list_empty(&device->resync_work.list));
1989 D_ASSERT(device, list_empty(&device->unplug_work.list));
1990 D_ASSERT(device, list_empty(&device->go_diskless.list));
Lars Ellenberg2265b472010-12-16 15:41:26 +01001991
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02001992 drbd_set_defaults(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001993}
1994
1995
1996static void drbd_destroy_mempools(void)
1997{
1998 struct page *page;
1999
2000 while (drbd_pp_pool) {
2001 page = drbd_pp_pool;
2002 drbd_pp_pool = (struct page *)page_private(page);
2003 __free_page(page);
2004 drbd_pp_vacant--;
2005 }
2006
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02002007 /* D_ASSERT(device, atomic_read(&drbd_pp_vacant)==0); */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002008
Lars Ellenberg9476f392011-02-23 17:02:01 +01002009 if (drbd_md_io_bio_set)
2010 bioset_free(drbd_md_io_bio_set);
Lars Ellenberg42818082011-02-23 12:39:46 +01002011 if (drbd_md_io_page_pool)
2012 mempool_destroy(drbd_md_io_page_pool);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002013 if (drbd_ee_mempool)
2014 mempool_destroy(drbd_ee_mempool);
2015 if (drbd_request_mempool)
2016 mempool_destroy(drbd_request_mempool);
2017 if (drbd_ee_cache)
2018 kmem_cache_destroy(drbd_ee_cache);
2019 if (drbd_request_cache)
2020 kmem_cache_destroy(drbd_request_cache);
2021 if (drbd_bm_ext_cache)
2022 kmem_cache_destroy(drbd_bm_ext_cache);
2023 if (drbd_al_ext_cache)
2024 kmem_cache_destroy(drbd_al_ext_cache);
2025
Lars Ellenberg9476f392011-02-23 17:02:01 +01002026 drbd_md_io_bio_set = NULL;
Lars Ellenberg42818082011-02-23 12:39:46 +01002027 drbd_md_io_page_pool = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002028 drbd_ee_mempool = NULL;
2029 drbd_request_mempool = NULL;
2030 drbd_ee_cache = NULL;
2031 drbd_request_cache = NULL;
2032 drbd_bm_ext_cache = NULL;
2033 drbd_al_ext_cache = NULL;
2034
2035 return;
2036}
2037
2038static int drbd_create_mempools(void)
2039{
2040 struct page *page;
Lars Ellenberg1816a2b2010-11-11 15:19:07 +01002041 const int number = (DRBD_MAX_BIO_SIZE/PAGE_SIZE) * minor_count;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002042 int i;
2043
2044 /* prepare our caches and mempools */
2045 drbd_request_mempool = NULL;
2046 drbd_ee_cache = NULL;
2047 drbd_request_cache = NULL;
2048 drbd_bm_ext_cache = NULL;
2049 drbd_al_ext_cache = NULL;
2050 drbd_pp_pool = NULL;
Lars Ellenberg42818082011-02-23 12:39:46 +01002051 drbd_md_io_page_pool = NULL;
Lars Ellenberg9476f392011-02-23 17:02:01 +01002052 drbd_md_io_bio_set = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002053
2054 /* caches */
2055 drbd_request_cache = kmem_cache_create(
2056 "drbd_req", sizeof(struct drbd_request), 0, 0, NULL);
2057 if (drbd_request_cache == NULL)
2058 goto Enomem;
2059
2060 drbd_ee_cache = kmem_cache_create(
Andreas Gruenbacherf6ffca92011-02-04 15:30:34 +01002061 "drbd_ee", sizeof(struct drbd_peer_request), 0, 0, NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002062 if (drbd_ee_cache == NULL)
2063 goto Enomem;
2064
2065 drbd_bm_ext_cache = kmem_cache_create(
2066 "drbd_bm", sizeof(struct bm_extent), 0, 0, NULL);
2067 if (drbd_bm_ext_cache == NULL)
2068 goto Enomem;
2069
2070 drbd_al_ext_cache = kmem_cache_create(
2071 "drbd_al", sizeof(struct lc_element), 0, 0, NULL);
2072 if (drbd_al_ext_cache == NULL)
2073 goto Enomem;
2074
2075 /* mempools */
Lars Ellenberg9476f392011-02-23 17:02:01 +01002076 drbd_md_io_bio_set = bioset_create(DRBD_MIN_POOL_PAGES, 0);
2077 if (drbd_md_io_bio_set == NULL)
2078 goto Enomem;
Lars Ellenberg9476f392011-02-23 17:02:01 +01002079
Lars Ellenberg42818082011-02-23 12:39:46 +01002080 drbd_md_io_page_pool = mempool_create_page_pool(DRBD_MIN_POOL_PAGES, 0);
2081 if (drbd_md_io_page_pool == NULL)
2082 goto Enomem;
2083
Philipp Reisnerb411b362009-09-25 16:07:19 -07002084 drbd_request_mempool = mempool_create(number,
2085 mempool_alloc_slab, mempool_free_slab, drbd_request_cache);
2086 if (drbd_request_mempool == NULL)
2087 goto Enomem;
2088
2089 drbd_ee_mempool = mempool_create(number,
2090 mempool_alloc_slab, mempool_free_slab, drbd_ee_cache);
Nicolas Kaiser2027ae12010-10-28 06:15:26 -06002091 if (drbd_ee_mempool == NULL)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002092 goto Enomem;
2093
2094 /* drbd's page pool */
2095 spin_lock_init(&drbd_pp_lock);
2096
2097 for (i = 0; i < number; i++) {
2098 page = alloc_page(GFP_HIGHUSER);
2099 if (!page)
2100 goto Enomem;
2101 set_page_private(page, (unsigned long)drbd_pp_pool);
2102 drbd_pp_pool = page;
2103 }
2104 drbd_pp_vacant = number;
2105
2106 return 0;
2107
2108Enomem:
2109 drbd_destroy_mempools(); /* in case we allocated some */
2110 return -ENOMEM;
2111}
2112
2113static int drbd_notify_sys(struct notifier_block *this, unsigned long code,
2114 void *unused)
2115{
2116 /* just so we have it. you never know what interesting things we
2117 * might want to do here some day...
2118 */
2119
2120 return NOTIFY_DONE;
2121}
2122
2123static struct notifier_block drbd_notifier = {
2124 .notifier_call = drbd_notify_sys,
2125};
2126
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002127static void drbd_release_all_peer_reqs(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002128{
2129 int rr;
2130
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002131 rr = drbd_free_peer_reqs(device, &device->active_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002132 if (rr)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002133 drbd_err(device, "%d EEs in active list found!\n", rr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002134
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002135 rr = drbd_free_peer_reqs(device, &device->sync_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002136 if (rr)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002137 drbd_err(device, "%d EEs in sync list found!\n", rr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002138
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002139 rr = drbd_free_peer_reqs(device, &device->read_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002140 if (rr)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002141 drbd_err(device, "%d EEs in read list found!\n", rr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002142
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002143 rr = drbd_free_peer_reqs(device, &device->done_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002144 if (rr)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002145 drbd_err(device, "%d EEs in done list found!\n", rr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002146
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002147 rr = drbd_free_peer_reqs(device, &device->net_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002148 if (rr)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002149 drbd_err(device, "%d EEs in net list found!\n", rr);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002150}
2151
Philipp Reisner774b3052011-02-22 02:07:03 -05002152/* caution. no locking. */
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +02002153void drbd_destroy_device(struct kref *kref)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002154{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002155 struct drbd_device *device = container_of(kref, struct drbd_device, kref);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002156 struct drbd_resource *resource = device->resource;
2157 struct drbd_connection *connection;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002158
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002159 del_timer_sync(&device->request_timer);
Philipp Reisnerdfa8bed2011-06-29 14:06:08 +02002160
Philipp Reisnerb411b362009-09-25 16:07:19 -07002161 /* paranoia asserts */
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02002162 D_ASSERT(device, device->open_cnt == 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002163 /* end paranoia asserts */
2164
Philipp Reisnerb411b362009-09-25 16:07:19 -07002165 /* cleanup stuff that may have been allocated during
2166 * device (re-)configuration or state changes */
2167
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002168 if (device->this_bdev)
2169 bdput(device->this_bdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002170
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002171 drbd_free_bc(device->ldev);
2172 device->ldev = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002173
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002174 drbd_release_all_peer_reqs(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002175
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002176 lc_destroy(device->act_log);
2177 lc_destroy(device->resync);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002178
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002179 kfree(device->p_uuid);
2180 /* device->p_uuid = NULL; */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002181
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002182 if (device->bitmap) /* should no longer be there. */
2183 drbd_bm_cleanup(device);
2184 __free_page(device->md_io_page);
2185 put_disk(device->vdisk);
2186 blk_cleanup_queue(device->rq_queue);
2187 kfree(device->rs_plan_s);
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02002188 kfree(first_peer_device(device));
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002189 kfree(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002190
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002191 for_each_connection(connection, resource)
2192 kref_put(&connection->kref, drbd_destroy_connection);
2193 kref_put(&resource->kref, drbd_destroy_resource);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002194}
2195
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002196/* One global retry thread, if we need to push back some bio and have it
2197 * reinserted through our make request function.
2198 */
2199static struct retry_worker {
2200 struct workqueue_struct *wq;
2201 struct work_struct worker;
2202
2203 spinlock_t lock;
2204 struct list_head writes;
2205} retry;
2206
2207static void do_retry(struct work_struct *ws)
2208{
2209 struct retry_worker *retry = container_of(ws, struct retry_worker, worker);
2210 LIST_HEAD(writes);
2211 struct drbd_request *req, *tmp;
2212
2213 spin_lock_irq(&retry->lock);
2214 list_splice_init(&retry->writes, &writes);
2215 spin_unlock_irq(&retry->lock);
2216
2217 list_for_each_entry_safe(req, tmp, &writes, tl_requests) {
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02002218 struct drbd_device *device = req->device;
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002219 struct bio *bio = req->master_bio;
2220 unsigned long start_time = req->start_time;
Lars Ellenberg9a278a72012-07-24 10:12:36 +02002221 bool expected;
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002222
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02002223 expected =
Lars Ellenberg9a278a72012-07-24 10:12:36 +02002224 expect(atomic_read(&req->completion_ref) == 0) &&
2225 expect(req->rq_state & RQ_POSTPONED) &&
2226 expect((req->rq_state & RQ_LOCAL_PENDING) == 0 ||
2227 (req->rq_state & RQ_LOCAL_ABORTED) != 0);
2228
2229 if (!expected)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02002230 drbd_err(device, "req=%p completion_ref=%d rq_state=%x\n",
Lars Ellenberg9a278a72012-07-24 10:12:36 +02002231 req, atomic_read(&req->completion_ref),
2232 req->rq_state);
2233
2234 /* We still need to put one kref associated with the
2235 * "completion_ref" going zero in the code path that queued it
2236 * here. The request object may still be referenced by a
2237 * frozen local req->private_bio, in case we force-detached.
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002238 */
Lars Ellenberg9a278a72012-07-24 10:12:36 +02002239 kref_put(&req->kref, drbd_req_destroy);
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002240
2241 /* A single suspended or otherwise blocking device may stall
2242 * all others as well. Fortunately, this code path is to
2243 * recover from a situation that "should not happen":
2244 * concurrent writes in multi-primary setup.
2245 * In a "normal" lifecycle, this workqueue is supposed to be
2246 * destroyed without ever doing anything.
2247 * If it turns out to be an issue anyways, we can do per
2248 * resource (replication group) or per device (minor) retry
2249 * workqueues instead.
2250 */
2251
2252 /* We are not just doing generic_make_request(),
2253 * as we want to keep the start_time information. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002254 inc_ap_bio(device);
2255 __drbd_make_request(device, bio, start_time);
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002256 }
2257}
2258
Lars Ellenberg9d05e7c2012-07-17 10:05:04 +02002259void drbd_restart_request(struct drbd_request *req)
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002260{
2261 unsigned long flags;
2262 spin_lock_irqsave(&retry.lock, flags);
2263 list_move_tail(&req->tl_requests, &retry.writes);
2264 spin_unlock_irqrestore(&retry.lock, flags);
2265
2266 /* Drop the extra reference that would otherwise
2267 * have been dropped by complete_master_bio.
2268 * do_retry() needs to grab a new one. */
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02002269 dec_ap_bio(req->device);
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002270
2271 queue_work(retry.wq, &retry.worker);
2272}
2273
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002274void drbd_destroy_resource(struct kref *kref)
2275{
2276 struct drbd_resource *resource =
2277 container_of(kref, struct drbd_resource, kref);
2278
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002279 idr_destroy(&resource->devices);
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +02002280 free_cpumask_var(resource->cpu_mask);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002281 kfree(resource->name);
2282 kfree(resource);
2283}
2284
2285void drbd_free_resource(struct drbd_resource *resource)
2286{
2287 struct drbd_connection *connection, *tmp;
2288
2289 for_each_connection_safe(connection, tmp, resource) {
2290 list_del(&connection->connections);
2291 kref_put(&connection->kref, drbd_destroy_connection);
2292 }
2293 kref_put(&resource->kref, drbd_destroy_resource);
2294}
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002295
Philipp Reisnerb411b362009-09-25 16:07:19 -07002296static void drbd_cleanup(void)
2297{
2298 unsigned int i;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002299 struct drbd_device *device;
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002300 struct drbd_resource *resource, *tmp;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002301
2302 unregister_reboot_notifier(&drbd_notifier);
2303
Lars Ellenberg17a93f32010-11-24 10:37:35 +01002304 /* first remove proc,
2305 * drbdsetup uses it's presence to detect
2306 * whether DRBD is loaded.
2307 * If we would get stuck in proc removal,
2308 * but have netlink already deregistered,
2309 * some drbdsetup commands may wait forever
2310 * for an answer.
2311 */
2312 if (drbd_proc)
2313 remove_proc_entry("drbd", NULL);
2314
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002315 if (retry.wq)
2316 destroy_workqueue(retry.wq);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002317
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002318 drbd_genl_unregister();
Philipp Reisnerb411b362009-09-25 16:07:19 -07002319
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002320 idr_for_each_entry(&drbd_devices, device, i)
Andreas Gruenbacherf82795d2011-07-03 23:32:26 +02002321 drbd_delete_device(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002322
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002323 /* not _rcu since, no other updater anymore. Genl already unregistered */
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002324 for_each_resource_safe(resource, tmp, &drbd_resources) {
2325 list_del(&resource->resources);
2326 drbd_free_resource(resource);
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002327 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07002328
Philipp Reisner81a5d602011-02-22 19:53:16 -05002329 drbd_destroy_mempools();
Philipp Reisnerb411b362009-09-25 16:07:19 -07002330 unregister_blkdev(DRBD_MAJOR, "drbd");
2331
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +02002332 idr_destroy(&drbd_devices);
Philipp Reisner81a5d602011-02-22 19:53:16 -05002333
Philipp Reisnerb411b362009-09-25 16:07:19 -07002334 printk(KERN_INFO "drbd: module cleanup done.\n");
2335}
2336
2337/**
Artem Bityutskiyd97482e2012-07-25 18:12:12 +03002338 * drbd_congested() - Callback for the flusher thread
Philipp Reisnerb411b362009-09-25 16:07:19 -07002339 * @congested_data: User data
Artem Bityutskiyd97482e2012-07-25 18:12:12 +03002340 * @bdi_bits: Bits the BDI flusher thread is currently interested in
Philipp Reisnerb411b362009-09-25 16:07:19 -07002341 *
2342 * Returns 1<<BDI_async_congested and/or 1<<BDI_sync_congested if we are congested.
2343 */
2344static int drbd_congested(void *congested_data, int bdi_bits)
2345{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002346 struct drbd_device *device = congested_data;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002347 struct request_queue *q;
2348 char reason = '-';
2349 int r = 0;
2350
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002351 if (!may_inc_ap_bio(device)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002352 /* DRBD has frozen IO */
2353 r = bdi_bits;
2354 reason = 'd';
2355 goto out;
2356 }
2357
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02002358 if (test_bit(CALLBACK_PENDING, &first_peer_device(device)->connection->flags)) {
Lars Ellenbergc2ba6862012-06-14 15:14:06 +02002359 r |= (1 << BDI_async_congested);
2360 /* Without good local data, we would need to read from remote,
2361 * and that would need the worker thread as well, which is
2362 * currently blocked waiting for that usermode helper to
2363 * finish.
2364 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002365 if (!get_ldev_if_state(device, D_UP_TO_DATE))
Lars Ellenbergc2ba6862012-06-14 15:14:06 +02002366 r |= (1 << BDI_sync_congested);
2367 else
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002368 put_ldev(device);
Lars Ellenbergc2ba6862012-06-14 15:14:06 +02002369 r &= bdi_bits;
2370 reason = 'c';
2371 goto out;
2372 }
2373
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002374 if (get_ldev(device)) {
2375 q = bdev_get_queue(device->ldev->backing_bdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002376 r = bdi_congested(&q->backing_dev_info, bdi_bits);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002377 put_ldev(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002378 if (r)
2379 reason = 'b';
2380 }
2381
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02002382 if (bdi_bits & (1 << BDI_async_congested) &&
2383 test_bit(NET_CONGESTED, &first_peer_device(device)->connection->flags)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002384 r |= (1 << BDI_async_congested);
2385 reason = reason == 'b' ? 'a' : 'n';
2386 }
2387
2388out:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002389 device->congestion_reason = reason;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002390 return r;
2391}
2392
Philipp Reisner6699b652011-02-09 11:10:24 +01002393static void drbd_init_workqueue(struct drbd_work_queue* wq)
2394{
Philipp Reisner6699b652011-02-09 11:10:24 +01002395 spin_lock_init(&wq->q_lock);
2396 INIT_LIST_HEAD(&wq->q);
Lars Ellenberg8c0785a2011-10-19 11:50:57 +02002397 init_waitqueue_head(&wq->q_wait);
Philipp Reisner6699b652011-02-09 11:10:24 +01002398}
2399
Andreas Gruenbacherb5043c52011-07-28 15:56:02 +02002400struct completion_work {
2401 struct drbd_work w;
2402 struct completion done;
2403};
2404
2405static int w_complete(struct drbd_work *w, int cancel)
2406{
2407 struct completion_work *completion_work =
2408 container_of(w, struct completion_work, w);
2409
2410 complete(&completion_work->done);
2411 return 0;
2412}
2413
2414void drbd_flush_workqueue(struct drbd_work_queue *work_queue)
2415{
2416 struct completion_work completion_work;
2417
2418 completion_work.w.cb = w_complete;
2419 init_completion(&completion_work.done);
2420 drbd_queue_work(work_queue, &completion_work.w);
2421 wait_for_completion(&completion_work.done);
2422}
2423
Andreas Gruenbacher4bc76042011-06-13 14:27:45 +02002424struct drbd_resource *drbd_find_resource(const char *name)
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002425{
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002426 struct drbd_resource *resource;
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002427
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002428 if (!name || !name[0])
2429 return NULL;
2430
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002431 rcu_read_lock();
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002432 for_each_resource_rcu(resource, &drbd_resources) {
2433 if (!strcmp(resource->name, name)) {
Andreas Gruenbacher4bc76042011-06-13 14:27:45 +02002434 kref_get(&resource->kref);
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002435 goto found;
Philipp Reisner0ace9df2011-04-24 10:53:19 +02002436 }
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002437 }
Andreas Gruenbacher4bc76042011-06-13 14:27:45 +02002438 resource = NULL;
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002439found:
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002440 rcu_read_unlock();
Andreas Gruenbacher4bc76042011-06-13 14:27:45 +02002441 return resource;
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002442}
2443
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002444struct drbd_connection *conn_get_by_addrs(void *my_addr, int my_addr_len,
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002445 void *peer_addr, int peer_addr_len)
2446{
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002447 struct drbd_resource *resource;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002448 struct drbd_connection *connection;
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002449
2450 rcu_read_lock();
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002451 for_each_resource_rcu(resource, &drbd_resources) {
2452 for_each_connection_rcu(connection, resource) {
2453 if (connection->my_addr_len == my_addr_len &&
2454 connection->peer_addr_len == peer_addr_len &&
2455 !memcmp(&connection->my_addr, my_addr, my_addr_len) &&
2456 !memcmp(&connection->peer_addr, peer_addr, peer_addr_len)) {
2457 kref_get(&connection->kref);
2458 goto found;
2459 }
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002460 }
2461 }
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002462 connection = NULL;
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002463found:
2464 rcu_read_unlock();
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002465 return connection;
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002466}
2467
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002468static int drbd_alloc_socket(struct drbd_socket *socket)
2469{
2470 socket->rbuf = (void *) __get_free_page(GFP_KERNEL);
2471 if (!socket->rbuf)
2472 return -ENOMEM;
Andreas Gruenbacher5a87d922011-03-24 21:17:52 +01002473 socket->sbuf = (void *) __get_free_page(GFP_KERNEL);
2474 if (!socket->sbuf)
2475 return -ENOMEM;
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002476 return 0;
2477}
2478
2479static void drbd_free_socket(struct drbd_socket *socket)
2480{
Andreas Gruenbacher5a87d922011-03-24 21:17:52 +01002481 free_page((unsigned long) socket->sbuf);
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002482 free_page((unsigned long) socket->rbuf);
2483}
2484
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002485void conn_free_crypto(struct drbd_connection *connection)
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002486{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002487 drbd_free_sock(connection);
Philipp Reisner1d041222011-04-22 15:20:23 +02002488
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002489 crypto_free_hash(connection->csums_tfm);
2490 crypto_free_hash(connection->verify_tfm);
2491 crypto_free_hash(connection->cram_hmac_tfm);
2492 crypto_free_hash(connection->integrity_tfm);
2493 crypto_free_hash(connection->peer_integrity_tfm);
2494 kfree(connection->int_dig_in);
2495 kfree(connection->int_dig_vv);
Philipp Reisner1d041222011-04-22 15:20:23 +02002496
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002497 connection->csums_tfm = NULL;
2498 connection->verify_tfm = NULL;
2499 connection->cram_hmac_tfm = NULL;
2500 connection->integrity_tfm = NULL;
2501 connection->peer_integrity_tfm = NULL;
2502 connection->int_dig_in = NULL;
2503 connection->int_dig_vv = NULL;
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002504}
2505
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002506int set_resource_options(struct drbd_resource *resource, struct res_opts *res_opts)
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002507{
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002508 struct drbd_connection *connection;
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002509 cpumask_var_t new_cpu_mask;
2510 int err;
2511
2512 if (!zalloc_cpumask_var(&new_cpu_mask, GFP_KERNEL))
2513 return -ENOMEM;
2514 /*
2515 retcode = ERR_NOMEM;
2516 drbd_msg_put_info("unable to allocate cpumask");
2517 */
2518
2519 /* silently ignore cpu mask on UP kernel */
2520 if (nr_cpu_ids > 1 && res_opts->cpu_mask[0] != 0) {
Andreas Gruenbacherf44d0432011-07-22 13:53:19 +02002521 err = bitmap_parse(res_opts->cpu_mask, DRBD_CPU_MASK_SIZE,
Philipp Reisnerc5b005a2012-04-30 12:53:52 +02002522 cpumask_bits(new_cpu_mask), nr_cpu_ids);
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002523 if (err) {
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +02002524 drbd_warn(resource, "bitmap_parse() failed with %d\n", err);
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002525 /* retcode = ERR_CPU_MASK_PARSE; */
2526 goto fail;
2527 }
2528 }
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002529 resource->res_opts = *res_opts;
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +02002530 if (cpumask_empty(new_cpu_mask))
2531 drbd_calc_cpu_mask(&new_cpu_mask);
2532 if (!cpumask_equal(resource->cpu_mask, new_cpu_mask)) {
2533 cpumask_copy(resource->cpu_mask, new_cpu_mask);
2534 for_each_connection_rcu(connection, resource) {
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002535 connection->receiver.reset_cpu_mask = 1;
2536 connection->asender.reset_cpu_mask = 1;
2537 connection->worker.reset_cpu_mask = 1;
2538 }
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002539 }
2540 err = 0;
2541
2542fail:
2543 free_cpumask_var(new_cpu_mask);
2544 return err;
2545
2546}
2547
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002548struct drbd_resource *drbd_create_resource(const char *name)
2549{
2550 struct drbd_resource *resource;
2551
Andreas Gruenbacher6bbf53c2011-07-08 01:19:44 +02002552 resource = kzalloc(sizeof(struct drbd_resource), GFP_KERNEL);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002553 if (!resource)
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +02002554 goto fail;
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002555 resource->name = kstrdup(name, GFP_KERNEL);
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +02002556 if (!resource->name)
2557 goto fail_free_resource;
2558 if (!zalloc_cpumask_var(&resource->cpu_mask, GFP_KERNEL))
2559 goto fail_free_name;
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002560 kref_init(&resource->kref);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002561 idr_init(&resource->devices);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002562 INIT_LIST_HEAD(&resource->connections);
2563 list_add_tail_rcu(&resource->resources, &drbd_resources);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02002564 mutex_init(&resource->conf_update);
2565 spin_lock_init(&resource->req_lock);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002566 return resource;
Andreas Gruenbacher625a6ba2011-07-22 14:29:02 +02002567
2568fail_free_name:
2569 kfree(resource->name);
2570fail_free_resource:
2571 kfree(resource);
2572fail:
2573 return NULL;
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002574}
2575
Philipp Reisnerec0bddb2011-05-04 15:47:01 +02002576/* caller must be under genl_lock() */
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002577struct drbd_connection *conn_create(const char *name, struct res_opts *res_opts)
Philipp Reisner21114382011-01-19 12:26:59 +01002578{
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002579 struct drbd_resource *resource;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002580 struct drbd_connection *connection;
Philipp Reisner21114382011-01-19 12:26:59 +01002581
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002582 connection = kzalloc(sizeof(struct drbd_connection), GFP_KERNEL);
2583 if (!connection)
Philipp Reisner21114382011-01-19 12:26:59 +01002584 return NULL;
2585
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002586 if (drbd_alloc_socket(&connection->data))
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002587 goto fail;
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002588 if (drbd_alloc_socket(&connection->meta))
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002589 goto fail;
2590
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002591 connection->current_epoch = kzalloc(sizeof(struct drbd_epoch), GFP_KERNEL);
2592 if (!connection->current_epoch)
Philipp Reisner12038a32011-11-09 19:18:00 +01002593 goto fail;
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01002594
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002595 INIT_LIST_HEAD(&connection->transfer_log);
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01002596
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002597 INIT_LIST_HEAD(&connection->current_epoch->list);
2598 connection->epochs = 1;
2599 spin_lock_init(&connection->epoch_lock);
2600 connection->write_ordering = WO_bdev_flush;
Philipp Reisner4b0007c2011-11-09 20:12:34 +01002601
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002602 connection->send.seen_any_write_yet = false;
2603 connection->send.current_epoch_nr = 0;
2604 connection->send.current_epoch_writes = 0;
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01002605
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002606 resource = drbd_create_resource(name);
2607 if (!resource)
2608 goto fail;
2609
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002610 connection->cstate = C_STANDALONE;
2611 mutex_init(&connection->cstate_mutex);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002612 init_waitqueue_head(&connection->ping_wait);
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02002613 idr_init(&connection->peer_devices);
Philipp Reisnerb2fb6dbe2011-01-19 13:48:44 +01002614
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002615 drbd_init_workqueue(&connection->sender_work);
2616 mutex_init(&connection->data.mutex);
2617 mutex_init(&connection->meta.mutex);
Philipp Reisner6699b652011-02-09 11:10:24 +01002618
Andreas Gruenbacher8fe60552011-07-22 11:04:36 +02002619 drbd_thread_init(connection, &connection->receiver, drbd_receiver, "receiver");
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002620 drbd_thread_init(connection, &connection->worker, drbd_worker, "worker");
2621 drbd_thread_init(connection, &connection->asender, drbd_asender, "asender");
Philipp Reisner392c8802011-02-09 10:33:31 +01002622
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002623 kref_init(&connection->kref);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002624
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002625 connection->resource = resource;
Philipp Reisner21114382011-01-19 12:26:59 +01002626
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002627 if (set_resource_options(resource, res_opts))
2628 goto fail_resource;
2629
2630 kref_get(&resource->kref);
2631 list_add_tail_rcu(&connection->connections, &resource->connections);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002632 return connection;
Philipp Reisner21114382011-01-19 12:26:59 +01002633
Andreas Gruenbachereb6bea62011-06-21 16:11:28 +02002634fail_resource:
2635 list_del(&resource->resources);
2636 drbd_free_resource(resource);
Philipp Reisner21114382011-01-19 12:26:59 +01002637fail:
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002638 kfree(connection->current_epoch);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002639 drbd_free_socket(&connection->meta);
2640 drbd_free_socket(&connection->data);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002641 kfree(connection);
Philipp Reisner21114382011-01-19 12:26:59 +01002642 return NULL;
2643}
2644
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +02002645void drbd_destroy_connection(struct kref *kref)
Philipp Reisner21114382011-01-19 12:26:59 +01002646{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002647 struct drbd_connection *connection = container_of(kref, struct drbd_connection, kref);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002648 struct drbd_resource *resource = connection->resource;
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002649
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002650 if (atomic_read(&connection->current_epoch->epoch_size) != 0)
Andreas Gruenbacher1ec861e2011-07-06 11:01:44 +02002651 drbd_err(connection, "epoch_size:%d\n", atomic_read(&connection->current_epoch->epoch_size));
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002652 kfree(connection->current_epoch);
Philipp Reisner12038a32011-11-09 19:18:00 +01002653
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02002654 idr_destroy(&connection->peer_devices);
Philipp Reisner21114382011-01-19 12:26:59 +01002655
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002656 drbd_free_socket(&connection->meta);
2657 drbd_free_socket(&connection->data);
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002658 kfree(connection->int_dig_in);
2659 kfree(connection->int_dig_vv);
2660 kfree(connection);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002661 kref_put(&resource->kref, drbd_destroy_resource);
Philipp Reisner21114382011-01-19 12:26:59 +01002662}
2663
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002664static int init_submitter(struct drbd_device *device)
Lars Ellenberg113fef92013-03-22 18:14:40 -06002665{
2666 /* opencoded create_singlethread_workqueue(),
2667 * to be able to say "drbd%d", ..., minor */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002668 device->submit.wq = alloc_workqueue("drbd%u_submit",
2669 WQ_UNBOUND | WQ_MEM_RECLAIM, 1, device->minor);
2670 if (!device->submit.wq)
Lars Ellenberg113fef92013-03-22 18:14:40 -06002671 return -ENOMEM;
2672
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002673 INIT_WORK(&device->submit.worker, do_submit);
2674 spin_lock_init(&device->submit.lock);
2675 INIT_LIST_HEAD(&device->submit.writes);
Lars Ellenberg113fef92013-03-22 18:14:40 -06002676 return 0;
2677}
2678
Andreas Gruenbacher59515a22011-07-06 14:20:49 +02002679enum drbd_ret_code drbd_create_device(struct drbd_resource *resource, unsigned int minor, int vnr)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002680{
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002681 struct drbd_connection *connection;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002682 struct drbd_device *device;
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002683 struct drbd_peer_device *peer_device, *tmp_peer_device;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002684 struct gendisk *disk;
2685 struct request_queue *q;
Andreas Gruenbacher93e4bf72013-05-23 14:57:17 +02002686 int id;
Lars Ellenberg8432b312011-03-08 16:11:16 +01002687 enum drbd_ret_code err = ERR_NOMEM;
Philipp Reisner774b3052011-02-22 02:07:03 -05002688
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002689 device = minor_to_device(minor);
2690 if (device)
Philipp Reisner774b3052011-02-22 02:07:03 -05002691 return ERR_MINOR_EXISTS;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002692
2693 /* GFP_KERNEL, we are outside of all write-out paths */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002694 device = kzalloc(sizeof(struct drbd_device), GFP_KERNEL);
2695 if (!device)
Philipp Reisner774b3052011-02-22 02:07:03 -05002696 return ERR_NOMEM;
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002697 kref_init(&device->kref);
2698
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002699 kref_get(&resource->kref);
2700 device->resource = resource;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002701 device->minor = minor;
2702 device->vnr = vnr;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002703
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002704 drbd_init_set_defaults(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002705
2706 q = blk_alloc_queue(GFP_KERNEL);
2707 if (!q)
2708 goto out_no_q;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002709 device->rq_queue = q;
2710 q->queuedata = device;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002711
2712 disk = alloc_disk(1);
2713 if (!disk)
2714 goto out_no_disk;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002715 device->vdisk = disk;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002716
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01002717 set_disk_ro(disk, true);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002718
2719 disk->queue = q;
2720 disk->major = DRBD_MAJOR;
2721 disk->first_minor = minor;
2722 disk->fops = &drbd_ops;
2723 sprintf(disk->disk_name, "drbd%d", minor);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002724 disk->private_data = device;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002725
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002726 device->this_bdev = bdget(MKDEV(DRBD_MAJOR, minor));
Philipp Reisnerb411b362009-09-25 16:07:19 -07002727 /* we have no partitions. we contain only ourselves. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002728 device->this_bdev->bd_contains = device->this_bdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002729
2730 q->backing_dev_info.congested_fn = drbd_congested;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002731 q->backing_dev_info.congested_data = device;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002732
Andreas Gruenbacher2f58dcf2010-12-13 17:48:19 +01002733 blk_queue_make_request(q, drbd_make_request);
Lars Ellenberga73ff322012-06-25 19:15:38 +02002734 blk_queue_flush(q, REQ_FLUSH | REQ_FUA);
Philipp Reisner99432fc2011-05-20 16:39:13 +02002735 /* Setting the max_hw_sectors to an odd value of 8kibyte here
2736 This triggers a max_bio_size message upon first attach or connect */
2737 blk_queue_max_hw_sectors(q, DRBD_MAX_BIO_SIZE_SAFE >> 8);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002738 blk_queue_bounce_limit(q, BLK_BOUNCE_ANY);
2739 blk_queue_merge_bvec(q, drbd_merge_bvec);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02002740 q->queue_lock = &resource->req_lock;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002741
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002742 device->md_io_page = alloc_page(GFP_KERNEL);
2743 if (!device->md_io_page)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002744 goto out_no_io_page;
2745
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002746 if (drbd_bm_init(device))
Philipp Reisnerb411b362009-09-25 16:07:19 -07002747 goto out_no_bitmap;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002748 device->read_requests = RB_ROOT;
2749 device->write_requests = RB_ROOT;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002750
Andreas Gruenbacher93e4bf72013-05-23 14:57:17 +02002751 id = idr_alloc(&drbd_devices, device, minor, minor + 1, GFP_KERNEL);
2752 if (id < 0) {
2753 if (id == -ENOSPC) {
Tejun Heo56de2102013-02-27 17:04:01 -08002754 err = ERR_MINOR_EXISTS;
2755 drbd_msg_put_info("requested minor exists already");
2756 }
Lars Ellenberg8432b312011-03-08 16:11:16 +01002757 goto out_no_minor_idr;
Tejun Heo56de2102013-02-27 17:04:01 -08002758 }
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002759 kref_get(&device->kref);
2760
2761 id = idr_alloc(&resource->devices, device, vnr, vnr + 1, GFP_KERNEL);
2762 if (id < 0) {
2763 if (id == -ENOSPC) {
2764 err = ERR_MINOR_EXISTS;
2765 drbd_msg_put_info("requested minor exists already");
2766 }
2767 goto out_idr_remove_minor;
2768 }
2769 kref_get(&device->kref);
Tejun Heo56de2102013-02-27 17:04:01 -08002770
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002771 INIT_LIST_HEAD(&device->peer_devices);
2772 for_each_connection(connection, resource) {
2773 peer_device = kzalloc(sizeof(struct drbd_peer_device), GFP_KERNEL);
2774 if (!peer_device)
2775 goto out_idr_remove_from_resource;
2776 peer_device->connection = connection;
2777 peer_device->device = device;
2778
2779 list_add(&peer_device->peer_devices, &device->peer_devices);
2780 kref_get(&device->kref);
2781
2782 id = idr_alloc(&connection->peer_devices, peer_device, vnr, vnr + 1, GFP_KERNEL);
2783 if (id < 0) {
2784 if (id == -ENOSPC) {
2785 err = ERR_INVALID_REQUEST;
2786 drbd_msg_put_info("requested volume exists already");
2787 }
2788 goto out_idr_remove_from_resource;
Tejun Heo56de2102013-02-27 17:04:01 -08002789 }
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002790 kref_get(&connection->kref);
Lars Ellenberg569083c2011-03-07 09:49:02 +01002791 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07002792
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002793 if (init_submitter(device)) {
Lars Ellenberg113fef92013-03-22 18:14:40 -06002794 err = ERR_NOMEM;
2795 drbd_msg_put_info("unable to create submit workqueue");
2796 goto out_idr_remove_vol;
2797 }
2798
Philipp Reisner774b3052011-02-22 02:07:03 -05002799 add_disk(disk);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002800
Philipp Reisner2325eb62011-03-15 16:56:18 +01002801 /* inherit the connection state */
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002802 device->state.conn = first_connection(resource)->cstate;
Andreas Gruenbacher69a22772011-08-09 00:47:13 +02002803 if (device->state.conn == C_WF_REPORT_PARAMS) {
2804 for_each_peer_device(peer_device, device)
2805 drbd_connected(peer_device);
2806 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07002807
Philipp Reisner774b3052011-02-22 02:07:03 -05002808 return NO_ERROR;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002809
Lars Ellenberg113fef92013-03-22 18:14:40 -06002810out_idr_remove_vol:
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02002811 idr_remove(&connection->peer_devices, vnr);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002812out_idr_remove_from_resource:
Andreas Gruenbacherb6f85ef2011-07-06 15:03:31 +02002813 for_each_connection(connection, resource) {
2814 peer_device = idr_find(&connection->peer_devices, vnr);
2815 if (peer_device) {
2816 idr_remove(&connection->peer_devices, vnr);
2817 kref_put(&connection->kref, drbd_destroy_connection);
2818 }
2819 }
2820 for_each_peer_device_safe(peer_device, tmp_peer_device, device) {
2821 list_del(&peer_device->peer_devices);
2822 kfree(peer_device);
2823 }
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002824 idr_remove(&resource->devices, vnr);
Lars Ellenberg8432b312011-03-08 16:11:16 +01002825out_idr_remove_minor:
Andreas Gruenbacher93e4bf72013-05-23 14:57:17 +02002826 idr_remove(&drbd_devices, minor);
Lars Ellenberg569083c2011-03-07 09:49:02 +01002827 synchronize_rcu();
Lars Ellenberg8432b312011-03-08 16:11:16 +01002828out_no_minor_idr:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002829 drbd_bm_cleanup(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002830out_no_bitmap:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002831 __free_page(device->md_io_page);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002832out_no_io_page:
2833 put_disk(disk);
2834out_no_disk:
2835 blk_cleanup_queue(q);
2836out_no_q:
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002837 kref_put(&resource->kref, drbd_destroy_resource);
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02002838 kfree(device);
Lars Ellenberg8432b312011-03-08 16:11:16 +01002839 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002840}
2841
Andreas Gruenbacherf82795d2011-07-03 23:32:26 +02002842void drbd_delete_device(struct drbd_device *device)
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002843{
2844 struct drbd_resource *resource = device->resource;
2845 struct drbd_connection *connection;
2846 int refs = 3;
2847
2848 for_each_connection(connection, resource) {
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02002849 idr_remove(&connection->peer_devices, device->vnr);
Andreas Gruenbacher803ea132011-06-09 01:40:48 +02002850 refs++;
2851 }
2852 idr_remove(&resource->devices, device->vnr);
2853 idr_remove(&drbd_devices, device_to_minor(device));
2854 del_gendisk(device->vdisk);
2855 synchronize_rcu();
2856 kref_sub(&device->kref, refs, drbd_destroy_device);
2857}
2858
Philipp Reisnerb411b362009-09-25 16:07:19 -07002859int __init drbd_init(void)
2860{
2861 int err;
2862
Philipp Reisner2b8a90b2011-01-10 11:15:17 +01002863 if (minor_count < DRBD_MINOR_COUNT_MIN || minor_count > DRBD_MINOR_COUNT_MAX) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002864 printk(KERN_ERR
Philipp Reisner81a5d602011-02-22 19:53:16 -05002865 "drbd: invalid minor_count (%d)\n", minor_count);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002866#ifdef MODULE
2867 return -EINVAL;
2868#else
Andreas Gruenbacher46530e82011-05-31 13:08:53 +02002869 minor_count = DRBD_MINOR_COUNT_DEF;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002870#endif
2871 }
2872
Philipp Reisnerb411b362009-09-25 16:07:19 -07002873 err = register_blkdev(DRBD_MAJOR, "drbd");
2874 if (err) {
2875 printk(KERN_ERR
2876 "drbd: unable to register block device major %d\n",
2877 DRBD_MAJOR);
2878 return err;
2879 }
2880
2881 register_reboot_notifier(&drbd_notifier);
2882
2883 /*
2884 * allocate all necessary structs
2885 */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002886 init_waitqueue_head(&drbd_pp_wait);
2887
2888 drbd_proc = NULL; /* play safe for drbd_cleanup */
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +02002889 idr_init(&drbd_devices);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002890
Lars Ellenberg69babf02013-10-23 10:59:15 +02002891 rwlock_init(&global_state_lock);
Andreas Gruenbacher77c556f2011-06-08 22:17:38 +02002892 INIT_LIST_HEAD(&drbd_resources);
Lars Ellenberg69babf02013-10-23 10:59:15 +02002893
2894 err = drbd_genl_register();
2895 if (err) {
2896 printk(KERN_ERR "drbd: unable to register generic netlink family\n");
2897 goto fail;
2898 }
2899
Philipp Reisnerb411b362009-09-25 16:07:19 -07002900 err = drbd_create_mempools();
2901 if (err)
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002902 goto fail;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002903
Wei Yongjun6110d702013-06-25 16:50:04 +02002904 err = -ENOMEM;
Lars Ellenberg8c484ee2010-03-11 16:47:58 +01002905 drbd_proc = proc_create_data("drbd", S_IFREG | S_IRUGO , NULL, &drbd_proc_fops, NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002906 if (!drbd_proc) {
2907 printk(KERN_ERR "drbd: unable to register proc file\n");
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002908 goto fail;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002909 }
2910
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002911 retry.wq = create_singlethread_workqueue("drbd-reissue");
2912 if (!retry.wq) {
2913 printk(KERN_ERR "drbd: unable to create retry workqueue\n");
2914 goto fail;
2915 }
2916 INIT_WORK(&retry.worker, do_retry);
2917 spin_lock_init(&retry.lock);
2918 INIT_LIST_HEAD(&retry.writes);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002919
2920 printk(KERN_INFO "drbd: initialized. "
2921 "Version: " REL_VERSION " (api:%d/proto:%d-%d)\n",
2922 API_VERSION, PRO_VERSION_MIN, PRO_VERSION_MAX);
2923 printk(KERN_INFO "drbd: %s\n", drbd_buildtag());
2924 printk(KERN_INFO "drbd: registered as block device major %d\n",
2925 DRBD_MAJOR);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002926
2927 return 0; /* Success! */
2928
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002929fail:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002930 drbd_cleanup();
2931 if (err == -ENOMEM)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002932 printk(KERN_ERR "drbd: ran out of memory\n");
2933 else
2934 printk(KERN_ERR "drbd: initialization failure\n");
2935 return err;
2936}
2937
2938void drbd_free_bc(struct drbd_backing_dev *ldev)
2939{
2940 if (ldev == NULL)
2941 return;
2942
Tejun Heoe525fd82010-11-13 11:55:17 +01002943 blkdev_put(ldev->backing_bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL);
2944 blkdev_put(ldev->md_bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002945
Lars Ellenberg94ad0a12013-03-27 14:08:42 +01002946 kfree(ldev->disk_conf);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002947 kfree(ldev);
2948}
2949
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002950void drbd_free_sock(struct drbd_connection *connection)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002951{
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002952 if (connection->data.socket) {
2953 mutex_lock(&connection->data.mutex);
2954 kernel_sock_shutdown(connection->data.socket, SHUT_RDWR);
2955 sock_release(connection->data.socket);
2956 connection->data.socket = NULL;
2957 mutex_unlock(&connection->data.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002958 }
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002959 if (connection->meta.socket) {
2960 mutex_lock(&connection->meta.mutex);
2961 kernel_sock_shutdown(connection->meta.socket, SHUT_RDWR);
2962 sock_release(connection->meta.socket);
2963 connection->meta.socket = NULL;
2964 mutex_unlock(&connection->meta.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002965 }
2966}
2967
Philipp Reisnerb411b362009-09-25 16:07:19 -07002968/* meta data management */
2969
Andreas Gruenbacherbde89a92011-05-30 16:32:41 +02002970void conn_md_sync(struct drbd_connection *connection)
Philipp Reisner19fffd72012-08-28 16:48:03 +02002971{
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02002972 struct drbd_peer_device *peer_device;
Philipp Reisner19fffd72012-08-28 16:48:03 +02002973 int vnr;
2974
2975 rcu_read_lock();
Andreas Gruenbacherc06ece62011-06-21 17:23:59 +02002976 idr_for_each_entry(&connection->peer_devices, peer_device, vnr) {
2977 struct drbd_device *device = peer_device->device;
2978
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002979 kref_get(&device->kref);
Philipp Reisner19fffd72012-08-28 16:48:03 +02002980 rcu_read_unlock();
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02002981 drbd_md_sync(device);
Andreas Gruenbacher05a10ec2011-06-07 22:54:17 +02002982 kref_put(&device->kref, drbd_destroy_device);
Philipp Reisner19fffd72012-08-28 16:48:03 +02002983 rcu_read_lock();
2984 }
2985 rcu_read_unlock();
2986}
2987
Lars Ellenbergae8bf312013-03-19 18:16:43 +01002988/* aligned 4kByte */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002989struct meta_data_on_disk {
Lars Ellenbergcccac982013-03-19 18:16:46 +01002990 u64 la_size_sect; /* last agreed size. */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002991 u64 uuid[UI_SIZE]; /* UUIDs. */
2992 u64 device_uuid;
2993 u64 reserved_u64_1;
2994 u32 flags; /* MDF */
2995 u32 magic;
2996 u32 md_size_sect;
2997 u32 al_offset; /* offset to this block */
Lars Ellenbergae8bf312013-03-19 18:16:43 +01002998 u32 al_nr_extents; /* important for restoring the AL (userspace) */
Lars Ellenbergf3990022011-03-23 14:31:09 +01002999 /* `-- act_log->nr_elements <-- ldev->dc.al_extents */
Philipp Reisnerb411b362009-09-25 16:07:19 -07003000 u32 bm_offset; /* offset to the bitmap, from here */
3001 u32 bm_bytes_per_bit; /* BM_BLOCK_SIZE */
Philipp Reisner99432fc2011-05-20 16:39:13 +02003002 u32 la_peer_max_bio_size; /* last peer max_bio_size */
Philipp Reisnerb411b362009-09-25 16:07:19 -07003003
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003004 /* see al_tr_number_to_on_disk_sector() */
3005 u32 al_stripes;
3006 u32 al_stripe_size_4k;
3007
3008 u8 reserved_u8[4096 - (7*8 + 10*4)];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003009} __packed;
3010
Philipp Reisnerd752b262013-06-25 16:50:08 +02003011
3012
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003013void drbd_md_write(struct drbd_device *device, void *b)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003014{
Philipp Reisnerd752b262013-06-25 16:50:08 +02003015 struct meta_data_on_disk *buffer = b;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003016 sector_t sector;
3017 int i;
3018
Lars Ellenbergae8bf312013-03-19 18:16:43 +01003019 memset(buffer, 0, sizeof(*buffer));
Philipp Reisnerb411b362009-09-25 16:07:19 -07003020
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003021 buffer->la_size_sect = cpu_to_be64(drbd_get_capacity(device->this_bdev));
Philipp Reisnerb411b362009-09-25 16:07:19 -07003022 for (i = UI_CURRENT; i < UI_SIZE; i++)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003023 buffer->uuid[i] = cpu_to_be64(device->ldev->md.uuid[i]);
3024 buffer->flags = cpu_to_be32(device->ldev->md.flags);
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003025 buffer->magic = cpu_to_be32(DRBD_MD_MAGIC_84_UNCLEAN);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003026
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003027 buffer->md_size_sect = cpu_to_be32(device->ldev->md.md_size_sect);
3028 buffer->al_offset = cpu_to_be32(device->ldev->md.al_offset);
3029 buffer->al_nr_extents = cpu_to_be32(device->act_log->nr_elements);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003030 buffer->bm_bytes_per_bit = cpu_to_be32(BM_BLOCK_SIZE);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003031 buffer->device_uuid = cpu_to_be64(device->ldev->md.device_uuid);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003032
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003033 buffer->bm_offset = cpu_to_be32(device->ldev->md.bm_offset);
3034 buffer->la_peer_max_bio_size = cpu_to_be32(device->peer_max_bio_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003035
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003036 buffer->al_stripes = cpu_to_be32(device->ldev->md.al_stripes);
3037 buffer->al_stripe_size_4k = cpu_to_be32(device->ldev->md.al_stripe_size_4k);
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003038
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02003039 D_ASSERT(device, drbd_md_ss(device->ldev) == device->ldev->md.md_offset);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003040 sector = device->ldev->md.md_offset;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003041
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003042 if (drbd_md_sync_page_io(device, device->ldev, sector, WRITE)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07003043 /* this was a try anyways ... */
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003044 drbd_err(device, "meta data update failed!\n");
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003045 drbd_chk_io_error(device, 1, DRBD_META_IO_ERROR);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003046 }
Philipp Reisnerd752b262013-06-25 16:50:08 +02003047}
3048
3049/**
3050 * drbd_md_sync() - Writes the meta data super block if the MD_DIRTY flag bit is set
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003051 * @device: DRBD device.
Philipp Reisnerd752b262013-06-25 16:50:08 +02003052 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003053void drbd_md_sync(struct drbd_device *device)
Philipp Reisnerd752b262013-06-25 16:50:08 +02003054{
3055 struct meta_data_on_disk *buffer;
3056
3057 /* Don't accidentally change the DRBD meta data layout. */
3058 BUILD_BUG_ON(UI_SIZE != 4);
3059 BUILD_BUG_ON(sizeof(struct meta_data_on_disk) != 4096);
3060
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003061 del_timer(&device->md_sync_timer);
Philipp Reisnerd752b262013-06-25 16:50:08 +02003062 /* timer may be rearmed by drbd_md_mark_dirty() now. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003063 if (!test_and_clear_bit(MD_DIRTY, &device->flags))
Philipp Reisnerd752b262013-06-25 16:50:08 +02003064 return;
3065
3066 /* We use here D_FAILED and not D_ATTACHING because we try to write
3067 * metadata even if we detach due to a disk failure! */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003068 if (!get_ldev_if_state(device, D_FAILED))
Philipp Reisnerd752b262013-06-25 16:50:08 +02003069 return;
3070
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003071 buffer = drbd_md_get_buffer(device);
Philipp Reisnerd752b262013-06-25 16:50:08 +02003072 if (!buffer)
3073 goto out;
3074
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003075 drbd_md_write(device, buffer);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003076
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003077 /* Update device->ldev->md.la_size_sect,
Philipp Reisnerb411b362009-09-25 16:07:19 -07003078 * since we updated it on metadata. */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003079 device->ldev->md.la_size_sect = drbd_get_capacity(device->this_bdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003080
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003081 drbd_md_put_buffer(device);
Philipp Reisnere1711732011-06-27 11:51:46 +02003082out:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003083 put_ldev(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003084}
3085
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003086static int check_activity_log_stripe_size(struct drbd_device *device,
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003087 struct meta_data_on_disk *on_disk,
3088 struct drbd_md *in_core)
3089{
3090 u32 al_stripes = be32_to_cpu(on_disk->al_stripes);
3091 u32 al_stripe_size_4k = be32_to_cpu(on_disk->al_stripe_size_4k);
3092 u64 al_size_4k;
3093
3094 /* both not set: default to old fixed size activity log */
3095 if (al_stripes == 0 && al_stripe_size_4k == 0) {
3096 al_stripes = 1;
3097 al_stripe_size_4k = MD_32kB_SECT/8;
3098 }
3099
3100 /* some paranoia plausibility checks */
3101
3102 /* we need both values to be set */
3103 if (al_stripes == 0 || al_stripe_size_4k == 0)
3104 goto err;
3105
3106 al_size_4k = (u64)al_stripes * al_stripe_size_4k;
3107
3108 /* Upper limit of activity log area, to avoid potential overflow
3109 * problems in al_tr_number_to_on_disk_sector(). As right now, more
3110 * than 72 * 4k blocks total only increases the amount of history,
3111 * limiting this arbitrarily to 16 GB is not a real limitation ;-) */
3112 if (al_size_4k > (16 * 1024 * 1024/4))
3113 goto err;
3114
3115 /* Lower limit: we need at least 8 transaction slots (32kB)
3116 * to not break existing setups */
3117 if (al_size_4k < MD_32kB_SECT/8)
3118 goto err;
3119
3120 in_core->al_stripe_size_4k = al_stripe_size_4k;
3121 in_core->al_stripes = al_stripes;
3122 in_core->al_size_4k = al_size_4k;
3123
3124 return 0;
3125err:
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003126 drbd_err(device, "invalid activity log striping: al_stripes=%u, al_stripe_size_4k=%u\n",
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003127 al_stripes, al_stripe_size_4k);
3128 return -EINVAL;
3129}
3130
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003131static int check_offsets_and_sizes(struct drbd_device *device, struct drbd_backing_dev *bdev)
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003132{
3133 sector_t capacity = drbd_get_capacity(bdev->md_bdev);
3134 struct drbd_md *in_core = &bdev->md;
3135 s32 on_disk_al_sect;
3136 s32 on_disk_bm_sect;
3137
3138 /* The on-disk size of the activity log, calculated from offsets, and
3139 * the size of the activity log calculated from the stripe settings,
3140 * should match.
3141 * Though we could relax this a bit: it is ok, if the striped activity log
3142 * fits in the available on-disk activity log size.
3143 * Right now, that would break how resize is implemented.
3144 * TODO: make drbd_determine_dev_size() (and the drbdmeta tool) aware
3145 * of possible unused padding space in the on disk layout. */
3146 if (in_core->al_offset < 0) {
3147 if (in_core->bm_offset > in_core->al_offset)
3148 goto err;
3149 on_disk_al_sect = -in_core->al_offset;
3150 on_disk_bm_sect = in_core->al_offset - in_core->bm_offset;
3151 } else {
3152 if (in_core->al_offset != MD_4kB_SECT)
3153 goto err;
3154 if (in_core->bm_offset < in_core->al_offset + in_core->al_size_4k * MD_4kB_SECT)
3155 goto err;
3156
3157 on_disk_al_sect = in_core->bm_offset - MD_4kB_SECT;
3158 on_disk_bm_sect = in_core->md_size_sect - in_core->bm_offset;
3159 }
3160
3161 /* old fixed size meta data is exactly that: fixed. */
3162 if (in_core->meta_dev_idx >= 0) {
3163 if (in_core->md_size_sect != MD_128MB_SECT
3164 || in_core->al_offset != MD_4kB_SECT
3165 || in_core->bm_offset != MD_4kB_SECT + MD_32kB_SECT
3166 || in_core->al_stripes != 1
3167 || in_core->al_stripe_size_4k != MD_32kB_SECT/8)
3168 goto err;
3169 }
3170
3171 if (capacity < in_core->md_size_sect)
3172 goto err;
3173 if (capacity - in_core->md_size_sect < drbd_md_first_sector(bdev))
3174 goto err;
3175
3176 /* should be aligned, and at least 32k */
3177 if ((on_disk_al_sect & 7) || (on_disk_al_sect < MD_32kB_SECT))
3178 goto err;
3179
3180 /* should fit (for now: exactly) into the available on-disk space;
3181 * overflow prevention is in check_activity_log_stripe_size() above. */
3182 if (on_disk_al_sect != in_core->al_size_4k * MD_4kB_SECT)
3183 goto err;
3184
3185 /* again, should be aligned */
3186 if (in_core->bm_offset & 7)
3187 goto err;
3188
3189 /* FIXME check for device grow with flex external meta data? */
3190
3191 /* can the available bitmap space cover the last agreed device size? */
3192 if (on_disk_bm_sect < (in_core->la_size_sect+7)/MD_4kB_SECT/8/512)
3193 goto err;
3194
3195 return 0;
3196
3197err:
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003198 drbd_err(device, "meta data offsets don't make sense: idx=%d "
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003199 "al_s=%u, al_sz4k=%u, al_offset=%d, bm_offset=%d, "
3200 "md_size_sect=%u, la_size=%llu, md_capacity=%llu\n",
3201 in_core->meta_dev_idx,
3202 in_core->al_stripes, in_core->al_stripe_size_4k,
3203 in_core->al_offset, in_core->bm_offset, in_core->md_size_sect,
3204 (unsigned long long)in_core->la_size_sect,
3205 (unsigned long long)capacity);
3206
3207 return -EINVAL;
3208}
3209
3210
Philipp Reisnerb411b362009-09-25 16:07:19 -07003211/**
3212 * drbd_md_read() - Reads in the meta data super block
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003213 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003214 * @bdev: Device from which the meta data should be read in.
3215 *
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003216 * Return NO_ERROR on success, and an enum drbd_ret_code in case
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003217 * something goes wrong.
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003218 *
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003219 * Called exactly once during drbd_adm_attach(), while still being D_DISKLESS,
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003220 * even before @bdev is assigned to @device->ldev.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003221 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003222int drbd_md_read(struct drbd_device *device, struct drbd_backing_dev *bdev)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003223{
3224 struct meta_data_on_disk *buffer;
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003225 u32 magic, flags;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003226 int i, rv = NO_ERROR;
3227
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003228 if (device->state.disk != D_DISKLESS)
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003229 return ERR_DISK_CONFIGURED;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003230
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003231 buffer = drbd_md_get_buffer(device);
Philipp Reisnere1711732011-06-27 11:51:46 +02003232 if (!buffer)
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003233 return ERR_NOMEM;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003234
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003235 /* First, figure out where our meta data superblock is located,
3236 * and read it. */
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003237 bdev->md.meta_dev_idx = bdev->disk_conf->meta_dev_idx;
3238 bdev->md.md_offset = drbd_md_ss(bdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003239
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003240 if (drbd_md_sync_page_io(device, bdev, bdev->md.md_offset, READ)) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003241 /* NOTE: can't do normal error processing here as this is
Philipp Reisnerb411b362009-09-25 16:07:19 -07003242 called BEFORE disk is attached */
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003243 drbd_err(device, "Error while reading metadata.\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07003244 rv = ERR_IO_MD_DISK;
3245 goto err;
3246 }
3247
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003248 magic = be32_to_cpu(buffer->magic);
3249 flags = be32_to_cpu(buffer->flags);
3250 if (magic == DRBD_MD_MAGIC_84_UNCLEAN ||
3251 (magic == DRBD_MD_MAGIC_08 && !(flags & MDF_AL_CLEAN))) {
3252 /* btw: that's Activity Log clean, not "all" clean. */
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003253 drbd_err(device, "Found unclean meta data. Did you \"drbdadm apply-al\"?\n");
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003254 rv = ERR_MD_UNCLEAN;
3255 goto err;
3256 }
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003257
3258 rv = ERR_MD_INVALID;
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003259 if (magic != DRBD_MD_MAGIC_08) {
Philipp Reisner43de7c82011-11-10 13:16:13 +01003260 if (magic == DRBD_MD_MAGIC_07)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003261 drbd_err(device, "Found old (0.7) meta data magic. Did you \"drbdadm create-md\"?\n");
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003262 else
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003263 drbd_err(device, "Meta data magic not found. Did you \"drbdadm create-md\"?\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07003264 goto err;
3265 }
3266
3267 if (be32_to_cpu(buffer->bm_bytes_per_bit) != BM_BLOCK_SIZE) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003268 drbd_err(device, "unexpected bm_bytes_per_bit: %u (expected %u)\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003269 be32_to_cpu(buffer->bm_bytes_per_bit), BM_BLOCK_SIZE);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003270 goto err;
3271 }
3272
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003273
3274 /* convert to in_core endian */
3275 bdev->md.la_size_sect = be64_to_cpu(buffer->la_size_sect);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003276 for (i = UI_CURRENT; i < UI_SIZE; i++)
3277 bdev->md.uuid[i] = be64_to_cpu(buffer->uuid[i]);
3278 bdev->md.flags = be32_to_cpu(buffer->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003279 bdev->md.device_uuid = be64_to_cpu(buffer->device_uuid);
3280
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003281 bdev->md.md_size_sect = be32_to_cpu(buffer->md_size_sect);
3282 bdev->md.al_offset = be32_to_cpu(buffer->al_offset);
3283 bdev->md.bm_offset = be32_to_cpu(buffer->bm_offset);
3284
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003285 if (check_activity_log_stripe_size(device, buffer, &bdev->md))
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003286 goto err;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003287 if (check_offsets_and_sizes(device, bdev))
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003288 goto err;
3289
Philipp Reisnerb411b362009-09-25 16:07:19 -07003290 if (be32_to_cpu(buffer->bm_offset) != bdev->md.bm_offset) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003291 drbd_err(device, "unexpected bm_offset: %d (expected %d)\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003292 be32_to_cpu(buffer->bm_offset), bdev->md.bm_offset);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003293 goto err;
3294 }
3295 if (be32_to_cpu(buffer->md_size_sect) != bdev->md.md_size_sect) {
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003296 drbd_err(device, "unexpected md_size: %u (expected %u)\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003297 be32_to_cpu(buffer->md_size_sect), bdev->md.md_size_sect);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003298 goto err;
3299 }
3300
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003301 rv = NO_ERROR;
3302
Andreas Gruenbacher05008132011-07-07 14:19:42 +02003303 spin_lock_irq(&device->resource->req_lock);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003304 if (device->state.conn < C_CONNECTED) {
Lars Ellenbergdb141b22012-06-25 19:15:58 +02003305 unsigned int peer;
Philipp Reisner99432fc2011-05-20 16:39:13 +02003306 peer = be32_to_cpu(buffer->la_peer_max_bio_size);
Lars Ellenbergdb141b22012-06-25 19:15:58 +02003307 peer = max(peer, DRBD_MAX_BIO_SIZE_SAFE);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003308 device->peer_max_bio_size = peer;
Philipp Reisner99432fc2011-05-20 16:39:13 +02003309 }
Andreas Gruenbacher05008132011-07-07 14:19:42 +02003310 spin_unlock_irq(&device->resource->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003311
3312 err:
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003313 drbd_md_put_buffer(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003314
3315 return rv;
3316}
3317
3318/**
3319 * drbd_md_mark_dirty() - Mark meta data super block as dirty
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003320 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003321 *
3322 * Call this function if you change anything that should be written to
3323 * the meta-data super block. This function sets MD_DIRTY, and starts a
3324 * timer that ensures that within five seconds you have to call drbd_md_sync().
3325 */
Lars Ellenbergca0e6092010-10-14 15:01:21 +02003326#ifdef DEBUG
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003327void drbd_md_mark_dirty_(struct drbd_device *device, unsigned int line, const char *func)
Lars Ellenbergee15b032010-09-03 10:00:09 +02003328{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003329 if (!test_and_set_bit(MD_DIRTY, &device->flags)) {
3330 mod_timer(&device->md_sync_timer, jiffies + HZ);
3331 device->last_md_mark_dirty.line = line;
3332 device->last_md_mark_dirty.func = func;
Lars Ellenbergee15b032010-09-03 10:00:09 +02003333 }
3334}
3335#else
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003336void drbd_md_mark_dirty(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003337{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003338 if (!test_and_set_bit(MD_DIRTY, &device->flags))
3339 mod_timer(&device->md_sync_timer, jiffies + 5*HZ);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003340}
Lars Ellenbergee15b032010-09-03 10:00:09 +02003341#endif
Philipp Reisnerb411b362009-09-25 16:07:19 -07003342
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003343void drbd_uuid_move_history(struct drbd_device *device) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003344{
3345 int i;
3346
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003347 for (i = UI_HISTORY_START; i < UI_HISTORY_END; i++)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003348 device->ldev->md.uuid[i+1] = device->ldev->md.uuid[i];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003349}
3350
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003351void __drbd_uuid_set(struct drbd_device *device, int idx, u64 val) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003352{
3353 if (idx == UI_CURRENT) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003354 if (device->state.role == R_PRIMARY)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003355 val |= 1;
3356 else
3357 val &= ~((u64)1);
3358
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003359 drbd_set_ed_uuid(device, val);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003360 }
3361
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003362 device->ldev->md.uuid[idx] = val;
3363 drbd_md_mark_dirty(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003364}
3365
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003366void _drbd_uuid_set(struct drbd_device *device, int idx, u64 val) __must_hold(local)
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003367{
3368 unsigned long flags;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003369 spin_lock_irqsave(&device->ldev->md.uuid_lock, flags);
3370 __drbd_uuid_set(device, idx, val);
3371 spin_unlock_irqrestore(&device->ldev->md.uuid_lock, flags);
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003372}
Philipp Reisnerb411b362009-09-25 16:07:19 -07003373
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003374void drbd_uuid_set(struct drbd_device *device, int idx, u64 val) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003375{
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003376 unsigned long flags;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003377 spin_lock_irqsave(&device->ldev->md.uuid_lock, flags);
3378 if (device->ldev->md.uuid[idx]) {
3379 drbd_uuid_move_history(device);
3380 device->ldev->md.uuid[UI_HISTORY_START] = device->ldev->md.uuid[idx];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003381 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003382 __drbd_uuid_set(device, idx, val);
3383 spin_unlock_irqrestore(&device->ldev->md.uuid_lock, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003384}
3385
3386/**
3387 * drbd_uuid_new_current() - Creates a new current UUID
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003388 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003389 *
3390 * Creates a new current UUID, and rotates the old current UUID into
3391 * the bitmap slot. Causes an incremental resync upon next connect.
3392 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003393void drbd_uuid_new_current(struct drbd_device *device) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003394{
3395 u64 val;
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003396 unsigned long long bm_uuid;
3397
3398 get_random_bytes(&val, sizeof(u64));
3399
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003400 spin_lock_irq(&device->ldev->md.uuid_lock);
3401 bm_uuid = device->ldev->md.uuid[UI_BITMAP];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003402
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003403 if (bm_uuid)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003404 drbd_warn(device, "bm UUID was already set: %llX\n", bm_uuid);
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003405
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003406 device->ldev->md.uuid[UI_BITMAP] = device->ldev->md.uuid[UI_CURRENT];
3407 __drbd_uuid_set(device, UI_CURRENT, val);
3408 spin_unlock_irq(&device->ldev->md.uuid_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003409
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003410 drbd_print_uuids(device, "new current UUID");
Lars Ellenbergaaa8e2b2010-10-15 13:16:53 +02003411 /* get it to stable storage _now_ */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003412 drbd_md_sync(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003413}
3414
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003415void drbd_uuid_set_bm(struct drbd_device *device, u64 val) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003416{
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003417 unsigned long flags;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003418 if (device->ldev->md.uuid[UI_BITMAP] == 0 && val == 0)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003419 return;
3420
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003421 spin_lock_irqsave(&device->ldev->md.uuid_lock, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003422 if (val == 0) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003423 drbd_uuid_move_history(device);
3424 device->ldev->md.uuid[UI_HISTORY_START] = device->ldev->md.uuid[UI_BITMAP];
3425 device->ldev->md.uuid[UI_BITMAP] = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003426 } else {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003427 unsigned long long bm_uuid = device->ldev->md.uuid[UI_BITMAP];
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003428 if (bm_uuid)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003429 drbd_warn(device, "bm UUID was already set: %llX\n", bm_uuid);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003430
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003431 device->ldev->md.uuid[UI_BITMAP] = val & ~((u64)1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003432 }
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003433 spin_unlock_irqrestore(&device->ldev->md.uuid_lock, flags);
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003434
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003435 drbd_md_mark_dirty(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003436}
3437
3438/**
3439 * drbd_bmio_set_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003440 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003441 *
3442 * Sets all bits in the bitmap and writes the whole bitmap to stable storage.
3443 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003444int drbd_bmio_set_n_write(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003445{
3446 int rv = -EIO;
3447
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003448 if (get_ldev_if_state(device, D_ATTACHING)) {
3449 drbd_md_set_flag(device, MDF_FULL_SYNC);
3450 drbd_md_sync(device);
3451 drbd_bm_set_all(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003452
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003453 rv = drbd_bm_write(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003454
3455 if (!rv) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003456 drbd_md_clear_flag(device, MDF_FULL_SYNC);
3457 drbd_md_sync(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003458 }
3459
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003460 put_ldev(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003461 }
3462
3463 return rv;
3464}
3465
3466/**
3467 * drbd_bmio_clear_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003468 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003469 *
3470 * Clears all bits in the bitmap and writes the whole bitmap to stable storage.
3471 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003472int drbd_bmio_clear_n_write(struct drbd_device *device)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003473{
3474 int rv = -EIO;
3475
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003476 drbd_resume_al(device);
3477 if (get_ldev_if_state(device, D_ATTACHING)) {
3478 drbd_bm_clear_all(device);
3479 rv = drbd_bm_write(device);
3480 put_ldev(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003481 }
3482
3483 return rv;
3484}
3485
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003486static int w_bitmap_io(struct drbd_work *w, int unused)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003487{
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02003488 struct drbd_device *device =
3489 container_of(w, struct drbd_device, bm_io_work.w);
3490 struct bm_io_work *work = &device->bm_io_work;
Lars Ellenberg02851e92010-12-16 14:47:39 +01003491 int rv = -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003492
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02003493 D_ASSERT(device, atomic_read(&device->ap_bio_cnt) == 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003494
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003495 if (get_ldev(device)) {
3496 drbd_bm_lock(device, work->why, work->flags);
3497 rv = work->io_fn(device);
3498 drbd_bm_unlock(device);
3499 put_ldev(device);
Lars Ellenberg02851e92010-12-16 14:47:39 +01003500 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07003501
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003502 clear_bit_unlock(BITMAP_IO, &device->flags);
3503 wake_up(&device->misc_wait);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003504
3505 if (work->done)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003506 work->done(device, rv);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003507
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003508 clear_bit(BITMAP_IO_QUEUED, &device->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003509 work->why = NULL;
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003510 work->flags = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003511
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003512 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003513}
3514
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003515void drbd_ldev_destroy(struct drbd_device *device)
Lars Ellenberg82f59cc2010-10-16 12:13:47 +02003516{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003517 lc_destroy(device->resync);
3518 device->resync = NULL;
3519 lc_destroy(device->act_log);
3520 device->act_log = NULL;
Lars Ellenberg82f59cc2010-10-16 12:13:47 +02003521 __no_warn(local,
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003522 drbd_free_bc(device->ldev);
3523 device->ldev = NULL;);
Lars Ellenberg82f59cc2010-10-16 12:13:47 +02003524
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003525 clear_bit(GO_DISKLESS, &device->flags);
Lars Ellenberg82f59cc2010-10-16 12:13:47 +02003526}
3527
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003528static int w_go_diskless(struct drbd_work *w, int unused)
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02003529{
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02003530 struct drbd_device *device =
3531 container_of(w, struct drbd_device, go_diskless);
Philipp Reisner00d56942011-02-09 18:09:48 +01003532
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02003533 D_ASSERT(device, device->state.disk == D_FAILED);
Lars Ellenberg9d282872010-10-14 13:57:07 +02003534 /* we cannot assert local_cnt == 0 here, as get_ldev_if_state will
3535 * inc/dec it frequently. Once we are D_DISKLESS, no one will touch
Lars Ellenberg82f59cc2010-10-16 12:13:47 +02003536 * the protected members anymore, though, so once put_ldev reaches zero
3537 * again, it will be safe to free them. */
Lars Ellenberga2a3c74f2012-09-22 12:26:57 +02003538
3539 /* Try to write changed bitmap pages, read errors may have just
3540 * set some bits outside the area covered by the activity log.
3541 *
3542 * If we have an IO error during the bitmap writeout,
3543 * we will want a full sync next time, just in case.
3544 * (Do we want a specific meta data flag for this?)
3545 *
3546 * If that does not make it to stable storage either,
Philipp Reisnerfd0017c2012-10-19 14:19:23 +02003547 * we cannot do anything about that anymore.
3548 *
3549 * We still need to check if both bitmap and ldev are present, we may
3550 * end up here after a failed attach, before ldev was even assigned.
3551 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003552 if (device->bitmap && device->ldev) {
Philipp Reisnerbb451852013-03-27 14:08:39 +01003553 /* An interrupted resync or similar is allowed to recounts bits
3554 * while we detach.
3555 * Any modifications would not be expected anymore, though.
3556 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003557 if (drbd_bitmap_io_from_worker(device, drbd_bm_write,
Philipp Reisnerbb451852013-03-27 14:08:39 +01003558 "detach", BM_LOCKED_TEST_ALLOWED)) {
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003559 if (test_bit(WAS_READ_ERROR, &device->flags)) {
3560 drbd_md_set_flag(device, MDF_FULL_SYNC);
3561 drbd_md_sync(device);
Lars Ellenberga2a3c74f2012-09-22 12:26:57 +02003562 }
3563 }
3564 }
3565
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003566 drbd_force_state(device, NS(disk, D_DISKLESS));
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003567 return 0;
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02003568}
3569
Philipp Reisnerb411b362009-09-25 16:07:19 -07003570/**
3571 * drbd_queue_bitmap_io() - Queues an IO operation on the whole bitmap
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003572 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003573 * @io_fn: IO callback to be called when bitmap IO is possible
3574 * @done: callback to be called after the bitmap IO was performed
3575 * @why: Descriptive text of the reason for doing the IO
3576 *
3577 * While IO on the bitmap happens we freeze application IO thus we ensure
3578 * that drbd_set_out_of_sync() can not be called. This function MAY ONLY be
3579 * called from worker context. It MUST NOT be used while a previous such
3580 * work is still pending!
3581 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003582void drbd_queue_bitmap_io(struct drbd_device *device,
Andreas Gruenbacher54761692011-05-30 16:15:21 +02003583 int (*io_fn)(struct drbd_device *),
3584 void (*done)(struct drbd_device *, int),
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003585 char *why, enum bm_flag flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003586{
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02003587 D_ASSERT(device, current == first_peer_device(device)->connection->worker.task);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003588
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02003589 D_ASSERT(device, !test_bit(BITMAP_IO_QUEUED, &device->flags));
3590 D_ASSERT(device, !test_bit(BITMAP_IO, &device->flags));
3591 D_ASSERT(device, list_empty(&device->bm_io_work.w.list));
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003592 if (device->bm_io_work.why)
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003593 drbd_err(device, "FIXME going to queue '%s' but '%s' still pending?\n",
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003594 why, device->bm_io_work.why);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003595
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003596 device->bm_io_work.io_fn = io_fn;
3597 device->bm_io_work.done = done;
3598 device->bm_io_work.why = why;
3599 device->bm_io_work.flags = flags;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003600
Andreas Gruenbacher05008132011-07-07 14:19:42 +02003601 spin_lock_irq(&device->resource->req_lock);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003602 set_bit(BITMAP_IO, &device->flags);
3603 if (atomic_read(&device->ap_bio_cnt) == 0) {
3604 if (!test_and_set_bit(BITMAP_IO_QUEUED, &device->flags))
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02003605 drbd_queue_work(&first_peer_device(device)->connection->sender_work,
3606 &device->bm_io_work.w);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003607 }
Andreas Gruenbacher05008132011-07-07 14:19:42 +02003608 spin_unlock_irq(&device->resource->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003609}
3610
3611/**
3612 * drbd_bitmap_io() - Does an IO operation on the whole bitmap
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003613 * @device: DRBD device.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003614 * @io_fn: IO callback to be called when bitmap IO is possible
3615 * @why: Descriptive text of the reason for doing the IO
3616 *
3617 * freezes application IO while that the actual IO operations runs. This
3618 * functions MAY NOT be called from worker context.
3619 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003620int drbd_bitmap_io(struct drbd_device *device, int (*io_fn)(struct drbd_device *),
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003621 char *why, enum bm_flag flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003622{
3623 int rv;
3624
Andreas Gruenbacher0b0ba1e2011-06-27 16:23:33 +02003625 D_ASSERT(device, current != first_peer_device(device)->connection->worker.task);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003626
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003627 if ((flags & BM_LOCKED_SET_ALLOWED) == 0)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003628 drbd_suspend_io(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003629
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003630 drbd_bm_lock(device, why, flags);
3631 rv = io_fn(device);
3632 drbd_bm_unlock(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003633
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003634 if ((flags & BM_LOCKED_SET_ALLOWED) == 0)
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003635 drbd_resume_io(device);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003636
3637 return rv;
3638}
3639
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003640void drbd_md_set_flag(struct drbd_device *device, int flag) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003641{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003642 if ((device->ldev->md.flags & flag) != flag) {
3643 drbd_md_mark_dirty(device);
3644 device->ldev->md.flags |= flag;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003645 }
3646}
3647
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003648void drbd_md_clear_flag(struct drbd_device *device, int flag) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003649{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003650 if ((device->ldev->md.flags & flag) != 0) {
3651 drbd_md_mark_dirty(device);
3652 device->ldev->md.flags &= ~flag;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003653 }
3654}
3655int drbd_md_test_flag(struct drbd_backing_dev *bdev, int flag)
3656{
3657 return (bdev->md.flags & flag) != 0;
3658}
3659
3660static void md_sync_timer_fn(unsigned long data)
3661{
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003662 struct drbd_device *device = (struct drbd_device *) data;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003663
Lars Ellenbergb792b652012-08-22 14:59:06 +02003664 /* must not double-queue! */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003665 if (list_empty(&device->md_sync_work.list))
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02003666 drbd_queue_work_front(&first_peer_device(device)->connection->sender_work,
3667 &device->md_sync_work);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003668}
3669
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003670static int w_md_sync(struct drbd_work *w, int unused)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003671{
Andreas Gruenbacher84b8c062011-07-28 15:27:51 +02003672 struct drbd_device *device =
3673 container_of(w, struct drbd_device, md_sync_work);
Philipp Reisner00d56942011-02-09 18:09:48 +01003674
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003675 drbd_warn(device, "md_sync_timer expired! Worker calls drbd_md_sync().\n");
Lars Ellenbergee15b032010-09-03 10:00:09 +02003676#ifdef DEBUG
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003677 drbd_warn(device, "last md_mark_dirty: %s:%u\n",
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003678 device->last_md_mark_dirty.func, device->last_md_mark_dirty.line);
Lars Ellenbergee15b032010-09-03 10:00:09 +02003679#endif
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003680 drbd_md_sync(device);
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003681 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003682}
3683
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01003684const char *cmdname(enum drbd_packet cmd)
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003685{
3686 /* THINK may need to become several global tables
3687 * when we want to support more than
3688 * one PRO_VERSION */
3689 static const char *cmdnames[] = {
3690 [P_DATA] = "Data",
3691 [P_DATA_REPLY] = "DataReply",
3692 [P_RS_DATA_REPLY] = "RSDataReply",
3693 [P_BARRIER] = "Barrier",
3694 [P_BITMAP] = "ReportBitMap",
3695 [P_BECOME_SYNC_TARGET] = "BecomeSyncTarget",
3696 [P_BECOME_SYNC_SOURCE] = "BecomeSyncSource",
3697 [P_UNPLUG_REMOTE] = "UnplugRemote",
3698 [P_DATA_REQUEST] = "DataRequest",
3699 [P_RS_DATA_REQUEST] = "RSDataRequest",
3700 [P_SYNC_PARAM] = "SyncParam",
3701 [P_SYNC_PARAM89] = "SyncParam89",
3702 [P_PROTOCOL] = "ReportProtocol",
3703 [P_UUIDS] = "ReportUUIDs",
3704 [P_SIZES] = "ReportSizes",
3705 [P_STATE] = "ReportState",
3706 [P_SYNC_UUID] = "ReportSyncUUID",
3707 [P_AUTH_CHALLENGE] = "AuthChallenge",
3708 [P_AUTH_RESPONSE] = "AuthResponse",
3709 [P_PING] = "Ping",
3710 [P_PING_ACK] = "PingAck",
3711 [P_RECV_ACK] = "RecvAck",
3712 [P_WRITE_ACK] = "WriteAck",
3713 [P_RS_WRITE_ACK] = "RSWriteAck",
Lars Ellenbergd4dabbe2012-08-01 12:33:51 +02003714 [P_SUPERSEDED] = "Superseded",
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003715 [P_NEG_ACK] = "NegAck",
3716 [P_NEG_DREPLY] = "NegDReply",
3717 [P_NEG_RS_DREPLY] = "NegRSDReply",
3718 [P_BARRIER_ACK] = "BarrierAck",
3719 [P_STATE_CHG_REQ] = "StateChgRequest",
3720 [P_STATE_CHG_REPLY] = "StateChgReply",
3721 [P_OV_REQUEST] = "OVRequest",
3722 [P_OV_REPLY] = "OVReply",
3723 [P_OV_RESULT] = "OVResult",
3724 [P_CSUM_RS_REQUEST] = "CsumRSRequest",
3725 [P_RS_IS_IN_SYNC] = "CsumRSIsInSync",
3726 [P_COMPRESSED_BITMAP] = "CBitmap",
3727 [P_DELAY_PROBE] = "DelayProbe",
3728 [P_OUT_OF_SYNC] = "OutOfSync",
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003729 [P_RETRY_WRITE] = "RetryWrite",
Lars Ellenbergae25b332011-04-24 00:01:16 +02003730 [P_RS_CANCEL] = "RSCancel",
3731 [P_CONN_ST_CHG_REQ] = "conn_st_chg_req",
3732 [P_CONN_ST_CHG_REPLY] = "conn_st_chg_reply",
Philipp Reisner036b17e2011-05-16 17:38:11 +02003733 [P_RETRY_WRITE] = "retry_write",
3734 [P_PROTOCOL_UPDATE] = "protocol_update",
Lars Ellenbergae25b332011-04-24 00:01:16 +02003735
3736 /* enum drbd_packet, but not commands - obsoleted flags:
3737 * P_MAY_IGNORE
3738 * P_MAX_OPT_CMD
3739 */
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003740 };
3741
Lars Ellenbergae25b332011-04-24 00:01:16 +02003742 /* too big for the array: 0xfffX */
Andreas Gruenbachere5d6f332011-03-28 16:44:40 +02003743 if (cmd == P_INITIAL_META)
3744 return "InitialMeta";
3745 if (cmd == P_INITIAL_DATA)
3746 return "InitialData";
Andreas Gruenbacher60381782011-03-28 17:05:50 +02003747 if (cmd == P_CONNECTION_FEATURES)
3748 return "ConnectionFeatures";
Andreas Gruenbacher6e849ce2011-03-14 17:27:45 +01003749 if (cmd >= ARRAY_SIZE(cmdnames))
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003750 return "Unknown";
3751 return cmdnames[cmd];
3752}
3753
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003754/**
3755 * drbd_wait_misc - wait for a request to make progress
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003756 * @device: device associated with the request
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003757 * @i: the struct drbd_interval embedded in struct drbd_request or
3758 * struct drbd_peer_request
3759 */
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003760int drbd_wait_misc(struct drbd_device *device, struct drbd_interval *i)
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003761{
Philipp Reisner44ed1672011-04-19 17:10:19 +02003762 struct net_conf *nc;
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003763 DEFINE_WAIT(wait);
3764 long timeout;
3765
Philipp Reisner44ed1672011-04-19 17:10:19 +02003766 rcu_read_lock();
Andreas Gruenbachera6b32bc2011-05-31 14:33:49 +02003767 nc = rcu_dereference(first_peer_device(device)->connection->net_conf);
Philipp Reisner44ed1672011-04-19 17:10:19 +02003768 if (!nc) {
3769 rcu_read_unlock();
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003770 return -ETIMEDOUT;
Philipp Reisner44ed1672011-04-19 17:10:19 +02003771 }
3772 timeout = nc->ko_count ? nc->timeout * HZ / 10 * nc->ko_count : MAX_SCHEDULE_TIMEOUT;
3773 rcu_read_unlock();
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003774
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003775 /* Indicate to wake up device->misc_wait on progress. */
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003776 i->waiting = true;
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003777 prepare_to_wait(&device->misc_wait, &wait, TASK_INTERRUPTIBLE);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02003778 spin_unlock_irq(&device->resource->req_lock);
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003779 timeout = schedule_timeout(timeout);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003780 finish_wait(&device->misc_wait, &wait);
Andreas Gruenbacher05008132011-07-07 14:19:42 +02003781 spin_lock_irq(&device->resource->req_lock);
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003782 if (!timeout || device->state.conn < C_CONNECTED)
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003783 return -ETIMEDOUT;
3784 if (signal_pending(current))
3785 return -ERESTARTSYS;
3786 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003787}
3788
3789#ifdef CONFIG_DRBD_FAULT_INJECTION
3790/* Fault insertion support including random number generator shamelessly
3791 * stolen from kernel/rcutorture.c */
3792struct fault_random_state {
3793 unsigned long state;
3794 unsigned long count;
3795};
3796
3797#define FAULT_RANDOM_MULT 39916801 /* prime */
3798#define FAULT_RANDOM_ADD 479001701 /* prime */
3799#define FAULT_RANDOM_REFRESH 10000
3800
3801/*
3802 * Crude but fast random-number generator. Uses a linear congruential
3803 * generator, with occasional help from get_random_bytes().
3804 */
3805static unsigned long
3806_drbd_fault_random(struct fault_random_state *rsp)
3807{
3808 long refresh;
3809
Roel Kluin49829ea2009-12-15 22:55:44 +01003810 if (!rsp->count--) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07003811 get_random_bytes(&refresh, sizeof(refresh));
3812 rsp->state += refresh;
3813 rsp->count = FAULT_RANDOM_REFRESH;
3814 }
3815 rsp->state = rsp->state * FAULT_RANDOM_MULT + FAULT_RANDOM_ADD;
3816 return swahw32(rsp->state);
3817}
3818
3819static char *
3820_drbd_fault_str(unsigned int type) {
3821 static char *_faults[] = {
3822 [DRBD_FAULT_MD_WR] = "Meta-data write",
3823 [DRBD_FAULT_MD_RD] = "Meta-data read",
3824 [DRBD_FAULT_RS_WR] = "Resync write",
3825 [DRBD_FAULT_RS_RD] = "Resync read",
3826 [DRBD_FAULT_DT_WR] = "Data write",
3827 [DRBD_FAULT_DT_RD] = "Data read",
3828 [DRBD_FAULT_DT_RA] = "Data read ahead",
3829 [DRBD_FAULT_BM_ALLOC] = "BM allocation",
Philipp Reisner6b4388a2010-04-26 14:11:45 +02003830 [DRBD_FAULT_AL_EE] = "EE allocation",
3831 [DRBD_FAULT_RECEIVE] = "receive data corruption",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003832 };
3833
3834 return (type < DRBD_FAULT_MAX) ? _faults[type] : "**Unknown**";
3835}
3836
3837unsigned int
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003838_drbd_insert_fault(struct drbd_device *device, unsigned int type)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003839{
3840 static struct fault_random_state rrs = {0, 0};
3841
3842 unsigned int ret = (
3843 (fault_devs == 0 ||
Andreas Gruenbacherb30ab792011-07-03 13:26:43 +02003844 ((1 << device_to_minor(device)) & fault_devs) != 0) &&
Philipp Reisnerb411b362009-09-25 16:07:19 -07003845 (((_drbd_fault_random(&rrs) % 100) + 1) <= fault_rate));
3846
3847 if (ret) {
3848 fault_count++;
3849
Lars Ellenberg73835062010-05-27 11:51:56 +02003850 if (__ratelimit(&drbd_ratelimit_state))
Andreas Gruenbacherd0180172011-07-03 17:53:52 +02003851 drbd_warn(device, "***Simulating %s failure\n",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003852 _drbd_fault_str(type));
3853 }
3854
3855 return ret;
3856}
3857#endif
3858
3859const char *drbd_buildtag(void)
3860{
3861 /* DRBD built from external sources has here a reference to the
3862 git hash of the source code. */
3863
3864 static char buildtag[38] = "\0uilt-in";
3865
3866 if (buildtag[0] == 0) {
Cong Wangbc4854b2012-04-03 14:13:36 +08003867#ifdef MODULE
3868 sprintf(buildtag, "srcversion: %-24s", THIS_MODULE->srcversion);
3869#else
3870 buildtag[0] = 'b';
Philipp Reisnerb411b362009-09-25 16:07:19 -07003871#endif
Philipp Reisnerb411b362009-09-25 16:07:19 -07003872 }
3873
3874 return buildtag;
3875}
3876
3877module_init(drbd_init)
3878module_exit(drbd_cleanup)
3879
Philipp Reisnerb411b362009-09-25 16:07:19 -07003880EXPORT_SYMBOL(drbd_conn_str);
3881EXPORT_SYMBOL(drbd_role_str);
3882EXPORT_SYMBOL(drbd_disk_str);
3883EXPORT_SYMBOL(drbd_set_st_err_str);