blob: 929468e1512a687d44bb310b8e3cc94a6b15161d [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"
Philipp Reisnerb411b362009-09-25 16:07:19 -070055#include "drbd_req.h" /* only for _req_mod in tl_release and tl_clear */
56
57#include "drbd_vli.h"
58
Arnd Bergmann2a48fc02010-06-02 14:28:52 +020059static DEFINE_MUTEX(drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -070060int drbdd_init(struct drbd_thread *);
61int drbd_worker(struct drbd_thread *);
62int drbd_asender(struct drbd_thread *);
63
64int drbd_init(void);
65static int drbd_open(struct block_device *bdev, fmode_t mode);
Al Virodb2a1442013-05-05 21:52:57 -040066static void drbd_release(struct gendisk *gd, fmode_t mode);
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +010067static int w_md_sync(struct drbd_work *w, int unused);
Philipp Reisnerb411b362009-09-25 16:07:19 -070068static void md_sync_timer_fn(unsigned long data);
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +010069static int w_bitmap_io(struct drbd_work *w, int unused);
70static int w_go_diskless(struct drbd_work *w, int unused);
Philipp Reisnerb411b362009-09-25 16:07:19 -070071
Philipp Reisnerb411b362009-09-25 16:07:19 -070072MODULE_AUTHOR("Philipp Reisner <phil@linbit.com>, "
73 "Lars Ellenberg <lars@linbit.com>");
74MODULE_DESCRIPTION("drbd - Distributed Replicated Block Device v" REL_VERSION);
75MODULE_VERSION(REL_VERSION);
76MODULE_LICENSE("GPL");
Philipp Reisner81a5d602011-02-22 19:53:16 -050077MODULE_PARM_DESC(minor_count, "Approximate number of drbd devices ("
Philipp Reisner2b8a90b2011-01-10 11:15:17 +010078 __stringify(DRBD_MINOR_COUNT_MIN) "-" __stringify(DRBD_MINOR_COUNT_MAX) ")");
Philipp Reisnerb411b362009-09-25 16:07:19 -070079MODULE_ALIAS_BLOCKDEV_MAJOR(DRBD_MAJOR);
80
81#include <linux/moduleparam.h>
82/* allow_open_on_secondary */
83MODULE_PARM_DESC(allow_oos, "DONT USE!");
84/* thanks to these macros, if compiled into the kernel (not-module),
85 * this becomes the boot parameter drbd.minor_count */
86module_param(minor_count, uint, 0444);
87module_param(disable_sendpage, bool, 0644);
88module_param(allow_oos, bool, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -070089module_param(proc_details, int, 0644);
90
91#ifdef CONFIG_DRBD_FAULT_INJECTION
92int enable_faults;
93int fault_rate;
94static int fault_count;
95int fault_devs;
96/* bitmap of enabled faults */
97module_param(enable_faults, int, 0664);
98/* fault rate % value - applies to all enabled faults */
99module_param(fault_rate, int, 0664);
100/* count of faults inserted */
101module_param(fault_count, int, 0664);
102/* bitmap of devices to insert faults on */
103module_param(fault_devs, int, 0644);
104#endif
105
106/* module parameter, defined */
Philipp Reisner2b8a90b2011-01-10 11:15:17 +0100107unsigned int minor_count = DRBD_MINOR_COUNT_DEF;
Rusty Russell90ab5ee2012-01-13 09:32:20 +1030108bool disable_sendpage;
109bool allow_oos;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700110int proc_details; /* Detail level in proc drbd*/
111
112/* Module parameter for setting the user mode helper program
113 * to run. Default is /sbin/drbdadm */
114char usermode_helper[80] = "/sbin/drbdadm";
115
116module_param_string(usermode_helper, usermode_helper, sizeof(usermode_helper), 0644);
117
118/* in 2.6.x, our device mapping and config info contains our virtual gendisks
119 * as member "struct gendisk *vdisk;"
120 */
Philipp Reisner81a5d602011-02-22 19:53:16 -0500121struct idr minors;
Philipp Reisner21114382011-01-19 12:26:59 +0100122struct list_head drbd_tconns; /* list of struct drbd_tconn */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700123
124struct kmem_cache *drbd_request_cache;
Andreas Gruenbacher6c852be2011-02-04 15:38:52 +0100125struct kmem_cache *drbd_ee_cache; /* peer requests */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700126struct kmem_cache *drbd_bm_ext_cache; /* bitmap extents */
127struct kmem_cache *drbd_al_ext_cache; /* activity log extents */
128mempool_t *drbd_request_mempool;
129mempool_t *drbd_ee_mempool;
Lars Ellenberg42818082011-02-23 12:39:46 +0100130mempool_t *drbd_md_io_page_pool;
Lars Ellenberg9476f392011-02-23 17:02:01 +0100131struct bio_set *drbd_md_io_bio_set;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700132
133/* I do not use a standard mempool, because:
134 1) I want to hand out the pre-allocated objects first.
135 2) I want to be able to interrupt sleeping allocation with a signal.
136 Note: This is a single linked list, the next pointer is the private
137 member of struct page.
138 */
139struct page *drbd_pp_pool;
140spinlock_t drbd_pp_lock;
141int drbd_pp_vacant;
142wait_queue_head_t drbd_pp_wait;
143
144DEFINE_RATELIMIT_STATE(drbd_ratelimit_state, 5 * HZ, 5);
145
Emese Revfy7d4e9d02009-12-14 00:59:30 +0100146static const struct block_device_operations drbd_ops = {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700147 .owner = THIS_MODULE,
148 .open = drbd_open,
149 .release = drbd_release,
150};
151
Lars Ellenberg9476f392011-02-23 17:02:01 +0100152struct bio *bio_alloc_drbd(gfp_t gfp_mask)
153{
Lars Ellenbergda4a75d2011-02-23 17:02:01 +0100154 struct bio *bio;
155
Lars Ellenberg9476f392011-02-23 17:02:01 +0100156 if (!drbd_md_io_bio_set)
157 return bio_alloc(gfp_mask, 1);
158
Lars Ellenbergda4a75d2011-02-23 17:02:01 +0100159 bio = bio_alloc_bioset(gfp_mask, 1, drbd_md_io_bio_set);
160 if (!bio)
161 return NULL;
Lars Ellenbergda4a75d2011-02-23 17:02:01 +0100162 return bio;
Lars Ellenberg9476f392011-02-23 17:02:01 +0100163}
164
Philipp Reisnerb411b362009-09-25 16:07:19 -0700165#ifdef __CHECKER__
166/* When checking with sparse, and this is an inline function, sparse will
167 give tons of false positives. When this is a real functions sparse works.
168 */
169int _get_ldev_if_state(struct drbd_conf *mdev, enum drbd_disk_state mins)
170{
171 int io_allowed;
172
173 atomic_inc(&mdev->local_cnt);
174 io_allowed = (mdev->state.disk >= mins);
175 if (!io_allowed) {
176 if (atomic_dec_and_test(&mdev->local_cnt))
177 wake_up(&mdev->misc_wait);
178 }
179 return io_allowed;
180}
181
182#endif
183
184/**
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100185 * tl_release() - mark as BARRIER_ACKED all requests in the corresponding transfer log epoch
186 * @tconn: DRBD connection.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700187 * @barrier_nr: Expected identifier of the DRBD write barrier packet.
188 * @set_size: Expected number of requests before that barrier.
189 *
190 * In case the passed barrier_nr or set_size does not match the oldest
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100191 * epoch of not yet barrier-acked requests, this function will cause a
192 * termination of the connection.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700193 */
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100194void tl_release(struct drbd_tconn *tconn, unsigned int barrier_nr,
195 unsigned int set_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700196{
Philipp Reisnerb411b362009-09-25 16:07:19 -0700197 struct drbd_request *r;
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100198 struct drbd_request *req = NULL;
199 int expect_epoch = 0;
200 int expect_size = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700201
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100202 spin_lock_irq(&tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700203
Philipp Reisner98683652012-11-09 14:18:43 +0100204 /* find oldest not yet barrier-acked write request,
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100205 * count writes in its epoch. */
206 list_for_each_entry(r, &tconn->transfer_log, tl_requests) {
Lars Ellenberga0d856d2012-01-24 17:19:42 +0100207 const unsigned s = r->rq_state;
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100208 if (!req) {
209 if (!(s & RQ_WRITE))
210 continue;
211 if (!(s & RQ_NET_MASK))
212 continue;
213 if (s & RQ_NET_DONE)
214 continue;
215 req = r;
216 expect_epoch = req->epoch;
217 expect_size ++;
218 } else {
219 if (r->epoch != expect_epoch)
220 break;
221 if (!(s & RQ_WRITE))
222 continue;
223 /* if (s & RQ_DONE): not expected */
224 /* if (!(s & RQ_NET_MASK)): not expected */
225 expect_size++;
226 }
227 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700228
229 /* first some paranoia code */
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100230 if (req == NULL) {
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100231 conn_err(tconn, "BAD! BarrierAck #%u received, but no epoch in tl!?\n",
232 barrier_nr);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700233 goto bail;
234 }
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100235 if (expect_epoch != barrier_nr) {
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100236 conn_err(tconn, "BAD! BarrierAck #%u received, expected #%u!\n",
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100237 barrier_nr, expect_epoch);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700238 goto bail;
239 }
240
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100241 if (expect_size != set_size) {
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100242 conn_err(tconn, "BAD! BarrierAck #%u received with n_writes=%u, expected n_writes=%u!\n",
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100243 barrier_nr, set_size, expect_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700244 goto bail;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700245 }
246
Philipp Reisner98683652012-11-09 14:18:43 +0100247 /* Clean up list of requests processed during current epoch. */
248 /* this extra list walk restart is paranoia,
249 * to catch requests being barrier-acked "unexpectedly".
250 * It usually should find the same req again, or some READ preceding it. */
251 list_for_each_entry(req, &tconn->transfer_log, tl_requests)
252 if (req->epoch == expect_epoch)
253 break;
254 list_for_each_entry_safe_from(req, r, &tconn->transfer_log, tl_requests) {
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100255 if (req->epoch != expect_epoch)
256 break;
257 _req_mod(req, BARRIER_ACKED);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700258 }
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100259 spin_unlock_irq(&tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700260
261 return;
262
263bail:
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100264 spin_unlock_irq(&tconn->req_lock);
265 conn_request_state(tconn, NS(conn, C_PROTOCOL_ERROR), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700266}
267
Philipp Reisner617049a2010-12-22 12:48:31 +0100268
Philipp Reisner11b58e72010-05-12 17:08:26 +0200269/**
270 * _tl_restart() - Walks the transfer log, and applies an action to all requests
271 * @mdev: DRBD device.
272 * @what: The action/event to perform with all request objects
273 *
Andreas Gruenbacher8554df12011-01-25 15:37:43 +0100274 * @what might be one of CONNECTION_LOST_WHILE_PENDING, RESEND, FAIL_FROZEN_DISK_IO,
275 * RESTART_FROZEN_DISK_IO.
Philipp Reisner11b58e72010-05-12 17:08:26 +0200276 */
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100277/* must hold resource->req_lock */
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100278void _tl_restart(struct drbd_tconn *tconn, enum drbd_req_event what)
Philipp Reisner11b58e72010-05-12 17:08:26 +0200279{
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100280 struct drbd_request *req, *r;
Philipp Reisner11b58e72010-05-12 17:08:26 +0200281
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100282 list_for_each_entry_safe(req, r, &tconn->transfer_log, tl_requests)
Philipp Reisner509fc012012-07-31 11:22:58 +0200283 _req_mod(req, what);
Philipp Reisner11b58e72010-05-12 17:08:26 +0200284}
285
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100286void tl_restart(struct drbd_tconn *tconn, enum drbd_req_event what)
287{
288 spin_lock_irq(&tconn->req_lock);
289 _tl_restart(tconn, what);
290 spin_unlock_irq(&tconn->req_lock);
Philipp Reisnercdfda632011-07-05 15:38:59 +0200291}
Philipp Reisnerb411b362009-09-25 16:07:19 -0700292
293/**
294 * tl_clear() - Clears all requests and &struct drbd_tl_epoch objects out of the TL
295 * @mdev: DRBD device.
296 *
297 * This is called after the connection to the peer was lost. The storage covered
298 * by the requests on the transfer gets marked as our of sync. Called from the
299 * receiver thread and the worker thread.
300 */
Philipp Reisner2f5cdd02011-02-21 14:29:27 +0100301void tl_clear(struct drbd_tconn *tconn)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700302{
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100303 tl_restart(tconn, CONNECTION_LOST_WHILE_PENDING);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700304}
305
306/**
Philipp Reisnerfd2491f2011-07-18 16:25:15 +0200307 * tl_abort_disk_io() - Abort disk I/O for all requests for a certain mdev in the TL
308 * @mdev: DRBD device.
309 */
310void tl_abort_disk_io(struct drbd_conf *mdev)
311{
Philipp Reisnercdfda632011-07-05 15:38:59 +0200312 struct drbd_tconn *tconn = mdev->tconn;
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100313 struct drbd_request *req, *r;
Philipp Reisnerfd2491f2011-07-18 16:25:15 +0200314
Philipp Reisnercdfda632011-07-05 15:38:59 +0200315 spin_lock_irq(&tconn->req_lock);
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100316 list_for_each_entry_safe(req, r, &tconn->transfer_log, tl_requests) {
Philipp Reisnerfd2491f2011-07-18 16:25:15 +0200317 if (!(req->rq_state & RQ_LOCAL_PENDING))
318 continue;
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +0100319 if (req->w.mdev != mdev)
320 continue;
321 _req_mod(req, ABORT_DISK_IO);
Philipp Reisnerfd2491f2011-07-18 16:25:15 +0200322 }
Philipp Reisnercdfda632011-07-05 15:38:59 +0200323 spin_unlock_irq(&tconn->req_lock);
Philipp Reisnerfd2491f2011-07-18 16:25:15 +0200324}
325
Philipp Reisnerb411b362009-09-25 16:07:19 -0700326static int drbd_thread_setup(void *arg)
327{
328 struct drbd_thread *thi = (struct drbd_thread *) arg;
Philipp Reisner392c8802011-02-09 10:33:31 +0100329 struct drbd_tconn *tconn = thi->tconn;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700330 unsigned long flags;
331 int retval;
332
Philipp Reisnerf1b3a6e2011-02-08 15:35:58 +0100333 snprintf(current->comm, sizeof(current->comm), "drbd_%c_%s",
Philipp Reisner392c8802011-02-09 10:33:31 +0100334 thi->name[0], thi->tconn->name);
Philipp Reisnerf1b3a6e2011-02-08 15:35:58 +0100335
Philipp Reisnerb411b362009-09-25 16:07:19 -0700336restart:
337 retval = thi->function(thi);
338
339 spin_lock_irqsave(&thi->t_lock, flags);
340
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100341 /* if the receiver has been "EXITING", the last thing it did
Philipp Reisnerb411b362009-09-25 16:07:19 -0700342 * was set the conn state to "StandAlone",
343 * if now a re-connect request comes in, conn state goes C_UNCONNECTED,
344 * and receiver thread will be "started".
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100345 * drbd_thread_start needs to set "RESTARTING" in that case.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700346 * t_state check and assignment needs to be within the same spinlock,
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100347 * so either thread_start sees EXITING, and can remap to RESTARTING,
348 * or thread_start see NONE, and can proceed as normal.
Philipp Reisnerb411b362009-09-25 16:07:19 -0700349 */
350
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100351 if (thi->t_state == RESTARTING) {
Philipp Reisner392c8802011-02-09 10:33:31 +0100352 conn_info(tconn, "Restarting %s thread\n", thi->name);
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100353 thi->t_state = RUNNING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700354 spin_unlock_irqrestore(&thi->t_lock, flags);
355 goto restart;
356 }
357
358 thi->task = NULL;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100359 thi->t_state = NONE;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700360 smp_mb();
Lars Ellenberg992d6e92011-05-02 11:47:18 +0200361 complete_all(&thi->stop);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700362 spin_unlock_irqrestore(&thi->t_lock, flags);
363
Philipp Reisner392c8802011-02-09 10:33:31 +0100364 conn_info(tconn, "Terminating %s\n", current->comm);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700365
366 /* Release mod reference taken when thread was started */
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +0200367
368 kref_put(&tconn->kref, &conn_destroy);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700369 module_put(THIS_MODULE);
370 return retval;
371}
372
Philipp Reisner392c8802011-02-09 10:33:31 +0100373static void drbd_thread_init(struct drbd_tconn *tconn, struct drbd_thread *thi,
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100374 int (*func) (struct drbd_thread *), char *name)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700375{
376 spin_lock_init(&thi->t_lock);
377 thi->task = NULL;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100378 thi->t_state = NONE;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700379 thi->function = func;
Philipp Reisner392c8802011-02-09 10:33:31 +0100380 thi->tconn = tconn;
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100381 strncpy(thi->name, name, ARRAY_SIZE(thi->name));
Philipp Reisnerb411b362009-09-25 16:07:19 -0700382}
383
384int drbd_thread_start(struct drbd_thread *thi)
385{
Philipp Reisner392c8802011-02-09 10:33:31 +0100386 struct drbd_tconn *tconn = thi->tconn;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700387 struct task_struct *nt;
388 unsigned long flags;
389
Philipp Reisnerb411b362009-09-25 16:07:19 -0700390 /* is used from state engine doing drbd_thread_stop_nowait,
391 * while holding the req lock irqsave */
392 spin_lock_irqsave(&thi->t_lock, flags);
393
394 switch (thi->t_state) {
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100395 case NONE:
Philipp Reisner392c8802011-02-09 10:33:31 +0100396 conn_info(tconn, "Starting %s thread (from %s [%d])\n",
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100397 thi->name, current->comm, current->pid);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700398
399 /* Get ref on module for thread - this is released when thread exits */
400 if (!try_module_get(THIS_MODULE)) {
Philipp Reisner392c8802011-02-09 10:33:31 +0100401 conn_err(tconn, "Failed to get module reference in drbd_thread_start\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700402 spin_unlock_irqrestore(&thi->t_lock, flags);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100403 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700404 }
405
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +0200406 kref_get(&thi->tconn->kref);
407
Philipp Reisnerb411b362009-09-25 16:07:19 -0700408 init_completion(&thi->stop);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700409 thi->reset_cpu_mask = 1;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100410 thi->t_state = RUNNING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700411 spin_unlock_irqrestore(&thi->t_lock, flags);
412 flush_signals(current); /* otherw. may get -ERESTARTNOINTR */
413
414 nt = kthread_create(drbd_thread_setup, (void *) thi,
Philipp Reisner392c8802011-02-09 10:33:31 +0100415 "drbd_%c_%s", thi->name[0], thi->tconn->name);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700416
417 if (IS_ERR(nt)) {
Philipp Reisner392c8802011-02-09 10:33:31 +0100418 conn_err(tconn, "Couldn't start thread\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -0700419
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +0200420 kref_put(&tconn->kref, &conn_destroy);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700421 module_put(THIS_MODULE);
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100422 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700423 }
424 spin_lock_irqsave(&thi->t_lock, flags);
425 thi->task = nt;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100426 thi->t_state = RUNNING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700427 spin_unlock_irqrestore(&thi->t_lock, flags);
428 wake_up_process(nt);
429 break;
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100430 case EXITING:
431 thi->t_state = RESTARTING;
Philipp Reisner392c8802011-02-09 10:33:31 +0100432 conn_info(tconn, "Restarting %s thread (from %s [%d])\n",
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100433 thi->name, current->comm, current->pid);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700434 /* fall through */
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100435 case RUNNING:
436 case RESTARTING:
Philipp Reisnerb411b362009-09-25 16:07:19 -0700437 default:
438 spin_unlock_irqrestore(&thi->t_lock, flags);
439 break;
440 }
441
Andreas Gruenbacher81e84652010-12-09 15:03:57 +0100442 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700443}
444
445
446void _drbd_thread_stop(struct drbd_thread *thi, int restart, int wait)
447{
448 unsigned long flags;
449
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100450 enum drbd_thread_state ns = restart ? RESTARTING : EXITING;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700451
452 /* may be called from state engine, holding the req lock irqsave */
453 spin_lock_irqsave(&thi->t_lock, flags);
454
Andreas Gruenbachere77a0a52011-01-25 15:43:39 +0100455 if (thi->t_state == NONE) {
Philipp Reisnerb411b362009-09-25 16:07:19 -0700456 spin_unlock_irqrestore(&thi->t_lock, flags);
457 if (restart)
458 drbd_thread_start(thi);
459 return;
460 }
461
462 if (thi->t_state != ns) {
463 if (thi->task == NULL) {
464 spin_unlock_irqrestore(&thi->t_lock, flags);
465 return;
466 }
467
468 thi->t_state = ns;
469 smp_mb();
470 init_completion(&thi->stop);
471 if (thi->task != current)
472 force_sig(DRBD_SIGKILL, thi->task);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700473 }
474
475 spin_unlock_irqrestore(&thi->t_lock, flags);
476
477 if (wait)
478 wait_for_completion(&thi->stop);
479}
480
Philipp Reisner392c8802011-02-09 10:33:31 +0100481static struct drbd_thread *drbd_task_to_thread(struct drbd_tconn *tconn, struct task_struct *task)
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100482{
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100483 struct drbd_thread *thi =
484 task == tconn->receiver.task ? &tconn->receiver :
485 task == tconn->asender.task ? &tconn->asender :
486 task == tconn->worker.task ? &tconn->worker : NULL;
487
488 return thi;
489}
490
Philipp Reisner392c8802011-02-09 10:33:31 +0100491char *drbd_task_to_thread_name(struct drbd_tconn *tconn, struct task_struct *task)
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100492{
Philipp Reisner392c8802011-02-09 10:33:31 +0100493 struct drbd_thread *thi = drbd_task_to_thread(tconn, task);
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100494 return thi ? thi->name : task->comm;
495}
496
Philipp Reisner80883192011-02-18 14:56:45 +0100497int conn_lowest_minor(struct drbd_tconn *tconn)
Philipp Reisner80822282011-02-08 12:46:30 +0100498{
Philipp Reisnere90285e2011-03-22 12:51:21 +0100499 struct drbd_conf *mdev;
Philipp Reisner695d08f2011-04-11 22:53:32 -0700500 int vnr = 0, m;
Philipp Reisner774b3052011-02-22 02:07:03 -0500501
Philipp Reisner695d08f2011-04-11 22:53:32 -0700502 rcu_read_lock();
Philipp Reisnere90285e2011-03-22 12:51:21 +0100503 mdev = idr_get_next(&tconn->volumes, &vnr);
Philipp Reisner695d08f2011-04-11 22:53:32 -0700504 m = mdev ? mdev_to_minor(mdev) : -1;
505 rcu_read_unlock();
506
507 return m;
Philipp Reisner80822282011-02-08 12:46:30 +0100508}
Philipp Reisner774b3052011-02-22 02:07:03 -0500509
Philipp Reisnerb411b362009-09-25 16:07:19 -0700510#ifdef CONFIG_SMP
511/**
512 * drbd_calc_cpu_mask() - Generate CPU masks, spread over all CPUs
513 * @mdev: DRBD device.
514 *
515 * Forces all threads of a device onto the same CPU. This is beneficial for
516 * DRBD's performance. May be overwritten by user's configuration.
517 */
Philipp Reisner80822282011-02-08 12:46:30 +0100518void drbd_calc_cpu_mask(struct drbd_tconn *tconn)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700519{
520 int ord, cpu;
521
522 /* user override. */
Philipp Reisner80822282011-02-08 12:46:30 +0100523 if (cpumask_weight(tconn->cpu_mask))
Philipp Reisnerb411b362009-09-25 16:07:19 -0700524 return;
525
Philipp Reisner80822282011-02-08 12:46:30 +0100526 ord = conn_lowest_minor(tconn) % cpumask_weight(cpu_online_mask);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700527 for_each_online_cpu(cpu) {
528 if (ord-- == 0) {
Philipp Reisner80822282011-02-08 12:46:30 +0100529 cpumask_set_cpu(cpu, tconn->cpu_mask);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700530 return;
531 }
532 }
533 /* should not be reached */
Philipp Reisner80822282011-02-08 12:46:30 +0100534 cpumask_setall(tconn->cpu_mask);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700535}
536
537/**
538 * drbd_thread_current_set_cpu() - modifies the cpu mask of the _current_ thread
539 * @mdev: DRBD device.
Philipp Reisnerbc31fe32011-02-07 11:14:38 +0100540 * @thi: drbd_thread object
Philipp Reisnerb411b362009-09-25 16:07:19 -0700541 *
542 * call in the "main loop" of _all_ threads, no need for any mutex, current won't die
543 * prematurely.
544 */
Philipp Reisner80822282011-02-08 12:46:30 +0100545void drbd_thread_current_set_cpu(struct drbd_thread *thi)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700546{
547 struct task_struct *p = current;
Philipp Reisnerbed879a2011-02-04 14:00:37 +0100548
Philipp Reisnerb411b362009-09-25 16:07:19 -0700549 if (!thi->reset_cpu_mask)
550 return;
551 thi->reset_cpu_mask = 0;
Philipp Reisner392c8802011-02-09 10:33:31 +0100552 set_cpus_allowed_ptr(p, thi->tconn->cpu_mask);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700553}
554#endif
555
Andreas Gruenbacher52b061a2011-03-30 11:38:49 +0200556/**
557 * drbd_header_size - size of a packet header
558 *
559 * The header size is a multiple of 8, so any payload following the header is
560 * word aligned on 64-bit architectures. (The bitmap send and receive code
561 * relies on this.)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700562 */
Andreas Gruenbacher52b061a2011-03-30 11:38:49 +0200563unsigned int drbd_header_size(struct drbd_tconn *tconn)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700564{
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200565 if (tconn->agreed_pro_version >= 100) {
566 BUILD_BUG_ON(!IS_ALIGNED(sizeof(struct p_header100), 8));
567 return sizeof(struct p_header100);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700568 } else {
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200569 BUILD_BUG_ON(sizeof(struct p_header80) !=
570 sizeof(struct p_header95));
571 BUILD_BUG_ON(!IS_ALIGNED(sizeof(struct p_header80), 8));
572 return sizeof(struct p_header80);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700573 }
Andreas Gruenbacher52b061a2011-03-30 11:38:49 +0200574}
Philipp Reisnerb411b362009-09-25 16:07:19 -0700575
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200576static unsigned int prepare_header80(struct p_header80 *h, enum drbd_packet cmd, int size)
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100577{
578 h->magic = cpu_to_be32(DRBD_MAGIC);
579 h->command = cpu_to_be16(cmd);
580 h->length = cpu_to_be16(size);
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200581 return sizeof(struct p_header80);
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100582}
Philipp Reisnerb411b362009-09-25 16:07:19 -0700583
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200584static unsigned int prepare_header95(struct p_header95 *h, enum drbd_packet cmd, int size)
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100585{
586 h->magic = cpu_to_be16(DRBD_MAGIC_BIG);
587 h->command = cpu_to_be16(cmd);
Andreas Gruenbacherb55d84b2011-03-22 13:17:47 +0100588 h->length = cpu_to_be32(size);
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200589 return sizeof(struct p_header95);
Philipp Reisnerfd340c12011-01-19 16:57:39 +0100590}
591
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200592static unsigned int prepare_header100(struct p_header100 *h, enum drbd_packet cmd,
593 int size, int vnr)
Philipp Reisnerd38e7872011-02-07 15:32:04 +0100594{
Andreas Gruenbacher0c8e36d2011-03-30 16:00:17 +0200595 h->magic = cpu_to_be32(DRBD_MAGIC_100);
596 h->volume = cpu_to_be16(vnr);
597 h->command = cpu_to_be16(cmd);
598 h->length = cpu_to_be32(size);
599 h->pad = 0;
600 return sizeof(struct p_header100);
601}
602
603static unsigned int prepare_header(struct drbd_tconn *tconn, int vnr,
604 void *buffer, enum drbd_packet cmd, int size)
605{
606 if (tconn->agreed_pro_version >= 100)
607 return prepare_header100(buffer, cmd, size, vnr);
608 else if (tconn->agreed_pro_version >= 95 &&
609 size > DRBD_MAX_SIZE_H80_PACKET)
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200610 return prepare_header95(buffer, cmd, size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700611 else
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200612 return prepare_header80(buffer, cmd, size);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700613}
614
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200615static void *__conn_prepare_command(struct drbd_tconn *tconn,
616 struct drbd_socket *sock)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700617{
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200618 if (!sock->socket)
619 return NULL;
620 return sock->sbuf + drbd_header_size(tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700621}
622
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200623void *conn_prepare_command(struct drbd_tconn *tconn, struct drbd_socket *sock)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700624{
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200625 void *p;
626
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200627 mutex_lock(&sock->mutex);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200628 p = __conn_prepare_command(tconn, sock);
629 if (!p)
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200630 mutex_unlock(&sock->mutex);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200631
632 return p;
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200633}
634
635void *drbd_prepare_command(struct drbd_conf *mdev, struct drbd_socket *sock)
636{
637 return conn_prepare_command(mdev->tconn, sock);
638}
639
640static int __send_command(struct drbd_tconn *tconn, int vnr,
641 struct drbd_socket *sock, enum drbd_packet cmd,
642 unsigned int header_size, void *data,
643 unsigned int size)
644{
645 int msg_flags;
646 int err;
647
648 /*
649 * Called with @data == NULL and the size of the data blocks in @size
650 * for commands that send data blocks. For those commands, omit the
651 * MSG_MORE flag: this will increase the likelihood that data blocks
652 * which are page aligned on the sender will end up page aligned on the
653 * receiver.
654 */
655 msg_flags = data ? MSG_MORE : 0;
656
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200657 header_size += prepare_header(tconn, vnr, sock->sbuf, cmd,
658 header_size + size);
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200659 err = drbd_send_all(tconn, sock->socket, sock->sbuf, header_size,
660 msg_flags);
661 if (data && !err)
662 err = drbd_send_all(tconn, sock->socket, data, size, 0);
663 return err;
664}
665
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200666static int __conn_send_command(struct drbd_tconn *tconn, struct drbd_socket *sock,
667 enum drbd_packet cmd, unsigned int header_size,
668 void *data, unsigned int size)
669{
670 return __send_command(tconn, 0, sock, cmd, header_size, data, size);
671}
672
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200673int conn_send_command(struct drbd_tconn *tconn, struct drbd_socket *sock,
674 enum drbd_packet cmd, unsigned int header_size,
675 void *data, unsigned int size)
676{
677 int err;
678
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200679 err = __conn_send_command(tconn, sock, cmd, header_size, data, size);
Andreas Gruenbacherdba58582011-03-29 16:55:40 +0200680 mutex_unlock(&sock->mutex);
681 return err;
682}
683
684int drbd_send_command(struct drbd_conf *mdev, struct drbd_socket *sock,
685 enum drbd_packet cmd, unsigned int header_size,
686 void *data, unsigned int size)
687{
688 int err;
689
690 err = __send_command(mdev->tconn, mdev->vnr, sock, cmd, header_size,
691 data, size);
692 mutex_unlock(&sock->mutex);
693 return err;
694}
695
Andreas Gruenbachere307f352011-03-22 10:55:48 +0100696int drbd_send_ping(struct drbd_tconn *tconn)
697{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200698 struct drbd_socket *sock;
699
700 sock = &tconn->meta;
701 if (!conn_prepare_command(tconn, sock))
702 return -EIO;
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200703 return conn_send_command(tconn, sock, P_PING, 0, NULL, 0);
Andreas Gruenbachere307f352011-03-22 10:55:48 +0100704}
705
706int drbd_send_ping_ack(struct drbd_tconn *tconn)
707{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200708 struct drbd_socket *sock;
709
710 sock = &tconn->meta;
711 if (!conn_prepare_command(tconn, sock))
712 return -EIO;
Andreas Gruenbachere6589832011-03-30 12:54:42 +0200713 return conn_send_command(tconn, sock, P_PING_ACK, 0, NULL, 0);
Andreas Gruenbachere307f352011-03-22 10:55:48 +0100714}
715
Lars Ellenbergf3990022011-03-23 14:31:09 +0100716int drbd_send_sync_param(struct drbd_conf *mdev)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700717{
Andreas Gruenbacher7c967152011-03-22 00:49:36 +0100718 struct drbd_socket *sock;
Philipp Reisner8e26f9c2010-07-06 17:25:54 +0200719 struct p_rs_param_95 *p;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200720 int size;
Philipp Reisner31890f42011-01-19 14:12:51 +0100721 const int apv = mdev->tconn->agreed_pro_version;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200722 enum drbd_packet cmd;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200723 struct net_conf *nc;
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200724 struct disk_conf *dc;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200725
726 sock = &mdev->tconn->data;
727 p = drbd_prepare_command(mdev, sock);
728 if (!p)
729 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700730
Philipp Reisner44ed1672011-04-19 17:10:19 +0200731 rcu_read_lock();
732 nc = rcu_dereference(mdev->tconn->net_conf);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700733
734 size = apv <= 87 ? sizeof(struct p_rs_param)
735 : apv == 88 ? sizeof(struct p_rs_param)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200736 + strlen(nc->verify_alg) + 1
Philipp Reisner8e26f9c2010-07-06 17:25:54 +0200737 : apv <= 94 ? sizeof(struct p_rs_param_89)
738 : /* apv >= 95 */ sizeof(struct p_rs_param_95);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700739
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200740 cmd = apv >= 89 ? P_SYNC_PARAM89 : P_SYNC_PARAM;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700741
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200742 /* initialize verify_alg and csums_alg */
743 memset(p->verify_alg, 0, 2 * SHARED_SECRET_MAX);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700744
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200745 if (get_ldev(mdev)) {
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200746 dc = rcu_dereference(mdev->ldev->disk_conf);
Andreas Gruenbacher6394b932011-05-11 14:29:52 +0200747 p->resync_rate = cpu_to_be32(dc->resync_rate);
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200748 p->c_plan_ahead = cpu_to_be32(dc->c_plan_ahead);
749 p->c_delay_target = cpu_to_be32(dc->c_delay_target);
750 p->c_fill_target = cpu_to_be32(dc->c_fill_target);
751 p->c_max_rate = cpu_to_be32(dc->c_max_rate);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200752 put_ldev(mdev);
753 } else {
Andreas Gruenbacher6394b932011-05-11 14:29:52 +0200754 p->resync_rate = cpu_to_be32(DRBD_RESYNC_RATE_DEF);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200755 p->c_plan_ahead = cpu_to_be32(DRBD_C_PLAN_AHEAD_DEF);
756 p->c_delay_target = cpu_to_be32(DRBD_C_DELAY_TARGET_DEF);
757 p->c_fill_target = cpu_to_be32(DRBD_C_FILL_TARGET_DEF);
758 p->c_max_rate = cpu_to_be32(DRBD_C_MAX_RATE_DEF);
759 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700760
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200761 if (apv >= 88)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200762 strcpy(p->verify_alg, nc->verify_alg);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200763 if (apv >= 89)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200764 strcpy(p->csums_alg, nc->csums_alg);
765 rcu_read_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -0700766
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200767 return drbd_send_command(mdev, sock, cmd, size, NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700768}
769
Philipp Reisnerd659f2a2011-05-16 17:38:45 +0200770int __drbd_send_protocol(struct drbd_tconn *tconn, enum drbd_packet cmd)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700771{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200772 struct drbd_socket *sock;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700773 struct p_protocol *p;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200774 struct net_conf *nc;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200775 int size, cf;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700776
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200777 sock = &tconn->data;
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200778 p = __conn_prepare_command(tconn, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200779 if (!p)
780 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700781
Philipp Reisner44ed1672011-04-19 17:10:19 +0200782 rcu_read_lock();
783 nc = rcu_dereference(tconn->net_conf);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700784
Andreas Gruenbacher6dff2902011-06-28 14:18:12 +0200785 if (nc->tentative && tconn->agreed_pro_version < 92) {
Philipp Reisner44ed1672011-04-19 17:10:19 +0200786 rcu_read_unlock();
787 mutex_unlock(&sock->mutex);
788 conn_err(tconn, "--dry-run is not supported by peer");
789 return -EOPNOTSUPP;
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100790 }
Philipp Reisner44ed1672011-04-19 17:10:19 +0200791
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200792 size = sizeof(*p);
Philipp Reisnerdc8228d2011-02-08 10:13:15 +0100793 if (tconn->agreed_pro_version >= 87)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200794 size += strlen(nc->integrity_alg) + 1;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700795
Philipp Reisner44ed1672011-04-19 17:10:19 +0200796 p->protocol = cpu_to_be32(nc->wire_protocol);
797 p->after_sb_0p = cpu_to_be32(nc->after_sb_0p);
798 p->after_sb_1p = cpu_to_be32(nc->after_sb_1p);
799 p->after_sb_2p = cpu_to_be32(nc->after_sb_2p);
800 p->two_primaries = cpu_to_be32(nc->two_primaries);
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100801 cf = 0;
Andreas Gruenbacher6139f602011-05-06 20:00:02 +0200802 if (nc->discard_my_data)
803 cf |= CF_DISCARD_MY_DATA;
Andreas Gruenbacher6dff2902011-06-28 14:18:12 +0200804 if (nc->tentative)
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200805 cf |= CF_DRY_RUN;
Philipp Reisnercf14c2e2010-02-02 21:03:50 +0100806 p->conn_flags = cpu_to_be32(cf);
807
Philipp Reisnerdc8228d2011-02-08 10:13:15 +0100808 if (tconn->agreed_pro_version >= 87)
Philipp Reisner44ed1672011-04-19 17:10:19 +0200809 strcpy(p->integrity_alg, nc->integrity_alg);
810 rcu_read_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -0700811
Philipp Reisnerd659f2a2011-05-16 17:38:45 +0200812 return __conn_send_command(tconn, sock, cmd, size, NULL, 0);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200813}
814
815int drbd_send_protocol(struct drbd_tconn *tconn)
816{
817 int err;
818
819 mutex_lock(&tconn->data.mutex);
Philipp Reisnerd659f2a2011-05-16 17:38:45 +0200820 err = __drbd_send_protocol(tconn, P_PROTOCOL);
Andreas Gruenbachera7eb7bd2011-04-29 13:19:58 +0200821 mutex_unlock(&tconn->data.mutex);
822
823 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700824}
825
826int _drbd_send_uuids(struct drbd_conf *mdev, u64 uuid_flags)
827{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200828 struct drbd_socket *sock;
829 struct p_uuids *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700830 int i;
831
832 if (!get_ldev_if_state(mdev, D_NEGOTIATING))
Andreas Gruenbacher2ae5f952011-03-16 01:07:20 +0100833 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700834
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200835 sock = &mdev->tconn->data;
836 p = drbd_prepare_command(mdev, sock);
837 if (!p) {
838 put_ldev(mdev);
839 return -EIO;
840 }
Philipp Reisner9f2247b2012-08-16 14:25:58 +0200841 spin_lock_irq(&mdev->ldev->md.uuid_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700842 for (i = UI_CURRENT; i < UI_SIZE; i++)
Philipp Reisner298307e2012-11-16 12:27:41 +0100843 p->uuid[i] = cpu_to_be64(mdev->ldev->md.uuid[i]);
Philipp Reisner9f2247b2012-08-16 14:25:58 +0200844 spin_unlock_irq(&mdev->ldev->md.uuid_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700845
846 mdev->comm_bm_set = drbd_bm_total_weight(mdev);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200847 p->uuid[UI_SIZE] = cpu_to_be64(mdev->comm_bm_set);
Philipp Reisner44ed1672011-04-19 17:10:19 +0200848 rcu_read_lock();
Andreas Gruenbacher6139f602011-05-06 20:00:02 +0200849 uuid_flags |= rcu_dereference(mdev->tconn->net_conf)->discard_my_data ? 1 : 0;
Philipp Reisner44ed1672011-04-19 17:10:19 +0200850 rcu_read_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -0700851 uuid_flags |= test_bit(CRASHED_PRIMARY, &mdev->flags) ? 2 : 0;
852 uuid_flags |= mdev->new_state_tmp.disk == D_INCONSISTENT ? 4 : 0;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200853 p->uuid[UI_FLAGS] = cpu_to_be64(uuid_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700854
855 put_ldev(mdev);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200856 return drbd_send_command(mdev, sock, P_UUIDS, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700857}
858
859int drbd_send_uuids(struct drbd_conf *mdev)
860{
861 return _drbd_send_uuids(mdev, 0);
862}
863
864int drbd_send_uuids_skip_initial_sync(struct drbd_conf *mdev)
865{
866 return _drbd_send_uuids(mdev, 8);
867}
868
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100869void drbd_print_uuids(struct drbd_conf *mdev, const char *text)
870{
871 if (get_ldev_if_state(mdev, D_NEGOTIATING)) {
872 u64 *uuid = mdev->ldev->md.uuid;
873 dev_info(DEV, "%s %016llX:%016llX:%016llX:%016llX\n",
874 text,
875 (unsigned long long)uuid[UI_CURRENT],
876 (unsigned long long)uuid[UI_BITMAP],
877 (unsigned long long)uuid[UI_HISTORY_START],
878 (unsigned long long)uuid[UI_HISTORY_END]);
879 put_ldev(mdev);
880 } else {
881 dev_info(DEV, "%s effective data uuid: %016llX\n",
882 text,
883 (unsigned long long)mdev->ed_uuid);
884 }
885}
886
Andreas Gruenbacher9c1b7f72011-03-16 01:09:01 +0100887void drbd_gen_and_send_sync_uuid(struct drbd_conf *mdev)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700888{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200889 struct drbd_socket *sock;
890 struct p_rs_uuid *p;
Lars Ellenberg5a22db82010-12-17 21:14:23 +0100891 u64 uuid;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700892
Lars Ellenberg5a22db82010-12-17 21:14:23 +0100893 D_ASSERT(mdev->state.disk == D_UP_TO_DATE);
894
Philipp Reisner5ba3dac2011-10-05 15:54:18 +0200895 uuid = mdev->ldev->md.uuid[UI_BITMAP];
896 if (uuid && uuid != UUID_JUST_CREATED)
897 uuid = uuid + UUID_NEW_BM_OFFSET;
898 else
899 get_random_bytes(&uuid, sizeof(u64));
Lars Ellenberg5a22db82010-12-17 21:14:23 +0100900 drbd_uuid_set(mdev, UI_BITMAP, uuid);
Lars Ellenberg62b0da32011-01-20 13:25:21 +0100901 drbd_print_uuids(mdev, "updated sync UUID");
Lars Ellenberg5a22db82010-12-17 21:14:23 +0100902 drbd_md_sync(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700903
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200904 sock = &mdev->tconn->data;
905 p = drbd_prepare_command(mdev, sock);
906 if (p) {
907 p->uuid = cpu_to_be64(uuid);
908 drbd_send_command(mdev, sock, P_SYNC_UUID, sizeof(*p), NULL, 0);
909 }
Philipp Reisnerb411b362009-09-25 16:07:19 -0700910}
911
Philipp Reisnere89b5912010-03-24 17:11:33 +0100912int drbd_send_sizes(struct drbd_conf *mdev, int trigger_reply, enum dds_flags flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700913{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200914 struct drbd_socket *sock;
915 struct p_sizes *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700916 sector_t d_size, u_size;
Lars Ellenbergdb141b22012-06-25 19:15:58 +0200917 int q_order_type;
918 unsigned int max_bio_size;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700919
920 if (get_ldev_if_state(mdev, D_NEGOTIATING)) {
921 D_ASSERT(mdev->ldev->backing_bdev);
922 d_size = drbd_get_max_capacity(mdev->ldev);
Philipp Reisnerdaeda1c2011-05-03 15:00:55 +0200923 rcu_read_lock();
924 u_size = rcu_dereference(mdev->ldev->disk_conf)->disk_size;
925 rcu_read_unlock();
Philipp Reisnerb411b362009-09-25 16:07:19 -0700926 q_order_type = drbd_queue_order_type(mdev);
Philipp Reisner99432fc2011-05-20 16:39:13 +0200927 max_bio_size = queue_max_hw_sectors(mdev->ldev->backing_bdev->bd_disk->queue) << 9;
Lars Ellenbergdb141b22012-06-25 19:15:58 +0200928 max_bio_size = min(max_bio_size, DRBD_MAX_BIO_SIZE);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700929 put_ldev(mdev);
930 } else {
931 d_size = 0;
932 u_size = 0;
933 q_order_type = QUEUE_ORDERED_NONE;
Philipp Reisner99432fc2011-05-20 16:39:13 +0200934 max_bio_size = DRBD_MAX_BIO_SIZE; /* ... multiple BIOs per peer_request */
Philipp Reisnerb411b362009-09-25 16:07:19 -0700935 }
936
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200937 sock = &mdev->tconn->data;
938 p = drbd_prepare_command(mdev, sock);
939 if (!p)
940 return -EIO;
Philipp Reisner2ffca4f2011-06-30 15:43:06 +0200941
942 if (mdev->tconn->agreed_pro_version <= 94)
Lars Ellenbergdb141b22012-06-25 19:15:58 +0200943 max_bio_size = min(max_bio_size, DRBD_MAX_SIZE_H80_PACKET);
Philipp Reisner2ffca4f2011-06-30 15:43:06 +0200944 else if (mdev->tconn->agreed_pro_version < 100)
Philipp Reisner98683652012-11-09 14:18:43 +0100945 max_bio_size = min(max_bio_size, DRBD_MAX_BIO_SIZE_P95);
Philipp Reisner68093842011-06-30 15:43:06 +0200946
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200947 p->d_size = cpu_to_be64(d_size);
948 p->u_size = cpu_to_be64(u_size);
949 p->c_size = cpu_to_be64(trigger_reply ? 0 : drbd_get_capacity(mdev->this_bdev));
950 p->max_bio_size = cpu_to_be32(max_bio_size);
951 p->queue_order_type = cpu_to_be16(q_order_type);
952 p->dds_flags = cpu_to_be16(flags);
953 return drbd_send_command(mdev, sock, P_SIZES, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700954}
955
956/**
Lars Ellenbergf479ea02011-10-27 16:52:30 +0200957 * drbd_send_current_state() - Sends the drbd state to the peer
Philipp Reisnerb411b362009-09-25 16:07:19 -0700958 * @mdev: DRBD device.
959 */
Lars Ellenbergf479ea02011-10-27 16:52:30 +0200960int drbd_send_current_state(struct drbd_conf *mdev)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700961{
Andreas Gruenbacher7c967152011-03-22 00:49:36 +0100962 struct drbd_socket *sock;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200963 struct p_state *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -0700964
Andreas Gruenbacher7c967152011-03-22 00:49:36 +0100965 sock = &mdev->tconn->data;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200966 p = drbd_prepare_command(mdev, sock);
967 if (!p)
968 return -EIO;
969 p->state = cpu_to_be32(mdev->state.i); /* Within the send mutex */
970 return drbd_send_command(mdev, sock, P_STATE, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -0700971}
972
Lars Ellenbergf479ea02011-10-27 16:52:30 +0200973/**
974 * drbd_send_state() - After a state change, sends the new state to the peer
Philipp Reisner43de7c82011-11-10 13:16:13 +0100975 * @mdev: DRBD device.
976 * @state: the state to send, not necessarily the current state.
Lars Ellenbergf479ea02011-10-27 16:52:30 +0200977 *
978 * Each state change queues an "after_state_ch" work, which will eventually
979 * send the resulting new state to the peer. If more state changes happen
980 * between queuing and processing of the after_state_ch work, we still
981 * want to send each intermediary state in the order it occurred.
982 */
983int drbd_send_state(struct drbd_conf *mdev, union drbd_state state)
984{
Philipp Reisner43de7c82011-11-10 13:16:13 +0100985 struct drbd_socket *sock;
986 struct p_state *p;
Lars Ellenbergf479ea02011-10-27 16:52:30 +0200987
Philipp Reisner43de7c82011-11-10 13:16:13 +0100988 sock = &mdev->tconn->data;
989 p = drbd_prepare_command(mdev, sock);
990 if (!p)
991 return -EIO;
992 p->state = cpu_to_be32(state.i); /* Within the send mutex */
993 return drbd_send_command(mdev, sock, P_STATE, sizeof(*p), NULL, 0);
994}
Lars Ellenbergf479ea02011-10-27 16:52:30 +0200995
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200996int drbd_send_state_req(struct drbd_conf *mdev, union drbd_state mask, union drbd_state val)
Philipp Reisnerb411b362009-09-25 16:07:19 -0700997{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +0200998 struct drbd_socket *sock;
999 struct p_req_state *p;
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001000
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001001 sock = &mdev->tconn->data;
1002 p = drbd_prepare_command(mdev, sock);
1003 if (!p)
1004 return -EIO;
1005 p->mask = cpu_to_be32(mask.i);
1006 p->val = cpu_to_be32(val.i);
1007 return drbd_send_command(mdev, sock, P_STATE_CHG_REQ, sizeof(*p), NULL, 0);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001008}
1009
1010int conn_send_state_req(struct drbd_tconn *tconn, union drbd_state mask, union drbd_state val)
1011{
1012 enum drbd_packet cmd;
1013 struct drbd_socket *sock;
1014 struct p_req_state *p;
1015
1016 cmd = tconn->agreed_pro_version < 100 ? P_STATE_CHG_REQ : P_CONN_ST_CHG_REQ;
1017 sock = &tconn->data;
1018 p = conn_prepare_command(tconn, sock);
1019 if (!p)
1020 return -EIO;
1021 p->mask = cpu_to_be32(mask.i);
1022 p->val = cpu_to_be32(val.i);
1023 return conn_send_command(tconn, sock, cmd, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001024}
1025
Andreas Gruenbacher2f4e7ab2011-03-16 01:20:38 +01001026void drbd_send_sr_reply(struct drbd_conf *mdev, enum drbd_state_rv retcode)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001027{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001028 struct drbd_socket *sock;
1029 struct p_req_state_reply *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001030
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001031 sock = &mdev->tconn->meta;
1032 p = drbd_prepare_command(mdev, sock);
1033 if (p) {
1034 p->retcode = cpu_to_be32(retcode);
1035 drbd_send_command(mdev, sock, P_STATE_CHG_REPLY, sizeof(*p), NULL, 0);
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001036 }
Lars Ellenbergf479ea02011-10-27 16:52:30 +02001037}
1038
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001039void conn_send_sr_reply(struct drbd_tconn *tconn, enum drbd_state_rv retcode)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001040{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001041 struct drbd_socket *sock;
1042 struct p_req_state_reply *p;
Philipp Reisner047cd4a2011-02-15 11:09:33 +01001043 enum drbd_packet cmd = tconn->agreed_pro_version < 100 ? P_STATE_CHG_REPLY : P_CONN_ST_CHG_REPLY;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001044
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001045 sock = &tconn->meta;
1046 p = conn_prepare_command(tconn, sock);
1047 if (p) {
1048 p->retcode = cpu_to_be32(retcode);
1049 conn_send_command(tconn, sock, cmd, sizeof(*p), NULL, 0);
1050 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001051}
1052
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001053static void dcbp_set_code(struct p_compressed_bm *p, enum drbd_bitmap_code code)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001054{
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001055 BUG_ON(code & ~0xf);
1056 p->encoding = (p->encoding & ~0xf) | code;
1057}
Philipp Reisnerb411b362009-09-25 16:07:19 -07001058
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001059static void dcbp_set_start(struct p_compressed_bm *p, int set)
1060{
1061 p->encoding = (p->encoding & ~0x80) | (set ? 0x80 : 0);
1062}
Philipp Reisnerb411b362009-09-25 16:07:19 -07001063
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001064static void dcbp_set_pad_bits(struct p_compressed_bm *p, int n)
1065{
1066 BUG_ON(n & ~0x7);
1067 p->encoding = (p->encoding & (~0x7 << 4)) | (n << 4);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001068}
1069
1070int fill_bitmap_rle_bits(struct drbd_conf *mdev,
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001071 struct p_compressed_bm *p,
1072 unsigned int size,
1073 struct bm_xfer_ctx *c)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001074{
1075 struct bitstream bs;
1076 unsigned long plain_bits;
1077 unsigned long tmp;
1078 unsigned long rl;
1079 unsigned len;
1080 unsigned toggle;
Philipp Reisner44ed1672011-04-19 17:10:19 +02001081 int bits, use_rle;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001082
1083 /* may we use this feature? */
Philipp Reisner44ed1672011-04-19 17:10:19 +02001084 rcu_read_lock();
1085 use_rle = rcu_dereference(mdev->tconn->net_conf)->use_rle;
1086 rcu_read_unlock();
1087 if (!use_rle || mdev->tconn->agreed_pro_version < 90)
1088 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001089
1090 if (c->bit_offset >= c->bm_bits)
1091 return 0; /* nothing to do. */
1092
1093 /* use at most thus many bytes */
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001094 bitstream_init(&bs, p->code, size, 0);
1095 memset(p->code, 0, size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001096 /* plain bits covered in this code string */
1097 plain_bits = 0;
1098
1099 /* p->encoding & 0x80 stores whether the first run length is set.
1100 * bit offset is implicit.
1101 * start with toggle == 2 to be able to tell the first iteration */
1102 toggle = 2;
1103
1104 /* see how much plain bits we can stuff into one packet
1105 * using RLE and VLI. */
1106 do {
1107 tmp = (toggle == 0) ? _drbd_bm_find_next_zero(mdev, c->bit_offset)
1108 : _drbd_bm_find_next(mdev, c->bit_offset);
1109 if (tmp == -1UL)
1110 tmp = c->bm_bits;
1111 rl = tmp - c->bit_offset;
1112
1113 if (toggle == 2) { /* first iteration */
1114 if (rl == 0) {
1115 /* the first checked bit was set,
1116 * store start value, */
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001117 dcbp_set_start(p, 1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001118 /* but skip encoding of zero run length */
1119 toggle = !toggle;
1120 continue;
1121 }
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001122 dcbp_set_start(p, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001123 }
1124
1125 /* paranoia: catch zero runlength.
1126 * can only happen if bitmap is modified while we scan it. */
1127 if (rl == 0) {
1128 dev_err(DEV, "unexpected zero runlength while encoding bitmap "
1129 "t:%u bo:%lu\n", toggle, c->bit_offset);
1130 return -1;
1131 }
1132
1133 bits = vli_encode_bits(&bs, rl);
1134 if (bits == -ENOBUFS) /* buffer full */
1135 break;
1136 if (bits <= 0) {
1137 dev_err(DEV, "error while encoding bitmap: %d\n", bits);
1138 return 0;
1139 }
1140
1141 toggle = !toggle;
1142 plain_bits += rl;
1143 c->bit_offset = tmp;
1144 } while (c->bit_offset < c->bm_bits);
1145
1146 len = bs.cur.b - p->code + !!bs.cur.bit;
1147
1148 if (plain_bits < (len << 3)) {
1149 /* incompressible with this method.
1150 * we need to rewind both word and bit position. */
1151 c->bit_offset -= plain_bits;
1152 bm_xfer_ctx_bit_to_word_offset(c);
1153 c->bit_offset = c->word_offset * BITS_PER_LONG;
1154 return 0;
1155 }
1156
1157 /* RLE + VLI was able to compress it just fine.
1158 * update c->word_offset. */
1159 bm_xfer_ctx_bit_to_word_offset(c);
1160
1161 /* store pad_bits */
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001162 dcbp_set_pad_bits(p, (8 - bs.cur.bit) & 0x7);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001163
1164 return len;
1165}
1166
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001167/**
1168 * send_bitmap_rle_or_plain
1169 *
1170 * Return 0 when done, 1 when another iteration is needed, and a negative error
1171 * code upon failure.
1172 */
1173static int
Andreas Gruenbacher79ed9bd2011-03-24 21:31:38 +01001174send_bitmap_rle_or_plain(struct drbd_conf *mdev, struct bm_xfer_ctx *c)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001175{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001176 struct drbd_socket *sock = &mdev->tconn->data;
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001177 unsigned int header_size = drbd_header_size(mdev->tconn);
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001178 struct p_compressed_bm *p = sock->sbuf + header_size;
Andreas Gruenbachera982dd52010-12-10 00:45:25 +01001179 int len, err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001180
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001181 len = fill_bitmap_rle_bits(mdev, p,
1182 DRBD_SOCKET_BUFFER_SIZE - header_size - sizeof(*p), c);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001183 if (len < 0)
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001184 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001185
1186 if (len) {
Andreas Gruenbachera02d1242011-03-22 17:20:45 +01001187 dcbp_set_code(p, RLE_VLI_Bits);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001188 err = __send_command(mdev->tconn, mdev->vnr, sock,
1189 P_COMPRESSED_BITMAP, sizeof(*p) + len,
1190 NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001191 c->packets[0]++;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001192 c->bytes[0] += header_size + sizeof(*p) + len;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001193
1194 if (c->bit_offset >= c->bm_bits)
1195 len = 0; /* DONE */
1196 } else {
1197 /* was not compressible.
1198 * send a buffer full of plain text bits instead. */
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001199 unsigned int data_size;
1200 unsigned long num_words;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001201 unsigned long *p = sock->sbuf + header_size;
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001202
1203 data_size = DRBD_SOCKET_BUFFER_SIZE - header_size;
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001204 num_words = min_t(size_t, data_size / sizeof(*p),
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001205 c->bm_words - c->word_offset);
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001206 len = num_words * sizeof(*p);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001207 if (len)
Andreas Gruenbachere6589832011-03-30 12:54:42 +02001208 drbd_bm_get_lel(mdev, c->word_offset, num_words, p);
1209 err = __send_command(mdev->tconn, mdev->vnr, sock, P_BITMAP, len, NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001210 c->word_offset += num_words;
1211 c->bit_offset = c->word_offset * BITS_PER_LONG;
1212
1213 c->packets[1]++;
Andreas Gruenbacher50d0b1a2011-03-30 11:53:51 +02001214 c->bytes[1] += header_size + len;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001215
1216 if (c->bit_offset > c->bm_bits)
1217 c->bit_offset = c->bm_bits;
1218 }
Andreas Gruenbachera982dd52010-12-10 00:45:25 +01001219 if (!err) {
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001220 if (len == 0) {
1221 INFO_bm_xfer_stats(mdev, "send", c);
1222 return 0;
1223 } else
1224 return 1;
1225 }
1226 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001227}
1228
1229/* See the comment at receive_bitmap() */
Andreas Gruenbacher058820c2011-03-22 16:03:43 +01001230static int _drbd_send_bitmap(struct drbd_conf *mdev)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001231{
1232 struct bm_xfer_ctx c;
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001233 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001234
Andreas Gruenbacher841ce242010-12-15 19:31:20 +01001235 if (!expect(mdev->bitmap))
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001236 return false;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001237
1238 if (get_ldev(mdev)) {
1239 if (drbd_md_test_flag(mdev->ldev, MDF_FULL_SYNC)) {
1240 dev_info(DEV, "Writing the whole bitmap, MDF_FullSync was set.\n");
1241 drbd_bm_set_all(mdev);
1242 if (drbd_bm_write(mdev)) {
1243 /* write_bm did fail! Leave full sync flag set in Meta P_DATA
1244 * but otherwise process as per normal - need to tell other
1245 * side that a full resync is required! */
1246 dev_err(DEV, "Failed to write bitmap to disk!\n");
1247 } else {
1248 drbd_md_clear_flag(mdev, MDF_FULL_SYNC);
1249 drbd_md_sync(mdev);
1250 }
1251 }
1252 put_ldev(mdev);
1253 }
1254
1255 c = (struct bm_xfer_ctx) {
1256 .bm_bits = drbd_bm_bits(mdev),
1257 .bm_words = drbd_bm_words(mdev),
1258 };
1259
1260 do {
Andreas Gruenbacher79ed9bd2011-03-24 21:31:38 +01001261 err = send_bitmap_rle_or_plain(mdev, &c);
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001262 } while (err > 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001263
Andreas Gruenbacherf70af112010-12-11 18:51:50 +01001264 return err == 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001265}
1266
1267int drbd_send_bitmap(struct drbd_conf *mdev)
1268{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001269 struct drbd_socket *sock = &mdev->tconn->data;
1270 int err = -1;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001271
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001272 mutex_lock(&sock->mutex);
1273 if (sock->socket)
1274 err = !_drbd_send_bitmap(mdev);
1275 mutex_unlock(&sock->mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001276 return err;
1277}
1278
Lars Ellenberg9ed57dc2012-03-26 20:55:17 +02001279void drbd_send_b_ack(struct drbd_tconn *tconn, u32 barrier_nr, u32 set_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001280{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001281 struct drbd_socket *sock;
1282 struct p_barrier_ack *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001283
Lars Ellenberg9ed57dc2012-03-26 20:55:17 +02001284 if (tconn->cstate < C_WF_REPORT_PARAMS)
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001285 return;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001286
Lars Ellenberg9ed57dc2012-03-26 20:55:17 +02001287 sock = &tconn->meta;
1288 p = conn_prepare_command(tconn, sock);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001289 if (!p)
1290 return;
1291 p->barrier = barrier_nr;
1292 p->set_size = cpu_to_be32(set_size);
Lars Ellenberg9ed57dc2012-03-26 20:55:17 +02001293 conn_send_command(tconn, sock, P_BARRIER_ACK, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001294}
1295
1296/**
1297 * _drbd_send_ack() - Sends an ack packet
1298 * @mdev: DRBD device.
1299 * @cmd: Packet command code.
1300 * @sector: sector, needs to be in big endian byte order
1301 * @blksize: size in byte, needs to be in big endian byte order
1302 * @block_id: Id, big endian byte order
1303 */
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001304static int _drbd_send_ack(struct drbd_conf *mdev, enum drbd_packet cmd,
1305 u64 sector, u32 blksize, u64 block_id)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001306{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001307 struct drbd_socket *sock;
1308 struct p_block_ack *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001309
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001310 if (mdev->state.conn < C_CONNECTED)
Andreas Gruenbachera8c32aa2011-03-16 01:27:22 +01001311 return -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001312
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001313 sock = &mdev->tconn->meta;
1314 p = drbd_prepare_command(mdev, sock);
1315 if (!p)
1316 return -EIO;
1317 p->sector = sector;
1318 p->block_id = block_id;
1319 p->blksize = blksize;
1320 p->seq_num = cpu_to_be32(atomic_inc_return(&mdev->packet_seq));
1321 return drbd_send_command(mdev, sock, cmd, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001322}
1323
Lars Ellenberg2b2bf212010-10-06 11:46:55 +02001324/* dp->sector and dp->block_id already/still in network byte order,
1325 * data_size is payload size according to dp->head,
1326 * and may need to be corrected for digest size. */
Andreas Gruenbachera9a99942011-03-16 01:30:14 +01001327void drbd_send_ack_dp(struct drbd_conf *mdev, enum drbd_packet cmd,
1328 struct p_data *dp, int data_size)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001329{
Andreas Gruenbacher88104ca2011-04-28 21:47:21 +02001330 if (mdev->tconn->peer_integrity_tfm)
1331 data_size -= crypto_hash_digestsize(mdev->tconn->peer_integrity_tfm);
Andreas Gruenbachera9a99942011-03-16 01:30:14 +01001332 _drbd_send_ack(mdev, cmd, dp->sector, cpu_to_be32(data_size),
1333 dp->block_id);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001334}
1335
Andreas Gruenbachera9a99942011-03-16 01:30:14 +01001336void drbd_send_ack_rp(struct drbd_conf *mdev, enum drbd_packet cmd,
1337 struct p_block_req *rp)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001338{
Andreas Gruenbachera9a99942011-03-16 01:30:14 +01001339 _drbd_send_ack(mdev, cmd, rp->sector, rp->blksize, rp->block_id);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001340}
1341
1342/**
1343 * drbd_send_ack() - Sends an ack packet
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001344 * @mdev: DRBD device
1345 * @cmd: packet command code
1346 * @peer_req: peer request
Philipp Reisnerb411b362009-09-25 16:07:19 -07001347 */
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001348int drbd_send_ack(struct drbd_conf *mdev, enum drbd_packet cmd,
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001349 struct drbd_peer_request *peer_req)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001350{
1351 return _drbd_send_ack(mdev, cmd,
Andreas Gruenbacherdd516122011-03-16 15:39:08 +01001352 cpu_to_be64(peer_req->i.sector),
1353 cpu_to_be32(peer_req->i.size),
1354 peer_req->block_id);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001355}
1356
1357/* This function misuses the block_id field to signal if the blocks
1358 * are is sync or not. */
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001359int drbd_send_ack_ex(struct drbd_conf *mdev, enum drbd_packet cmd,
Philipp Reisnerb411b362009-09-25 16:07:19 -07001360 sector_t sector, int blksize, u64 block_id)
1361{
1362 return _drbd_send_ack(mdev, cmd,
1363 cpu_to_be64(sector),
1364 cpu_to_be32(blksize),
1365 cpu_to_be64(block_id));
1366}
1367
1368int drbd_send_drequest(struct drbd_conf *mdev, int cmd,
1369 sector_t sector, int size, u64 block_id)
1370{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001371 struct drbd_socket *sock;
1372 struct p_block_req *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001373
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001374 sock = &mdev->tconn->data;
1375 p = drbd_prepare_command(mdev, sock);
1376 if (!p)
1377 return -EIO;
1378 p->sector = cpu_to_be64(sector);
1379 p->block_id = block_id;
1380 p->blksize = cpu_to_be32(size);
1381 return drbd_send_command(mdev, sock, cmd, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001382}
1383
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001384int drbd_send_drequest_csum(struct drbd_conf *mdev, sector_t sector, int size,
1385 void *digest, int digest_size, enum drbd_packet cmd)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001386{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001387 struct drbd_socket *sock;
1388 struct p_block_req *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001389
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001390 /* FIXME: Put the digest into the preallocated socket buffer. */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001391
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001392 sock = &mdev->tconn->data;
1393 p = drbd_prepare_command(mdev, sock);
1394 if (!p)
1395 return -EIO;
1396 p->sector = cpu_to_be64(sector);
1397 p->block_id = ID_SYNCER /* unused */;
1398 p->blksize = cpu_to_be32(size);
1399 return drbd_send_command(mdev, sock, cmd, sizeof(*p),
1400 digest, digest_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001401}
1402
1403int drbd_send_ov_request(struct drbd_conf *mdev, sector_t sector, int size)
1404{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001405 struct drbd_socket *sock;
1406 struct p_block_req *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001407
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001408 sock = &mdev->tconn->data;
1409 p = drbd_prepare_command(mdev, sock);
1410 if (!p)
1411 return -EIO;
1412 p->sector = cpu_to_be64(sector);
1413 p->block_id = ID_SYNCER /* unused */;
1414 p->blksize = cpu_to_be32(size);
1415 return drbd_send_command(mdev, sock, P_OV_REQUEST, sizeof(*p), NULL, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001416}
1417
1418/* called on sndtimeo
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001419 * returns false if we should retry,
1420 * true if we think connection is dead
Philipp Reisnerb411b362009-09-25 16:07:19 -07001421 */
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001422static int we_should_drop_the_connection(struct drbd_tconn *tconn, struct socket *sock)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001423{
1424 int drop_it;
1425 /* long elapsed = (long)(jiffies - mdev->last_received); */
1426
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001427 drop_it = tconn->meta.socket == sock
1428 || !tconn->asender.task
1429 || get_t_state(&tconn->asender) != RUNNING
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001430 || tconn->cstate < C_WF_REPORT_PARAMS;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001431
1432 if (drop_it)
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01001433 return true;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001434
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001435 drop_it = !--tconn->ko_count;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001436 if (!drop_it) {
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001437 conn_err(tconn, "[%s/%d] sock_sendmsg time expired, ko = %u\n",
1438 current->comm, current->pid, tconn->ko_count);
1439 request_ping(tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001440 }
1441
1442 return drop_it; /* && (mdev->state == R_PRIMARY) */;
1443}
1444
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001445static void drbd_update_congested(struct drbd_tconn *tconn)
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001446{
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001447 struct sock *sk = tconn->data.socket->sk;
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001448 if (sk->sk_wmem_queued > sk->sk_sndbuf * 4 / 5)
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001449 set_bit(NET_CONGESTED, &tconn->flags);
Andreas Gruenbacher9e204cd2011-01-26 18:45:11 +01001450}
1451
Philipp Reisnerb411b362009-09-25 16:07:19 -07001452/* The idea of sendpage seems to be to put some kind of reference
1453 * to the page into the skb, and to hand it over to the NIC. In
1454 * this process get_page() gets called.
1455 *
1456 * As soon as the page was really sent over the network put_page()
1457 * gets called by some part of the network layer. [ NIC driver? ]
1458 *
1459 * [ get_page() / put_page() increment/decrement the count. If count
1460 * reaches 0 the page will be freed. ]
1461 *
1462 * This works nicely with pages from FSs.
1463 * But this means that in protocol A we might signal IO completion too early!
1464 *
1465 * In order not to corrupt data during a resync we must make sure
1466 * that we do not reuse our own buffer pages (EEs) to early, therefore
1467 * we have the net_ee list.
1468 *
1469 * XFS seems to have problems, still, it submits pages with page_count == 0!
1470 * As a workaround, we disable sendpage on pages
1471 * with page_count == 0 or PageSlab.
1472 */
1473static int _drbd_no_send_page(struct drbd_conf *mdev, struct page *page,
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001474 int offset, size_t size, unsigned msg_flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001475{
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001476 struct socket *socket;
1477 void *addr;
1478 int err;
1479
1480 socket = mdev->tconn->data.socket;
1481 addr = kmap(page) + offset;
1482 err = drbd_send_all(mdev->tconn, socket, addr, size, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001483 kunmap(page);
Andreas Gruenbacherb9874272011-03-16 09:41:10 +01001484 if (!err)
1485 mdev->send_cnt += size >> 9;
1486 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001487}
1488
1489static int _drbd_send_page(struct drbd_conf *mdev, struct page *page,
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001490 int offset, size_t size, unsigned msg_flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001491{
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001492 struct socket *socket = mdev->tconn->data.socket;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001493 mm_segment_t oldfs = get_fs();
Philipp Reisnerb411b362009-09-25 16:07:19 -07001494 int len = size;
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001495 int err = -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001496
1497 /* e.g. XFS meta- & log-data is in slab pages, which have a
1498 * page_count of 0 and/or have PageSlab() set.
1499 * we cannot use send_page for those, as that does get_page();
1500 * put_page(); and would cause either a VM_BUG directly, or
1501 * __page_cache_release a page that would actually still be referenced
1502 * by someone, leading to some obscure delayed Oops somewhere else. */
1503 if (disable_sendpage || (page_count(page) < 1) || PageSlab(page))
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001504 return _drbd_no_send_page(mdev, page, offset, size, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001505
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001506 msg_flags |= MSG_NOSIGNAL;
Philipp Reisner1a7ba642011-02-07 14:56:02 +01001507 drbd_update_congested(mdev->tconn);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001508 set_fs(KERNEL_DS);
1509 do {
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001510 int sent;
1511
1512 sent = socket->ops->sendpage(socket, page, offset, len, msg_flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001513 if (sent <= 0) {
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001514 if (sent == -EAGAIN) {
1515 if (we_should_drop_the_connection(mdev->tconn, socket))
1516 break;
1517 continue;
1518 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07001519 dev_warn(DEV, "%s: size=%d len=%d sent=%d\n",
1520 __func__, (int)size, len, sent);
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001521 if (sent < 0)
1522 err = sent;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001523 break;
1524 }
1525 len -= sent;
1526 offset += sent;
1527 } while (len > 0 /* THINK && mdev->cstate >= C_CONNECTED*/);
1528 set_fs(oldfs);
Philipp Reisner01a311a2011-02-07 14:30:33 +01001529 clear_bit(NET_CONGESTED, &mdev->tconn->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001530
Andreas Gruenbacher88b390f2011-03-16 10:44:16 +01001531 if (len == 0) {
1532 err = 0;
1533 mdev->send_cnt += size >> 9;
1534 }
1535 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001536}
1537
1538static int _drbd_send_bio(struct drbd_conf *mdev, struct bio *bio)
1539{
Kent Overstreet79886132013-11-23 17:19:00 -08001540 struct bio_vec bvec;
1541 struct bvec_iter iter;
1542
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001543 /* hint all but last page with MSG_MORE */
Kent Overstreet79886132013-11-23 17:19:00 -08001544 bio_for_each_segment(bvec, bio, iter) {
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001545 int err;
1546
Kent Overstreet79886132013-11-23 17:19:00 -08001547 err = _drbd_no_send_page(mdev, bvec.bv_page,
1548 bvec.bv_offset, bvec.bv_len,
Kent Overstreet4550dd62013-08-07 14:26:21 -07001549 bio_iter_last(bvec, iter)
Kent Overstreet79886132013-11-23 17:19:00 -08001550 ? 0 : MSG_MORE);
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001551 if (err)
1552 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001553 }
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001554 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001555}
1556
1557static int _drbd_send_zc_bio(struct drbd_conf *mdev, struct bio *bio)
1558{
Kent Overstreet79886132013-11-23 17:19:00 -08001559 struct bio_vec bvec;
1560 struct bvec_iter iter;
1561
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001562 /* hint all but last page with MSG_MORE */
Kent Overstreet79886132013-11-23 17:19:00 -08001563 bio_for_each_segment(bvec, bio, iter) {
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001564 int err;
1565
Kent Overstreet79886132013-11-23 17:19:00 -08001566 err = _drbd_send_page(mdev, bvec.bv_page,
1567 bvec.bv_offset, bvec.bv_len,
Kent Overstreet4550dd62013-08-07 14:26:21 -07001568 bio_iter_last(bvec, iter) ? 0 : MSG_MORE);
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001569 if (err)
1570 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001571 }
Andreas Gruenbacher7fae55d2011-03-16 11:46:33 +01001572 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001573}
1574
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001575static int _drbd_send_zc_ee(struct drbd_conf *mdev,
1576 struct drbd_peer_request *peer_req)
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001577{
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001578 struct page *page = peer_req->pages;
1579 unsigned len = peer_req->i.size;
Andreas Gruenbacher9f692302011-03-16 10:49:09 +01001580 int err;
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001581
Lars Ellenbergba11ad92010-05-25 16:26:16 +02001582 /* hint all but last page with MSG_MORE */
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001583 page_chain_for_each(page) {
1584 unsigned l = min_t(unsigned, len, PAGE_SIZE);
Andreas Gruenbacher9f692302011-03-16 10:49:09 +01001585
1586 err = _drbd_send_page(mdev, page, 0, l,
1587 page_chain_next(page) ? MSG_MORE : 0);
1588 if (err)
1589 return err;
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001590 len -= l;
1591 }
Andreas Gruenbacher9f692302011-03-16 10:49:09 +01001592 return 0;
Lars Ellenberg45bb9122010-05-14 17:10:48 +02001593}
1594
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001595static u32 bio_flags_to_wire(struct drbd_conf *mdev, unsigned long bi_rw)
1596{
Philipp Reisner31890f42011-01-19 14:12:51 +01001597 if (mdev->tconn->agreed_pro_version >= 95)
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001598 return (bi_rw & REQ_SYNC ? DP_RW_SYNC : 0) |
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001599 (bi_rw & REQ_FUA ? DP_FUA : 0) |
1600 (bi_rw & REQ_FLUSH ? DP_FLUSH : 0) |
1601 (bi_rw & REQ_DISCARD ? DP_DISCARD : 0);
1602 else
Jens Axboe721a9602011-03-09 11:56:30 +01001603 return bi_rw & REQ_SYNC ? DP_RW_SYNC : 0;
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001604}
1605
Philipp Reisnerb411b362009-09-25 16:07:19 -07001606/* Used to send write requests
1607 * R_PRIMARY -> Peer (P_DATA)
1608 */
1609int drbd_send_dblock(struct drbd_conf *mdev, struct drbd_request *req)
1610{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001611 struct drbd_socket *sock;
1612 struct p_data *p;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001613 unsigned int dp_flags = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001614 int dgs;
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001615 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001616
Philipp Reisner46e1ce42011-05-16 12:57:15 +02001617 sock = &mdev->tconn->data;
1618 p = drbd_prepare_command(mdev, sock);
Andreas Gruenbacher7d4c7822011-07-17 23:06:12 +02001619 dgs = mdev->tconn->integrity_tfm ? crypto_hash_digestsize(mdev->tconn->integrity_tfm) : 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001620
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001621 if (!p)
1622 return -EIO;
1623 p->sector = cpu_to_be64(req->i.sector);
1624 p->block_id = (unsigned long)req;
Lars Ellenberg5cdb0bf32012-03-26 16:21:25 +02001625 p->seq_num = cpu_to_be32(atomic_inc_return(&mdev->packet_seq));
Philipp Reisner76d2e7e2010-08-25 11:58:05 +02001626 dp_flags = bio_flags_to_wire(mdev, req->master_bio->bi_rw);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001627 if (mdev->state.conn >= C_SYNC_SOURCE &&
1628 mdev->state.conn <= C_PAUSED_SYNC_T)
1629 dp_flags |= DP_MAY_SET_IN_SYNC;
Philipp Reisner303d1442011-04-13 16:24:47 -07001630 if (mdev->tconn->agreed_pro_version >= 100) {
1631 if (req->rq_state & RQ_EXP_RECEIVE_ACK)
1632 dp_flags |= DP_SEND_RECEIVE_ACK;
1633 if (req->rq_state & RQ_EXP_WRITE_ACK)
1634 dp_flags |= DP_SEND_WRITE_ACK;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001635 }
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001636 p->dp_flags = cpu_to_be32(dp_flags);
1637 if (dgs)
Andreas Gruenbacher8d412fc2011-04-27 20:59:18 +02001638 drbd_csum_bio(mdev, mdev->tconn->integrity_tfm, req->master_bio, p + 1);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001639 err = __send_command(mdev->tconn, mdev->vnr, sock, P_DATA, sizeof(*p) + dgs, NULL, req->i.size);
Andreas Gruenbacher6bdb9b02011-03-16 11:52:58 +01001640 if (!err) {
Lars Ellenberg470be442010-11-10 10:36:52 +01001641 /* For protocol A, we have to memcpy the payload into
1642 * socket buffers, as we may complete right away
1643 * as soon as we handed it over to tcp, at which point the data
1644 * pages may become invalid.
1645 *
1646 * For data-integrity enabled, we copy it as well, so we can be
1647 * sure that even if the bio pages may still be modified, it
1648 * won't change the data on the wire, thus if the digest checks
1649 * out ok after sending on this side, but does not fit on the
1650 * receiving side, we sure have detected corruption elsewhere.
1651 */
Philipp Reisner303d1442011-04-13 16:24:47 -07001652 if (!(req->rq_state & (RQ_EXP_RECEIVE_ACK | RQ_EXP_WRITE_ACK)) || dgs)
Andreas Gruenbacher6bdb9b02011-03-16 11:52:58 +01001653 err = _drbd_send_bio(mdev, req->master_bio);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001654 else
Andreas Gruenbacher6bdb9b02011-03-16 11:52:58 +01001655 err = _drbd_send_zc_bio(mdev, req->master_bio);
Lars Ellenberg470be442010-11-10 10:36:52 +01001656
1657 /* double check digest, sometimes buffers have been modified in flight. */
1658 if (dgs > 0 && dgs <= 64) {
Bart Van Assche24c48302011-05-21 18:32:29 +02001659 /* 64 byte, 512 bit, is the largest digest size
Lars Ellenberg470be442010-11-10 10:36:52 +01001660 * currently supported in kernel crypto. */
1661 unsigned char digest[64];
Andreas Gruenbacher8d412fc2011-04-27 20:59:18 +02001662 drbd_csum_bio(mdev, mdev->tconn->integrity_tfm, req->master_bio, digest);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001663 if (memcmp(p + 1, digest, dgs)) {
Lars Ellenberg470be442010-11-10 10:36:52 +01001664 dev_warn(DEV,
1665 "Digest mismatch, buffer modified by upper layers during write: %llus +%u\n",
Andreas Gruenbacherace652a2011-01-03 17:09:58 +01001666 (unsigned long long)req->i.sector, req->i.size);
Lars Ellenberg470be442010-11-10 10:36:52 +01001667 }
1668 } /* else if (dgs > 64) {
1669 ... Be noisy about digest too large ...
1670 } */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001671 }
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001672 mutex_unlock(&sock->mutex); /* locked by drbd_prepare_command() */
Philipp Reisnerb411b362009-09-25 16:07:19 -07001673
Andreas Gruenbacher6bdb9b02011-03-16 11:52:58 +01001674 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001675}
1676
1677/* answer packet, used to send data back for read requests:
1678 * Peer -> (diskless) R_PRIMARY (P_DATA_REPLY)
1679 * C_SYNC_SOURCE -> C_SYNC_TARGET (P_RS_DATA_REPLY)
1680 */
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01001681int drbd_send_block(struct drbd_conf *mdev, enum drbd_packet cmd,
Andreas Gruenbacherdb830c42011-02-04 15:57:48 +01001682 struct drbd_peer_request *peer_req)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001683{
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001684 struct drbd_socket *sock;
1685 struct p_data *p;
Andreas Gruenbacher7b57b89d2011-03-16 11:35:20 +01001686 int err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001687 int dgs;
1688
Philipp Reisner46e1ce42011-05-16 12:57:15 +02001689 sock = &mdev->tconn->data;
1690 p = drbd_prepare_command(mdev, sock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001691
Andreas Gruenbacher7d4c7822011-07-17 23:06:12 +02001692 dgs = mdev->tconn->integrity_tfm ? crypto_hash_digestsize(mdev->tconn->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 Gruenbacher8d412fc2011-04-27 20:59:18 +02001701 drbd_csum_ee(mdev, mdev->tconn->integrity_tfm, peer_req, p + 1);
Andreas Gruenbacher9f5bdc32011-03-28 14:23:08 +02001702 err = __send_command(mdev->tconn, mdev->vnr, sock, cmd, sizeof(*p) + dgs, NULL, peer_req->i.size);
Andreas Gruenbacher7b57b89d2011-03-16 11:35:20 +01001703 if (!err)
1704 err = _drbd_send_zc_ee(mdev, 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 Gruenbacher8f7bed72010-12-19 23:53:14 +01001710int drbd_send_out_of_sync(struct drbd_conf *mdev, 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 Gruenbacher9f5bdc32011-03-28 14:23:08 +02001715 sock = &mdev->tconn->data;
1716 p = drbd_prepare_command(mdev, sock);
1717 if (!p)
1718 return -EIO;
1719 p->sector = cpu_to_be64(req->i.sector);
1720 p->blksize = cpu_to_be32(req->i.size);
1721 return drbd_send_command(mdev, 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 */
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001740int drbd_send(struct drbd_tconn *tconn, 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
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001761 if (sock == tconn->data.socket) {
Philipp Reisner44ed1672011-04-19 17:10:19 +02001762 rcu_read_lock();
1763 tconn->ko_count = rcu_dereference(tconn->net_conf)->ko_count;
1764 rcu_read_unlock();
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001765 drbd_update_congested(tconn);
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) {
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001779 if (we_should_drop_the_connection(tconn, 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
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001795 if (sock == tconn->data.socket)
1796 clear_bit(NET_CONGESTED, &tconn->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001797
1798 if (rv <= 0) {
1799 if (rv != -EAGAIN) {
Philipp Reisnerbedbd2a2011-02-07 15:08:48 +01001800 conn_err(tconn, "%s_sendmsg returned %d\n",
1801 sock == tconn->meta.socket ? "msock" : "sock",
1802 rv);
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001803 conn_request_state(tconn, NS(conn, C_BROKEN_PIPE), CS_HARD);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001804 } else
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01001805 conn_request_state(tconn, 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 */
1816int drbd_send_all(struct drbd_tconn *tconn, struct socket *sock, void *buffer,
1817 size_t size, unsigned msg_flags)
1818{
1819 int err;
1820
1821 err = drbd_send(tconn, sock, buffer, size, msg_flags);
1822 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{
1831 struct drbd_conf *mdev = bdev->bd_disk->private_data;
1832 unsigned long flags;
1833 int rv = 0;
1834
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001835 mutex_lock(&drbd_main_mutex);
Philipp Reisner87eeee42011-01-19 14:16:30 +01001836 spin_lock_irqsave(&mdev->tconn->req_lock, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001837 /* to have a stable mdev->state.role
1838 * and no race with updating open_cnt */
1839
1840 if (mdev->state.role != R_PRIMARY) {
1841 if (mode & FMODE_WRITE)
1842 rv = -EROFS;
1843 else if (!allow_oos)
1844 rv = -EMEDIUMTYPE;
1845 }
1846
1847 if (!rv)
1848 mdev->open_cnt++;
Philipp Reisner87eeee42011-01-19 14:16:30 +01001849 spin_unlock_irqrestore(&mdev->tconn->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{
1857 struct drbd_conf *mdev = gd->private_data;
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001858 mutex_lock(&drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001859 mdev->open_cnt--;
Arnd Bergmann2a48fc02010-06-02 14:28:52 +02001860 mutex_unlock(&drbd_main_mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001861}
1862
Philipp Reisnerb411b362009-09-25 16:07:19 -07001863static void drbd_set_defaults(struct drbd_conf *mdev)
1864{
Lars Ellenbergf3990022011-03-23 14:31:09 +01001865 /* Beware! The actual layout differs
1866 * between big endian and little endian */
Philipp Reisnerda9fbc22011-03-29 10:52:01 +02001867 mdev->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
1876void drbd_init_set_defaults(struct drbd_conf *mdev)
1877{
1878 /* the memset(,0,) did most of this.
1879 * note: only assignments, no allocation in here */
1880
1881 drbd_set_defaults(mdev);
1882
Philipp Reisnerb411b362009-09-25 16:07:19 -07001883 atomic_set(&mdev->ap_bio_cnt, 0);
1884 atomic_set(&mdev->ap_pending_cnt, 0);
1885 atomic_set(&mdev->rs_pending_cnt, 0);
1886 atomic_set(&mdev->unacked_cnt, 0);
1887 atomic_set(&mdev->local_cnt, 0);
Lars Ellenberg435f0742010-09-06 12:30:25 +02001888 atomic_set(&mdev->pp_in_use_by_net, 0);
Philipp Reisner778f2712010-07-06 11:14:00 +02001889 atomic_set(&mdev->rs_sect_in, 0);
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02001890 atomic_set(&mdev->rs_sect_ev, 0);
Philipp Reisner759fbdf2010-10-26 16:02:27 +02001891 atomic_set(&mdev->ap_in_flight, 0);
Philipp Reisnere1711732011-06-27 11:51:46 +02001892 atomic_set(&mdev->md_io_in_use, 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001893
Philipp Reisner8410da82011-02-11 20:11:10 +01001894 mutex_init(&mdev->own_state_mutex);
1895 mdev->state_mutex = &mdev->own_state_mutex;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001896
1897 spin_lock_init(&mdev->al_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001898 spin_lock_init(&mdev->peer_seq_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001899
1900 INIT_LIST_HEAD(&mdev->active_ee);
1901 INIT_LIST_HEAD(&mdev->sync_ee);
1902 INIT_LIST_HEAD(&mdev->done_ee);
1903 INIT_LIST_HEAD(&mdev->read_ee);
1904 INIT_LIST_HEAD(&mdev->net_ee);
1905 INIT_LIST_HEAD(&mdev->resync_reads);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001906 INIT_LIST_HEAD(&mdev->resync_work.list);
1907 INIT_LIST_HEAD(&mdev->unplug_work.list);
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02001908 INIT_LIST_HEAD(&mdev->go_diskless.list);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001909 INIT_LIST_HEAD(&mdev->md_sync_work.list);
Philipp Reisnerc4752ef2010-10-27 17:32:36 +02001910 INIT_LIST_HEAD(&mdev->start_resync_work.list);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001911 INIT_LIST_HEAD(&mdev->bm_io_work.w.list);
Philipp Reisner0ced55a2010-04-30 15:26:20 +02001912
Philipp Reisner794abb72010-12-27 11:51:23 +01001913 mdev->resync_work.cb = w_resync_timer;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001914 mdev->unplug_work.cb = w_send_write_hint;
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02001915 mdev->go_diskless.cb = w_go_diskless;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001916 mdev->md_sync_work.cb = w_md_sync;
1917 mdev->bm_io_work.w.cb = w_bitmap_io;
Philipp Reisner370a43e2011-01-14 16:03:11 +01001918 mdev->start_resync_work.cb = w_start_resync;
Philipp Reisnera21e9292011-02-08 15:08:49 +01001919
1920 mdev->resync_work.mdev = mdev;
1921 mdev->unplug_work.mdev = mdev;
1922 mdev->go_diskless.mdev = mdev;
1923 mdev->md_sync_work.mdev = mdev;
1924 mdev->bm_io_work.w.mdev = mdev;
1925 mdev->start_resync_work.mdev = mdev;
1926
Philipp Reisnerb411b362009-09-25 16:07:19 -07001927 init_timer(&mdev->resync_timer);
1928 init_timer(&mdev->md_sync_timer);
Philipp Reisner370a43e2011-01-14 16:03:11 +01001929 init_timer(&mdev->start_resync_timer);
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001930 init_timer(&mdev->request_timer);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001931 mdev->resync_timer.function = resync_timer_fn;
1932 mdev->resync_timer.data = (unsigned long) mdev;
1933 mdev->md_sync_timer.function = md_sync_timer_fn;
1934 mdev->md_sync_timer.data = (unsigned long) mdev;
Philipp Reisner370a43e2011-01-14 16:03:11 +01001935 mdev->start_resync_timer.function = start_resync_timer_fn;
1936 mdev->start_resync_timer.data = (unsigned long) mdev;
Philipp Reisner7fde2be2011-03-01 11:08:28 +01001937 mdev->request_timer.function = request_timer_fn;
1938 mdev->request_timer.data = (unsigned long) mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001939
1940 init_waitqueue_head(&mdev->misc_wait);
1941 init_waitqueue_head(&mdev->state_wait);
1942 init_waitqueue_head(&mdev->ee_wait);
1943 init_waitqueue_head(&mdev->al_wait);
1944 init_waitqueue_head(&mdev->seq_wait);
1945
Philipp Reisnerb411b362009-09-25 16:07:19 -07001946 mdev->resync_wenr = LC_FREE;
Philipp Reisner99432fc2011-05-20 16:39:13 +02001947 mdev->peer_max_bio_size = DRBD_MAX_BIO_SIZE_SAFE;
1948 mdev->local_max_bio_size = DRBD_MAX_BIO_SIZE_SAFE;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001949}
1950
1951void drbd_mdev_cleanup(struct drbd_conf *mdev)
1952{
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02001953 int i;
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01001954 if (mdev->tconn->receiver.t_state != NONE)
Philipp Reisnerb411b362009-09-25 16:07:19 -07001955 dev_err(DEV, "ASSERT FAILED: receiver t_state == %d expected 0.\n",
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01001956 mdev->tconn->receiver.t_state);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001957
Philipp Reisnerb411b362009-09-25 16:07:19 -07001958 mdev->al_writ_cnt =
1959 mdev->bm_writ_cnt =
1960 mdev->read_cnt =
1961 mdev->recv_cnt =
1962 mdev->send_cnt =
1963 mdev->writ_cnt =
1964 mdev->p_size =
1965 mdev->rs_start =
1966 mdev->rs_total =
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02001967 mdev->rs_failed = 0;
1968 mdev->rs_last_events = 0;
Lars Ellenberg0f0601f2010-08-11 23:40:24 +02001969 mdev->rs_last_sect_ev = 0;
Lars Ellenberg1d7734a2010-08-11 21:21:50 +02001970 for (i = 0; i < DRBD_SYNC_MARKS; i++) {
1971 mdev->rs_mark_left[i] = 0;
1972 mdev->rs_mark_time[i] = 0;
1973 }
Philipp Reisner89e58e72011-01-19 13:12:45 +01001974 D_ASSERT(mdev->tconn->net_conf == NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001975
1976 drbd_set_my_capacity(mdev, 0);
1977 if (mdev->bitmap) {
1978 /* maybe never allocated. */
Philipp Reisner02d9a942010-03-24 16:23:03 +01001979 drbd_bm_resize(mdev, 0, 1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07001980 drbd_bm_cleanup(mdev);
1981 }
1982
Philipp Reisner1d041222011-04-22 15:20:23 +02001983 drbd_free_bc(mdev->ldev);
1984 mdev->ldev = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07001985
Philipp Reisnerb411b362009-09-25 16:07:19 -07001986 clear_bit(AL_SUSPENDED, &mdev->flags);
1987
Philipp Reisnerb411b362009-09-25 16:07:19 -07001988 D_ASSERT(list_empty(&mdev->active_ee));
1989 D_ASSERT(list_empty(&mdev->sync_ee));
1990 D_ASSERT(list_empty(&mdev->done_ee));
1991 D_ASSERT(list_empty(&mdev->read_ee));
1992 D_ASSERT(list_empty(&mdev->net_ee));
1993 D_ASSERT(list_empty(&mdev->resync_reads));
Lars Ellenbergd5b27b02011-11-14 15:42:37 +01001994 D_ASSERT(list_empty(&mdev->tconn->sender_work.q));
Philipp Reisnerb411b362009-09-25 16:07:19 -07001995 D_ASSERT(list_empty(&mdev->resync_work.list));
1996 D_ASSERT(list_empty(&mdev->unplug_work.list));
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02001997 D_ASSERT(list_empty(&mdev->go_diskless.list));
Lars Ellenberg2265b472010-12-16 15:41:26 +01001998
1999 drbd_set_defaults(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002000}
2001
2002
2003static void drbd_destroy_mempools(void)
2004{
2005 struct page *page;
2006
2007 while (drbd_pp_pool) {
2008 page = drbd_pp_pool;
2009 drbd_pp_pool = (struct page *)page_private(page);
2010 __free_page(page);
2011 drbd_pp_vacant--;
2012 }
2013
2014 /* D_ASSERT(atomic_read(&drbd_pp_vacant)==0); */
2015
Lars Ellenberg9476f392011-02-23 17:02:01 +01002016 if (drbd_md_io_bio_set)
2017 bioset_free(drbd_md_io_bio_set);
Lars Ellenberg42818082011-02-23 12:39:46 +01002018 if (drbd_md_io_page_pool)
2019 mempool_destroy(drbd_md_io_page_pool);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002020 if (drbd_ee_mempool)
2021 mempool_destroy(drbd_ee_mempool);
2022 if (drbd_request_mempool)
2023 mempool_destroy(drbd_request_mempool);
2024 if (drbd_ee_cache)
2025 kmem_cache_destroy(drbd_ee_cache);
2026 if (drbd_request_cache)
2027 kmem_cache_destroy(drbd_request_cache);
2028 if (drbd_bm_ext_cache)
2029 kmem_cache_destroy(drbd_bm_ext_cache);
2030 if (drbd_al_ext_cache)
2031 kmem_cache_destroy(drbd_al_ext_cache);
2032
Lars Ellenberg9476f392011-02-23 17:02:01 +01002033 drbd_md_io_bio_set = NULL;
Lars Ellenberg42818082011-02-23 12:39:46 +01002034 drbd_md_io_page_pool = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002035 drbd_ee_mempool = NULL;
2036 drbd_request_mempool = NULL;
2037 drbd_ee_cache = NULL;
2038 drbd_request_cache = NULL;
2039 drbd_bm_ext_cache = NULL;
2040 drbd_al_ext_cache = NULL;
2041
2042 return;
2043}
2044
2045static int drbd_create_mempools(void)
2046{
2047 struct page *page;
Lars Ellenberg1816a2b2010-11-11 15:19:07 +01002048 const int number = (DRBD_MAX_BIO_SIZE/PAGE_SIZE) * minor_count;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002049 int i;
2050
2051 /* prepare our caches and mempools */
2052 drbd_request_mempool = NULL;
2053 drbd_ee_cache = NULL;
2054 drbd_request_cache = NULL;
2055 drbd_bm_ext_cache = NULL;
2056 drbd_al_ext_cache = NULL;
2057 drbd_pp_pool = NULL;
Lars Ellenberg42818082011-02-23 12:39:46 +01002058 drbd_md_io_page_pool = NULL;
Lars Ellenberg9476f392011-02-23 17:02:01 +01002059 drbd_md_io_bio_set = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002060
2061 /* caches */
2062 drbd_request_cache = kmem_cache_create(
2063 "drbd_req", sizeof(struct drbd_request), 0, 0, NULL);
2064 if (drbd_request_cache == NULL)
2065 goto Enomem;
2066
2067 drbd_ee_cache = kmem_cache_create(
Andreas Gruenbacherf6ffca92011-02-04 15:30:34 +01002068 "drbd_ee", sizeof(struct drbd_peer_request), 0, 0, NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002069 if (drbd_ee_cache == NULL)
2070 goto Enomem;
2071
2072 drbd_bm_ext_cache = kmem_cache_create(
2073 "drbd_bm", sizeof(struct bm_extent), 0, 0, NULL);
2074 if (drbd_bm_ext_cache == NULL)
2075 goto Enomem;
2076
2077 drbd_al_ext_cache = kmem_cache_create(
2078 "drbd_al", sizeof(struct lc_element), 0, 0, NULL);
2079 if (drbd_al_ext_cache == NULL)
2080 goto Enomem;
2081
2082 /* mempools */
Lars Ellenberg9476f392011-02-23 17:02:01 +01002083 drbd_md_io_bio_set = bioset_create(DRBD_MIN_POOL_PAGES, 0);
2084 if (drbd_md_io_bio_set == NULL)
2085 goto Enomem;
Lars Ellenberg9476f392011-02-23 17:02:01 +01002086
Lars Ellenberg42818082011-02-23 12:39:46 +01002087 drbd_md_io_page_pool = mempool_create_page_pool(DRBD_MIN_POOL_PAGES, 0);
2088 if (drbd_md_io_page_pool == NULL)
2089 goto Enomem;
2090
Philipp Reisnerb411b362009-09-25 16:07:19 -07002091 drbd_request_mempool = mempool_create(number,
2092 mempool_alloc_slab, mempool_free_slab, drbd_request_cache);
2093 if (drbd_request_mempool == NULL)
2094 goto Enomem;
2095
2096 drbd_ee_mempool = mempool_create(number,
2097 mempool_alloc_slab, mempool_free_slab, drbd_ee_cache);
Nicolas Kaiser2027ae12010-10-28 06:15:26 -06002098 if (drbd_ee_mempool == NULL)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002099 goto Enomem;
2100
2101 /* drbd's page pool */
2102 spin_lock_init(&drbd_pp_lock);
2103
2104 for (i = 0; i < number; i++) {
2105 page = alloc_page(GFP_HIGHUSER);
2106 if (!page)
2107 goto Enomem;
2108 set_page_private(page, (unsigned long)drbd_pp_pool);
2109 drbd_pp_pool = page;
2110 }
2111 drbd_pp_vacant = number;
2112
2113 return 0;
2114
2115Enomem:
2116 drbd_destroy_mempools(); /* in case we allocated some */
2117 return -ENOMEM;
2118}
2119
2120static int drbd_notify_sys(struct notifier_block *this, unsigned long code,
2121 void *unused)
2122{
2123 /* just so we have it. you never know what interesting things we
2124 * might want to do here some day...
2125 */
2126
2127 return NOTIFY_DONE;
2128}
2129
2130static struct notifier_block drbd_notifier = {
2131 .notifier_call = drbd_notify_sys,
2132};
2133
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002134static void drbd_release_all_peer_reqs(struct drbd_conf *mdev)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002135{
2136 int rr;
2137
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002138 rr = drbd_free_peer_reqs(mdev, &mdev->active_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002139 if (rr)
2140 dev_err(DEV, "%d EEs in active list found!\n", rr);
2141
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002142 rr = drbd_free_peer_reqs(mdev, &mdev->sync_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002143 if (rr)
2144 dev_err(DEV, "%d EEs in sync list found!\n", rr);
2145
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002146 rr = drbd_free_peer_reqs(mdev, &mdev->read_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002147 if (rr)
2148 dev_err(DEV, "%d EEs in read list found!\n", rr);
2149
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002150 rr = drbd_free_peer_reqs(mdev, &mdev->done_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002151 if (rr)
2152 dev_err(DEV, "%d EEs in done list found!\n", rr);
2153
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002154 rr = drbd_free_peer_reqs(mdev, &mdev->net_ee);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002155 if (rr)
2156 dev_err(DEV, "%d EEs in net list found!\n", rr);
2157}
2158
Philipp Reisner774b3052011-02-22 02:07:03 -05002159/* caution. no locking. */
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002160void drbd_minor_destroy(struct kref *kref)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002161{
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002162 struct drbd_conf *mdev = container_of(kref, struct drbd_conf, kref);
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002163 struct drbd_tconn *tconn = mdev->tconn;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002164
Philipp Reisnerdfa8bed2011-06-29 14:06:08 +02002165 del_timer_sync(&mdev->request_timer);
2166
Philipp Reisnerb411b362009-09-25 16:07:19 -07002167 /* paranoia asserts */
Andreas Gruenbacher70dc65e2010-12-21 14:46:57 +01002168 D_ASSERT(mdev->open_cnt == 0);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002169 /* end paranoia asserts */
2170
Philipp Reisnerb411b362009-09-25 16:07:19 -07002171 /* cleanup stuff that may have been allocated during
2172 * device (re-)configuration or state changes */
2173
2174 if (mdev->this_bdev)
2175 bdput(mdev->this_bdev);
2176
Philipp Reisner1d041222011-04-22 15:20:23 +02002177 drbd_free_bc(mdev->ldev);
2178 mdev->ldev = NULL;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002179
Andreas Gruenbacher7721f562011-04-06 17:14:02 +02002180 drbd_release_all_peer_reqs(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002181
2182 lc_destroy(mdev->act_log);
2183 lc_destroy(mdev->resync);
2184
2185 kfree(mdev->p_uuid);
2186 /* mdev->p_uuid = NULL; */
2187
Philipp Reisnercd1d9952011-04-11 21:24:24 -07002188 if (mdev->bitmap) /* should no longer be there. */
2189 drbd_bm_cleanup(mdev);
2190 __free_page(mdev->md_io_page);
2191 put_disk(mdev->vdisk);
2192 blk_cleanup_queue(mdev->rq_queue);
Philipp Reisner9958c852011-05-03 16:19:31 +02002193 kfree(mdev->rs_plan_s);
Philipp Reisnercd1d9952011-04-11 21:24:24 -07002194 kfree(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002195
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002196 kref_put(&tconn->kref, &conn_destroy);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002197}
2198
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002199/* One global retry thread, if we need to push back some bio and have it
2200 * reinserted through our make request function.
2201 */
2202static struct retry_worker {
2203 struct workqueue_struct *wq;
2204 struct work_struct worker;
2205
2206 spinlock_t lock;
2207 struct list_head writes;
2208} retry;
2209
2210static void do_retry(struct work_struct *ws)
2211{
2212 struct retry_worker *retry = container_of(ws, struct retry_worker, worker);
2213 LIST_HEAD(writes);
2214 struct drbd_request *req, *tmp;
2215
2216 spin_lock_irq(&retry->lock);
2217 list_splice_init(&retry->writes, &writes);
2218 spin_unlock_irq(&retry->lock);
2219
2220 list_for_each_entry_safe(req, tmp, &writes, tl_requests) {
2221 struct drbd_conf *mdev = req->w.mdev;
2222 struct bio *bio = req->master_bio;
2223 unsigned long start_time = req->start_time;
Lars Ellenberg9a278a72012-07-24 10:12:36 +02002224 bool expected;
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002225
Lars Ellenberg9a278a72012-07-24 10:12:36 +02002226 expected =
2227 expect(atomic_read(&req->completion_ref) == 0) &&
2228 expect(req->rq_state & RQ_POSTPONED) &&
2229 expect((req->rq_state & RQ_LOCAL_PENDING) == 0 ||
2230 (req->rq_state & RQ_LOCAL_ABORTED) != 0);
2231
2232 if (!expected)
2233 dev_err(DEV, "req=%p completion_ref=%d rq_state=%x\n",
2234 req, atomic_read(&req->completion_ref),
2235 req->rq_state);
2236
2237 /* We still need to put one kref associated with the
2238 * "completion_ref" going zero in the code path that queued it
2239 * here. The request object may still be referenced by a
2240 * frozen local req->private_bio, in case we force-detached.
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002241 */
Lars Ellenberg9a278a72012-07-24 10:12:36 +02002242 kref_put(&req->kref, drbd_req_destroy);
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002243
2244 /* A single suspended or otherwise blocking device may stall
2245 * all others as well. Fortunately, this code path is to
2246 * recover from a situation that "should not happen":
2247 * concurrent writes in multi-primary setup.
2248 * In a "normal" lifecycle, this workqueue is supposed to be
2249 * destroyed without ever doing anything.
2250 * If it turns out to be an issue anyways, we can do per
2251 * resource (replication group) or per device (minor) retry
2252 * workqueues instead.
2253 */
2254
2255 /* We are not just doing generic_make_request(),
2256 * as we want to keep the start_time information. */
Lars Ellenberg5df69ec2012-01-24 16:49:58 +01002257 inc_ap_bio(mdev);
2258 __drbd_make_request(mdev, bio, start_time);
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002259 }
2260}
2261
Lars Ellenberg9d05e7c2012-07-17 10:05:04 +02002262void drbd_restart_request(struct drbd_request *req)
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002263{
2264 unsigned long flags;
2265 spin_lock_irqsave(&retry.lock, flags);
2266 list_move_tail(&req->tl_requests, &retry.writes);
2267 spin_unlock_irqrestore(&retry.lock, flags);
2268
2269 /* Drop the extra reference that would otherwise
2270 * have been dropped by complete_master_bio.
2271 * do_retry() needs to grab a new one. */
2272 dec_ap_bio(req->w.mdev);
2273
2274 queue_work(retry.wq, &retry.worker);
2275}
2276
2277
Philipp Reisnerb411b362009-09-25 16:07:19 -07002278static void drbd_cleanup(void)
2279{
2280 unsigned int i;
Philipp Reisner81a5d602011-02-22 19:53:16 -05002281 struct drbd_conf *mdev;
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002282 struct drbd_tconn *tconn, *tmp;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002283
2284 unregister_reboot_notifier(&drbd_notifier);
2285
Lars Ellenberg17a93f32010-11-24 10:37:35 +01002286 /* first remove proc,
2287 * drbdsetup uses it's presence to detect
2288 * whether DRBD is loaded.
2289 * If we would get stuck in proc removal,
2290 * but have netlink already deregistered,
2291 * some drbdsetup commands may wait forever
2292 * for an answer.
2293 */
2294 if (drbd_proc)
2295 remove_proc_entry("drbd", NULL);
2296
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002297 if (retry.wq)
2298 destroy_workqueue(retry.wq);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002299
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002300 drbd_genl_unregister();
Philipp Reisnerb411b362009-09-25 16:07:19 -07002301
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002302 idr_for_each_entry(&minors, mdev, i) {
2303 idr_remove(&minors, mdev_to_minor(mdev));
2304 idr_remove(&mdev->tconn->volumes, mdev->vnr);
Lars Ellenberg113fef92013-03-22 18:14:40 -06002305 destroy_workqueue(mdev->submit.wq);
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002306 del_gendisk(mdev->vdisk);
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002307 /* synchronize_rcu(); No other threads running at this point */
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002308 kref_put(&mdev->kref, &drbd_minor_destroy);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002309 }
2310
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002311 /* not _rcu since, no other updater anymore. Genl already unregistered */
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002312 list_for_each_entry_safe(tconn, tmp, &drbd_tconns, all_tconn) {
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002313 list_del(&tconn->all_tconn); /* not _rcu no proc, not other threads */
2314 /* synchronize_rcu(); */
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002315 kref_put(&tconn->kref, &conn_destroy);
2316 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07002317
Philipp Reisner81a5d602011-02-22 19:53:16 -05002318 drbd_destroy_mempools();
Philipp Reisnerb411b362009-09-25 16:07:19 -07002319 unregister_blkdev(DRBD_MAJOR, "drbd");
2320
Philipp Reisner81a5d602011-02-22 19:53:16 -05002321 idr_destroy(&minors);
2322
Philipp Reisnerb411b362009-09-25 16:07:19 -07002323 printk(KERN_INFO "drbd: module cleanup done.\n");
2324}
2325
2326/**
Artem Bityutskiyd97482e2012-07-25 18:12:12 +03002327 * drbd_congested() - Callback for the flusher thread
Philipp Reisnerb411b362009-09-25 16:07:19 -07002328 * @congested_data: User data
Artem Bityutskiyd97482e2012-07-25 18:12:12 +03002329 * @bdi_bits: Bits the BDI flusher thread is currently interested in
Philipp Reisnerb411b362009-09-25 16:07:19 -07002330 *
2331 * Returns 1<<BDI_async_congested and/or 1<<BDI_sync_congested if we are congested.
2332 */
2333static int drbd_congested(void *congested_data, int bdi_bits)
2334{
2335 struct drbd_conf *mdev = congested_data;
2336 struct request_queue *q;
2337 char reason = '-';
2338 int r = 0;
2339
Andreas Gruenbacher1b881ef2010-12-13 18:03:38 +01002340 if (!may_inc_ap_bio(mdev)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002341 /* DRBD has frozen IO */
2342 r = bdi_bits;
2343 reason = 'd';
2344 goto out;
2345 }
2346
Lars Ellenberg6f3465e2012-07-30 09:08:25 +02002347 if (test_bit(CALLBACK_PENDING, &mdev->tconn->flags)) {
Lars Ellenbergc2ba6862012-06-14 15:14:06 +02002348 r |= (1 << BDI_async_congested);
2349 /* Without good local data, we would need to read from remote,
2350 * and that would need the worker thread as well, which is
2351 * currently blocked waiting for that usermode helper to
2352 * finish.
2353 */
2354 if (!get_ldev_if_state(mdev, D_UP_TO_DATE))
2355 r |= (1 << BDI_sync_congested);
2356 else
2357 put_ldev(mdev);
2358 r &= bdi_bits;
2359 reason = 'c';
2360 goto out;
2361 }
2362
Philipp Reisnerb411b362009-09-25 16:07:19 -07002363 if (get_ldev(mdev)) {
2364 q = bdev_get_queue(mdev->ldev->backing_bdev);
2365 r = bdi_congested(&q->backing_dev_info, bdi_bits);
2366 put_ldev(mdev);
2367 if (r)
2368 reason = 'b';
2369 }
2370
Philipp Reisner01a311a2011-02-07 14:30:33 +01002371 if (bdi_bits & (1 << BDI_async_congested) && test_bit(NET_CONGESTED, &mdev->tconn->flags)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002372 r |= (1 << BDI_async_congested);
2373 reason = reason == 'b' ? 'a' : 'n';
2374 }
2375
2376out:
2377 mdev->congestion_reason = reason;
2378 return r;
2379}
2380
Philipp Reisner6699b652011-02-09 11:10:24 +01002381static void drbd_init_workqueue(struct drbd_work_queue* wq)
2382{
Philipp Reisner6699b652011-02-09 11:10:24 +01002383 spin_lock_init(&wq->q_lock);
2384 INIT_LIST_HEAD(&wq->q);
Lars Ellenberg8c0785a2011-10-19 11:50:57 +02002385 init_waitqueue_head(&wq->q_wait);
Philipp Reisner6699b652011-02-09 11:10:24 +01002386}
2387
Philipp Reisner0ace9df2011-04-24 10:53:19 +02002388struct drbd_tconn *conn_get_by_name(const char *name)
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002389{
2390 struct drbd_tconn *tconn;
2391
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002392 if (!name || !name[0])
2393 return NULL;
2394
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002395 rcu_read_lock();
Philipp Reisnerec0bddb2011-05-04 15:47:01 +02002396 list_for_each_entry_rcu(tconn, &drbd_tconns, all_tconn) {
Philipp Reisner0ace9df2011-04-24 10:53:19 +02002397 if (!strcmp(tconn->name, name)) {
2398 kref_get(&tconn->kref);
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002399 goto found;
Philipp Reisner0ace9df2011-04-24 10:53:19 +02002400 }
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002401 }
2402 tconn = NULL;
2403found:
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002404 rcu_read_unlock();
Philipp Reisner1aba4d72011-02-21 15:38:08 +01002405 return tconn;
2406}
2407
Andreas Gruenbacher089c0752011-06-14 18:28:09 +02002408struct drbd_tconn *conn_get_by_addrs(void *my_addr, int my_addr_len,
2409 void *peer_addr, int peer_addr_len)
2410{
2411 struct drbd_tconn *tconn;
2412
2413 rcu_read_lock();
2414 list_for_each_entry_rcu(tconn, &drbd_tconns, all_tconn) {
2415 if (tconn->my_addr_len == my_addr_len &&
2416 tconn->peer_addr_len == peer_addr_len &&
2417 !memcmp(&tconn->my_addr, my_addr, my_addr_len) &&
2418 !memcmp(&tconn->peer_addr, peer_addr, peer_addr_len)) {
2419 kref_get(&tconn->kref);
2420 goto found;
2421 }
2422 }
2423 tconn = NULL;
2424found:
2425 rcu_read_unlock();
2426 return tconn;
2427}
2428
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002429static int drbd_alloc_socket(struct drbd_socket *socket)
2430{
2431 socket->rbuf = (void *) __get_free_page(GFP_KERNEL);
2432 if (!socket->rbuf)
2433 return -ENOMEM;
Andreas Gruenbacher5a87d922011-03-24 21:17:52 +01002434 socket->sbuf = (void *) __get_free_page(GFP_KERNEL);
2435 if (!socket->sbuf)
2436 return -ENOMEM;
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002437 return 0;
2438}
2439
2440static void drbd_free_socket(struct drbd_socket *socket)
2441{
Andreas Gruenbacher5a87d922011-03-24 21:17:52 +01002442 free_page((unsigned long) socket->sbuf);
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002443 free_page((unsigned long) socket->rbuf);
2444}
2445
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002446void conn_free_crypto(struct drbd_tconn *tconn)
2447{
Philipp Reisner1d041222011-04-22 15:20:23 +02002448 drbd_free_sock(tconn);
2449
2450 crypto_free_hash(tconn->csums_tfm);
2451 crypto_free_hash(tconn->verify_tfm);
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002452 crypto_free_hash(tconn->cram_hmac_tfm);
Andreas Gruenbacher8d412fc2011-04-27 20:59:18 +02002453 crypto_free_hash(tconn->integrity_tfm);
Andreas Gruenbacher5b614ab2011-04-27 21:00:12 +02002454 crypto_free_hash(tconn->peer_integrity_tfm);
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002455 kfree(tconn->int_dig_in);
2456 kfree(tconn->int_dig_vv);
Philipp Reisner1d041222011-04-22 15:20:23 +02002457
2458 tconn->csums_tfm = NULL;
2459 tconn->verify_tfm = NULL;
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002460 tconn->cram_hmac_tfm = NULL;
Andreas Gruenbacher8d412fc2011-04-27 20:59:18 +02002461 tconn->integrity_tfm = NULL;
Andreas Gruenbacher5b614ab2011-04-27 21:00:12 +02002462 tconn->peer_integrity_tfm = NULL;
Philipp Reisner91fd4da2011-04-20 17:47:29 +02002463 tconn->int_dig_in = NULL;
2464 tconn->int_dig_vv = NULL;
2465}
2466
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002467int set_resource_options(struct drbd_tconn *tconn, struct res_opts *res_opts)
2468{
2469 cpumask_var_t new_cpu_mask;
2470 int err;
2471
2472 if (!zalloc_cpumask_var(&new_cpu_mask, GFP_KERNEL))
2473 return -ENOMEM;
2474 /*
2475 retcode = ERR_NOMEM;
2476 drbd_msg_put_info("unable to allocate cpumask");
2477 */
2478
2479 /* silently ignore cpu mask on UP kernel */
2480 if (nr_cpu_ids > 1 && res_opts->cpu_mask[0] != 0) {
2481 /* FIXME: Get rid of constant 32 here */
Philipp Reisnerc5b005a2012-04-30 12:53:52 +02002482 err = bitmap_parse(res_opts->cpu_mask, 32,
2483 cpumask_bits(new_cpu_mask), nr_cpu_ids);
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002484 if (err) {
Philipp Reisnerc5b005a2012-04-30 12:53:52 +02002485 conn_warn(tconn, "bitmap_parse() failed with %d\n", err);
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002486 /* retcode = ERR_CPU_MASK_PARSE; */
2487 goto fail;
2488 }
2489 }
2490 tconn->res_opts = *res_opts;
2491 if (!cpumask_equal(tconn->cpu_mask, new_cpu_mask)) {
2492 cpumask_copy(tconn->cpu_mask, new_cpu_mask);
2493 drbd_calc_cpu_mask(tconn);
2494 tconn->receiver.reset_cpu_mask = 1;
2495 tconn->asender.reset_cpu_mask = 1;
2496 tconn->worker.reset_cpu_mask = 1;
2497 }
2498 err = 0;
2499
2500fail:
2501 free_cpumask_var(new_cpu_mask);
2502 return err;
2503
2504}
2505
Philipp Reisnerec0bddb2011-05-04 15:47:01 +02002506/* caller must be under genl_lock() */
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002507struct drbd_tconn *conn_create(const char *name, struct res_opts *res_opts)
Philipp Reisner21114382011-01-19 12:26:59 +01002508{
2509 struct drbd_tconn *tconn;
2510
2511 tconn = kzalloc(sizeof(struct drbd_tconn), GFP_KERNEL);
2512 if (!tconn)
2513 return NULL;
2514
2515 tconn->name = kstrdup(name, GFP_KERNEL);
2516 if (!tconn->name)
2517 goto fail;
2518
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002519 if (drbd_alloc_socket(&tconn->data))
2520 goto fail;
2521 if (drbd_alloc_socket(&tconn->meta))
2522 goto fail;
2523
Philipp Reisner774b3052011-02-22 02:07:03 -05002524 if (!zalloc_cpumask_var(&tconn->cpu_mask, GFP_KERNEL))
2525 goto fail;
2526
Andreas Gruenbacherafbbfa82011-06-16 17:58:02 +02002527 if (set_resource_options(tconn, res_opts))
2528 goto fail;
2529
Philipp Reisner12038a32011-11-09 19:18:00 +01002530 tconn->current_epoch = kzalloc(sizeof(struct drbd_epoch), GFP_KERNEL);
2531 if (!tconn->current_epoch)
2532 goto fail;
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01002533
2534 INIT_LIST_HEAD(&tconn->transfer_log);
2535
Philipp Reisner12038a32011-11-09 19:18:00 +01002536 INIT_LIST_HEAD(&tconn->current_epoch->list);
2537 tconn->epochs = 1;
2538 spin_lock_init(&tconn->epoch_lock);
Philipp Reisner4b0007c2011-11-09 20:12:34 +01002539 tconn->write_ordering = WO_bdev_flush;
2540
Lars Ellenbergb6dd1a82011-11-28 15:04:49 +01002541 tconn->send.seen_any_write_yet = false;
2542 tconn->send.current_epoch_nr = 0;
2543 tconn->send.current_epoch_writes = 0;
2544
Philipp Reisnerbbeb6412011-02-10 13:45:46 +01002545 tconn->cstate = C_STANDALONE;
Philipp Reisner8410da82011-02-11 20:11:10 +01002546 mutex_init(&tconn->cstate_mutex);
Philipp Reisner6699b652011-02-09 11:10:24 +01002547 spin_lock_init(&tconn->req_lock);
Philipp Reisnera0095502011-05-03 13:14:15 +02002548 mutex_init(&tconn->conf_update);
Philipp Reisner2a67d8b2011-02-09 14:10:32 +01002549 init_waitqueue_head(&tconn->ping_wait);
Philipp Reisner062e8792011-02-08 11:09:18 +01002550 idr_init(&tconn->volumes);
Philipp Reisnerb2fb6dbe2011-01-19 13:48:44 +01002551
Lars Ellenbergd5b27b02011-11-14 15:42:37 +01002552 drbd_init_workqueue(&tconn->sender_work);
Philipp Reisner6699b652011-02-09 11:10:24 +01002553 mutex_init(&tconn->data.mutex);
Philipp Reisner6699b652011-02-09 11:10:24 +01002554 mutex_init(&tconn->meta.mutex);
2555
Philipp Reisner392c8802011-02-09 10:33:31 +01002556 drbd_thread_init(tconn, &tconn->receiver, drbdd_init, "receiver");
2557 drbd_thread_init(tconn, &tconn->worker, drbd_worker, "worker");
2558 drbd_thread_init(tconn, &tconn->asender, drbd_asender, "asender");
2559
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002560 kref_init(&tconn->kref);
Philipp Reisnerec0bddb2011-05-04 15:47:01 +02002561 list_add_tail_rcu(&tconn->all_tconn, &drbd_tconns);
Philipp Reisner21114382011-01-19 12:26:59 +01002562
2563 return tconn;
2564
2565fail:
Philipp Reisner12038a32011-11-09 19:18:00 +01002566 kfree(tconn->current_epoch);
Philipp Reisner774b3052011-02-22 02:07:03 -05002567 free_cpumask_var(tconn->cpu_mask);
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002568 drbd_free_socket(&tconn->meta);
2569 drbd_free_socket(&tconn->data);
Philipp Reisner21114382011-01-19 12:26:59 +01002570 kfree(tconn->name);
2571 kfree(tconn);
2572
2573 return NULL;
2574}
2575
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002576void conn_destroy(struct kref *kref)
Philipp Reisner21114382011-01-19 12:26:59 +01002577{
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002578 struct drbd_tconn *tconn = container_of(kref, struct drbd_tconn, kref);
2579
Philipp Reisner12038a32011-11-09 19:18:00 +01002580 if (atomic_read(&tconn->current_epoch->epoch_size) != 0)
2581 conn_err(tconn, "epoch_size:%d\n", atomic_read(&tconn->current_epoch->epoch_size));
2582 kfree(tconn->current_epoch);
2583
Philipp Reisner062e8792011-02-08 11:09:18 +01002584 idr_destroy(&tconn->volumes);
Philipp Reisner21114382011-01-19 12:26:59 +01002585
Philipp Reisner774b3052011-02-22 02:07:03 -05002586 free_cpumask_var(tconn->cpu_mask);
Andreas Gruenbachere6ef8a52011-03-24 18:07:54 +01002587 drbd_free_socket(&tconn->meta);
2588 drbd_free_socket(&tconn->data);
Philipp Reisner21114382011-01-19 12:26:59 +01002589 kfree(tconn->name);
Philipp Reisnerb42a70a2011-01-27 10:55:20 +01002590 kfree(tconn->int_dig_in);
2591 kfree(tconn->int_dig_vv);
Philipp Reisner21114382011-01-19 12:26:59 +01002592 kfree(tconn);
2593}
2594
Lars Ellenberg113fef92013-03-22 18:14:40 -06002595int init_submitter(struct drbd_conf *mdev)
2596{
2597 /* opencoded create_singlethread_workqueue(),
2598 * to be able to say "drbd%d", ..., minor */
2599 mdev->submit.wq = alloc_workqueue("drbd%u_submit",
2600 WQ_UNBOUND | WQ_MEM_RECLAIM, 1, mdev->minor);
2601 if (!mdev->submit.wq)
2602 return -ENOMEM;
2603
2604 INIT_WORK(&mdev->submit.worker, do_submit);
2605 spin_lock_init(&mdev->submit.lock);
2606 INIT_LIST_HEAD(&mdev->submit.writes);
2607 return 0;
2608}
2609
Philipp Reisner774b3052011-02-22 02:07:03 -05002610enum drbd_ret_code conn_new_minor(struct drbd_tconn *tconn, unsigned int minor, int vnr)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002611{
2612 struct drbd_conf *mdev;
2613 struct gendisk *disk;
2614 struct request_queue *q;
Philipp Reisner774b3052011-02-22 02:07:03 -05002615 int vnr_got = vnr;
Philipp Reisner81a5d602011-02-22 19:53:16 -05002616 int minor_got = minor;
Lars Ellenberg8432b312011-03-08 16:11:16 +01002617 enum drbd_ret_code err = ERR_NOMEM;
Philipp Reisner774b3052011-02-22 02:07:03 -05002618
2619 mdev = minor_to_mdev(minor);
2620 if (mdev)
2621 return ERR_MINOR_EXISTS;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002622
2623 /* GFP_KERNEL, we are outside of all write-out paths */
2624 mdev = kzalloc(sizeof(struct drbd_conf), GFP_KERNEL);
2625 if (!mdev)
Philipp Reisner774b3052011-02-22 02:07:03 -05002626 return ERR_NOMEM;
2627
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002628 kref_get(&tconn->kref);
Philipp Reisner774b3052011-02-22 02:07:03 -05002629 mdev->tconn = tconn;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002630
2631 mdev->minor = minor;
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002632 mdev->vnr = vnr;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002633
2634 drbd_init_set_defaults(mdev);
2635
2636 q = blk_alloc_queue(GFP_KERNEL);
2637 if (!q)
2638 goto out_no_q;
2639 mdev->rq_queue = q;
2640 q->queuedata = mdev;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002641
2642 disk = alloc_disk(1);
2643 if (!disk)
2644 goto out_no_disk;
2645 mdev->vdisk = disk;
2646
Andreas Gruenbacher81e84652010-12-09 15:03:57 +01002647 set_disk_ro(disk, true);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002648
2649 disk->queue = q;
2650 disk->major = DRBD_MAJOR;
2651 disk->first_minor = minor;
2652 disk->fops = &drbd_ops;
2653 sprintf(disk->disk_name, "drbd%d", minor);
2654 disk->private_data = mdev;
2655
2656 mdev->this_bdev = bdget(MKDEV(DRBD_MAJOR, minor));
2657 /* we have no partitions. we contain only ourselves. */
2658 mdev->this_bdev->bd_contains = mdev->this_bdev;
2659
2660 q->backing_dev_info.congested_fn = drbd_congested;
2661 q->backing_dev_info.congested_data = mdev;
2662
Andreas Gruenbacher2f58dcf2010-12-13 17:48:19 +01002663 blk_queue_make_request(q, drbd_make_request);
Lars Ellenberga73ff322012-06-25 19:15:38 +02002664 blk_queue_flush(q, REQ_FLUSH | REQ_FUA);
Philipp Reisner99432fc2011-05-20 16:39:13 +02002665 /* Setting the max_hw_sectors to an odd value of 8kibyte here
2666 This triggers a max_bio_size message upon first attach or connect */
2667 blk_queue_max_hw_sectors(q, DRBD_MAX_BIO_SIZE_SAFE >> 8);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002668 blk_queue_bounce_limit(q, BLK_BOUNCE_ANY);
2669 blk_queue_merge_bvec(q, drbd_merge_bvec);
Philipp Reisner87eeee42011-01-19 14:16:30 +01002670 q->queue_lock = &mdev->tconn->req_lock; /* needed since we use */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002671
2672 mdev->md_io_page = alloc_page(GFP_KERNEL);
2673 if (!mdev->md_io_page)
2674 goto out_no_io_page;
2675
2676 if (drbd_bm_init(mdev))
2677 goto out_no_bitmap;
Andreas Gruenbacherdac13892011-01-21 17:18:39 +01002678 mdev->read_requests = RB_ROOT;
Andreas Gruenbacherde696712011-01-20 15:00:24 +01002679 mdev->write_requests = RB_ROOT;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002680
Tejun Heo56de2102013-02-27 17:04:01 -08002681 minor_got = idr_alloc(&minors, mdev, minor, minor + 1, GFP_KERNEL);
2682 if (minor_got < 0) {
2683 if (minor_got == -ENOSPC) {
2684 err = ERR_MINOR_EXISTS;
2685 drbd_msg_put_info("requested minor exists already");
2686 }
Lars Ellenberg8432b312011-03-08 16:11:16 +01002687 goto out_no_minor_idr;
Tejun Heo56de2102013-02-27 17:04:01 -08002688 }
2689
2690 vnr_got = idr_alloc(&tconn->volumes, mdev, vnr, vnr + 1, GFP_KERNEL);
2691 if (vnr_got < 0) {
2692 if (vnr_got == -ENOSPC) {
2693 err = ERR_INVALID_REQUEST;
2694 drbd_msg_put_info("requested volume exists already");
2695 }
Lars Ellenberg8432b312011-03-08 16:11:16 +01002696 goto out_idr_remove_minor;
Lars Ellenberg569083c2011-03-07 09:49:02 +01002697 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07002698
Lars Ellenberg113fef92013-03-22 18:14:40 -06002699 if (init_submitter(mdev)) {
2700 err = ERR_NOMEM;
2701 drbd_msg_put_info("unable to create submit workqueue");
2702 goto out_idr_remove_vol;
2703 }
2704
Philipp Reisner774b3052011-02-22 02:07:03 -05002705 add_disk(disk);
Philipp Reisner81fa2e62011-05-04 15:10:30 +02002706 kref_init(&mdev->kref); /* one ref for both idrs and the the add_disk */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002707
Philipp Reisner2325eb62011-03-15 16:56:18 +01002708 /* inherit the connection state */
2709 mdev->state.conn = tconn->cstate;
2710 if (mdev->state.conn == C_WF_REPORT_PARAMS)
Philipp Reisnerc141ebd2011-05-05 16:13:10 +02002711 drbd_connected(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002712
Philipp Reisner774b3052011-02-22 02:07:03 -05002713 return NO_ERROR;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002714
Lars Ellenberg113fef92013-03-22 18:14:40 -06002715out_idr_remove_vol:
2716 idr_remove(&tconn->volumes, vnr_got);
Lars Ellenberg8432b312011-03-08 16:11:16 +01002717out_idr_remove_minor:
2718 idr_remove(&minors, minor_got);
Lars Ellenberg569083c2011-03-07 09:49:02 +01002719 synchronize_rcu();
Lars Ellenberg8432b312011-03-08 16:11:16 +01002720out_no_minor_idr:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002721 drbd_bm_cleanup(mdev);
2722out_no_bitmap:
2723 __free_page(mdev->md_io_page);
2724out_no_io_page:
2725 put_disk(disk);
2726out_no_disk:
2727 blk_cleanup_queue(q);
2728out_no_q:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002729 kfree(mdev);
Philipp Reisner9dc9fbb2011-04-22 15:23:32 +02002730 kref_put(&tconn->kref, &conn_destroy);
Lars Ellenberg8432b312011-03-08 16:11:16 +01002731 return err;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002732}
2733
Philipp Reisnerb411b362009-09-25 16:07:19 -07002734int __init drbd_init(void)
2735{
2736 int err;
2737
Philipp Reisner2b8a90b2011-01-10 11:15:17 +01002738 if (minor_count < DRBD_MINOR_COUNT_MIN || minor_count > DRBD_MINOR_COUNT_MAX) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002739 printk(KERN_ERR
Philipp Reisner81a5d602011-02-22 19:53:16 -05002740 "drbd: invalid minor_count (%d)\n", minor_count);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002741#ifdef MODULE
2742 return -EINVAL;
2743#else
Andreas Gruenbacher46530e82011-05-31 13:08:53 +02002744 minor_count = DRBD_MINOR_COUNT_DEF;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002745#endif
2746 }
2747
Philipp Reisnerb411b362009-09-25 16:07:19 -07002748 err = register_blkdev(DRBD_MAJOR, "drbd");
2749 if (err) {
2750 printk(KERN_ERR
2751 "drbd: unable to register block device major %d\n",
2752 DRBD_MAJOR);
2753 return err;
2754 }
2755
2756 register_reboot_notifier(&drbd_notifier);
2757
2758 /*
2759 * allocate all necessary structs
2760 */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002761 init_waitqueue_head(&drbd_pp_wait);
2762
2763 drbd_proc = NULL; /* play safe for drbd_cleanup */
Philipp Reisner81a5d602011-02-22 19:53:16 -05002764 idr_init(&minors);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002765
Lars Ellenberg69babf02013-10-23 10:59:15 +02002766 rwlock_init(&global_state_lock);
2767 INIT_LIST_HEAD(&drbd_tconns);
2768
2769 err = drbd_genl_register();
2770 if (err) {
2771 printk(KERN_ERR "drbd: unable to register generic netlink family\n");
2772 goto fail;
2773 }
2774
Philipp Reisnerb411b362009-09-25 16:07:19 -07002775 err = drbd_create_mempools();
2776 if (err)
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002777 goto fail;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002778
Wei Yongjun6110d702013-06-25 16:50:04 +02002779 err = -ENOMEM;
Lars Ellenberg8c484ee2010-03-11 16:47:58 +01002780 drbd_proc = proc_create_data("drbd", S_IFREG | S_IRUGO , NULL, &drbd_proc_fops, NULL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002781 if (!drbd_proc) {
2782 printk(KERN_ERR "drbd: unable to register proc file\n");
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002783 goto fail;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002784 }
2785
Lars Ellenberg2312f0b32011-11-24 10:36:25 +01002786 retry.wq = create_singlethread_workqueue("drbd-reissue");
2787 if (!retry.wq) {
2788 printk(KERN_ERR "drbd: unable to create retry workqueue\n");
2789 goto fail;
2790 }
2791 INIT_WORK(&retry.worker, do_retry);
2792 spin_lock_init(&retry.lock);
2793 INIT_LIST_HEAD(&retry.writes);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002794
2795 printk(KERN_INFO "drbd: initialized. "
2796 "Version: " REL_VERSION " (api:%d/proto:%d-%d)\n",
2797 API_VERSION, PRO_VERSION_MIN, PRO_VERSION_MAX);
2798 printk(KERN_INFO "drbd: %s\n", drbd_buildtag());
2799 printk(KERN_INFO "drbd: registered as block device major %d\n",
2800 DRBD_MAJOR);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002801
2802 return 0; /* Success! */
2803
Lars Ellenberg3b98c0c2011-03-07 12:49:34 +01002804fail:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002805 drbd_cleanup();
2806 if (err == -ENOMEM)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002807 printk(KERN_ERR "drbd: ran out of memory\n");
2808 else
2809 printk(KERN_ERR "drbd: initialization failure\n");
2810 return err;
2811}
2812
2813void drbd_free_bc(struct drbd_backing_dev *ldev)
2814{
2815 if (ldev == NULL)
2816 return;
2817
Tejun Heoe525fd82010-11-13 11:55:17 +01002818 blkdev_put(ldev->backing_bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL);
2819 blkdev_put(ldev->md_bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002820
Lars Ellenberg94ad0a12013-03-27 14:08:42 +01002821 kfree(ldev->disk_conf);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002822 kfree(ldev);
2823}
2824
Philipp Reisner360cc742011-02-08 14:29:53 +01002825void drbd_free_sock(struct drbd_tconn *tconn)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002826{
Philipp Reisner360cc742011-02-08 14:29:53 +01002827 if (tconn->data.socket) {
2828 mutex_lock(&tconn->data.mutex);
2829 kernel_sock_shutdown(tconn->data.socket, SHUT_RDWR);
2830 sock_release(tconn->data.socket);
2831 tconn->data.socket = NULL;
2832 mutex_unlock(&tconn->data.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002833 }
Philipp Reisner360cc742011-02-08 14:29:53 +01002834 if (tconn->meta.socket) {
2835 mutex_lock(&tconn->meta.mutex);
2836 kernel_sock_shutdown(tconn->meta.socket, SHUT_RDWR);
2837 sock_release(tconn->meta.socket);
2838 tconn->meta.socket = NULL;
2839 mutex_unlock(&tconn->meta.mutex);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002840 }
2841}
2842
Philipp Reisnerb411b362009-09-25 16:07:19 -07002843/* meta data management */
2844
Philipp Reisner19fffd72012-08-28 16:48:03 +02002845void conn_md_sync(struct drbd_tconn *tconn)
2846{
2847 struct drbd_conf *mdev;
2848 int vnr;
2849
2850 rcu_read_lock();
2851 idr_for_each_entry(&tconn->volumes, mdev, vnr) {
2852 kref_get(&mdev->kref);
2853 rcu_read_unlock();
2854 drbd_md_sync(mdev);
2855 kref_put(&mdev->kref, &drbd_minor_destroy);
2856 rcu_read_lock();
2857 }
2858 rcu_read_unlock();
2859}
2860
Lars Ellenbergae8bf312013-03-19 18:16:43 +01002861/* aligned 4kByte */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002862struct meta_data_on_disk {
Lars Ellenbergcccac982013-03-19 18:16:46 +01002863 u64 la_size_sect; /* last agreed size. */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002864 u64 uuid[UI_SIZE]; /* UUIDs. */
2865 u64 device_uuid;
2866 u64 reserved_u64_1;
2867 u32 flags; /* MDF */
2868 u32 magic;
2869 u32 md_size_sect;
2870 u32 al_offset; /* offset to this block */
Lars Ellenbergae8bf312013-03-19 18:16:43 +01002871 u32 al_nr_extents; /* important for restoring the AL (userspace) */
Lars Ellenbergf3990022011-03-23 14:31:09 +01002872 /* `-- act_log->nr_elements <-- ldev->dc.al_extents */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002873 u32 bm_offset; /* offset to the bitmap, from here */
2874 u32 bm_bytes_per_bit; /* BM_BLOCK_SIZE */
Philipp Reisner99432fc2011-05-20 16:39:13 +02002875 u32 la_peer_max_bio_size; /* last peer max_bio_size */
Philipp Reisnerb411b362009-09-25 16:07:19 -07002876
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01002877 /* see al_tr_number_to_on_disk_sector() */
2878 u32 al_stripes;
2879 u32 al_stripe_size_4k;
2880
2881 u8 reserved_u8[4096 - (7*8 + 10*4)];
Philipp Reisnerb411b362009-09-25 16:07:19 -07002882} __packed;
2883
Philipp Reisnerd752b262013-06-25 16:50:08 +02002884
2885
2886void drbd_md_write(struct drbd_conf *mdev, void *b)
Philipp Reisnerb411b362009-09-25 16:07:19 -07002887{
Philipp Reisnerd752b262013-06-25 16:50:08 +02002888 struct meta_data_on_disk *buffer = b;
Philipp Reisnerb411b362009-09-25 16:07:19 -07002889 sector_t sector;
2890 int i;
2891
Lars Ellenbergae8bf312013-03-19 18:16:43 +01002892 memset(buffer, 0, sizeof(*buffer));
Philipp Reisnerb411b362009-09-25 16:07:19 -07002893
Lars Ellenbergcccac982013-03-19 18:16:46 +01002894 buffer->la_size_sect = cpu_to_be64(drbd_get_capacity(mdev->this_bdev));
Philipp Reisnerb411b362009-09-25 16:07:19 -07002895 for (i = UI_CURRENT; i < UI_SIZE; i++)
2896 buffer->uuid[i] = cpu_to_be64(mdev->ldev->md.uuid[i]);
2897 buffer->flags = cpu_to_be32(mdev->ldev->md.flags);
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02002898 buffer->magic = cpu_to_be32(DRBD_MD_MAGIC_84_UNCLEAN);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002899
2900 buffer->md_size_sect = cpu_to_be32(mdev->ldev->md.md_size_sect);
2901 buffer->al_offset = cpu_to_be32(mdev->ldev->md.al_offset);
2902 buffer->al_nr_extents = cpu_to_be32(mdev->act_log->nr_elements);
2903 buffer->bm_bytes_per_bit = cpu_to_be32(BM_BLOCK_SIZE);
2904 buffer->device_uuid = cpu_to_be64(mdev->ldev->md.device_uuid);
2905
2906 buffer->bm_offset = cpu_to_be32(mdev->ldev->md.bm_offset);
Philipp Reisner99432fc2011-05-20 16:39:13 +02002907 buffer->la_peer_max_bio_size = cpu_to_be32(mdev->peer_max_bio_size);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002908
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01002909 buffer->al_stripes = cpu_to_be32(mdev->ldev->md.al_stripes);
2910 buffer->al_stripe_size_4k = cpu_to_be32(mdev->ldev->md.al_stripe_size_4k);
2911
2912 D_ASSERT(drbd_md_ss(mdev->ldev) == mdev->ldev->md.md_offset);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002913 sector = mdev->ldev->md.md_offset;
2914
Andreas Gruenbacher3fbf4d22010-12-13 02:25:41 +01002915 if (drbd_md_sync_page_io(mdev, mdev->ldev, sector, WRITE)) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07002916 /* this was a try anyways ... */
2917 dev_err(DEV, "meta data update failed!\n");
Lars Ellenberg383606e2012-06-14 14:21:32 +02002918 drbd_chk_io_error(mdev, 1, DRBD_META_IO_ERROR);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002919 }
Philipp Reisnerd752b262013-06-25 16:50:08 +02002920}
2921
2922/**
2923 * drbd_md_sync() - Writes the meta data super block if the MD_DIRTY flag bit is set
2924 * @mdev: DRBD device.
2925 */
2926void drbd_md_sync(struct drbd_conf *mdev)
2927{
2928 struct meta_data_on_disk *buffer;
2929
2930 /* Don't accidentally change the DRBD meta data layout. */
2931 BUILD_BUG_ON(UI_SIZE != 4);
2932 BUILD_BUG_ON(sizeof(struct meta_data_on_disk) != 4096);
2933
2934 del_timer(&mdev->md_sync_timer);
2935 /* timer may be rearmed by drbd_md_mark_dirty() now. */
2936 if (!test_and_clear_bit(MD_DIRTY, &mdev->flags))
2937 return;
2938
2939 /* We use here D_FAILED and not D_ATTACHING because we try to write
2940 * metadata even if we detach due to a disk failure! */
2941 if (!get_ldev_if_state(mdev, D_FAILED))
2942 return;
2943
2944 buffer = drbd_md_get_buffer(mdev);
2945 if (!buffer)
2946 goto out;
2947
2948 drbd_md_write(mdev, buffer);
Philipp Reisnerb411b362009-09-25 16:07:19 -07002949
2950 /* Update mdev->ldev->md.la_size_sect,
2951 * since we updated it on metadata. */
2952 mdev->ldev->md.la_size_sect = drbd_get_capacity(mdev->this_bdev);
2953
Philipp Reisnere1711732011-06-27 11:51:46 +02002954 drbd_md_put_buffer(mdev);
2955out:
Philipp Reisnerb411b362009-09-25 16:07:19 -07002956 put_ldev(mdev);
2957}
2958
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01002959static int check_activity_log_stripe_size(struct drbd_conf *mdev,
2960 struct meta_data_on_disk *on_disk,
2961 struct drbd_md *in_core)
2962{
2963 u32 al_stripes = be32_to_cpu(on_disk->al_stripes);
2964 u32 al_stripe_size_4k = be32_to_cpu(on_disk->al_stripe_size_4k);
2965 u64 al_size_4k;
2966
2967 /* both not set: default to old fixed size activity log */
2968 if (al_stripes == 0 && al_stripe_size_4k == 0) {
2969 al_stripes = 1;
2970 al_stripe_size_4k = MD_32kB_SECT/8;
2971 }
2972
2973 /* some paranoia plausibility checks */
2974
2975 /* we need both values to be set */
2976 if (al_stripes == 0 || al_stripe_size_4k == 0)
2977 goto err;
2978
2979 al_size_4k = (u64)al_stripes * al_stripe_size_4k;
2980
2981 /* Upper limit of activity log area, to avoid potential overflow
2982 * problems in al_tr_number_to_on_disk_sector(). As right now, more
2983 * than 72 * 4k blocks total only increases the amount of history,
2984 * limiting this arbitrarily to 16 GB is not a real limitation ;-) */
2985 if (al_size_4k > (16 * 1024 * 1024/4))
2986 goto err;
2987
2988 /* Lower limit: we need at least 8 transaction slots (32kB)
2989 * to not break existing setups */
2990 if (al_size_4k < MD_32kB_SECT/8)
2991 goto err;
2992
2993 in_core->al_stripe_size_4k = al_stripe_size_4k;
2994 in_core->al_stripes = al_stripes;
2995 in_core->al_size_4k = al_size_4k;
2996
2997 return 0;
2998err:
2999 dev_err(DEV, "invalid activity log striping: al_stripes=%u, al_stripe_size_4k=%u\n",
3000 al_stripes, al_stripe_size_4k);
3001 return -EINVAL;
3002}
3003
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003004static int check_offsets_and_sizes(struct drbd_conf *mdev, struct drbd_backing_dev *bdev)
3005{
3006 sector_t capacity = drbd_get_capacity(bdev->md_bdev);
3007 struct drbd_md *in_core = &bdev->md;
3008 s32 on_disk_al_sect;
3009 s32 on_disk_bm_sect;
3010
3011 /* The on-disk size of the activity log, calculated from offsets, and
3012 * the size of the activity log calculated from the stripe settings,
3013 * should match.
3014 * Though we could relax this a bit: it is ok, if the striped activity log
3015 * fits in the available on-disk activity log size.
3016 * Right now, that would break how resize is implemented.
3017 * TODO: make drbd_determine_dev_size() (and the drbdmeta tool) aware
3018 * of possible unused padding space in the on disk layout. */
3019 if (in_core->al_offset < 0) {
3020 if (in_core->bm_offset > in_core->al_offset)
3021 goto err;
3022 on_disk_al_sect = -in_core->al_offset;
3023 on_disk_bm_sect = in_core->al_offset - in_core->bm_offset;
3024 } else {
3025 if (in_core->al_offset != MD_4kB_SECT)
3026 goto err;
3027 if (in_core->bm_offset < in_core->al_offset + in_core->al_size_4k * MD_4kB_SECT)
3028 goto err;
3029
3030 on_disk_al_sect = in_core->bm_offset - MD_4kB_SECT;
3031 on_disk_bm_sect = in_core->md_size_sect - in_core->bm_offset;
3032 }
3033
3034 /* old fixed size meta data is exactly that: fixed. */
3035 if (in_core->meta_dev_idx >= 0) {
3036 if (in_core->md_size_sect != MD_128MB_SECT
3037 || in_core->al_offset != MD_4kB_SECT
3038 || in_core->bm_offset != MD_4kB_SECT + MD_32kB_SECT
3039 || in_core->al_stripes != 1
3040 || in_core->al_stripe_size_4k != MD_32kB_SECT/8)
3041 goto err;
3042 }
3043
3044 if (capacity < in_core->md_size_sect)
3045 goto err;
3046 if (capacity - in_core->md_size_sect < drbd_md_first_sector(bdev))
3047 goto err;
3048
3049 /* should be aligned, and at least 32k */
3050 if ((on_disk_al_sect & 7) || (on_disk_al_sect < MD_32kB_SECT))
3051 goto err;
3052
3053 /* should fit (for now: exactly) into the available on-disk space;
3054 * overflow prevention is in check_activity_log_stripe_size() above. */
3055 if (on_disk_al_sect != in_core->al_size_4k * MD_4kB_SECT)
3056 goto err;
3057
3058 /* again, should be aligned */
3059 if (in_core->bm_offset & 7)
3060 goto err;
3061
3062 /* FIXME check for device grow with flex external meta data? */
3063
3064 /* can the available bitmap space cover the last agreed device size? */
3065 if (on_disk_bm_sect < (in_core->la_size_sect+7)/MD_4kB_SECT/8/512)
3066 goto err;
3067
3068 return 0;
3069
3070err:
3071 dev_err(DEV, "meta data offsets don't make sense: idx=%d "
3072 "al_s=%u, al_sz4k=%u, al_offset=%d, bm_offset=%d, "
3073 "md_size_sect=%u, la_size=%llu, md_capacity=%llu\n",
3074 in_core->meta_dev_idx,
3075 in_core->al_stripes, in_core->al_stripe_size_4k,
3076 in_core->al_offset, in_core->bm_offset, in_core->md_size_sect,
3077 (unsigned long long)in_core->la_size_sect,
3078 (unsigned long long)capacity);
3079
3080 return -EINVAL;
3081}
3082
3083
Philipp Reisnerb411b362009-09-25 16:07:19 -07003084/**
3085 * drbd_md_read() - Reads in the meta data super block
3086 * @mdev: DRBD device.
3087 * @bdev: Device from which the meta data should be read in.
3088 *
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003089 * Return NO_ERROR on success, and an enum drbd_ret_code in case
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003090 * something goes wrong.
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003091 *
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003092 * Called exactly once during drbd_adm_attach(), while still being D_DISKLESS,
3093 * even before @bdev is assigned to @mdev->ldev.
Philipp Reisnerb411b362009-09-25 16:07:19 -07003094 */
3095int drbd_md_read(struct drbd_conf *mdev, struct drbd_backing_dev *bdev)
3096{
3097 struct meta_data_on_disk *buffer;
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003098 u32 magic, flags;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003099 int i, rv = NO_ERROR;
3100
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003101 if (mdev->state.disk != D_DISKLESS)
3102 return ERR_DISK_CONFIGURED;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003103
Philipp Reisnere1711732011-06-27 11:51:46 +02003104 buffer = drbd_md_get_buffer(mdev);
3105 if (!buffer)
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003106 return ERR_NOMEM;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003107
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003108 /* First, figure out where our meta data superblock is located,
3109 * and read it. */
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003110 bdev->md.meta_dev_idx = bdev->disk_conf->meta_dev_idx;
3111 bdev->md.md_offset = drbd_md_ss(bdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003112
Andreas Gruenbacher3fbf4d22010-12-13 02:25:41 +01003113 if (drbd_md_sync_page_io(mdev, bdev, bdev->md.md_offset, READ)) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003114 /* NOTE: can't do normal error processing here as this is
Philipp Reisnerb411b362009-09-25 16:07:19 -07003115 called BEFORE disk is attached */
3116 dev_err(DEV, "Error while reading metadata.\n");
3117 rv = ERR_IO_MD_DISK;
3118 goto err;
3119 }
3120
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003121 magic = be32_to_cpu(buffer->magic);
3122 flags = be32_to_cpu(buffer->flags);
3123 if (magic == DRBD_MD_MAGIC_84_UNCLEAN ||
3124 (magic == DRBD_MD_MAGIC_08 && !(flags & MDF_AL_CLEAN))) {
3125 /* btw: that's Activity Log clean, not "all" clean. */
3126 dev_err(DEV, "Found unclean meta data. Did you \"drbdadm apply-al\"?\n");
3127 rv = ERR_MD_UNCLEAN;
3128 goto err;
3129 }
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003130
3131 rv = ERR_MD_INVALID;
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003132 if (magic != DRBD_MD_MAGIC_08) {
Philipp Reisner43de7c82011-11-10 13:16:13 +01003133 if (magic == DRBD_MD_MAGIC_07)
Lars Ellenbergd5d7ebd2011-07-05 20:59:26 +02003134 dev_err(DEV, "Found old (0.7) meta data magic. Did you \"drbdadm create-md\"?\n");
3135 else
3136 dev_err(DEV, "Meta data magic not found. Did you \"drbdadm create-md\"?\n");
Philipp Reisnerb411b362009-09-25 16:07:19 -07003137 goto err;
3138 }
3139
3140 if (be32_to_cpu(buffer->bm_bytes_per_bit) != BM_BLOCK_SIZE) {
3141 dev_err(DEV, "unexpected bm_bytes_per_bit: %u (expected %u)\n",
3142 be32_to_cpu(buffer->bm_bytes_per_bit), BM_BLOCK_SIZE);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003143 goto err;
3144 }
3145
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003146
3147 /* convert to in_core endian */
3148 bdev->md.la_size_sect = be64_to_cpu(buffer->la_size_sect);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003149 for (i = UI_CURRENT; i < UI_SIZE; i++)
3150 bdev->md.uuid[i] = be64_to_cpu(buffer->uuid[i]);
3151 bdev->md.flags = be32_to_cpu(buffer->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003152 bdev->md.device_uuid = be64_to_cpu(buffer->device_uuid);
3153
Lars Ellenbergc04ccaa2013-03-19 18:16:47 +01003154 bdev->md.md_size_sect = be32_to_cpu(buffer->md_size_sect);
3155 bdev->md.al_offset = be32_to_cpu(buffer->al_offset);
3156 bdev->md.bm_offset = be32_to_cpu(buffer->bm_offset);
3157
3158 if (check_activity_log_stripe_size(mdev, buffer, &bdev->md))
3159 goto err;
3160 if (check_offsets_and_sizes(mdev, bdev))
3161 goto err;
3162
Philipp Reisnerb411b362009-09-25 16:07:19 -07003163 if (be32_to_cpu(buffer->bm_offset) != bdev->md.bm_offset) {
3164 dev_err(DEV, "unexpected bm_offset: %d (expected %d)\n",
3165 be32_to_cpu(buffer->bm_offset), bdev->md.bm_offset);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003166 goto err;
3167 }
3168 if (be32_to_cpu(buffer->md_size_sect) != bdev->md.md_size_sect) {
3169 dev_err(DEV, "unexpected md_size: %u (expected %u)\n",
3170 be32_to_cpu(buffer->md_size_sect), bdev->md.md_size_sect);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003171 goto err;
3172 }
3173
Lars Ellenberg3a4d4eb2013-03-19 18:16:44 +01003174 rv = NO_ERROR;
3175
Philipp Reisner87eeee42011-01-19 14:16:30 +01003176 spin_lock_irq(&mdev->tconn->req_lock);
Philipp Reisner99432fc2011-05-20 16:39:13 +02003177 if (mdev->state.conn < C_CONNECTED) {
Lars Ellenbergdb141b22012-06-25 19:15:58 +02003178 unsigned int peer;
Philipp Reisner99432fc2011-05-20 16:39:13 +02003179 peer = be32_to_cpu(buffer->la_peer_max_bio_size);
Lars Ellenbergdb141b22012-06-25 19:15:58 +02003180 peer = max(peer, DRBD_MAX_BIO_SIZE_SAFE);
Philipp Reisner99432fc2011-05-20 16:39:13 +02003181 mdev->peer_max_bio_size = peer;
3182 }
Philipp Reisner87eeee42011-01-19 14:16:30 +01003183 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003184
3185 err:
Philipp Reisnere1711732011-06-27 11:51:46 +02003186 drbd_md_put_buffer(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003187
3188 return rv;
3189}
3190
3191/**
3192 * drbd_md_mark_dirty() - Mark meta data super block as dirty
3193 * @mdev: DRBD device.
3194 *
3195 * Call this function if you change anything that should be written to
3196 * the meta-data super block. This function sets MD_DIRTY, and starts a
3197 * timer that ensures that within five seconds you have to call drbd_md_sync().
3198 */
Lars Ellenbergca0e6092010-10-14 15:01:21 +02003199#ifdef DEBUG
Lars Ellenbergee15b032010-09-03 10:00:09 +02003200void drbd_md_mark_dirty_(struct drbd_conf *mdev, unsigned int line, const char *func)
3201{
3202 if (!test_and_set_bit(MD_DIRTY, &mdev->flags)) {
3203 mod_timer(&mdev->md_sync_timer, jiffies + HZ);
3204 mdev->last_md_mark_dirty.line = line;
3205 mdev->last_md_mark_dirty.func = func;
3206 }
3207}
3208#else
Philipp Reisnerb411b362009-09-25 16:07:19 -07003209void drbd_md_mark_dirty(struct drbd_conf *mdev)
3210{
Lars Ellenbergee15b032010-09-03 10:00:09 +02003211 if (!test_and_set_bit(MD_DIRTY, &mdev->flags))
Lars Ellenbergca0e6092010-10-14 15:01:21 +02003212 mod_timer(&mdev->md_sync_timer, jiffies + 5*HZ);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003213}
Lars Ellenbergee15b032010-09-03 10:00:09 +02003214#endif
Philipp Reisnerb411b362009-09-25 16:07:19 -07003215
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003216void drbd_uuid_move_history(struct drbd_conf *mdev) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003217{
3218 int i;
3219
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003220 for (i = UI_HISTORY_START; i < UI_HISTORY_END; i++)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003221 mdev->ldev->md.uuid[i+1] = mdev->ldev->md.uuid[i];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003222}
3223
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003224void __drbd_uuid_set(struct drbd_conf *mdev, int idx, u64 val) __must_hold(local)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003225{
3226 if (idx == UI_CURRENT) {
3227 if (mdev->state.role == R_PRIMARY)
3228 val |= 1;
3229 else
3230 val &= ~((u64)1);
3231
3232 drbd_set_ed_uuid(mdev, val);
3233 }
3234
3235 mdev->ldev->md.uuid[idx] = val;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003236 drbd_md_mark_dirty(mdev);
3237}
3238
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003239void _drbd_uuid_set(struct drbd_conf *mdev, int idx, u64 val) __must_hold(local)
3240{
3241 unsigned long flags;
3242 spin_lock_irqsave(&mdev->ldev->md.uuid_lock, flags);
3243 __drbd_uuid_set(mdev, idx, val);
3244 spin_unlock_irqrestore(&mdev->ldev->md.uuid_lock, flags);
3245}
Philipp Reisnerb411b362009-09-25 16:07:19 -07003246
3247void drbd_uuid_set(struct drbd_conf *mdev, int idx, u64 val) __must_hold(local)
3248{
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003249 unsigned long flags;
3250 spin_lock_irqsave(&mdev->ldev->md.uuid_lock, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003251 if (mdev->ldev->md.uuid[idx]) {
3252 drbd_uuid_move_history(mdev);
3253 mdev->ldev->md.uuid[UI_HISTORY_START] = mdev->ldev->md.uuid[idx];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003254 }
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003255 __drbd_uuid_set(mdev, idx, val);
3256 spin_unlock_irqrestore(&mdev->ldev->md.uuid_lock, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003257}
3258
3259/**
3260 * drbd_uuid_new_current() - Creates a new current UUID
3261 * @mdev: DRBD device.
3262 *
3263 * Creates a new current UUID, and rotates the old current UUID into
3264 * the bitmap slot. Causes an incremental resync upon next connect.
3265 */
3266void drbd_uuid_new_current(struct drbd_conf *mdev) __must_hold(local)
3267{
3268 u64 val;
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003269 unsigned long long bm_uuid;
3270
3271 get_random_bytes(&val, sizeof(u64));
3272
3273 spin_lock_irq(&mdev->ldev->md.uuid_lock);
3274 bm_uuid = mdev->ldev->md.uuid[UI_BITMAP];
Philipp Reisnerb411b362009-09-25 16:07:19 -07003275
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003276 if (bm_uuid)
3277 dev_warn(DEV, "bm UUID was already set: %llX\n", bm_uuid);
3278
Philipp Reisnerb411b362009-09-25 16:07:19 -07003279 mdev->ldev->md.uuid[UI_BITMAP] = mdev->ldev->md.uuid[UI_CURRENT];
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003280 __drbd_uuid_set(mdev, UI_CURRENT, val);
3281 spin_unlock_irq(&mdev->ldev->md.uuid_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003282
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003283 drbd_print_uuids(mdev, "new current UUID");
Lars Ellenbergaaa8e2b2010-10-15 13:16:53 +02003284 /* get it to stable storage _now_ */
3285 drbd_md_sync(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003286}
3287
3288void drbd_uuid_set_bm(struct drbd_conf *mdev, u64 val) __must_hold(local)
3289{
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003290 unsigned long flags;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003291 if (mdev->ldev->md.uuid[UI_BITMAP] == 0 && val == 0)
3292 return;
3293
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003294 spin_lock_irqsave(&mdev->ldev->md.uuid_lock, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003295 if (val == 0) {
3296 drbd_uuid_move_history(mdev);
3297 mdev->ldev->md.uuid[UI_HISTORY_START] = mdev->ldev->md.uuid[UI_BITMAP];
3298 mdev->ldev->md.uuid[UI_BITMAP] = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003299 } else {
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003300 unsigned long long bm_uuid = mdev->ldev->md.uuid[UI_BITMAP];
3301 if (bm_uuid)
3302 dev_warn(DEV, "bm UUID was already set: %llX\n", bm_uuid);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003303
Lars Ellenberg62b0da32011-01-20 13:25:21 +01003304 mdev->ldev->md.uuid[UI_BITMAP] = val & ~((u64)1);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003305 }
Philipp Reisner9f2247b2012-08-16 14:25:58 +02003306 spin_unlock_irqrestore(&mdev->ldev->md.uuid_lock, flags);
3307
Philipp Reisnerb411b362009-09-25 16:07:19 -07003308 drbd_md_mark_dirty(mdev);
3309}
3310
3311/**
3312 * drbd_bmio_set_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
3313 * @mdev: DRBD device.
3314 *
3315 * Sets all bits in the bitmap and writes the whole bitmap to stable storage.
3316 */
3317int drbd_bmio_set_n_write(struct drbd_conf *mdev)
3318{
3319 int rv = -EIO;
3320
3321 if (get_ldev_if_state(mdev, D_ATTACHING)) {
3322 drbd_md_set_flag(mdev, MDF_FULL_SYNC);
3323 drbd_md_sync(mdev);
3324 drbd_bm_set_all(mdev);
3325
3326 rv = drbd_bm_write(mdev);
3327
3328 if (!rv) {
3329 drbd_md_clear_flag(mdev, MDF_FULL_SYNC);
3330 drbd_md_sync(mdev);
3331 }
3332
3333 put_ldev(mdev);
3334 }
3335
3336 return rv;
3337}
3338
3339/**
3340 * drbd_bmio_clear_n_write() - io_fn for drbd_queue_bitmap_io() or drbd_bitmap_io()
3341 * @mdev: DRBD device.
3342 *
3343 * Clears all bits in the bitmap and writes the whole bitmap to stable storage.
3344 */
3345int drbd_bmio_clear_n_write(struct drbd_conf *mdev)
3346{
3347 int rv = -EIO;
3348
Philipp Reisner07782862010-08-31 12:00:50 +02003349 drbd_resume_al(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003350 if (get_ldev_if_state(mdev, D_ATTACHING)) {
3351 drbd_bm_clear_all(mdev);
3352 rv = drbd_bm_write(mdev);
3353 put_ldev(mdev);
3354 }
3355
3356 return rv;
3357}
3358
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003359static int w_bitmap_io(struct drbd_work *w, int unused)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003360{
3361 struct bm_io_work *work = container_of(w, struct bm_io_work, w);
Philipp Reisner00d56942011-02-09 18:09:48 +01003362 struct drbd_conf *mdev = w->mdev;
Lars Ellenberg02851e92010-12-16 14:47:39 +01003363 int rv = -EIO;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003364
3365 D_ASSERT(atomic_read(&mdev->ap_bio_cnt) == 0);
3366
Lars Ellenberg02851e92010-12-16 14:47:39 +01003367 if (get_ldev(mdev)) {
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003368 drbd_bm_lock(mdev, work->why, work->flags);
Lars Ellenberg02851e92010-12-16 14:47:39 +01003369 rv = work->io_fn(mdev);
3370 drbd_bm_unlock(mdev);
3371 put_ldev(mdev);
3372 }
Philipp Reisnerb411b362009-09-25 16:07:19 -07003373
Lars Ellenberg4738fa12011-02-21 13:20:55 +01003374 clear_bit_unlock(BITMAP_IO, &mdev->flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003375 wake_up(&mdev->misc_wait);
3376
3377 if (work->done)
3378 work->done(mdev, rv);
3379
3380 clear_bit(BITMAP_IO_QUEUED, &mdev->flags);
3381 work->why = NULL;
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003382 work->flags = 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003383
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003384 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003385}
3386
Lars Ellenberg82f59cc2010-10-16 12:13:47 +02003387void drbd_ldev_destroy(struct drbd_conf *mdev)
3388{
3389 lc_destroy(mdev->resync);
3390 mdev->resync = NULL;
3391 lc_destroy(mdev->act_log);
3392 mdev->act_log = NULL;
3393 __no_warn(local,
3394 drbd_free_bc(mdev->ldev);
3395 mdev->ldev = NULL;);
3396
Lars Ellenberg82f59cc2010-10-16 12:13:47 +02003397 clear_bit(GO_DISKLESS, &mdev->flags);
3398}
3399
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003400static int w_go_diskless(struct drbd_work *w, int unused)
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02003401{
Philipp Reisner00d56942011-02-09 18:09:48 +01003402 struct drbd_conf *mdev = w->mdev;
3403
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02003404 D_ASSERT(mdev->state.disk == D_FAILED);
Lars Ellenberg9d282872010-10-14 13:57:07 +02003405 /* we cannot assert local_cnt == 0 here, as get_ldev_if_state will
3406 * inc/dec it frequently. Once we are D_DISKLESS, no one will touch
Lars Ellenberg82f59cc2010-10-16 12:13:47 +02003407 * the protected members anymore, though, so once put_ldev reaches zero
3408 * again, it will be safe to free them. */
Lars Ellenberga2a3c74f2012-09-22 12:26:57 +02003409
3410 /* Try to write changed bitmap pages, read errors may have just
3411 * set some bits outside the area covered by the activity log.
3412 *
3413 * If we have an IO error during the bitmap writeout,
3414 * we will want a full sync next time, just in case.
3415 * (Do we want a specific meta data flag for this?)
3416 *
3417 * If that does not make it to stable storage either,
Philipp Reisnerfd0017c2012-10-19 14:19:23 +02003418 * we cannot do anything about that anymore.
3419 *
3420 * We still need to check if both bitmap and ldev are present, we may
3421 * end up here after a failed attach, before ldev was even assigned.
3422 */
3423 if (mdev->bitmap && mdev->ldev) {
Philipp Reisnerbb451852013-03-27 14:08:39 +01003424 /* An interrupted resync or similar is allowed to recounts bits
3425 * while we detach.
3426 * Any modifications would not be expected anymore, though.
3427 */
Lars Ellenberga2a3c74f2012-09-22 12:26:57 +02003428 if (drbd_bitmap_io_from_worker(mdev, drbd_bm_write,
Philipp Reisnerbb451852013-03-27 14:08:39 +01003429 "detach", BM_LOCKED_TEST_ALLOWED)) {
Lars Ellenbergedc9f5e2012-09-27 15:18:21 +02003430 if (test_bit(WAS_READ_ERROR, &mdev->flags)) {
Lars Ellenberga2a3c74f2012-09-22 12:26:57 +02003431 drbd_md_set_flag(mdev, MDF_FULL_SYNC);
3432 drbd_md_sync(mdev);
3433 }
3434 }
3435 }
3436
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02003437 drbd_force_state(mdev, NS(disk, D_DISKLESS));
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003438 return 0;
Lars Ellenberge9e6f3e2010-09-14 20:26:27 +02003439}
3440
Philipp Reisnerb411b362009-09-25 16:07:19 -07003441/**
3442 * drbd_queue_bitmap_io() - Queues an IO operation on the whole bitmap
3443 * @mdev: DRBD device.
3444 * @io_fn: IO callback to be called when bitmap IO is possible
3445 * @done: callback to be called after the bitmap IO was performed
3446 * @why: Descriptive text of the reason for doing the IO
3447 *
3448 * While IO on the bitmap happens we freeze application IO thus we ensure
3449 * that drbd_set_out_of_sync() can not be called. This function MAY ONLY be
3450 * called from worker context. It MUST NOT be used while a previous such
3451 * work is still pending!
3452 */
3453void drbd_queue_bitmap_io(struct drbd_conf *mdev,
3454 int (*io_fn)(struct drbd_conf *),
3455 void (*done)(struct drbd_conf *, int),
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003456 char *why, enum bm_flag flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003457{
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01003458 D_ASSERT(current == mdev->tconn->worker.task);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003459
3460 D_ASSERT(!test_bit(BITMAP_IO_QUEUED, &mdev->flags));
3461 D_ASSERT(!test_bit(BITMAP_IO, &mdev->flags));
3462 D_ASSERT(list_empty(&mdev->bm_io_work.w.list));
3463 if (mdev->bm_io_work.why)
3464 dev_err(DEV, "FIXME going to queue '%s' but '%s' still pending?\n",
3465 why, mdev->bm_io_work.why);
3466
3467 mdev->bm_io_work.io_fn = io_fn;
3468 mdev->bm_io_work.done = done;
3469 mdev->bm_io_work.why = why;
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003470 mdev->bm_io_work.flags = flags;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003471
Philipp Reisner87eeee42011-01-19 14:16:30 +01003472 spin_lock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003473 set_bit(BITMAP_IO, &mdev->flags);
3474 if (atomic_read(&mdev->ap_bio_cnt) == 0) {
Philipp Reisner127b3172010-11-16 10:07:53 +01003475 if (!test_and_set_bit(BITMAP_IO_QUEUED, &mdev->flags))
Lars Ellenbergd5b27b02011-11-14 15:42:37 +01003476 drbd_queue_work(&mdev->tconn->sender_work, &mdev->bm_io_work.w);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003477 }
Philipp Reisner87eeee42011-01-19 14:16:30 +01003478 spin_unlock_irq(&mdev->tconn->req_lock);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003479}
3480
3481/**
3482 * drbd_bitmap_io() - Does an IO operation on the whole bitmap
3483 * @mdev: DRBD device.
3484 * @io_fn: IO callback to be called when bitmap IO is possible
3485 * @why: Descriptive text of the reason for doing the IO
3486 *
3487 * freezes application IO while that the actual IO operations runs. This
3488 * functions MAY NOT be called from worker context.
3489 */
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003490int drbd_bitmap_io(struct drbd_conf *mdev, int (*io_fn)(struct drbd_conf *),
3491 char *why, enum bm_flag flags)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003492{
3493 int rv;
3494
Philipp Reisnere6b3ea82011-01-19 14:02:01 +01003495 D_ASSERT(current != mdev->tconn->worker.task);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003496
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003497 if ((flags & BM_LOCKED_SET_ALLOWED) == 0)
3498 drbd_suspend_io(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003499
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003500 drbd_bm_lock(mdev, why, flags);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003501 rv = io_fn(mdev);
3502 drbd_bm_unlock(mdev);
3503
Lars Ellenberg20ceb2b2011-01-21 10:56:44 +01003504 if ((flags & BM_LOCKED_SET_ALLOWED) == 0)
3505 drbd_resume_io(mdev);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003506
3507 return rv;
3508}
3509
3510void drbd_md_set_flag(struct drbd_conf *mdev, int flag) __must_hold(local)
3511{
3512 if ((mdev->ldev->md.flags & flag) != flag) {
3513 drbd_md_mark_dirty(mdev);
3514 mdev->ldev->md.flags |= flag;
3515 }
3516}
3517
3518void drbd_md_clear_flag(struct drbd_conf *mdev, int flag) __must_hold(local)
3519{
3520 if ((mdev->ldev->md.flags & flag) != 0) {
3521 drbd_md_mark_dirty(mdev);
3522 mdev->ldev->md.flags &= ~flag;
3523 }
3524}
3525int drbd_md_test_flag(struct drbd_backing_dev *bdev, int flag)
3526{
3527 return (bdev->md.flags & flag) != 0;
3528}
3529
3530static void md_sync_timer_fn(unsigned long data)
3531{
3532 struct drbd_conf *mdev = (struct drbd_conf *) data;
3533
Lars Ellenbergb792b652012-08-22 14:59:06 +02003534 /* must not double-queue! */
3535 if (list_empty(&mdev->md_sync_work.list))
3536 drbd_queue_work_front(&mdev->tconn->sender_work, &mdev->md_sync_work);
Philipp Reisnerb411b362009-09-25 16:07:19 -07003537}
3538
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003539static int w_md_sync(struct drbd_work *w, int unused)
Philipp Reisnerb411b362009-09-25 16:07:19 -07003540{
Philipp Reisner00d56942011-02-09 18:09:48 +01003541 struct drbd_conf *mdev = w->mdev;
3542
Philipp Reisnerb411b362009-09-25 16:07:19 -07003543 dev_warn(DEV, "md_sync_timer expired! Worker calls drbd_md_sync().\n");
Lars Ellenbergee15b032010-09-03 10:00:09 +02003544#ifdef DEBUG
3545 dev_warn(DEV, "last md_mark_dirty: %s:%u\n",
3546 mdev->last_md_mark_dirty.func, mdev->last_md_mark_dirty.line);
3547#endif
Philipp Reisnerb411b362009-09-25 16:07:19 -07003548 drbd_md_sync(mdev);
Andreas Gruenbacher99920dc2011-03-16 15:31:39 +01003549 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003550}
3551
Andreas Gruenbacherd8763022011-01-26 17:39:41 +01003552const char *cmdname(enum drbd_packet cmd)
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003553{
3554 /* THINK may need to become several global tables
3555 * when we want to support more than
3556 * one PRO_VERSION */
3557 static const char *cmdnames[] = {
3558 [P_DATA] = "Data",
3559 [P_DATA_REPLY] = "DataReply",
3560 [P_RS_DATA_REPLY] = "RSDataReply",
3561 [P_BARRIER] = "Barrier",
3562 [P_BITMAP] = "ReportBitMap",
3563 [P_BECOME_SYNC_TARGET] = "BecomeSyncTarget",
3564 [P_BECOME_SYNC_SOURCE] = "BecomeSyncSource",
3565 [P_UNPLUG_REMOTE] = "UnplugRemote",
3566 [P_DATA_REQUEST] = "DataRequest",
3567 [P_RS_DATA_REQUEST] = "RSDataRequest",
3568 [P_SYNC_PARAM] = "SyncParam",
3569 [P_SYNC_PARAM89] = "SyncParam89",
3570 [P_PROTOCOL] = "ReportProtocol",
3571 [P_UUIDS] = "ReportUUIDs",
3572 [P_SIZES] = "ReportSizes",
3573 [P_STATE] = "ReportState",
3574 [P_SYNC_UUID] = "ReportSyncUUID",
3575 [P_AUTH_CHALLENGE] = "AuthChallenge",
3576 [P_AUTH_RESPONSE] = "AuthResponse",
3577 [P_PING] = "Ping",
3578 [P_PING_ACK] = "PingAck",
3579 [P_RECV_ACK] = "RecvAck",
3580 [P_WRITE_ACK] = "WriteAck",
3581 [P_RS_WRITE_ACK] = "RSWriteAck",
Lars Ellenbergd4dabbe2012-08-01 12:33:51 +02003582 [P_SUPERSEDED] = "Superseded",
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003583 [P_NEG_ACK] = "NegAck",
3584 [P_NEG_DREPLY] = "NegDReply",
3585 [P_NEG_RS_DREPLY] = "NegRSDReply",
3586 [P_BARRIER_ACK] = "BarrierAck",
3587 [P_STATE_CHG_REQ] = "StateChgRequest",
3588 [P_STATE_CHG_REPLY] = "StateChgReply",
3589 [P_OV_REQUEST] = "OVRequest",
3590 [P_OV_REPLY] = "OVReply",
3591 [P_OV_RESULT] = "OVResult",
3592 [P_CSUM_RS_REQUEST] = "CsumRSRequest",
3593 [P_RS_IS_IN_SYNC] = "CsumRSIsInSync",
3594 [P_COMPRESSED_BITMAP] = "CBitmap",
3595 [P_DELAY_PROBE] = "DelayProbe",
3596 [P_OUT_OF_SYNC] = "OutOfSync",
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003597 [P_RETRY_WRITE] = "RetryWrite",
Lars Ellenbergae25b332011-04-24 00:01:16 +02003598 [P_RS_CANCEL] = "RSCancel",
3599 [P_CONN_ST_CHG_REQ] = "conn_st_chg_req",
3600 [P_CONN_ST_CHG_REPLY] = "conn_st_chg_reply",
Philipp Reisner036b17e2011-05-16 17:38:11 +02003601 [P_RETRY_WRITE] = "retry_write",
3602 [P_PROTOCOL_UPDATE] = "protocol_update",
Lars Ellenbergae25b332011-04-24 00:01:16 +02003603
3604 /* enum drbd_packet, but not commands - obsoleted flags:
3605 * P_MAY_IGNORE
3606 * P_MAX_OPT_CMD
3607 */
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003608 };
3609
Lars Ellenbergae25b332011-04-24 00:01:16 +02003610 /* too big for the array: 0xfffX */
Andreas Gruenbachere5d6f332011-03-28 16:44:40 +02003611 if (cmd == P_INITIAL_META)
3612 return "InitialMeta";
3613 if (cmd == P_INITIAL_DATA)
3614 return "InitialData";
Andreas Gruenbacher60381782011-03-28 17:05:50 +02003615 if (cmd == P_CONNECTION_FEATURES)
3616 return "ConnectionFeatures";
Andreas Gruenbacher6e849ce2011-03-14 17:27:45 +01003617 if (cmd >= ARRAY_SIZE(cmdnames))
Andreas Gruenbacherf2ad9062011-01-26 17:13:25 +01003618 return "Unknown";
3619 return cmdnames[cmd];
3620}
3621
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003622/**
3623 * drbd_wait_misc - wait for a request to make progress
3624 * @mdev: device associated with the request
3625 * @i: the struct drbd_interval embedded in struct drbd_request or
3626 * struct drbd_peer_request
3627 */
3628int drbd_wait_misc(struct drbd_conf *mdev, struct drbd_interval *i)
3629{
Philipp Reisner44ed1672011-04-19 17:10:19 +02003630 struct net_conf *nc;
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003631 DEFINE_WAIT(wait);
3632 long timeout;
3633
Philipp Reisner44ed1672011-04-19 17:10:19 +02003634 rcu_read_lock();
3635 nc = rcu_dereference(mdev->tconn->net_conf);
3636 if (!nc) {
3637 rcu_read_unlock();
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003638 return -ETIMEDOUT;
Philipp Reisner44ed1672011-04-19 17:10:19 +02003639 }
3640 timeout = nc->ko_count ? nc->timeout * HZ / 10 * nc->ko_count : MAX_SCHEDULE_TIMEOUT;
3641 rcu_read_unlock();
Andreas Gruenbacher7be8da02011-02-22 02:15:32 +01003642
3643 /* Indicate to wake up mdev->misc_wait on progress. */
3644 i->waiting = true;
3645 prepare_to_wait(&mdev->misc_wait, &wait, TASK_INTERRUPTIBLE);
3646 spin_unlock_irq(&mdev->tconn->req_lock);
3647 timeout = schedule_timeout(timeout);
3648 finish_wait(&mdev->misc_wait, &wait);
3649 spin_lock_irq(&mdev->tconn->req_lock);
3650 if (!timeout || mdev->state.conn < C_CONNECTED)
3651 return -ETIMEDOUT;
3652 if (signal_pending(current))
3653 return -ERESTARTSYS;
3654 return 0;
Philipp Reisnerb411b362009-09-25 16:07:19 -07003655}
3656
3657#ifdef CONFIG_DRBD_FAULT_INJECTION
3658/* Fault insertion support including random number generator shamelessly
3659 * stolen from kernel/rcutorture.c */
3660struct fault_random_state {
3661 unsigned long state;
3662 unsigned long count;
3663};
3664
3665#define FAULT_RANDOM_MULT 39916801 /* prime */
3666#define FAULT_RANDOM_ADD 479001701 /* prime */
3667#define FAULT_RANDOM_REFRESH 10000
3668
3669/*
3670 * Crude but fast random-number generator. Uses a linear congruential
3671 * generator, with occasional help from get_random_bytes().
3672 */
3673static unsigned long
3674_drbd_fault_random(struct fault_random_state *rsp)
3675{
3676 long refresh;
3677
Roel Kluin49829ea2009-12-15 22:55:44 +01003678 if (!rsp->count--) {
Philipp Reisnerb411b362009-09-25 16:07:19 -07003679 get_random_bytes(&refresh, sizeof(refresh));
3680 rsp->state += refresh;
3681 rsp->count = FAULT_RANDOM_REFRESH;
3682 }
3683 rsp->state = rsp->state * FAULT_RANDOM_MULT + FAULT_RANDOM_ADD;
3684 return swahw32(rsp->state);
3685}
3686
3687static char *
3688_drbd_fault_str(unsigned int type) {
3689 static char *_faults[] = {
3690 [DRBD_FAULT_MD_WR] = "Meta-data write",
3691 [DRBD_FAULT_MD_RD] = "Meta-data read",
3692 [DRBD_FAULT_RS_WR] = "Resync write",
3693 [DRBD_FAULT_RS_RD] = "Resync read",
3694 [DRBD_FAULT_DT_WR] = "Data write",
3695 [DRBD_FAULT_DT_RD] = "Data read",
3696 [DRBD_FAULT_DT_RA] = "Data read ahead",
3697 [DRBD_FAULT_BM_ALLOC] = "BM allocation",
Philipp Reisner6b4388a2010-04-26 14:11:45 +02003698 [DRBD_FAULT_AL_EE] = "EE allocation",
3699 [DRBD_FAULT_RECEIVE] = "receive data corruption",
Philipp Reisnerb411b362009-09-25 16:07:19 -07003700 };
3701
3702 return (type < DRBD_FAULT_MAX) ? _faults[type] : "**Unknown**";
3703}
3704
3705unsigned int
3706_drbd_insert_fault(struct drbd_conf *mdev, unsigned int type)
3707{
3708 static struct fault_random_state rrs = {0, 0};
3709
3710 unsigned int ret = (
3711 (fault_devs == 0 ||
3712 ((1 << mdev_to_minor(mdev)) & fault_devs) != 0) &&
3713 (((_drbd_fault_random(&rrs) % 100) + 1) <= fault_rate));
3714
3715 if (ret) {
3716 fault_count++;
3717
Lars Ellenberg73835062010-05-27 11:51:56 +02003718 if (__ratelimit(&drbd_ratelimit_state))
Philipp Reisnerb411b362009-09-25 16:07:19 -07003719 dev_warn(DEV, "***Simulating %s failure\n",
3720 _drbd_fault_str(type));
3721 }
3722
3723 return ret;
3724}
3725#endif
3726
3727const char *drbd_buildtag(void)
3728{
3729 /* DRBD built from external sources has here a reference to the
3730 git hash of the source code. */
3731
3732 static char buildtag[38] = "\0uilt-in";
3733
3734 if (buildtag[0] == 0) {
Cong Wangbc4854b2012-04-03 14:13:36 +08003735#ifdef MODULE
3736 sprintf(buildtag, "srcversion: %-24s", THIS_MODULE->srcversion);
3737#else
3738 buildtag[0] = 'b';
Philipp Reisnerb411b362009-09-25 16:07:19 -07003739#endif
Philipp Reisnerb411b362009-09-25 16:07:19 -07003740 }
3741
3742 return buildtag;
3743}
3744
3745module_init(drbd_init)
3746module_exit(drbd_cleanup)
3747
Philipp Reisnerb411b362009-09-25 16:07:19 -07003748EXPORT_SYMBOL(drbd_conn_str);
3749EXPORT_SYMBOL(drbd_role_str);
3750EXPORT_SYMBOL(drbd_disk_str);
3751EXPORT_SYMBOL(drbd_set_st_err_str);